@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --primary: #0F6A3C;
    --secondary: #F4B400;
    --background: #FAFAF7;
    --card-white: #FFFFFF;
    --text-dark: #1F1F1F;
    --text-muted: #666;
    --border: rgba(15, 106, 60, 0.1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --max-width: 1280px;
    --section-spacing: 96px;
    --card-radius: 20px;
    --button-radius: 999px;
    --image-radius: 18px;
    --transition: 200ms ease;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--background);
    line-height: 1.6;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    padding: 0 10%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    color: #222;
    font-weight: 700;
}


h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.3rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 0.95rem;
}

h6 {
    font-size: 0.85rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    text-transform: none;
}

.separator-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-btn);
    margin: 15px auto;
    border-radius: 2px;
}

/* Secondary Button - Custom Blue Theme */
.btn-secondary {
    background: var(--gradient-brand);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 5px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 153, 227, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-blue-medium) 0%, var(--primary-blue) 100%);
    box-shadow: 0 6px 20px rgba(5, 153, 227, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-secondary {
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    background-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 5px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: var(--gradient-btn);
    border-color: var(--primary-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(250, 145, 20, 0.3);
    transform: translateY(-2px);
}

.btn {
    font-family: var(--font-body);
}

a {
    text-decoration: none !important;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

a:hover {
    color: var(--primary-orange);
    text-decoration: none !important;
}

/* Ensure all anchor tags have no decoration */
a:link,
a:visited,
a:active,
a:focus {
    text-decoration: none !important;
}

/* Remove underline from all links in specific contexts */
footer a,
.nav-link a,
.btn a,
.card a,
.alert a {
    text-decoration: none !important;
}

footer a:hover,
.nav-link a:hover,
.btn a:hover,
.card a:hover,
.alert a:hover {
    text-decoration: none !important;
}

/* Helper Classes - Brand Theme */
.text-primary {
    color: var(--primary-blue) !important;
}

.text-accent {
    color: var(--primary-orange) !important;
}

.text-secondary {
    color: var(--secondary-orange) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.bg-primary {
    background-color: var(--primary-blue) !important;
}

.bg-accent {
    background-color: var(--primary-orange) !important;
}

.bg-light {
    background-color: var(--section-bg) !important;
}

.bg-brand-light {
    background-color: var(--primary-blue-light) !important;
}

.bg-accent-light {
    background-color: var(--primary-orange-light) !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Buttons - Brand Theme */
.btn-primary {
    background: var(--gradient-btn);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 5px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(250, 145, 20, 0.3);
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--gradient-btn-hover);
    box-shadow: 0 6px 20px rgba(250, 145, 20, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(250, 145, 20, 0.3);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    background-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 5px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-brand);
    border-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 15px rgba(4, 34, 214, 0.3);
    transform: translateY(-2px);
}

/* Top Bar - Brand Theme */
.top-bar {
    background: #091A2C;
    color: #ffffff;
    font-size: 0.75rem;
    padding: 4px 0;
    border-bottom: none;
}

.bi bi-envelope-fill {
    color: #B8864A;
}

.bi-facebook::before {
    color: #ffffff;
}

.bi-twitter::before {
    color: #ffffff;
}

.bi-instagram::before {
    color: #ffffff;
}

.bi-linkedin::before {
    color: #ffffff;
}

.top-bar i {
    color: var(--primary-orange) !important;
}

.top-bar a {
    color: #ffffff;
    outline: none;
}

.top-bar a:hover {
    color: var(--primary-orange);
}

.top-bar a:focus {
    outline: none;
    box-shadow: none;
}

.container {
    max-width: 1400px;
}

/* Navbar - Dark Theme */


.tour-btn {
    background: #D4A23A;
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(212, 162, 58, .25);
}

/* .tour-btn {
    margin-left: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 6px;
    background: #f89a1c;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    transition: all .3s ease;
} */

.tour-btn:hover {
    transform: translateY(-2px);
    background: #bf8f2f;
    color: #fff !important;
}

/* .tour-btn:hover {
    background: #ffab2d;
    color: #fff;
    transform: translateY(-2px);
} */

/* Remove focus outline from all links */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-brand img {
    height: 85px;
    width: auto;
    transition: .3s;
}



.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;

    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #D4A23A !important;
}


.nav-link.active {
    color: var(--primary-orange) !important;
    background-color: transparent;
}

.navbar-cta {
    background: var(--gradient-btn);
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 30px;
    transition: all 0.3s ease;
}

.navbar-cta:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
    color: #fff !important;
}

.navbar-cta::after {
    display: none;
}

@media(max-width:991px) {

   /* Mobile Navbar Gradient */
    .navbar {
        background: linear-gradient(
            90deg,
            #1B5E20 0%,
            #ddeed9 45%,
            #ddeed9 22%,
            #1B5E20 100%
        ) !important;
        border-bottom: none !important;
    }

    .navbar-brand img {
        height: 70px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 10px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        border-top: none !important;
    }

    /* Remove yellow line from nav links on mobile */
    .nav-link::after {
        display: none !important;
    }

    /* Mobile profile button styling */
    .dropdown button.btn-success {
        background: linear-gradient(135deg, #0F6A3C 0%, #0A4D2D 100%) !important;
        padding: 2px 10px !important;
        font-size: 0.85rem !important;
        box-shadow: 0 2px 6px rgba(15, 106, 60, 0.25) !important;
    }

    .dropdown button.btn-success img {
        width: 27px !important;
        height: 27px !important;
        border: 2px solid rgba(255, 255, 255, 0.8) !important;
    }

    .dropdown button.btn-success span {
        font-size: 0.85rem !important;
    }

    /* Improve mobile menu spacing */
    .navbar-nav {
        gap: 0.5rem !important;
    }

    .nav-link {
        padding: 10px 16px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

}

/* Hero Section - New Design */
.hero-section {
    position: relative;
    min-height: 55vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
    padding: 100px 0 80px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(8, 26, 45, .82) 0%,
            rgba(8, 26, 45, .55) 40%,
            rgba(8, 26, 45, .08) 100%);

    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 88px;
    font-weight: 800;
    line-height: .95;
    letter-spacing: -3px;
    color: #fff;
    max-width: 820px;
    margin-bottom: 28px;
}

.hero-tag {
    display: inline-block;

    background: rgba(212, 162, 76, .15);

    color: #D4A24C;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 25px;
}

.hero-subheadings {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-subheadings ul {
    list-style: none;
    padding: 0;
}

.hero-subheadings li {
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
}

.hero-subheadings li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.3rem;
}

.hero-buttons {
    display: flex;
    /* flex-direction: column; */
    gap: 20px;
    flex-wrap: nowrap;
}

.hero-buttons .btn {
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: none;

}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-search-bar {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Inner Hero Section for Pages */
.inner-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .75) 0%,
            rgba(0, 0, 0, .45) 50%,
            rgba(0, 0, 0, .65) 100%);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.inner-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .5);
    color: #ffffff;
    letter-spacing: 1px;
    transform: perspective(500px) rotateX(5deg);
}

