:root {
    --primary-color: #001F3F; /* Navy Blue */
    --secondary-color: #0074D9; /* Lighter Blue */
    --accent-color: #FF851B; /* Orange for CTA */
    --text-color: #333333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --header-offset: 72px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    padding-bottom: 60px; /* Space for sticky footer */
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e67300;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: block;
    height: 50px;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Navigation Menu */
.main-nav {
    display: none; /* Hidden on mobile by default */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #c9950d;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.builder-logos {
    display: none;
    align-items: center;
    gap: 12px;
}

.builder-logo {
    height: 40px;
    width: auto;
    max-width: 190px;
    display: block;
    object-fit: contain;
}

.btn-call-header {
    background-color: #f0f0f0;
    color: #333;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 4px;
    display: none; /* Hidden on mobile, show on desktop */
}

.btn-whatsapp-header {
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 4px;
    display: none; /* Hidden on mobile, show on desktop */
}

.btn-enquire-header {
    background-color: #073327;
    color: var(--white);
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 999px;
    display: none;
}

.btn-enquire-header:hover {
    background-color: #062a20;
}

.btn-call-header:hover {
    background-color: #e0e0e0;
}

.btn-whatsapp-header:hover {
    background-color: #128C7E;
}

/* Mobile Toggle */
.mobile-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Desktop Responsiveness for Header */
@media (min-width: 992px) {
    .main-nav {
        display: block;
    }

    .builder-logos {
        display: flex;
        gap: 16px;
    }
    
    .btn-call-header, 
    .btn-whatsapp-header,
    .btn-enquire-header {
        display: inline-block;
    }
    
    .mobile-toggle {
        display: none;
    }

    .builder-logo {
        height: 68px;
        max-width: 340px;
    }
}

/* Mobile Menu Styles (Active State) */
.main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
}

.main-nav.active .nav-links {
    flex-direction: column;
    text-align: center;
}

/* Banner Slider Section */
.banner-section {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #f2efe7 0%, #f7f5ef 50%, #f2efe7 100%);
    margin-top: var(--header-offset);
    padding: 34px 0 44px;
}

.banner-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.hero-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 22px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px dashed rgba(11, 43, 34, 0.25);
    color: #0b2b22;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-size: 0.72rem;
}

.hero-title {
    margin-top: 14px;
    font-size: 2rem;
    line-height: 1.15;
    color: #0b2b22;
}

.hero-title-sm {
    font-size: 1.6rem;
}

.hero-subtitle {
    margin-top: 6px;
    color: #5b6b64;
    font-weight: 600;
}

.hero-meta {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    color: #1f2d28;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-meta-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-meta-item i {
    color: #c9950d;
}

.hero-offer-box {
    margin-top: 16px;
    background: linear-gradient(180deg, rgba(201, 149, 13, 0.28) 0%, rgba(201, 149, 13, 0.18) 100%);
    border-radius: 14px;
    padding: 14px 14px 12px;
    border: 1px solid rgba(201, 149, 13, 0.35);
}

.hero-offer-title {
    font-weight: 800;
    color: #0b2b22;
    font-size: 0.78rem;
    letter-spacing: 0.6px;
}

.hero-offer-list {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
    color: #0b2b22;
    font-weight: 600;
}

.hero-offer-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.hero-offer-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0b2b22;
    font-weight: 900;
}

.hero-price {
    margin-top: 18px;
    text-align: center;
}

.hero-price-label {
    color: #5b6b64;
    font-weight: 600;
    font-size: 0.92rem;
}

.hero-price-value {
    margin-top: 6px;
    font-size: 2rem;
    font-weight: 900;
    color: #0b2b22;
}

.hero-btn {
    background-color: #c9950d;
    color: #0b2b22;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
}

.hero-btn:hover {
    background-color: #b7860b;
    transform: translateY(-1px);
}

.hero-btn-full {
    width: 100%;
    display: inline-block;
    margin-top: 18px;
}

