*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*
 * Custom Stylesheet for the Eldeco Landing Page
 * Based on the provided logo colors and screenshot layout.
 */

/* =====================================================================
 * 1. Color Palette & Typography
 * ===================================================================== */

:root {
    --primary-green: #00007C; /* Logo Green */
    --text-dark: #333;
    --text-light: #555;
    --bg-off-white: #F9F5EE; /* Light background from screenshot */
    --border-gold: #D4AF37; /* For subtle accents */
    --accent-blue: #00007C; /* Deep Blue from amenity icons / map title */
    --bg-light-custom: #F8F4EE; /* Light Beige/Off-White */
    --font-serif: 'Times New Roman', Times, serif; /* Approximation of serif font */
}


body {
    font-family: Arial, sans-serif; /* Fallback font */
    color: var(--text-dark);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--text-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Custom Primary Button */
.btn-primary-custom {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary-custom:hover {
    background-color: #00662c; /* Slightly darker green */
    border-color: #00662c;
    color: white;
}

/* =====================================================================
 * 2. Layout & Structure
 * ===================================================================== */

/* Background for light sections */
.bg-light-custom {
    background-color: var(--bg-off-white);
}

.section-padding {
    padding: 4rem 0;
}

/* =====================================================================
 * 3. Hero Section Specific Styling
 * ===================================================================== */

/* ... (existing hero section styles) ... */

/* Style for #THE_WOW_LIFE */
.wow-life-title {
    font-family: var(--font-serif); /* Use a more elegant font */
    font-size: 4.5rem; /* Large font size */
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Add some shadow for contrast */
    color: #DAF4F5; /* A light blue/aqua color from the feather or a contrasting light color */
    /* If the original feather has a specific blue, use that here. E.g., #36A7B2 */
}

/* Style for Location Tagline */
.wow-life-subtitle {
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    color: #F0F8FF; /* Off-white for contrast */
}

.location-underline {
    position: relative;
    padding-bottom: 5px; /* Space for the underline */
}

.location-underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px; /* Thickness of the underline */
    background-color: #F0F8FF; /* Color of the underline */
    width: 100%;
}

/* Price card on the left - Adjust text color for better contrast on hero background */
.price-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem; /* Slightly more padding */
    color: var(--text-dark);
    margin-bottom: 1rem;
    border: 1px solid var(--border-gold);
    /* Make price card text slightly more prominent */
    font-size: 1.1rem;
    line-height: 1.2;
}
.price-card h2 { /* The "Starting From" text */
    font-size: 1.75rem !important; /* Adjust if too big */
    margin-bottom: 0.5rem !important;
}
.price-card p.display-5 { /* The actual price */
    font-size: 2.5rem !important; /* Adjust if too big */
    line-height: 1;
}


/* =====================================================================
 * PREMIUM PRICE CARD STYLING (New)
 * ===================================================================== */

/* Base Premium Look */
.price-card-premium {
    /* Override standard card to make it pop */
    background: #ffffff; /* Pure white background */
    border: 3px solid var(--border-gold); /* Thicker, premium gold border */
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); /* Stronger shadow */
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect (Desktop) */
.price-card-premium:hover {
    transform: scale(1.05); /* Slightly lift the card on hover */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

/* Inner Text Styling */
.price-card-premium p.h4 {
    color: var(--text-dark);
    font-size: 1.35rem; /* Slightly larger text */
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem !important;
}

.price-card-premium h2 {
    color: var(--text-light); /* Less prominent color for "Starting From" */
    font-size: 1.5rem !important; /* Smaller size to highlight the price */
    font-weight: 500 !important;
}

.price-card-premium p.display-5 {
    /* The most important part: The Price */
    color: var(--primary-green) !important; /* Use primary theme color */
    font-size: 3.5rem !important; /* Make the price huge */
    font-weight: 900 !important;
    line-height: 1.1;
}

/* =====================================================================
 * CSS ANIMATION: Subtle Pulse (to draw immediate attention)
 * ===================================================================== */

@keyframes subtle-pulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); }
    50% { transform: scale(1.01); box-shadow: 0 0 30px rgba(0, 0, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); }
}

