/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto 50px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: #25D366;
    color: white;
}

.btn-primary:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-secondary {
    background-color: #3498db;
    color: white;
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    min-height: 80px;
}

.logo-header {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    margin-right: 15px;
}

.logo-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
    line-height: 1.2;
}

.tagline {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.nav-links a:hover {
    color: #3498db;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #5a6c7d;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.feature i {
    color: #25D366;
    margin-right: 8px;
    font-size: 1rem;
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
}

/* Rooms Section */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.room-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-card.full-width {
    grid-column: 1 / -1;
}

.room-img {
    height: 220px;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.room-info p {
    color: #666;
    margin-bottom: 20px;
}

.room-features {
    list-style: none;
}

.room-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
}

.room-features li i {
    color: #3498db;
    margin-right: 10px;
    width: 20px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.amenity:hover {
    background-color: #e9ecef;
}

.amenity i {
    font-size: 1.8rem;
    color: #3498db;
    margin-bottom: 10px;
}

.amenity span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Attractions Section - 3 COLUMNS */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.attraction-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.attraction-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.attraction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-img img {
    transform: scale(1.05);
}

.attraction-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(37, 211, 102, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attraction-distance {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.attraction-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.attraction-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #2c3e50;
    line-height: 1.3;
}

.attraction-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.attraction-location i {
    margin-right: 5px;
    color: #3498db;
    font-size: 0.9rem;
}

.attraction-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.attraction-details {
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.detail-item i {
    color: #3498db;
    margin-right: 8px;
    margin-top: 2px;
    min-width: 16px;
    text-align: center;
}

.attraction-actions {
    margin-top: auto;
}

.btn-map {
    display: inline-block;
    background-color: #f8f9fa;
    color: #3498db;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

.btn-map:hover {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.btn-map i {
    margin-right: 5px;
}

/* Location Benefits */
.location-benefits {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.location-benefits h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.benefit {
    text-align: center;
    padding: 20px;
}

.benefit i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.benefit h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.benefit p {
    color: #666;
    font-size: 0.95rem;
}

/* Distance Calculator */
.distance-calculator {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.distance-calculator h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.distance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.distance-item {
    text-align: center;
}

.distance-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.distance-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.distance-fill {
    height: 100%;
    background: linear-gradient(90deg, #25D366, #3498db);
    border-radius: 4px;
}

.distance-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Location Section */
.location {
    background-color: #f8f9fa;
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.location-info, .location-map {
    flex: 1;
    min-width: 300px;
}

.location-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.location-info h3 i {
    margin-right: 10px;
    color: #3498db;
}

.location-details {
    margin-top: 30px;
}

.detail {
    display: flex;
    margin-bottom: 25px;
}

.detail i {
    font-size: 1.5rem;
    color: #3498db;
    margin-right: 15px;
    margin-top: 5px;
}

.detail h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.map-link {
    display: inline-flex;
    align-items: center;
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    margin-top: 5px;
}

.map-link i {
    margin-left: 5px;
    font-size: 0.9rem;
}

.map-link:hover {
    text-decoration: underline;
}

.location-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
}

.map-placeholder i {
    font-size: 4rem;
    color: #3498db;
    margin-bottom: 20px;
}

.map-placeholder p {
    margin-bottom: 25px;
    color: #666;
}

.map-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-info, .contact-features {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    color: #25D366;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-details p {
    color: #666;
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    background-color: #1da851;
}

.phone-link, .address-link {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.phone-link i, .address-link i {
    margin-right: 8px;
}

.phone-link:hover, .address-link:hover {
    text-decoration: underline;
}

.contact-features h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.features-list li i {
    color: #25D366;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.booking-note {
    background: #e8f4fc;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
}

.booking-note i {
    color: #3498db;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.2rem;
}

.booking-note p {
    margin: 0;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    max-width: 300px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.footer-logo h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.footer-links h4, .footer-contact h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
    color: #3498db;
}

.footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.developer-credit {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #95a5a6;
}

.developer-credit a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.developer-credit a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    grid-column: 1 / -1;
}

.loading i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Skip to content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2c3e50;
    color: white;
    padding: 8px 16px;
    z-index: 1001;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .attractions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* FIX: Header height on mobile */
    header .container {
        padding: 10px 20px;
        min-height: 60px;
    }
    
    .logo-header {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    
    .logo-text {
        flex: 1;
        margin-left: 10px;
    }
    
    .logo {
        height: 40px;
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
        margin-bottom: 2px;
        line-height: 1.1;
    }
    
    .tagline {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        margin-left: 15px;
    }
    
    /* FIX: Hero section on mobile */
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
        display: block;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 10px;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .location-benefits {
        padding: 25px;
    }
    
    .distance-calculator {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.7rem;
        margin-top: 15px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature {
        justify-content: flex-start;
        width: 100%;
    }
    
    /* FIX: Even smaller header on very small screens */
    header .container {
        min-height: 55px;
    }
    
    .logo {
        height: 35px;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 0.65rem;
    }
    
    .float-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }
    
    .attraction-category,
    .attraction-distance {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .hero-image {
        margin-top: 20px;
    }
    
    /* Ensure text doesn't get cut off */
    .hero-content, 
    .hero-content h1, 
    .hero-content p {
        overflow: visible;
        word-wrap: break-word;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .logo-text h1 {
        font-size: 0.9rem;
    }
    
    .tagline {
        font-size: 0.6rem;
    }
}