.hero-media {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-highlights {
    margin-top: 14px;
    padding-left: 0;
    list-style: none;
}

.hero-highlights li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #1f2d28;
    font-weight: 600;
}

.hero-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a7a5f;
    font-weight: 900;
}

.hero-rera {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #5b6b64;
    text-align: center;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Banner Form Overlay Container */
.banner-overlay-container {
    position: relative;
    z-index: 20;
    padding: 20px 15px;
    display: flex;
    justify-content: center;
    pointer-events: none; /* Allow clicks to pass through to slider */
}

.banner-form-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 450px;
    text-align: center;
    border-top: 5px solid #800000; /* Accent border like reference */
    pointer-events: auto; /* Re-enable clicks for the form */
}

.form-header h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.highlight-text {
    color: #800000; /* Dark Red/Maroon like reference */
    font-weight: 800;
    text-transform: uppercase;
}

.sub-location {
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
}

.offer-box {
    border: 1px dashed var(--accent-color);
    padding: 10px;
    margin-bottom: 15px;
    background-color: #fff9f0;
    border-radius: 4px;
}

.offer-box ul {
    list-style: none;
    text-align: left;
    padding-left: 10px;
}

.offer-box li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.offer-box li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.config-title {
    color: #800000;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background-color: #f9f9f9;
}

.btn-block {
    width: 100%;
    font-size: 1.1rem;
    background-color: #800000; /* Match reference button color */
    color: white;
}

.btn-block:hover {
    background-color: #600000;
}

@media (min-width: 992px) {
    .banner-section {
        padding: 54px 0 64px;
    }

    .banner-hero {
        grid-template-columns: 1fr 1.25fr 1fr;
        gap: 22px;
    }

    .banner-slider {
        height: 520px;
    }
}

/* Overview Section */
.overview-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.section-title {
    color: #c9950d; /* Purple color like screenshot */
    font-size: 2rem;
    font-weight: 400; /* Regular weight */
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.overview-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: justify; /* Justified text */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlights Subsection */
.highlights-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.highlights-content {
    text-align: left;
    flex: 1;
}

.highlights-title {
    color: #c9950d;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
}

.highlights-list li::before {
    content: "✓"; /* Checkmark */
    position: absolute;
    left: 0;
    color: #c9950d;
    font-weight: bold;
    font-size: 1.2rem;
}

.highlights-image {
    flex: 1;
    width: 100%;
    border-radius: 20px; /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlights-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.highlights-image:hover img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .highlights-container {
        flex-direction: row;
        align-items: flex-start; /* Align top */
        gap: 50px;
    }

    .highlights-content {
        padding-top: 20px;
    }
}

/* Floor Plan Section */
.floor-plan-section {
    padding: 60px 0;
    background-color: #fffaf0; /* Light cream/beige background like screenshot */
    text-align: center;
}

.floor-plan-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.fp-card {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    flex: 1;
    max-width: 400px;
    margin: 0 auto;
}

.fp-card.featured {
    background: #4a4a4a; /* Dark background for featured card */
    color: white;
    box-shadow: 0 10px 30px rgba(128, 0, 128, 0.3); /* Purple glow */
    border: 2px solid #c9950d;
    transform: scale(1.05);
}

.fp-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f0f0f0;
}

.fp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

/* Blur effect on images */
.blur-effect {
    filter: blur(4px);
}

.fp-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background-color: var(--white);
    color: #333;
    font-weight: 700;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.fp-card.featured .fp-view-btn {
    background-color: #c9950d; /* Purple button for featured */
    color: white;
}

.fp-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #c9950d;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.fp-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: inherit;
}

.btn-large-download {
    background-color: #c9950d;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-large-download:hover {
    background-color: #600060;
}

@media (min-width: 992px) {
    .floor-plan-cards {
        flex-direction: row;
        align-items: center;
    }
    
    .fp-card {
        margin: 0;
    }
}

/* Highlights (Amenities) */
.highlights {
    padding: 60px 0;
    text-align: center;
    background-color: var(--light-gray);
}