.price-card-premium {
    /* Apply the animation */
    animation: subtle-pulse 3s infinite alternate ease-in-out;
}

/* =====================================================================
 * Media Query Adjustments
 * ===================================================================== */

@media (max-width: 767.98px) {
    .price-card-premium {
        /* Disable animation on mobile to save resources and avoid distraction */
        animation: none;
    }
    .price-card-premium p.display-5 {
        font-size: 2.5rem !important;
    }
    .price-card-premium p.h4 {
        font-size: 1.1rem;
    }
}

/* =====================================================================
 * 5. Media Queries for Responsiveness (Adjust hero text for small screens)
 * ===================================================================== */

@media (max-width: 767.98px) {
    /* ... (existing media query rules) ... */

    .hero-text-col {
        /* Ensure text is always centered on small screens, even with text-md-start */
        text-align: center !important;
        margin-bottom: 2rem;
    }

    .wow-life-title {
        font-size: 2.5rem; /* Smaller font size for mobile */
    }

    .wow-life-subtitle {
        font-size: 1rem; /* Smaller font size for mobile */
    }

    .price-card {
        padding: 1rem;
        font-size: 1rem;
    }
    .price-card h2 {
        font-size: 1.5rem !important;
    }
    .price-card p.display-5 {
        font-size: 2rem !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    /* Adjust for tablet views if needed */
    .wow-life-title {
        font-size: 3.5rem;
    }
}

/* =====================================================================
 * 3. Hero Section Specific Styling
 * ===================================================================== */

/* Set Z-index and ensure spacing for the FIXED NAV BAR */
.navbar {
    z-index: 1030; /* Higher than other content, lower than modals */
}


/* =====================================================================
 * 5. Media Queries for Responsiveness (Add Navbar specific rules)
 * ===================================================================== */

@media (max-width: 767.98px) {
    /* Existing rules... */
    .section-padding {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
    /* Hide the navbar links when collapsed, otherwise they are full width */
    .navbar-collapse {
        background-color: white; /* Give background color to the opened menu */
        padding: 1rem;
        border-top: 1px solid var(--bg-off-white);
    }
    .nav-link {
        padding-left: 0.5rem !important;
    }
    /* Force the Enquire button to be full width inside the collapsed menu */
    .btn-primary-custom.w-100.w-md-auto {
        width: 100% !important;
        margin-top: 1rem !important;
    }
}


/* =====================================================================
 * 3. Hero Section Specific Styling
 * ===================================================================== */

.hero-section {
    background: url('images/hero-bg.webp') no-repeat center center/cover;
    height: 100vh; /* Full viewport height or adjust as needed */
    position: relative;
    color: white;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 18vh; /* Adjust spacing */
}

.hero-form-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
}

@media (max-width: 767.98px) {
    .hero-section {
        /* On small screens, use min-height instead of fixed 100vh */
        /* This lets the section shrink if the content is small, 
           but ensures a minimum size */
        height: auto; 
        min-height: 80vh; 
        padding-top: 70px; /* Still need to account for the fixed header */
    }
}

/* Price card on the left */
.price-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    border: 1px solid var(--border-gold);
}

/* =====================================================================
 * 4. Content Sections Styling
 * ===================================================================== */

/* Introductory Text Block */
.intro-block {
    text-align: center;
    max-width: 800px;
    margin: auto;
}
.intro-block h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Highlights Cards */
.highlight-card {
    text-align: center;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
}
.highlight-card h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
}
.highlight-card p {
    color: var(--text-light);
}

/* Payment Plans & Gallery */
.plan-item, .gallery-item {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-light);
}
.plan-item i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

/* =====================================================================
 * 5. GALLERY SECTION STYLING
 * ===================================================================== */