@media (max-width:768px) {

    .inner-hero-title {
        transform: none !important;
        letter-spacing: 0 !important;
    }

}

.inner-hero-quote {
    font-size: 1.15rem;
    font-style: italic;
    opacity: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, .9);
    max-width: 700px;
    margin: 0 auto;
}

/* Carousel indicators with brand colors */
.carousel-indicators [data-bs-target] {
    background-color: var(--primary-orange);
    height: 4px;
    border-radius: 2px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators .active [data-bs-target] {
    background-color: var(--primary-blue);
    opacity: 1;
}

/*trust row */
.hero-trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;

    margin-top: 35px;

    color: #fff;

    font-size: 15px;

    font-weight: 500;
}

/* Value Proposition Cards - Premium Theme */
.value-prop-card {
    min-height: 220px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(30, 115, 190, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(30, 115, 190, 0.1);
    padding: 20px 15px;
}

.value-prop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 115, 190, 0.15);
    border-color: var(--primary-orange);
}

.value-prop-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-prop-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Icon styling with brand colors */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.icon-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.icon-circle i {
    font-size: 1.5rem;
    color: white;
}

/* Property Cards - Premium Theme */
.property-card {
    border: none;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.1);
    transition: all 0.4s ease;
    background: #fff;
    overflow: hidden;
    border: 1px solid rgba(30, 115, 190, 0.1);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(30, 115, 190, 0.18);
    border-color: var(--primary-orange);
}

.property-card .card-img-top {
    border-bottom: 3px solid var(--primary-orange);
    transition: transform 0.4s ease;
}

.property-card:hover .card-img-top {
    transform: scale(1.05);
}

.property-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.property-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Featured Scroll Container - Brand Theme */
.featured-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.featured-scroll-container::-webkit-scrollbar-track {
    background: var(--primary-blue-light);
    border-radius: 4px;
}

.featured-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

.featured-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-orange);
}

/* Lifestyle Section - Custom Blue Theme */
.lifestyle-item {
    overflow: hidden;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(5, 153, 227, 0.1);
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, var(--primary-blue), transparent);
    color: #fff;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.lifestyle-item:hover .lifestyle-overlay {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(to top, var(--primary-orange), transparent);
}

.lifestyle-item:hover img {
    transform: scale(1.1);
    transition: transform 6s ease;
}

/* Footer - Dark Premium Theme */
/* footer {
    background: var(--gradient-dark);
    color: #e0e0e0;
    padding-top: 80px;
    border-top: 4px solid var(--primary-orange);
}

footer h5 {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

footer ul li {
    margin-bottom: 12px;
}

footer a {
    color: #e0e0e0;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
    text-decoration: none;
}

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    background: var(--primary-orange);
    color: #ffffff;
    padding-left: 0;
}

.copyright-bar {
    background-color: #111827;
    padding: 25px 0;
    margin-top: 50px;
    color: #a0a0a0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
} */

footer:not(.site-footer) {
    background: linear-gradient(90deg,
            #081a2d 0%,
            #0c2742 50%,
            #081a2d 100%);
    color: #fff;
    padding-top: 70px;
    border-top: none;
}

footer:not(.site-footer) h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: sans-serif;

}

.footer-desc {
    color: #d7dde7;
    line-height: 2;
    font-size: 15px;
}

footer:not(.site-footer) .footer-links li {
    margin-bottom: 14px;
}

footer:not(.site-footer) .footer-links a {
    color: #d7dde7;
    padding-left: 0 !important;
}

footer:not(.site-footer) .footer-links a:hover {
    color: #fff;
}

.contact-list li {
    margin-bottom: 18px;
    color: #d7dde7;
}

.contact-list i {
    margin-right: 12px;
    color: #fff;
}

.newsletter-box {
    display: flex;
}

.newsletter-box input {
    flex: 1;
    border: none;
    background: #112d49;
    color: #fff;
    padding: 14px;
}

.newsletter-box button {
    width: 60px;
    border: none;
    background: #f89a1c;
    color: #fff;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: none !important;
    font-size: 22px;
}

footer .social-icons a {
    margin-right: 18px;
}

.copyright-bar {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: transparent;
}

.copyright-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Sticky CTA - Premium Theme */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cloud-white) 0%, var(--primary-blue-light) 100%);
    padding: 15px 40px;
    border-radius: 50px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(30, 115, 190, 0.25);
    border: 2px solid var(--primary-orange);
    animation: fadeInUp 0.5s ease-out;
}

.sticky-text {
    margin-bottom: 0;
    font-weight: bold;
    color: var(--primary-blue);
}

/* Forms - Premium Theme */
.form-control {
    border: 2px solid rgba(30, 115, 190, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background-color: var(--cloud-white);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 115, 190, 0.25);
    background-color: var(--cloud-white);
}

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.form-select {
    border: 2px solid rgba(30, 115, 190, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 115, 190, 0.25);
}

/* Alerts - Brand Theme */
.alert {
    border-radius: 8px;
    border: none;
    font-weight: 500;
}

.alert-primary {
    background-color: var(--primary-blue-light);
    color: var(--primary-blue);
    border-left: 4px solid var(--primary-blue);
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border-left: 4px solid #27ae60;
}

.alert-warning {
    background-color: var(--primary-orange-light);
    color: var(--primary-orange);
    border-left: 4px solid var(--primary-orange);
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-left: 4px solid #e74c3c;
}

/* Card enhancements - Premium Theme */
.card {
    border: 1px solid rgba(30, 115, 190, 0.1);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.1);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--cloud-white) 100%);
    border-bottom: 2px solid var(--primary-orange);
    font-weight: 600;
    color: var(--primary-blue);
    border-radius: 14px 14px 0 0 !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus indicators for better accessibility */
.btn:focus,
.nav-link:focus,
.form-control:focus,
.form-select:focus,
a:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* High contrast mode support - Premium Theme */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #1E73BE;
        --primary-orange: #F7941D;
        --secondary-color: #000000;
        --text-color: #000000;
    }

    .btn-primary,
    .btn-secondary {
        border: 2px solid var(--cloud-white);
    }
}

/* New Section Styles */

/* Featured Lands Section */

.lands-section {
    padding: 70px 0;
    background: #fff;
}

.land-card {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    transition: .3s;
    height: 100%;
}

.land-card:hover {
    transform: translateY(-5px);
}

.land-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.land-card-body {
    padding: 18px;
}

.land-card-body h5 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.property-location {
    color: #7b8794;
    font-size: 15px;
    margin-bottom: 15px;
}

.property-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    color: #6b7280;
    font-size: 14px;
}

