/* Global Styles */
        :root {
            --primary-color: #ce6921;
            --secondary-color: #333;
            --light-color: #ffffff;
            --dark-color: #222;
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            line-height: 1.5;
            color: #333;
            background-color: #ffffff;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--secondary-color);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-transform: uppercase;
            text-align: center;
            font-weight: 600;
            letter-spacing: 1px;
            transition: var(--transition);
            
        }
        
        .btn:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
            line-height: 1.1;
        }
        
        .logo span {
            color: var(--primary-color);
        }
        
        nav {
            transition: all 0.3s ease;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--secondary-color);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            position: relative;
            padding: 5px 0;
        }
        
        /* Underline animation for nav links */
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Active link style */
        nav ul li a.active {
            color: var(--primary-color);
        }
        
        nav ul li a.active::after {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            cursor: pointer;
            font-size: 24px;
            z-index: 1000;
        }
        
        .mobile-menu:hover {
            background-color: var(--light-color);
        }
        
        .motto-small {
        font-size: 0.8rem;
        font-style: italic;
        color: #6c757d;
        margin-left: 100px;
        }

        /* Hero Section */
        .hero {
             position: relative;
             background-image: url('/images/compound.jpg');
             background-position: center center;
             background-repeat: no-repeat;
             background-attachment: fixed;
             color: white;
             text-align: center;
             min-height: 100vh;
             width: 100%;
             display: flex;
             align-items: center;
             justify-content: center;
             -webkit-background-size: cover;
             background-size: cover;
        }
        
        .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

        .hero-overlay {
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: 1;
}

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            padding-top: 80px;
        }
        
        .hero h1 {
             font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease;
}
        
        .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.3s backwards;
}
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .bible-reference {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease 0.6s backwards;
}

.bible-reference p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
       
.bible-reference cite {
    font-size: 1rem;
    color: var(--primary-color);
}

.hero-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: white;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.9s backwards;
}
.hero-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .bible-reference {
        padding: 15px;
    }
}

/* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h2 {
            font-size: 36px;
            color: var(--secondary-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-content h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        /* Apartments Section */
        .apartments {
            padding: 100px 0;
            
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 36px;
            color: var(--secondary-color);
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .apartment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .apartment-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .apartment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .apartment-image {
            height: 250px;
            overflow: hidden;
        }
        
        .apartment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .apartment-card:hover .apartment-image img {
            transform: scale(1.1);
        }
        
        .apartment-content {
            padding: 25px;
        }
        
        .apartment-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .apartment-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .apartment-meta span {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #777;
        }
        
        .apartment-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
       
        
         /* Booking Section Styles */
        .booking-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .booking-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 36px;
            color: var(--secondary-color);
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .section-header p {
            max-width: 700px;
            margin: 0 auto;
            margin-top: 15px;
            color: #777;
        }
        
        .booking-wrapper {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .booking-info {
            flex: 1;
            min-width: 300px;
        }
        
        .booking-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .booking-info p {
            margin-bottom: 20px;
            color: #555;
        }
        
        .booking-highlight {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        
        .booking-highlight h4 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .highlight-list {
            list-style: none;
        }
        
        .highlight-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .highlight-list li:last-child {
            border-bottom: none;
        }
        
        .highlight-list li::before {
            content: '✓';
            color: var(--primary-color);
            margin-right: 10px;
            font-weight: bold;
        }
        
        .booking-form-container {
            flex: 1;
            min-width: 300px;
        }
        
        .booking-form {
            background-color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .booking-form h3 {
            font-size: 24px;
            margin-bottom: 25px;
            color: var(--secondary-color);
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(200, 161, 101, 0.2);
        }
        
        .date-inputs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .guest-inputs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            transition: var(--transition);
            width: 100%;
            font-size: 16px;
        }
        
        .btn:hover {
            background-color: var(--secondary-color);
        }
        
        .booking-policy {
            margin-top: 20px;
            font-size: 14px;
            color: #777;
            text-align: center;
        }
        
       
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .booking-section {
                padding: 60px 0;
            }
            
            .booking-form {
                padding: 25px;
            }
            
            .date-inputs,
            .guest-inputs {
                grid-template-columns: 1fr;
            }
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            padding: 20px 0;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
             border-radius: var(--border-radius);
    box-shadow: var(--shadow);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .testimonial-item {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-content {
            line-height: normal;
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #777;
            font-size: 14px;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .contact-wrapper {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-image {
            flex: 1;
            width: 100%;
            height: 300px;
            margin-top: 20px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
            display: flex;
            align-items: center;
            padding: 0.6px;
            flex-direction: column;

        }
        
        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--border-radius);
            transition: transform 0.3s ease;
        }

        .contact-image:hover img {
            transform: scale(1.05);
        }
        
        .contact-cards {
            display: grid;
            grid-template-rows: auto;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .contact-card {
            background: white;
            line-height: 1.2;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .contact-details h4 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .contact-details p {
            margin: 5px 0;
            color: #666;
        }
        
        .contact-details a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .contact-details a:hover {
            color: var(--secondary-color);
        }
        
        .directions-link,
.availability,
.response-time,
.holiday-note {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #888;
}

.contact-form-wrapper {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 15px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.form-control {
    padding: 8px 12px;
}

textarea.form-control {
    min-height: 80px;
}

.submit-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding-top: 70px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            padding-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Specific colors for each platform */
.footer-social a:nth-child(1) {
    background: #25D366; /* WhatsApp color */
}

.footer-social a:nth-child(2) {
    background: #E4405F; /* Instagram color */
}

.footer-social a:nth-child(3) {
    background: #EA4335; /* Gmail color */
}
        
        .footer-social i {
        font-size: 16px;
    }
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
        }
        
        .footer-bottom p {
            color: #ccc;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 15px 0;
            }
            
            nav {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .about {
                padding: 60px 0;
            }
            
            .apartments,
            .amenities,
            .gallery,
            .testimonials,
            .contact {
                padding: 60px 0;
            }
            
            .section-header {
                margin-bottom: 40px;
            }
            
            .section-header h2 {
                font-size: 30px;
            }
            
            .contact-wrapper {
                flex-direction: column;
                padding: 15px;
            }
            
            .contact-image {
                width: 100%;
                height: 200px;
                margin-top: 30px;
            }
            
            .gallery-categories {
                flex-wrap: wrap;
                justify-content: center;
                padding: 0 10px;
            }
            
            .category-btn {
                margin: 5px;
            }
        }
        
        @media screen and (max-width: 1024px) {
            .btn.hero-btn {
                display: none;
            }
            
            /* Show only the mobile explore button */
            .explore-btn.mobile-menu {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                text-align: justify;
            }
            
            header nav {
                display: none;
                position: fixed;
                top: 80px;
                right: 0;
                width: 300px;
                height: auto;
                background: white;
                padding: 20px;
                border-radius: 0 0 0 10px;
                box-shadow: -2px 0 5px rgba(0,0,0,0.1);
                z-index: 1000;
            }
            
            header nav.active {
                display: block;
            }
            
            header nav ul {
                flex-direction: column;
                gap: 15px;
            }
            
            header nav ul li {
                width: 100%;
            }
            
            header nav ul li a {
                display: block;
                padding: 15px;
                color: var(--secondary-color);
                font-weight: 500;
                font-size: 1.1rem;
            }
            
            header nav ul li a:hover,
            header nav ul li a.active {
                background: var(--light-color);
                border-radius: var(--border-radius);
            }
            
            .mobile-menu {
                display: block;
                font-size: 28px;
                cursor: pointer;
                z-index: 1001;
            }
            
            .header-container {
                padding: 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .video-background {
                display: none; /* Hide video background on mobile */
            }
        }
        
        /* dropdown */
.dropdown-nav {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    z-index: 1000;
    margin-top: 8px;
}

.dropdown-content a {
    color: var(--secondary-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.dropdown-nav.active .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .dropdown-content {
        width: 100%;
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        margin-top: 0;
        border-radius: 0;
    }
}


/* popup menu */
.popup-nav {
    position: relative;
    display: inline-block;
}

.popup-menu {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    min-width: 300px;
    max-width: 90%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    border-radius: var(--border-radius);
    z-index: 1001;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light-color);
}

.popup-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.close-popup {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.popup-content {
    padding: 20px;
}

.popup-content a {
    color: var(--secondary-color);
    padding: 15px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    margin-bottom: 5px;
}

.popup-content a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.popup-nav.active .popup-menu,
.popup-nav.active .popup-overlay {
    display: block;
    animation: fadeIn 0.3s ease;
}
.popup-nav.active ~ .popup-overlay,
.popup-nav.active .popup-overlay {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 600px) {
    .popup-menu {
        min-width: 90vw;
        max-width: 98vw;
        padding: 12px 0 0 0;
    }
}
@media screen and (max-width: 768px) {
    .popup-menu {
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
    }
}
/* Specific tablet adjustments */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .contact-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info, .contact-form-wrapper {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large tablet and small laptop adjustments */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .hero {
        height: 80vh;
    }

    .container {
        max-width: 90%;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .amenity-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* General mobile improvements */
@media screen and (max-width: 767px) {
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 15px;
    }

    .section-header {
        padding: 0 15px;
    }

    .contact-wrapper {
        padding: 15px;
    }

    .gallery-categories {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }

    .category-btn {
        margin: 5px;
    }
}

/* Hide the popup nav button by default */
.popup-nav {
    display: none;
}

/* Show the popup nav button only on screens 1024px wide or less */
@media screen and (max-width: 1024px) {
    .popup-nav {
        display: block;
    }
}

/* Optionally, hide the desktop hero Explore button on mobile */
@media screen and (max-width: 1024px) {
    .hero-btn {
        display: none;
    }
}