/* Gallery Section Title (Using Deep Blue/Serif font for elegance) */
.gallery-title-custom {
    font-family: var(--font-serif);
    font-size: 3rem; 
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Individual Gallery Item Box */
.gallery-item {
    position: relative;
    overflow: hidden; /* Important for the hover effect */
    border-radius: 8px; /* Soft rounded corners */
}

/* Image inside the box */
.gallery-item img {
    display: block;
    width: 100%;
    /* Set a consistent height or let them be natural. Using object-fit for covering. */
    height: 100%; 
    object-fit: cover;
}


/* Ensure images in the first row are taller for the masonry effect on desktop */
@media (min-width: 992px) {
    .row > .col-lg-6 .gallery-item img {
        height: 450px; /* Taller height for the main visual items */
    }
    .row > .col-lg-3 .gallery-item img {
        height: 250px; /* Shorter height for the detail/interior items */
    }
}

@media (max-width: 991.98px) {
    /* Set a medium, consistent height for all items on mobile/tablet */
    .gallery-item img {
        height: 220px;
    }
}

/* =====================================================================
 * 4. Content Sections Styling
 * ===================================================================== */

/* --- GENERAL THEME COLORS --- */
/* Ensure you have these variables defined near the top of your CSS: */


/* Amenities Section Title (Themed Blue) */
.amenities-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-green); /* Deep Blue/Navy for the main heading */
    margin-bottom: 0.5rem; /* Reduced margin since we added a subtitle */
}

/* Features & Amenities Boxes */
.feature-box {
    text-align: center;
    padding: 1.25rem 0.5rem; /* Increased vertical padding for space */
    border: none; /* Removed thin border */
    margin-bottom: 0.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: white; /* Clean white box for contrast on beige background */
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Soft, subtle shadow */
}

/* Attractive Hover Effect (Green Accent) */
.feature-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-bottom: 3px solid var(--primary-green); /* Bold underline effect on hover */
}

/* Icon Styling (Themed Blue) */
.feature-box i {
    font-size: 3rem; 
    color: var(--primary-green); /* Deep Blue for the icons */
    margin-bottom: 0.5rem;
    height: 50px;
}
.feature-box:hover i {
    color: var(--accent-blue); /* Eldeco Green on hover */
}

/* Text Styling */
.feature-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.2;
    font-weight: 600; /* Bolder text for readability */
    color: var(--text-dark);
}

/* =====================================================================
 * 5. Media Queries for Responsiveness
 * ===================================================================== */

@media (max-width: 767.98px) {
    /* ... (existing media query rules) ... */
    .amenities-title {
        font-size: 2rem;
    }
    .feature-box i {
        font-size: 2.25rem;
    }
    .feature-box p {
        font-size: 0.8rem;
    }
}


/* Location Map Title Styling (Matches the image's "LOCATION MAP" style) */
.location-title-custom {
    font-family: var(--font-serif);
    font-size: 3rem; /* Larger for impact */
    font-weight: 700;
    color: var(--primary-green); /* Deep blue for the title */
    letter-spacing: 2px;
    position: relative;
    display: inline-block; /* To allow pseudo-elements if needed */
}
/* Optional: Add the feather icon beside the title if you want */
.location-title-custom::after {
    /* content: url('../images/feather-icon-small.webp'); */ /* You'd need a smaller feather image */
    /* position: absolute; */
    /* top: -10px; */
    /* right: -40px; */
}


/* Distances From Heading */
.distance-heading {
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 2rem;
}

/* Distance List Styling */
.distance-list {
    list-style: none; /* Remove default bullet points */
    padding-left: 0;
    line-height: 1.8; /* More space between items */
}
.distance-list li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex; /* For icon alignment */
    align-items: flex-start;
}
.distance-list li i {
    color: var(--primary-green); /* Green for the map pin icons */
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0; /* Prevent icon from shrinking */
    padding-top: 3px; /* Align icon better with text */
}
.distance-list li .distance-value {
    font-weight: 600; /* Make the distance stand out */
    color: var(--accent-blue); /* Optional: use blue for numbers */
}