@media (max-width: 768px) {
    .property-meta {
        min-height: auto !important;
        height: auto !important;
        margin: 10px 0 !important;
    }
}

.property-meta i {
    color: #7b8794;
    margin-right: 4px;
}

.land-price {
    color: #ED8B39;
    font-size: 34px;
    font-weight: 700;
}

.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1E73BE;
    color: #fff;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 6px;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

/*
.lands-section {
    padding: 80px 0;
    background: #ffffff;
}

.land-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 115, 190, 0.1);
}

.land-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 115, 190, 0.2);
}

.land-card-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

.land-card:hover .land-card-img {
    transform: scale(1.05);
}

.land-card-body {
    padding: 20px;
}

.land-card-body h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.land-card-body p {
    font-size: 0.8rem;
    margin-bottom: 6px;
    line-height: 1.4;
}

.land-card-body i {
    font-size: 0.75rem;
}

.land-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-orange);
    background: rgba(231, 76, 60, 0.1);
    padding: 3px 10px;
    border-radius: 15px;
    display: inline-block;
}

.land-card .btn-primary {
    font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 15px;
    font-weight: 500;
} */

/* Property Categories Section */
.categories-section {
    padding: 80px 0;
    background: var(--section-bg);
}

.category-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.1);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    color: #fff;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Animated Counters Section */
.counters-section {
    padding: 60px 0;
    background: #081A2D;
    /* background: var(--gradient-brand); */
    color: #fff;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #D4A24C;
    /* color: #fff; */
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Land Investment Section */
.investment-section {
    padding: 50px 0;
    background: #ffffff;
}

.investment-section img {
    max-height: 350px;
    object-fit: cover;
}

.investment-section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.investment-section>.container>.row>.col-lg-6:last-child>p {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.investment-card {
    background: #fff;
    border-radius: 14px;
    padding: 15px 12px;
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 115, 190, 0.1);
    text-align: center;
}

.investment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 115, 190, 0.15);
    border-color: var(--primary-orange);
}

.investment-card h5 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.investment-card p {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0;
}

.investment-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.investment-card:hover .investment-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Premium CTA Section */
.premium-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.premium-cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.premium-cta .btn-light {
    background: #fff;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
}

.premium-cta .btn-light:hover {
    background: var(--primary-orange);
    color: #fff;
}

.screenshot-hover {
    color: #0d6efd !important;
}

.screenshot-hover::after {
    width: 100%;
}

/* Testimonial Cards - Modern */
.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 55px 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    border: none;
}

.testimonial-card p {
    font-size: 20px;
    line-height: 1.8;
    color: #475569;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-orange);
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .sticky-cta {
        width: 90%;
        justify-content: center;
        padding: 12px 20px;
        bottom: 20px;
    }
}

/* SEARCH BAR

.property-search-section {
    position: relative;
    margin-top: -70px;
    z-index: 100;
}

.search-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 320px;
    align-items: center;
}

.search-item {
    padding: 0 25px;
    border-right: 1px solid #eee;
}

.search-item label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.search-item input,
.search-item select {
    border: none;
    width: 100%;
    color: #666;
    background: none;
}

.search-btn {
    width: 100%;
    border: none;
    background: #ED8B39;
    color: #fff;
    font-weight: 700;
    padding: 18px;
    border-radius: 8px;
} */

/* FEATURES */

.features-section {
    margin-top: -90px;
    position: relative;
    z-index: 20;
}

.fa-handshake {
    font-size: 30px;
    color: #1E73BE;
}

.features-grid {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.feature-item {
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-right: 1px solid #f0f0f0;
    transition: .35s ease;
    background: #fff;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25px;
    /* upar gap */
    bottom: 25px;
    /* niche gap */
    width: 1px;
    background: #eee;
}

.feature-item:hover {
    transform: translateY(-6px);
    background: #faf8f3;
}

.icon-box {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FAF8F3;

    border: 1px solid #E6D8B8;

    font-size: 34px;
}

.feature-item .icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item .icon-box i {
    font-size: 24px;
    color: #0b2341;
}

.icon-box i {
    font-size: 30px;
    color: #1E73BE;
}

.feature-item h4 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}


.property-showcase {
    background: #fff;
}

.showcase-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.showcase-title::after {
    width: 70px;
    height: 4px;
    background: #D4A24C;
}

.title-line {
    width: 45px;
    height: 3px;
    background: #ED8B39;
    margin-top: 8px;
}

.view-all-btn {
    border: 1px solid #d9e2ec;
    padding: 10px 22px;
    color: #1E73BE;
    font-weight: 600;
    border-radius: 6px;
}

.property-card-custom {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card-custom img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h5 {
    font-size: 22px;
    margin-bottom: 8px;
    min-height: 60px;
    line-height: 1.3;
}

.card-content p {
    color: #777;
    margin-bottom: 15px;
}

.price {
    color: #ED8B39;
    font-size: 30px;
    font-weight: 700;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
}

.card-image-wrapper {
    position: relative;
}

.card-image-wrapper img {
    height: 320px;

    width: 100%;

    object-fit: cover;

    transition: .4s;
}

.property-card-custom {
    border-radius: 24px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .08);

    transition: .35s;
}

.property-card-custom:hover {
    transform: translateY(-8px);
}

.property-card-custom:hover img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0F5132;
    color: #fff;
    border-radius: 30px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

/* .wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    z-index: 2;
} */

/* .wishlist-icon i {
    color: #6b7280;
    font-size: 18px;
} */

.custom-arrow {
    width: 48px !important;
    height: 48px !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px;
    opacity: 1 !important;
    top: 42%;
}

.custom-arrow i {
    color: #1E73BE;
    font-size: 22px;
}

.carousel-control-prev.custom-arrow {
    left: -30px;
}

.carousel-control-next.custom-arrow {
    right: -30px;
}

@media (max-width: 768px) {

    .carousel-control-prev.custom-arrow {
        left: 10px !important;
    }

    .carousel-control-next.custom-arrow {
        right: 10px !important;
    }

}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
}

.carousel-indicators {
    gap: 10px;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    border: 2px solid #1E73BE !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.carousel-indicators button.active {
    background-color: #1E73BE !important;
    border-color: #1E73BE !important;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #fff !important;
    opacity: 1 !important;
}

.carousel-indicators button.active {
    background: #1E73BE !important;
}

.lifestyle-section {
    background: #fff;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b1736;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title-line {
    width: 70px;
    height: 4px;
    background: #d4a24c;
    border-radius: 20px;
}

.lifestyle-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 380px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.lifestyle-card:hover img {
    transform: scale(1.08);
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .15));
}

.lifestyle-content {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;

    display: flex;
    align-items: center;
    gap: 22px;
    z-index: 2;
}

.icon-box {
    width: 110px;
    height: 110px;
    min-width: 110px;

    background: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.icon-box i {
    font-size: 42px;
    color: #0f2b47;
}

.content-text h4 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
}

