:root {
    /* Colors - Dark Premium Palette */
    --primary-color: #D4AF37; /* Classic Gold */
    --primary-light: #F4C430; /* Lighter Gold for hover */
    --primary-dark: #8C7323; /* Dark Gold */
    
    --bg-black: #050505; /* Deep Black */
    --bg-dark-gray: #0f0f0f; /* Secondary Dark */
    --bg-card: rgba(255, 255, 255, 0.03); /* Glassmorphism Base */
    
    --text-white: #f5f5f5; /* Off-white for body */
    --text-gray: #a0a0a0; /* Muted text */
    --text-heading: #ffffff; /* Pure white for headings */
    
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-premium: 'Playfair Display', serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 0.3px;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure Poppins applies to form elements and buttons */
input, textarea, select, button, label, p, span, a, li {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-heading);
    letter-spacing: 1px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.bg-dark {
    background-color: var(--bg-black); /* Unified background */
}

.section-subtitle {
    color: var(--primary-color);
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Utility */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px; /* More rounded for premium feel */
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(5, 5, 5, 0.85); /* Darker transparency */
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

#header.header-hidden {
    transform: translateY(-100%);
}

#header.header-scrolled {
    background-color: rgba(17, 17, 17, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.logo img {
    transition: all 0.3s ease;
}

#header.header-scrolled .logo img {
    transform: scale(0.9); /* Slight shrink on scroll */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
    width: 44px; /* Minimum touch target */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav li {
    margin: 1.5rem 0;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.8rem; /* Slightly smaller for better fit */
    color: var(--text-white);
    font-family: var(--font-heading);
    padding: 10px; /* Touch target */
    display: block;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Better spacing for sections */
.section-padding {
    padding: 4rem 0; /* Adjusted for mobile */
}

@media (min-width: 992px) {
    .section-padding {
        padding: var(--spacing-lg) 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px; 
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.6; /* Darker video */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7), rgba(5,5,5,0.9) 90%);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-content h1 span {
    color: var(--primary-color);
    font-style: italic; /* Added style */
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ddd;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.offer-banner {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 3rem;
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.countdown {
    font-family: 'Oswald', sans-serif; /* Changed to Oswald */
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.benefit-card {
    padding: 3rem 2rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    border-radius: 16px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.benefit-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    filter: grayscale(20%); /* Artistic touch */
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%);
}

.since-text {
    font-family: var(--font-premium);
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

/* Removed .experience-badge styles as it was replaced */

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.check-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
    color: var(--text-white);
}

.check-list li::before {
    content: '✔';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Services Section */
.services-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-top: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--text-heading);
}

.service-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.services-image img.glass-img {
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: var(--border-glass);
    box-shadow: var(--shadow-glass);
}

/* Gallery Section */
.gallery-filters {
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-gray);
    padding: 10px 25px;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 350px;
    cursor: pointer;
    border: var(--border-glass);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: var(--transition);
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: serif;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-list .icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 10px;
}

.social-links-wrapper h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-heading);
}

.social-buttons-contact {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.google-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.google-btn:hover {
    background: #f1f1f1;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border: none;
}

.instagram-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
    filter: brightness(1.1);
}

/* Form styles removed as contact form is not used */

.map-placeholder {
    opacity: 0.8;
    border: var(--border-glass);
    border-radius: 12px;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 150px; /* Adjusted size */
    margin-bottom: 1.5rem;
}

.footer-logo p {
    color: var(--text-gray);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links ul li a {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: inline-block;
    padding: 5px 0; /* Better touch target */
}

.footer-links h3, .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; /* Perfect circle */
    transition: var(--transition);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    color: #000;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    color: #555;
    font-size: 0.85rem;
}

/* WhatsApp Float - Improved with Pulse */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    background-color: #20b85a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    animation: none; /* Stop pulsing on hover */
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-icon-float {
    width: 38px;
    height: 38px;
    fill: white;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox-modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem; /* Increased gap */
    }

    .services-image {
        order: -1;
        height: 350px; /* Taller image */
        width: 100%;
        margin-bottom: 2rem; /* Space between image and list */
    }
    
    .services-image img.glass-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem; /* More space between sections */
        justify-items: center; /* Center grid items */
    }

    .footer-logo {
        align-items: center; /* Center logo in mobile */
    }

    .footer-logo p {
        margin: 0 auto;
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
    
    /* Improve button spacing on mobile */
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 3rem auto;
    }
    
    .btn {
        width: 100%;
        display: block;
        text-align: center;
    }

    /* Mobile Header Alignment */
    .header-container {
        position: relative;
        justify-content: center; /* Center logo */
        min-height: 80px; /* Prevent header collapse */
        padding-top: 10px;
        padding-bottom: 10px;
        transition: min-height 0.3s ease;
    }

    #header.header-scrolled .header-container {
        min-height: 60px; /* Compact on mobile scroll */
    }

    .logo img {
        max-height: 60px; /* Constrain logo height on mobile */
        width: auto;
        transition: max-height 0.3s ease;
    }

    #header.header-scrolled .logo img {
        max-height: 50px; /* Smaller logo on scroll */
    }

    /* Increase Hero padding to prevent header overlap */
    .hero {
        padding-top: 160px; /* Increased from 120px */
        height: auto; 
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content {
        margin-top: 3rem; /* More margin */
        width: 100%;
        padding: 0 1rem;
    }

    /* Hide desktop menu and CTA button on mobile/tablet */
    .nav-menu, .header-cta .btn {
        display: none;
    }

    .logo {
        position: relative; /* Changed from absolute to prevent overlap/collapse */
        z-index: 2002;
        margin: 0;
        /* Removed absolute positioning properties */
    }

    .mobile-menu-btn {
        position: absolute;
        right: var(--spacing-sm);
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        z-index: 2003;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Nav menu hidden in 992px query */

    .hero-content h1 {
        font-size: 2.5rem; /* Reduced from 2.8rem */
        word-wrap: break-word; /* Prevent overflow */
    }
    
    .hero-btns {
        flex-direction: column;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem; /* Slightly smaller */
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon-float {
        width: 30px;
        height: 30px;
    }
}