.highlights h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2rem;
    text-transform: uppercase;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 20px;
}

.highlight-item {
    padding: 25px 15px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.highlight-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #c9950d; /* Highlight color on hover */
}

.highlight-item i {
    font-size: 2.5rem;
    color: #c9950d; /* Purple icons */
    margin-bottom: 15px;
}

.highlight-item p {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

@media (min-width: 576px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .highlights-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    }
}

/* Pricing */
.pricing {
    padding: 40px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.pricing h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 10px 0;
}

/* Gallery */
.gallery {
    padding: 60px 0;
    text-align: center;
    background-color: var(--light-gray);
    position: relative;
}

.gallery h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.gallery-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px; /* Space for arrows */
}

.gallery-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    height: 400px; /* Fixed height for consistency */
    border-radius: 20px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-slide img:hover {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #c9950d; /* Purple arrow background */
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.gallery-nav:hover {
    background-color: #600060;
}

.prev-gallery {
    left: 0;
}

.next-gallery {
    right: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 20px;
    z-index: 3001;
}

.prev-lightbox { left: 20px; }
.next-lightbox { right: 20px; }

@media (min-width: 768px) {
    .gallery-slide {
        min-width: 33.333%; /* Show 3 images on desktop */
        padding: 0 10px; /* Gap between images */
        height: 300px;
    }
}

/* Location */
.location {
    padding: 60px 0;
    text-align: center;
    background-color: var(--white);
}

.location h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2rem;
    text-transform: uppercase;
}

.location-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-map {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-details {
    width: 100%;
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
    text-align: left;
}

.accordion-header {
    background-color: #f9f9f9;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-header i:first-child {
    margin-right: 10px;
    color: #c9950d; /* Purple icons */
    width: 20px;
}

.accordion-header .arrow {
    transition: transform 0.3s ease;
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.accordion-content ul {
    list-style: none;
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

.accordion-content li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.accordion-content li::before {
    content: "•";
    color: #c9950d;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (min-width: 992px) {
    .location-content-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .location-map {
        width: 50%;
        height: 450px;
    }

    .location-details {
        width: 50%;
        height: 450px;
        overflow-y: auto; /* Scroll if content is too long */
        padding-right: 10px;
    }
    
    /* Custom scrollbar for desktop location details */
    .location-details::-webkit-scrollbar {
        width: 6px;
    }
    .location-details::-webkit-scrollbar-track {
        background: #f1f1f1; 
    }
    .location-details::-webkit-scrollbar-thumb {
        background: #ccc; 
        border-radius: 3px;
    }
    .location-details::-webkit-scrollbar-thumb:hover {
        background: #aaa; 
    }
}

/* Footer */
footer {
    background-color: #222;
    color: #aaa;
    padding: 30px 0 80px 0; /* Extra padding for sticky footer */
    text-align: center;
    font-size: 0.9rem;
}

.rera {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Legal Content Styles */
.legal-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
    margin-bottom: 40px;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.legal-content p, .legal-content ul {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 5px;
}

/* Sticky Footer CTA */
.sticky-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    display: flex;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.sticky-footer-cta .btn {
    flex: 1;
    border-radius: 0;
    padding: 15px;
    font-size: 1rem;
}

.btn-call {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-enquire {
    background-color: var(--accent-color);
    color: var(--white);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-image {
    display: none; /* Hidden on mobile by default */
    width: 50%;
    background-color: #eee;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-form-container {
    padding: 30px;
    width: 100%;
    text-align: center;
}

.modal-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
        height: 450px;
    }
    
    .modal-image {
        display: block;
    }
    
    .modal-form-container {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .pricing-cards {
        flex-direction: row;
        justify-content: center;
    }
    
    .pricing-card {
        flex: 1;
        max-width: 300px;
    }
    
    .sticky-footer-cta {
        display: none; /* Hide on desktop if desired, or keep it */
    }
    
    body {
        padding-bottom: 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
    }
}