.content-text p {
    color: #fff;
    font-size: 22px;
    margin: 0;
    max-width: 420px;
    line-height: 1.5;
}

@media (max-width:768px) {

    .lifestyle-content {
        left: 20px !important;
        right: 20px !important;
        gap: 15px !important;
    }

    .icon-box {
        width: 75px !important;
        height: 75px !important;
        min-width: 75px !important;
    }

    .icon-box i {
        font-size: 30px !important;
    }

    .content-text h4 {
        font-size: 28px !important;
        line-height: 1.15 !important;
    }

    .content-text p {
        font-size: 18px !important;
        line-height: 1.4 !important;
        max-width: none !important;
    }

}

.testimonial-box {
    background: #F5F8FD;
    padding: 70px 60px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.testimonial-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f2b47;
    margin-bottom: 10px;
}

.testimonial-content {
    max-width: 700px;
    margin: auto;
}

.quote-icon {
    font-size: 40px;
    color: #d4a24c;
}

.testimonial-content p {
    font-size: 22px;
    color: #444;
    line-height: 1.8;
}

.stars {
    color: #f7a21b;
    font-size: 26px;
    margin: 20px 0;
}

.testimonial-content h4 {
    font-weight: 700;
    color: #0f2b47;
}

.arrow-circle {
    width: 65px;
    height: 65px;
    background: #fff;
    border: 1px solid #dce7f3;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1E73BE;
    font-size: 28px;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
}


.cta-banner {
    padding: 40px 0 80px;
}

.cta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* button neeche aa jayega */
    gap: 40px;
}

.cta-text {
    flex: 1;
    min-width: 600px;
    /* adjust */
}

.cta-text p {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 2;
}

.cta-btn {
    flex-shrink: 0;

    background: #fff;
    color: #1E73BE;

    padding: 18px 35px;
    border-radius: 6px;

    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    top: 0px;
    right: 23rem;
}

.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    min-height: 280px;

    background:
        linear-gradient(90deg,
            #0075e8 0%,
            #1b87ef 45%,
            rgba(27, 135, 239, .25) 65%),
        url('/static/img/land_plot_banner_2.png');

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}


.cta-box h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    color: #fff;
    font-size: 22px;
    max-width: 500px;
    margin-bottom: 30px;
}

.cta-btn {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #fff;
    color: #1E73BE;

    padding: 18px 35px;

    border-radius: 6px;

    font-weight: 700;
    text-decoration: none;
}

.cta-btn:hover {
    color: #1E73BE;
}

.cta-house {
    max-height: 14rem;
    object-fit: contain;
}

/*feature*/
.location-chip {
    display: inline-block;

    font-size: 13px;

    color: #6b7280;

    margin-bottom: 12px;
}

.property-meta {
    display: flex;
    min-height: 65px;
    gap: 12px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.property-meta span {
    background: #F4F4F4;

    padding: 6px 12px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 600;
}

.price-row {
    display: flex;
    margin-top: auto;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.details-btn {
    background: #081A2D;

    color: #fff;

    padding: 10px 18px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 600;
}


.testimonial-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d8dde6;
}

.testimonial-slider .carousel-indicators .active {
    background: #1E73BE;
}

.testimonial-slider .carousel-control-prev,
.testimonial-slider .carousel-control-next {
    width: 60px;
}

.testimonial-slider .arrow-btn {
    width: 70px;
    height: 70px;
}

.testimonial-slider .carousel-indicators {
    position: relative;
    margin-top: 25px;
    margin-bottom: 0;
}

.testimonial-slider .carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: #d8dde6 !important;
    border: none !important;
    opacity: 1 !important;
    margin: 0 5px !important;
}

.testimonial-slider .carousel-indicators .active {
    background: #1E73BE !important;
}

.testimonial-slider .carousel-indicators {
    position: relative;
    margin-top: 20px;
    margin-bottom: 0;
}

.testimonial-slider .carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #dfe5ec !important;
    border: none !important;
    opacity: 1 !important;
    margin: 0 6px !important;
}

.testimonial-slider .carousel-indicators button.active {
    background: #1E73BE !important;
    box-shadow: 0 0 8px rgba(30, 115, 190, .35);
}


/*CTA */
.cta-section-farm {
    position: relative;

    padding: 100px 0;

    border-radius: 24px;

    overflow: hidden;

    margin: 80px auto;

    background-image: url("/static/images/land_plot_banner_2.png");

    background-size: cover;

    background-position: center;
}

.cta-overlay {
    position: absolute;

    inset: 0;

    background: rgba(8, 26, 45, .72);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: auto;
    color: #fff;
    padding: 70px 40px;
}

.cta-tag {
    display: inline-block;

    background: rgba(212, 162, 76, .15);

    color: #D4A24C;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 25px;
}

.cta-content h2 {
    font-size: 56px;

    color: #fff;

    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;

    line-height: 1.8;

    opacity: .9;

    max-width: 700px;

    margin: 0 auto 35px;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.cta-primary-btn {
    background: #D4A24C;

    color: #fff;

    padding: 16px 32px;

    border-radius: 12px;

    font-weight: 700;
}

.cta-primary-btn:hover {
    background: #C7943B;

    color: #fff;
}

.cta-secondary-btn {
    border: 1px solid rgba(255, 255, 255, .4);

    color: #fff;

    padding: 16px 32px;

    border-radius: 12px;
}

.cta-secondary-btn:hover {
    background: #fff;

    color: #081A2D;
}

/* WHY INVEST SECTION */

.why-invest-section {
    padding: 90px 0;
    background: #F8FAFC;
}

.section-tag {
    display: inline-block;

    background: rgba(212, 162, 76, .15);

    color: #D4A24C;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 700;
}

.section-subheading {
    max-width: 750px;

    margin: 20px auto 0;

    color: #64748B;

    line-height: 1.8;
}

.invest-card {
    background: #fff;
    border: none;
    border-radius: 28px;
    padding: 40px 30px;
    height: 100%;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

    transition: .35s;
}

.invest-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.invest-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 24px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 36px;

    background: #FAF8F3;

    border: 1px solid #E6D8B8;
}

.invest-card h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.invest-card p {
    color: #64748B;

    line-height: 1.8;

    margin: 0;
}

@media(max-width:768px) {

    .hero-headline {
        font-size: 42px;
    }


    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .invest-card {
        margin-bottom: 20px;
    }
}


.property-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1F2937;
}


/* ==========================
   BUY PAGE MOBILE FIX
========================== */

