/* CSS Reset and Global Styles */
:root {
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --color-primary-dark: #0a2342; /* Deep Navy Blue */
    --color-primary-light: #f4f7f9; /* Lighter blue/grey BG */
    --color-accent: #c0a071;       /* Premium Gold/Bronze */
    --color-accent-dark: #a68a5f;
    --color-text-dark: #222222;
    --color-text-medium: #555555;
    --color-text-light: #ffffff;
    --color-border: #e0e0e0;
    --color-bg-white: #ffffff;
    --transition-main: all 0.3s ease-in-out;
    --container-width: 1200px;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --border-radius-main: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Space for fixed header */
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition-main);
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-outline:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; margin-bottom: 1rem; }
h2 { font-size: 2.75rem; text-align: center; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--color-text-medium);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-medium);
    max-width: 700px;
    margin: -1rem auto 3.5rem auto;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Top Navigation --- */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.top-nav.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px; /* Wider container for nav */
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    text-decoration: none;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav .nav-links {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.main-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.main-nav .nav-links a:hover {
    color: var(--color-accent-dark);
}

.main-nav .nav-links a:hover::after {
    width: 100%;
}

.main-nav .btn {
    padding: 0.7rem 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px 0;
    background-color: var(--color-primary-dark);
    transition: all 0.3s ease-in-out;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* --- Hero Section --- */
.hero-section {
    height: calc(100vh - 70px); /* Full height minus header */
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* REPLACED IMAGE */
    background: url('https://images.unsplash.com/photo-1585128792020-803d29415281?ixlib=rb-4.1.0&fit=crop&w=1800&h=1000&q=80') no-repeat center center/cover;
    color: var(--color-text-light);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    color: var(--color-text-light);
    font-size: 3.75rem;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    opacity: 0.9;
    margin: 1.5rem 0 2.5rem 0;
    line-height: 1.7;
}

/* Hero Highlights Bar */
.key-highlights-bar {
    background: var(--color-bg-white);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg-white);
    transition: var(--transition-main);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.highlight-item .icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.highlight-item .label {
    font-size: 1rem;
    color: var(--color-text-dark);
    font-weight: 600;
}

/* --- About Section --- */
#about {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid img {
    box-shadow: 0 15px 35px rgba(10, 35, 66, 0.1);
}

/* --- Amenities Section --- */
#amenities {
    padding: 6rem 0;
    background-color: var(--color-primary-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.amenity-card {
    background: var(--color-bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition-main);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.amenity-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.amenity-card-content {
    padding: 1.75rem;
}

.amenity-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.amenity-card-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Gallery Section --- */
#gallery {
    padding: 6rem 0;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    background: var(--color-primary-light);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-main);
}

.tab-button:hover {
    background-color: var(--color-accent-dark);
    color: var(--color-text-light);
    border-color: var(--color-accent-dark);
}

.tab-button.active {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border-color: var(--color-accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    animation: fadeInContent 0.5s ease;
}

@keyframes fadeInContent {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10, 35, 66, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-main);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h4 {
    color: var(--color-text-light);
    font-family: var(--font-body);
    transform: translateY(10px);
    transition: var(--transition-main);
    margin: 0; /* Override default heading margin */
    font-size: 1.1rem;
}

.gallery-item:hover .overlay h4 {
    transform: translateY(0);
}

/* --- Floor Plans Section --- */
#plans {
    padding: 6rem 0;
    background-color: var(--color-primary-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.plan-item {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.plan-item img {
    width: 100%;
    max-width: 400px;
    margin: 1rem auto;
    border: 1px solid var(--color-border);
}

.plan-item h3 {
    font-size: 1.5rem;
}

/* --- Developer Section --- */
#developer {
    padding: 6rem 0;
}
.developer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.developer-item {
    text-align: center;
}
.developer-item .icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}
.developer-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* --- Testimonials Section --- */
#testimonials {
    padding: 6rem 0;
    background-color: var(--color-primary-light);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.testimonial-card {
    background: var(--color-bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--color-accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial-card q {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-medium);
    display: block;
    margin-bottom: 1.5rem;
}
.testimonial-card cite {
    font-weight: 600;
    color: var(--color-primary-dark);
    font-style: normal;
}


/* --- Location Section --- */
#location {
    padding: 6rem 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-content ul {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 0; /* Remove default padding */
}

.location-content li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.location-content li::before {
    /* Checkmark icon */
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 35px rgba(10, 35, 66, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- FAQ Section --- */
#faq {
    padding: 6rem 0;
    background-color: var(--color-primary-light);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.faq-header h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-content p {
    padding: 0 0 1.5rem;
    margin: 0;
}

/* --- Enquire Section --- */
#contact {
    padding: 6rem 0;
    background-color: var(--color-bg-white);
}

.enquiry-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-primary-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.enquiry-form-container h2 {
    text-align: center;
}

.enquiry-form-container .section-subtitle {
     text-align: center;
     max-width: 500px;
     margin: 1rem auto 2rem auto;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-bg-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(192, 160, 113, 0.3);
}

.checkbox-group {
    font-size: 0.8rem;
    color: var(--color-text-medium);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0; /* Prevent checkbox from shrinking */
}

.enquiry-form .btn-primary {
    font-size: 1rem;
    padding: 1rem;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--color-primary-dark);
    color: #ccc;
    padding: 5rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    text-align: left;
    margin-bottom: 4rem;
}

.footer-widget .logo {
    font-size: 2rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    display: inline-block;
    text-decoration: none;
}

.footer-widget p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 350px;
}

.footer-widget h4 {
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-widget ul {
    list-style: none;
    padding-left: 0; /* Remove default padding */
}

.footer-widget li {
    margin-bottom: 0.75rem;
}

.footer-widget a {
    text-decoration: none;
    color: #aaa;
    transition: var(--transition-main);
}

.footer-widget a:hover {
    color: var(--color-accent);
}

.footer-widget .contact-item {
    display: block;
    color: #aaa;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #3a445a;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

/* --- Sticky Buttons (NEW) --- */
.sticky-btn {
    position: fixed;
    bottom: 25px;
    z-index: 990;
    padding: 12px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
}
.sticky-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn {
    left: 25px;
    background-color: #25D366;
    color: white;
    font-size: 1.75rem; /* Icon size */
    width: 55px;
    height: 55px;
    text-decoration: none;
}
.whatsapp-btn i {
    line-height: 1; /* Center icon */
}

.contact-btn {
    right: 25px;
    background-color: var(--color-accent);
    color: var(--color-text-light); /* Changed to light for better contrast on gold */
    border: none;
    font-size: 1rem;
    padding: 12px 24px;
}
.contact-btn:hover {
    background-color: var(--color-accent-dark);
}

/* --- Contact Popup Modal (NEW) --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--color-bg-white);
    border-radius: var(--border-radius-main);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.popup-overlay.visible .popup-container {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}
.popup-close:hover {
    color: var(--color-text-dark);
}

.popup-container h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}
.popup-container p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text-medium);
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
/* Use form-group styles from main contact form */
.popup-form .form-group input,
.popup-form .form-group textarea {
    background: var(--color-primary-light);
}
.popup-form .form-group input::placeholder,
.popup-form .form-group textarea::placeholder {
    color: #999;
}
.form-group.full-width {
    /* Utility for popup form */
}
.popup-form .btn {
    width: 100%;
}

.popup-thank-you {
    display: none; /* Hidden by default */
    text-align: center;
    padding: 2rem 0;
}
.popup-thank-you h3 {
    color: var(--color-primary-dark);
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    
    .nav-container { padding: 0 1.5rem; }
    
    .main-nav .nav-links {
        display: none;
        position: fixed; /* Changed to fixed to scroll with page */
        top: 70px; /* Header height */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px); /* Full height */
        background: var(--color-bg-white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1rem 0;
        overflow-y: auto;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .main-nav.open .nav-links {
        display: flex;
        transform: translateX(0);
    }
    
    .main-nav .nav-links a {
        padding: 1rem 1.5rem;
        width: 100%;
    }
    .main-nav .nav-links a:hover {
        background: var(--color-primary-light);
    }
    .main-nav .nav-links a::after {
        display: none;
    }
    
    .main-nav .btn {
        display: none; /* Hide button in mobile nav, keep on header */
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        max-width: 500px;
        padding: 0 1.5rem;
    }
    .hero-content h1 { font-size: 3rem; }
    
    .highlights-grid { grid-template-columns: 1fr 1fr; }
    
    .about-grid { grid-template-columns: 1fr; }
    .about-grid img { margin-top: 2rem; }
    
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .developer-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .map-placeholder { height: 350px; margin-top: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    body { padding-top: 60px; }
    .top-nav { padding: 0.75rem 0; }
    .nav-container { padding: 0 1rem; }
    .logo { font-size: 1.5rem; }
    .main-nav .btn { display: none; } /* Hide enquire button on mobile header */
    .main-nav .nav-links { top: 60px; height: calc(100vh - 60px); }
    
    .hero-section { height: 90vh; min-height: 550px; }
    .hero-content { padding: 0 1rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content .subtitle { font-size: 1.1rem; }
    
    .highlights-grid { grid-template-columns: 1fr; }
    
    .amenities-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    
    .tab-nav {
        gap: 0.5rem;
    }
    .tab-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }
    
    .enquiry-form-container { padding: 2rem 1.5rem; }

    /* Adjust sticky buttons for smaller screens */
    .sticky-btn {
        bottom: 15px;
    }
    .whatsapp-btn {
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .contact-btn {
        right: 15px;
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* Adjust popup for smaller screens */
    .popup-container {
        width: 95%;
        padding: 2rem 1.5rem;
    }
    .popup-close {
        top: 10px;
        right: 10px;
    }
}