/* =====================================================================
 * 5. Media Queries for Responsiveness
 * ===================================================================== */

@media (max-width: 767.98px) {
    /* ... (existing media query rules) ... */
    .location-title-custom {
        font-size: 2.2rem; /* Smaller on mobile */
    }
    .distance-heading {
        font-size: 1.8rem;
    }
    .distance-list li {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    font-size: 0.9rem;
}
footer a {
    color: white;
    text-decoration: none;
}

/* =====================================================================
 * 5. Media Queries for Responsiveness
 * ===================================================================== */

@media (max-width: 767.98px) {
    .section-padding {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-content {
        padding-top: 5vh;
    }
    .hero-text-col {
        text-align: center;
        margin-bottom: 2rem;
    }
    .highlight-card, .feature-box {
        margin-bottom: 1rem;
    }
}
/* =====================================================================
 * 8. FIXED MOBILE CTA FOOTER STYLING
 * ===================================================================== */

/* Base container styling */
.mobile-cta-footer {
    /* The d-md-none class hides it on desktop, but we add more styles */
    z-index: 1040; /* Higher than navbar (1030) to ensure it's always on top */
    background-color: #008037; /* Eldeco Green (Ensure this matches your --primary-green) */
    width: 100%;
    /* Subtle border top */
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

/* Individual CTA link styling */
.mobile-cta-footer .cta-link {
    display: block;
    text-align: center;
    padding: 10px 5px; /* Adjust padding for height */
    text-decoration: none;
    color: white; /* White icons and text */
    font-size: 0.7rem; /* Smaller text for mobile */
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s;
    line-height: 1.2;
}

/* Icon styling */
.mobile-cta-footer .cta-link i {
    display: block; /* Puts icon on top of text */
    font-size: 1.5rem;
    margin-bottom: 3px;
}

/* Color and background for individual actions (optional - keeps it green) */
.mobile-cta-footer .tap-to-call {
    /* Example: Slightly darker green for the first button */
    background-color: #007030; 
}

.mobile-cta-footer .enquire-now {
    /* Primary green for the middle (main action) */
    background-color: var(--primary-green);
}

.mobile-cta-footer .whatsapp-chat {
    /* Slightly lighter/more vibrant green for WhatsApp */
    background-color: #00a854; 
}

/* Hide on larger screens using a Media Query (redundant due to d-md-none, but good practice) */
@media (min-width: 768px) {
    .mobile-cta-footer {
        display: none !important;
    }
}
.textured-bg-section {
    position: relative; /* Essential for positioning the pseudo-element */
    z-index: 1;      /* Ensure content stays above the background */
    background-color: #f8f9fa; /* Fallback color for the background area */
}

/* Pseudo-element to hold the background image and control opacity */
.textured-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Image Properties */
    background-image: url('images/benner_2.webp');
    background-repeat: repeat;
    background-size: cover;
    background-position: center; /* Use the tile size you determined */
    
    /* OPACITY CONTROL */
    opacity: 0.6; 
    
    /* Ensure the pseudo-element is behind the content */
    z-index: -1; 
}

/* Ensure all text/content elements have z-index to stay above the background */
.textured-bg-section .container,
.textured-bg-section .section-title,
.textured-bg-section p {
    position: relative; /* Crucial to establish a new stacking context */
    z-index: 2;         /* Must be higher than the pseudo-element (z-index: -1) */
}
.swiper-pagination-bullet-active
{
    background-color: var(--primary-green);
}
.floor-plan-card img
{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.floor-plan-card .floor-plan-card-content
{
    background-color: var(--primary-green);
}
.row-gap
{
    row-gap: 20px;
}
.location-card i
{
    background-color: var(--primary-green);
    color: #fff;
    height: 65px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 15px;
}