@media (max-width: 768px) {

    /* Filter Bar */
    .sticky-filter-bar {
        position: relative !important;
        top: auto !important;
    }

    .filter-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .filter-group {
        width: 100% !important;
    }

    .filter-group input,
    .filter-group select {
        width: 100% !important;
    }

    .clear-filters-btn {
        width: 100% !important;
    }

    .clear-filters-btn button {
        width: 100% !important;
    }

    /* Map + Listing */
    .buy-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
    }

    .map-section {
        width: 100% !important;
        height: 300px !important;
        position: relative !important;
    }

    .listing-section {
        width: 100% !important;
    }

    /* Listing Header */
    .listing-header h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .listing-controls {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .sort-control {
        width: 100% !important;
    }

    .sort-control select {
        width: 100% !important;
    }

    /* Property Card */
    .property-card {
        flex-direction: column !important;
    }

    .property-image-carousel {
        width: 100% !important;
    }

    .carousel-image {
        height: 240px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .property-info {
        padding: 16px !important;
    }

    .property-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .property-price {
        font-size: 24px !important;
    }

    /* Details */
    .property-details {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .detail-item {
        width: 100% !important;
    }

    /* Buttons */
    .property-actions {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .action-btn {
        flex: 1 1 calc(50% - 5px) !important;
        text-align: center !important;
    }

    .action-btn-primary {
        flex: 1 1 100% !important;
    }

    /* Pagination */
    .pagination-wrapper {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

}

/* ---- HeyDay Redesign Styles ---- */

/* Topbar */
.topbar {
    background: var(--forest);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 8px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.topbar .social {
    display: flex;
    gap: 14px;
}

/* Nav */
nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(27, 67, 50, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--emerald), var(--mid));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--forest);
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--mid);
    font-weight: 500;
    text-transform: uppercase;
}

.nav-links a {
    padding: 8px 14px;
    color: var(--text-mid);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
}

.nav-links a:hover {
    background: var(--pale);
    color: var(--forest);
}

.nav-cta:hover {
    background: #d4931f;
    transform: translateY(-1px);
}

/* Hero */
.hero {
    min-height: 88vh;
    background: linear-gradient(160deg, rgba(13, 43, 29, 0.82) 0%, rgba(27, 67, 50, 0.65) 50%, rgba(45, 106, 79, 0.4) 100%),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1800&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 80px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cloud-white), transparent);
}

.hero-content {
    max-width: 620px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 0.8rem;
    gap: 8px;
    background: rgba(233, 166, 42, 0.2);
    border: 1px solid rgba(233, 166, 42, 0.4);
    color: #F5D78E;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

.hero-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;  
    border-radius: 50px;
    font-size: 13px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-primary:hover {
    background: var(--gold);
    color: var(--forest);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(233, 166, 42, 0.35);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #d4931f;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Trust Bar */
.trust-bar {
    top: 3rem;
    background: var(--cloud-white);
    padding: 0 48px;
    margin-top: -1px;
    position: relative;
    z-index: 10;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--cloud-white);
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(27, 67, 50, 0.12);
    transform: translateY(-40px);
    border: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 28px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: var(--mint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trust-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--forest);
    margin-bottom: 4px;
}

.trust-desc {
    font-size: 12px;
    color: var(--text-muted);
}


/* Shared Section Styles */
/* section { padding: 88px 48px; } */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: #062916;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
    color: var(--text-muted);
}

.contact-block {
    background-color: var(--cloud-white);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all .3s;
}

/* Why Invest */
.invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-invest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.whycard {
    background: var(--cloud-white) !important;
}

.invest-card {
    background: var(--cloud-white);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: all .3s;
}

.invest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 67, 50, 0.1);
}

.invest-icon {
    width: 56px;
    height: 56px;
    background: var(--mint);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.invest-card h3 {
    font-weight: 600;
    font-size: 16px;
    color: var(--forest);
    margin-bottom: 10px;
}

.invest-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Featured Listings */
.listings {
    background: var(--cloud-white);
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.view-all {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-all:hover {
    gap: 10px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}




.listing-card {
    background: var(--cloud-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .3s;
    width: 13.8rem;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.12);
}

.listing-img-wrap img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.verified-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--emerald);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.listing-save {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.listing-body {
    padding: 22px;
}

.listing-loc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.listing-name {
    font-weight: 700;
    font-size: 17px;
    color: var(--forest);
    margin-bottom: 12px;
}

.listing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.tag {
    background: var(--pale);
    color: var(--text-mid);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
}

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

.listing-price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--emerald);
}

.btn-detail {
    background: var(--forest);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.btn-detail:hover {
    background: var(--emerald);
    color: white;
}

/* Investment Opportunities */
.invest-opp {
    background: var(--pale);
}

.invest-opp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opp-card {
    background: var(--cloud-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.opp-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.opp-body {
    padding: 20px;
}

.opp-roi {
    display: inline-block;
    background: var(--gold-light);
    color: #92600A;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.opp-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--forest);
    margin-bottom: 6px;
}

.opp-loc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.opp-price {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--emerald);
    font-weight: 700;
}

/* Lifestyle */
.lifestyle {
    background: var(--cloud-white);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lifestyle-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 340px;
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.lifestyle-card:hover img {
    transform: scale(1.03);
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 9rem;
    background: linear-gradient(to top, rgba(13, 43, 29, 0.88) 0%, transparent 60%);
    padding: 32px 28px;
}

.lifestyle-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.lifestyle-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: white;
    font-weight: 700;
    margin-bottom: 6px;
}

.lifestyle-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* Testimonials */
.testimonials {
    background: var(--pale);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: var(--cloud-white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border);
}

.testi-quote {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--mint);
    line-height: 0.5;
    margin-bottom: 16px;
}

.testi-text {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 24px;
}

.testi-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.testi-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--forest);
}

.testi-role {
    font-size: 12px;
    color: var(--text-muted);
}


/* CTA Banner */
.cta-banner {
    padding: 40px 48px 88px;
    background: var(--cloud-white);
}

.cta-banner-description{
    color: rgba(255, 255, 255, 0.9); 
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 400px;
}


.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 60%, var(--mid) 100%);
    border-radius: 28px;
    padding: 72px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-label {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--sage);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 38px;
    color: white;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
}

.cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 400px;
}

.btn-cta-primary {
    background: var(--gold);
    color: var(--forest);
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(233, 166, 42, 0.35);
    display: inline-block;
}

.btn-cta-primary:hover {
    background: #d4931f;
    color: var(--forest);
    transform: translateY(-2px);
}

.btn-cta-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer:not(.site-footer) {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 48px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    /* grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr; */
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-brand p {
        padding-left: 90px;
    }
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 20px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--sage);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 4px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    color: white;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 10px 0 0 10px;
    outline: none;
}

.newsletter-form button {
    background: var(--gold);
    border: none;
    color: var(--forest);
    padding: 12px 18px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.footer-logo-sub {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--sage);
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 43, 29, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(116, 198, 157, 0.2);
    border-radius: 50px;
    padding: 12px 16px 12px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 999;
    box-shadow: 0 8px 40px rgba(13, 43, 29, 0.35);
}

.sticky-bar span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.sticky-bar em {
    color: var(--sage);
    font-style: normal;
}

.btn-sticky {
    background: var(--gold);
    color: var(--forest);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-sticky:hover {
    background: #d4931f;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 0 20px;
    }

    .trust-inner {
        grid-template-columns: 1fr;
        transform: translateY(0);
        margin-top: 20px;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .invest-grid,
    .why-invest-grid,
    .listings-grid,
    .invest-opp-grid,
    .testi-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 48px 24px;
    }

    .cta-title {
        font-size: 32px;
    }

    .footer-top {
        gap: 32px;
    }

    .sticky-bar {
        width: 90%;
        justify-content: center;
    }

    section {
        padding: 60px 24px;
    }
}

@media (max-width:1200px) {

    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width:768px) {

    .row {
        --bs-gutter-x: 1rem;
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-text {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width:576px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width:768px) {

    .sticky-bar {
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
        transform: none;
        justify-content: space-between;
    }

    .sticky-bar span {
        font-size: 12px;
    }
}

@media (max-width:576px) {

    .sticky-bar {
        flex-direction: column;
        border-radius: 18px;
        text-align: center;
        gap: 10px;
    }

    .btn-sticky {
        width: 100%;
        text-align: center;
    }
}

@media (max-width:1200px) {

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:768px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width:768px) {

    .testimonial-box {
        padding: 35px 20px;
    }

    .testimonial-title {
        font-size: 30px;
    }

    .testimonial-content p {
        font-size: 18px;
    }
}

@media (max-width:768px) {

    .lifestyle-card {
        height: 320px;
    }

    .content-text h4 {
        font-size: 24px !important;
    }

    .content-text p {
        font-size: 16px !important;
    }
}

@media (max-width:576px) {

    .lifestyle-card {
        height: 280px;
    }
}

@media (max-width:768px) {

    .card-image-wrapper img {
        height: 240px;
    }

    .card-content h5 {
        min-height: auto;
        font-size: 20px;
    }

    .price {
        font-size: 24px;
    }
}


@media (max-width:768px) {

    .features-section {
        margin-top: -40px;
    }

    .features-grid {
        padding: 20px;
    }

    .feature-item {
        padding: 18px;
    }
}

/* high yield farm */
/* Investment Opportunities carousel slides */
.swiper-invest-opp .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 8px;
    box-sizing: border-box;
}

.swiper-invest-opp .opp-card {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--cloud-white);
    transition: all .3s;
}

.swiper-invest-opp .opp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.12);
}

/* Ensure the existing styles for opp-card are preserved – they already have border-radius, overflow, etc. */

/* Swiper container */
.swiper-container {
    position: relative;
    overflow: hidden;
    padding: 0 10px;
    /* optional padding for arrows */
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
    /* all slides same height */
}

.swiper-slide {
    height: auto;
    /* height determined by content */
    display: flex;
    flex-direction: column;
    padding: 0 8px;
    /* spacing between cards */
    box-sizing: border-box;
}

/* Cards inside swiper-slide */
.listing-card {
    background: var(--cloud-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* fill the slide height */
    width: 100%;
    /* fill slide width */
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.12);
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    color: var(--forest);
    background: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    transition: all .3s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

/* Pagination dots */
.swiper-pagination-bullet {
    background: var(--border);
    opacity: 1;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* Responsive slidesPerView is handled by Swiper JS */
/* Custom navigation controls – below carousel */
.carousel-nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    padding: 0 10px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    /* slightly rounded corners */
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.swiper-button-prev-custom i,
.swiper-button-next-custom i {
    font-size: 20px;
    color: #1a2e2a;
    /* dark arrow color */
    line-height: 1;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    border-color: #d4a843;
    background: #fdf8f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ========== NEW LANDING PAGE STYLES ========== */

/* Navbar - Desktop */
.navbar {
    background: linear-gradient(90deg, #1B5E20 0%, #ffffff 30%, #ffffff 70%, #1B5E20 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.navbar .btn-login {
    background: var(--primary);
    color: white;
    border-radius: var(--button-radius);
    padding: 10px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.navbar .btn-login:hover {
    background: #0a502d;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    width: 100vw;
    min-height: 650px;
    background: var(--background);
    position: relative;
    overflow: visible;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.hero-container {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 0;
    align-items: stretch;
    width: 100%;
    flex: 1;
    margin: 0;
    padding: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    max-width: 1200px;
    height: 100vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(15, 106, 60, 0.1);
    color: #1a4d2e;
    border: 1px solid #1a4d2e;
    padding: 4px 12px;
    border-radius: var(--button-radius);
    font-size: 12px;
    font-weight: 600;
    /* margin-bottom: 12px; */
    width: fit-content;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 700;
    line-height: 1.05;
    color: #1a4d2e;
    margin-bottom: 54px;
}

.hero-heading em {
    color: var(--primary);
    font-style: italic;
}

.hero-description {
    font-size: 14px;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 16px;
    max-width: 380px;
}

.hero-features {
    display: flex;
    gap: 16px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    flex-shrink: 0;
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(15, 106, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    font-size: 18px;
    color: var(--primary);
    line-height: 1;
}

.hero-feature-icon i {
    color: var(--primary);
}

.hero-feature-title {
    font-size: 11px;
    font-weight: 600;
    color: #333333;
    white-space: nowrap;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

.btn-hero-primary {
    background: var(--secondary);
    color: var(--text-dark);
    border: none;
    border-radius: var(--button-radius);
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    height: 42px;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: #d9a000;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: var(--card-white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--button-radius);
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    height: 42px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(15, 106, 60, 0.05);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(to right, var(--background) 0%, transparent 100%);
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 0 0 40px;
    box-shadow: var(--shadow-subtle);
}

.hero-stats-card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-white);
    border-radius: 22px;
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 80%;
    z-index: 10;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(15, 106, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 18px;
    color: var(--primary);
}

.hero-stat-icon i {
    color: var(--primary);
}

.hero-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.3;
}

/* Hero Section Responsive */
@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-content {
        padding: 60px 40px;
        max-width: 100%;
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
        padding: 6px 20px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }

    .hero-features {
        justify-content: center;
    }

    .btn-hero-primary {
        text-align: center;
     
    }

    .btn-hero-secondary {
        text-align: center;
      
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        height: 500px;
    }

    .hero-image {
        border-radius: 0;
    }

    .hero-image-wrapper::before {
        display: none;
    }

    .hero-stats-card {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
        bottom: -40px;
    }

    .hero-stat:not(:last-child)::after {
        display: none;
    }

    .hero-stat:nth-child(2)::after {
        display: none;
    }

    .trust-strip {
        margin-top: -40px;
        padding: 80px 0 48px;
    }
}

@media (max-width: 768px) {

    .hero-section {
        margin-top: 16px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-heading {
        font-size: 40px;
    }

    .hero-features {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 21px !important;
        width: 100%;
    }

    .hero-feature {
        width: 100%;
        text-align: center;
    }

    .hero-feature span {
        padding-top: 10px;
    }

    .hero-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin: 0 auto;
    }

    .hero-feature-title {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .hero-stats-card {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        bottom: -40px;
        width: 90%;
    }

    .hero-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .trust-strip {
        margin-top: -40px;
        padding: 80px 0 48px;
    }
}

/* Trust Strip */
.trust-strip {
    padding: 0px 0;
    background: var(--card-white);
    margin-top: 40px;
}

.trust-strip-container {
    width: 100%;
    padding: 0 10%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(15, 106, 60, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-icon i {
    color: var(--primary);
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

.trust-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Why Invest Section */
.why-invest-section {
    padding: var(--section-spacing) 0;
    background: var(--card-white);
    text-align: center;
}

.why-invest-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10%;
}

.section-badge {
    display: inline-block;
    background: rgba(15, 106, 60, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--button-radius);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.why-invest-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-invest-card {
    background: var(--card-white);
    border-radius: var(--card-radius);
    padding: 32px 24px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    text-align: center;
}

.why-invest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.why-invest-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(15, 106, 60, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.why-invest-card-icon i {
    color: var(--primary);
}

.why-invest-card-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-invest-card-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Premium Listings Section */
.premium-listings-section {
    padding: var(--section-spacing) 0;
    background: var(--card-white);
}

.premium-listings-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.view-all-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.view-all-link:hover {
    gap: 8px;
}

.property-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.property-card {
    background: var(--card-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.property-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: var(--button-radius);
    font-size: 12px;
    font-weight: 600;
}

.property-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--card-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-wishlist:hover {
    transform: scale(1.1);
}

.property-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-state {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-category {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.property-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.property-area {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.property-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.btn-view-details {
    background: var(--secondary);
    color: var(--text-dark);
    border: none;
    border-radius: var(--button-radius);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-view-details:hover {
    background: #d9a000;
}

.property-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.share-btn {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: var(--button-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    color: #3d4f4a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.share-btn:hover {
    border-color: #0F6A3C;
    color: #0F6A3C;
    background: #f0f9f4;
}

.carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--card-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: var(--primary);
    color: white;
}

/* Why Choose HeyDay Section */
.why-choose-section {
    padding: 72px 0;
    background: #FAFAF7;
}

.why-choose-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-choose-left,
.why-choose-right {
    display: flex;
    flex-direction: column;
}

.why-choose-badge {
    display: inline-block;
    background: rgba(15, 106, 60, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--button-radius);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.why-choose-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.why-choose-features-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.why-choose-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 12px;
}

.why-choose-feature-icon-small {
    width: 44px;
    height: 44px;
    background: rgba(15, 106, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.why-choose-feature-icon-small i {
    color: var(--primary);
}

.why-choose-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-choose-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.why-choose-feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.why-choose-feature-divider {
    width: 1px;
    height: 80px;
    background: #EAEAEA;
    flex-shrink: 0;
}

.testimonials-row {
    display: flex;
    gap: 16px;
}

.testimonial-card-new {
    background: var(--card-white);
    border-radius: 16px;
    border: 1px solid #EAEAEA;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.testimonial-quote {
    font-size: 32px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.testimonial-text-new {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.testimonial-stars-new {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar-new {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 106, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

.testimonial-avatar-new i {
    color: var(--primary);
}

.testimonial-name-new {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.testimonial-role-new {
    font-size: 12px;
    color: var(--text-muted);
}

/* Why Choose HeyDay Responsive */
@media (max-width: 1024px) {
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .section-badge {
        padding: 6px 20px;
    }

    .why-choose-features-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .why-choose-feature-divider {
        display: none;
    }

    .why-choose-feature-item {
        flex: 0 0 calc(50% - 12px);
    }

    .testimonials-row {
        flex-wrap: wrap;
    }

    .testimonial-card-new {
        flex: 0 0 calc(50% - 8px);
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 48px 0;
    }

    .why-choose-heading {
        font-size: 28px;
    }

    .why-choose-features-row {
        gap: 16px;
    }

    .why-choose-feature-item {
        flex: 0 0 calc(50% - 8px);
        padding: 0 8px;
    }

    .why-choose-feature-icon-small {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .why-choose-feature-title {
        font-size: 14px;
    }

    .why-choose-feature-desc {
        font-size: 12px;
    }

    .testimonials-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-card-new {
        flex: 0 0 280px;
        min-width: 280px;
    }
}

/* CTA Banner */
.cta-banner-section {
    padding: var(--section-spacing) 10%;
    background: var(--background);
}

.cta-banner {
    background: #024e28;
    border-radius: var(--card-radius);
    padding: 40px 10%;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.cta-banner-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-banner-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .cta-banner-content{
        grid-template-columns: 1fr;
    }

    .cta-banner-icon {
        text-align: center;
    }

    .cta-banner-title {
        font-size: 1.5rem;
        text-align: center;
    }
}


.cta-banner-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.btn-cta-yellow {
    background: var(--secondary);
    color: var(--text-dark);
    border: none;
    border-radius: var(--button-radius);
    padding: 14px 32px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta-yellow:hover {
    background: #d9a000;
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: var(--button-radius);
    padding: 14px 32px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}



.leaf-decoration {
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    color: white;
}

.leaf-decoration-left {
    bottom: -40px;
    left: -40px;
}

.leaf-decoration-right {
    top: -40px;
    right: -40px;
}

/* Footer — compact professional layout */
footer.footer.site-footer,
.footer.site-footer {
    background: #013a1d;
    color: rgba(255, 255, 255, 0.85);
    padding: 40px 0 0;
    margin-top: auto;
    width: 100%;
}

.footer.site-footer .footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: minmax(200px, 1.35fr) repeat(2, minmax(140px, 1fr));
    gap: 32px 48px;
    align-items: start;
}

.footer.site-footer .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
}

/* Logo | name + slogan — same layout as navbar brand */
.footer.site-footer .footer-logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition);
}

.footer.site-footer .footer-logo-container:hover {
    opacity: 0.88;
}

.footer.site-footer .footer-logo-img {
    height: 48px;
    width: auto;
    max-width: none;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.footer.site-footer .footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.footer.site-footer .footer-brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin: 0;
}

.footer.site-footer .footer-brand-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    color: #40916C;
    line-height: 1;
    margin: 0.25rem 0 0;
    font-weight: 600;
}

.footer.site-footer .footer-brand-description,
.footer.site-footer .footer-brand p.footer-brand-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
}

.footer.site-footer .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2px 0 0;
    align-items: center;
    justify-content: flex-start;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer.site-footer .footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    width: 100%;
    text-align: left;
}

.footer.site-footer .footer-column h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 14px;
    padding: 0;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.3;
}

.footer.site-footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.footer.site-footer .footer-links li {
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 1.4;
    margin-bottom: 0;
}

.footer.site-footer .footer-link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color var(--transition);
    line-height: 1.4;
    display: inline-block;
    padding: 0;
    margin: 0;
}

.footer.site-footer .footer-link:hover {
    color: #74C69D;
    opacity: 1;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--button-radius);
    font-size: 14px;
}

.newsletter-button {
    background: var(--secondary);
    color: var(--text-dark);
    border: none;
    border-radius: var(--button-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-button:hover {
    background: #d9a000;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 48px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    background: rgba(0, 0, 0, 0.15);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
}

.footer.site-footer .footer-bottom span {
    line-height: 1.4;
}

.footer.site-footer .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition);
    line-height: 1.4;
    white-space: nowrap;
}

.footer.site-footer .footer-bottom-link:hover {
    color: #fff;
    opacity: 1;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image {
        height: 400px;
    }

    .hero-stats-card {
        min-width: auto;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-invest-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-choose-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats-card {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }

    .trust-strip-container {
        grid-template-columns: 1fr;
    }

    /* Fix High-Growth Location text overlap */
    .trust-item {
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }

    .trust-title {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .trust-description {
        font-size: 14px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .why-invest-cards {
        grid-template-columns: 1fr;
    }

    /* Fix why-invest-card text overlap */
    .why-invest-card {
        padding: 24px 20px;
    }

    .why-invest-card-title {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .why-invest-card-description {
        font-size: 14px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .property-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .trust-item {
        padding: 16px;
        gap: 10px;
    }

    .trust-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .trust-description {
        font-size: 13px;
    }

    .why-invest-card {
        padding: 20px 16px;
    }

    .why-invest-card-title {
        font-size: 15px;
    }

    .why-invest-card-description {
        font-size: 13px;
    }

    .testimonials-premium-section .testimonial-name {
        font-size: 15px;
    }

    .testimonials-premium-section .testimonial-designation {
        font-size: 12px;
    }

    .property-cards {
        grid-template-columns: 1fr;
        overflow-x: auto;
        padding-bottom: 16px;
    }

    .property-card {
        min-width: 280px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .why-choose-container {
        gap: 32px;
    }

    .cta-banner {
        padding: 32px;
    }

    .cta-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-banner-buttons {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 5%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: left;
        align-items: flex-start;
        padding: 14px 5%;
    }

    .footer.site-footer .footer-bottom-links {
        justify-content: flex-start;
    }

    .navbar .collapse {
        background: var(--card-white);
        padding: 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-hover);
    }
}

.swiper-button-prev-custom:active,
.swiper-button-next-custom:active {
    transform: translateY(0);
}

/* Disabled state (if Swiper supports it, you can bind) */
.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Optional: adjust pagination dots position above buttons */
.swiper-pagination {
    position: relative;
    margin-bottom: 16px;
}

/* ============================================
   PREMIUM TESTIMONIALS SECTION
   ============================================ */

.testimonials-premium-section {
    padding: 90px 0;
    background: var(--card-white);
}

.testimonials-premium-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 32px;
    /* background: #FFFFFF; */
    /* box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08); */
    overflow: hidden;
    /* border: 1px solid rgba(0, 0, 0, 0.06); */
    width: 100%;
    box-sizing: border-box;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-premium-section .testimonials-premium-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    margin-top: 60px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
}

.testimonials-premium-section .testimonials-premium-grid .testimonials-premium-card {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    border-radius: 24px !important;
    padding: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: 0.3s !important;
    height: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}

.testimonials-premium-section .testimonials-premium-grid .testimonials-premium-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12) !important;
}

.testimonials-premium-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.testimonials-premium-section .testimonial-quote-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
}

.testimonial-quote-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1;
    font-family: Georgia, serif;
    font-weight: 400;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.testimonial-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 28px 0;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(116, 198, 157, 0.3);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-body);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.testimonial-designation {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonials-premium-section .testimonial-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonials-premium-section .testimonial-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.testimonials-premium-section .testimonial-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 28px 0;
}

.testimonials-premium-section .testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.testimonials-premium-section .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(116, 198, 157, 0.3);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-body);
}

.testimonials-premium-section .testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonials-premium-section .testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.testimonials-premium-section .testimonial-designation {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .testimonials-premium-section .testimonials-premium-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .testimonials-premium-section .testimonials-premium-container {
        padding: 50px;
    }
}

/* Mobile slider base styles (hidden by default) */
.mobile-testimonial-slider {
    display: none;
}

@media (max-width: 768px) {
    .testimonials-premium-section {
        padding: 60px 0;
    }


    .testimonials-premium-section .testimonials-premium-container {
        padding: 40px;
        border-radius: 24px;
    }

    .testimonials-premium-section .testimonials-header {
        margin-bottom: 40px;
    }

    /* Hide desktop grid on mobile */
    .desktop-testimonials {
        display: none !important;
    }

    /* Also hide the original grid class */
    .testimonials-premium-section .testimonials-premium-grid {
        display: none !important;
    }

    /* Show mobile slider on mobile */
    .mobile-testimonial-slider {
        display: block !important;
    }

    /* Mobile slider styling */
    .testimonial-slider-wrapper {
        overflow: hidden;
        position: relative;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
        touch-action: pan-y;
    }

    .testimonial-slider-wrapper:active {
        cursor: grabbing;
    }

    .testimonial-slider-track {
        display: flex;
        transition: transform 0.3s ease-in-out;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .testimonial-slide .testimonials-premium-card {
        width: 100%;
        padding: 28px !important;
    }

    /* Pagination dots styling */
    .testimonial-slider-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .testimonial-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.2);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .testimonial-dot.active {
        background-color: var(--primary);
        transform: scale(1.2);
    }

    .testimonials-premium-section .testimonial-quote-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .testimonials-premium-section .testimonial-stars {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .testimonials-premium-section .testimonial-text {
        font-size: 14px;
    }

    .testimonials-premium-section .testimonial-divider {
        margin: 20px 0;
    }

    .testimonials-premium-section .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .testimonials-premium-section .testimonial-name {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 6px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .testimonials-premium-section .testimonial-designation {
        font-size: 13px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-top: 22px;
    }

    /* Fix testimonial footer alignment */
    .testimonials-premium-section .testimonial-footer {
        align-items: flex-start;
        gap: 12px;
    }

    .testimonials-premium-section .testimonial-info {
        flex: 1;
        min-width: 0;
        /* Allows text to wrap properly */
    }
}

/* Desktop: Hide mobile slider, show desktop grid */
@media (min-width: 769px) {
    .mobile-testimonial-slider {
        display: none !important;
    }

    .desktop-testimonials {
        display: grid !important;
    }

    /* Also ensure the original grid is displayed */
    .testimonials-premium-section .testimonials-premium-grid {
        display: grid !important;
    }
}