/*
 * LEFKADA VILLA — Design Upgrade
 * Aesthetic: "Aegean Editorial" — Warm Mediterranean luxury
 * Typography: Cormorant Garamond (display) + DM Sans (body)
 * Palette: Terracotta gold, Aegean navy, warm cream
 */

/* ============================================
   1. CSS VARIABLES OVERRIDE
   ============================================ */
#realestate-content {
    --primary-color: #C4956A;
    --primary-color-700: #FDF6F0;
    --secondary-color: #1B2D4F;
    --primary-font-color: #2C3E50;
    --secondary-font-color: #FDF6F0;
    --a-hover-color: #B07D52;
    --heading-color: #1B2D4F;
    --descprition-color: #6B7B8D;
    --grid-text-color: #6B7B8D;
    --primary-border-color: #E8E0D8;
    --primary-border-color-600: #E8E0D866;
    --stats-bg-color: #FAF8F5;
    --overlay-opacity: 0.45;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-md: 20px;
    --input-radius: 12px;
    --transition: 350ms;
    --bs-body-font-family: 'DM Sans', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
}

/* ============================================
   2. BASE & TYPOGRAPHY
   ============================================ */
body {
    font-family: 'DM Sans', sans-serif;
    color: #4A5568;
    background-color: #FAFAF8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    line-height: 1.7;
}

h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    color: var(--heading-color);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    color: var(--heading-color);
    letter-spacing: -0.015em;
    line-height: 1.25;
    font-size: 32px;
}

h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    color: var(--heading-color);
    letter-spacing: -0.01em;
    font-size: 26px;
}

h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--heading-color);
    font-size: 18px;
}

h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--heading-color);
    font-size: 16px;
}

h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

p {
    font-family: 'DM Sans', sans-serif;
    color: #6B7B8D;
    font-size: 16px;
    line-height: 1.7;
}

a {
    font-family: 'DM Sans', sans-serif;
    color: var(--primary-color);
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover, a:focus {
    color: #B07D52;
}

/* Selection color */
::selection {
    background: #C4956A33;
    color: #1B2D4F;
}

/* ============================================
   3. HEADER
   ============================================ */
.realestate-header-container {
    background-color: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    padding: 16px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(255,255,255,0.95);
}

.realestate-header-logo {
    max-width: 180px;
}

.realestate-header-logo img {
    transition: opacity 0.3s ease;
}

.realestate-navigation-nav ul a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #6B7B8D;
    padding: 10px 14px;
    border-radius: 8px;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.realestate-navigation-nav ul a:hover {
    color: #1B2D4F;
    background-color: #FAF8F5;
}

.realestate-navigation-nav ul a:hover::after {
    display: none;
}

/* Login button */
.realestate-not-filled-btn-login.realestate-offcanvas-menu-btn {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1B2D4F;
    border: 1.5px solid #E8E0D8;
    background: transparent;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.realestate-not-filled-btn-login.realestate-offcanvas-menu-btn:hover {
    border-color: #C4956A;
    background: #FDF6F0;
    color: #B07D52;
}

/* Become host button */
.realestate-filled-btn {
    font-family: 'DM Sans', sans-serif;
    background: #1B2D4F;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.realestate-filled-btn:hover {
    background: #C4956A;
    color: #fff;
}

/* Language switcher refinement */
.lang-switcher-btn {
    font-family: 'DM Sans', sans-serif;
    border-color: #E8E0D8;
    transition: all 0.3s ease;
}

.lang-switcher-btn:hover,
.lang-switcher-wrap.open .lang-switcher-btn {
    border-color: #C4956A;
    box-shadow: 0 0 0 1px #C4956A;
}

.lang-switcher-dropdown {
    border-radius: 16px;
    border-color: #E8E0D8;
    box-shadow: 0 20px 60px rgba(27,45,79,0.12), 0 4px 12px rgba(0,0,0,0.04);
}

.lang-switcher-dropdown li a {
    font-family: 'DM Sans', sans-serif;
    border-radius: 10px;
}

.lang-switcher-dropdown li.active a {
    background: #FDF6F0;
    color: #B07D52;
}

.lang-switcher-dropdown li.active a::after {
    color: #C4956A;
}

/* ============================================
   4. HERO / BANNER
   ============================================ */
.realestate-banner-home {
    min-height: 520px;
    background-image: url('../images/banner-home-1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -72px;
    position: relative;
    padding-top: 160px;
    padding-bottom: 60px;
    border-bottom: none;
    isolation: isolate;
}

/* Kill the original animated gradient */
.realestate-banner-home::after {
    background: none !important;
    animation: none !important;
    z-index: 0 !important;
}

/* Dark overlay via ::before instead */
.realestate-banner-home::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.55) 100%
    );
    pointer-events: none;
}

.realestate-banner-home > .container {
    position: relative;
    z-index: 2;
}

.realestate-home-banner-headings {
    position: relative;
    z-index: 2;
}

.realestate-home-banner-headings h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 700px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.realestate-home-banner-headings h1 span {
    color: #E8C9A8;
}

.realestate-home-banner-headings .banner-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255,255,255,0.92);
    font-weight: 400;
    max-width: 520px;
    line-height: 1.6;
    margin-top: 16px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}

/* ============================================
   5. SECTION HEADINGS
   ============================================ */
.reaestate-section-headings h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 600;
    color: #1B2D4F;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.reaestate-section-headings p {
    font-family: 'DM Sans', sans-serif;
    color: #6B7B8D;
    font-size: 16px;
    margin-top: 8px;
    max-width: 560px;
}

.reaestate-classic-headings h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 600;
    color: #1B2D4F;
    letter-spacing: -0.02em;
}

.reaestate-classic-headings p {
    font-family: 'DM Sans', sans-serif;
    color: #6B7B8D;
    font-size: 16px;
    margin-top: 6px;
}

.reaestate-classic-headings-link a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #C4956A;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.reaestate-classic-headings-link a:hover {
    border-bottom-color: #C4956A;
    color: #B07D52;
}

/* ============================================
   6. PROPERTY CARDS
   ============================================ */
.loop-style1.realestate-item {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.loop-style1.realestate-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(27,45,79,0.1), 0 4px 12px rgba(0,0,0,0.04);
    border-radius: 16px;
}

.loop-style1.realestate-item .real-listings-post-item {
    border-radius: 16px;
    background: #fff;
}

.loop-style1.realestate-item .real-listings-post-content {
    padding: 18px 18px 16px;
    background: #fff;
    border: 1px solid #F0EBE4;
    border-radius: 0 0 16px 16px;
    border-top: 0;
}

.loop-style1.realestate-item:hover .real-listings-post-content {
    border-color: transparent;
}

/* Card title */
.loop-style1.realestate-item .real-listings-post-content .card-title-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1B2D4F;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.loop-style1.realestate-item .real-listings-post-content .card-title-link:hover {
    color: #C4956A;
}

/* Card meta */
.loop-style1.realestate-item .real-listings-post-content .card-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #8E9BAE;
    gap: 8px;
}

.loop-style1.realestate-item .real-listings-post-content .card-meta .meta-sep {
    background: #D4C4B0;
}

/* Card price */
.loop-style1.realestate-item .real-listings-post-content .card-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1B2D4F;
}

.loop-style1.realestate-item .real-listings-post-content .card-price .price-unit {
    font-size: 13px;
    font-weight: 400;
    color: #8E9BAE;
}

/* Card location */
.loop-style1.realestate-item .real-listings-post-content .post-location .p-md {
    font-family: 'DM Sans', sans-serif;
    color: #8E9BAE;
    font-size: 13px;
}

/* Image hover effect */
.loop-style1.realestate-item .real-listings-post-thumbnail img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.loop-style1.realestate-item:hover .real-listings-post-thumbnail .slick-active img,
.loop-style1.realestate-item:hover .loop-style1-grid-slider:not(.slick-initialized) img {
    transform: scale(1.06);
}

/* Slider dots */
.loop-style1.realestate-item .real-listings-post-thumbnail .slick-dots button {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.loop-style1.realestate-item .real-listings-post-thumbnail .slick-dots .slick-active button {
    background: #fff;
    transform: scale(1.4);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ============================================
   7. DESTINATION CARDS
   ============================================ */
.classic-diff-categories-box {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.classic-diff-categories-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(27,45,79,0.12);
}

.classic-diff-categories-image img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.classic-diff-categories-box:hover .classic-diff-categories-image img {
    transform: scale(1.08);
}

.classic-diff-image-text p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.diff-cate-hide-content .diff-cate-pric-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.diff-cate-hide-content .diff-cate-location p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: #fff;
}

/* ============================================
   8. FEATURES / HOW IT WORKS SECTION
   ============================================ */
.realestate-tabs-feature-boxes {
    background: #fff;
    border: 1px solid #F0EBE4;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.realestate-tabs-feature-boxes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C4956A, #D4A574, #E8C9A8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.realestate-tabs-feature-boxes:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(27,45,79,0.08);
    border-color: transparent;
}

.realestate-tabs-feature-boxes:hover::before {
    transform: scaleX(1);
}

.realestate-tabs-feature-boxes h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #1B2D4F;
    margin-top: 8px;
    margin-bottom: 10px;
}

.realestate-tabs-feature-boxes p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #6B7B8D;
    line-height: 1.65;
}

.realestate-tabs-feature-boxes img {
    max-width: 64px;
    filter: none;
    transition: transform 0.3s ease;
}

.realestate-tabs-feature-boxes:hover img {
    transform: scale(1.08);
}

/* ============================================
   9. PARADISE / TESTIMONIAL SECTION
   ============================================ */
.home-classic-globe {
    background: #FAF8F5;
}

.classic-globe-review-text {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.7;
}

.classic-globe-review-text p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-style: italic;
    color: #4A5568;
    line-height: 1.6;
}

.classic-globe-hide-small h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}

.classic-globe-pric-text-small h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.classic-globe-pric-text-small p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.home-classic-globe-img {
    border-radius: 16px;
    overflow: hidden;
}

.home-classic-globe-img img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-classic-globe-img:hover img {
    transform: scale(1.04);
}

.classic-globe-review {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #F0EBE4;
}

/* Quote icon color */
.classic-globe-box2-svg path {
    fill: #C4956A !important;
}

/* Slider arrows */
.prev-arrowglobe svg path,
.next-arrowglobe svg path {
    fill: #C4956A;
    transition: fill 0.3s ease;
}

.next-arrowglobe:hover svg path {
    fill: #1B2D4F;
}

.prev-arrowglobe:hover svg path {
    fill: #B07D52;
}

/* ============================================
   10. FOOTER
   ============================================ */
#realestate-footer,
#realestate-bottom {
    background-color: #1B2D4F;
}

.footer-style1>* span,
.footer-style1>* a,
.footer-style1>* li,
.footer-style1>* {
    font-family: 'DM Sans', sans-serif;
    color: #8CA0B8;
}

.footer-style1>* a:hover,
.footer-style1>* li:hover {
    color: #E8C9A8;
}

.footer-style1>* h2,
.footer-style1>* h3,
.footer-style1>* h4,
.footer-style1>* h5 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #fff;
    font-size: 22px;
    letter-spacing: -0.01em;
}

.realestate-subscriber-content {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 5px;
    transition: border-color 0.3s ease;
}

.realestate-subscriber-content:focus-within {
    border-color: #C4956A;
}

.realestate-subscriber-content .realestate-input {
    font-family: 'DM Sans', sans-serif;
    height: 48px;
    font-size: 15px;
}

.realestate-subscriber-content .realestate-subscrip-btn {
    font-family: 'DM Sans', sans-serif;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    background: #C4956A;
    color: #fff;
    transition: all 0.3s ease;
}

.realestate-subscriber-content .realestate-subscrip-btn:hover {
    background: #E8C9A8;
    color: #1B2D4F;
}

.border-top-1 {
    border-top: 1px solid rgba(255,255,255,0.1);
}

#realestate-bottom p {
    font-family: 'DM Sans', sans-serif;
    color: #5A7A99;
    font-size: 13px;
}

/* ============================================
   11. LOGIN MODAL
   ============================================ */
.realestate-login-form-content-title {
    background: #1B2D4F !important;
    padding: 60px 50px !important;
}

.realestate-login-form-content-title h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
}

.realestate-login-form-content-title p {
    font-family: 'DM Sans', sans-serif;
    color: #8CA0B8;
    font-size: 17px;
}

.realestate-login-form {
    padding: 40px 48px !important;
}

.realestate-login-form label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4A5568;
    letter-spacing: 0.3px;
}

.realestate-login-form input[type="email"],
.realestate-login-form input[type="text"],
.realestate-login-form input[type="password"],
.realestate-login-form input[type="tel"] {
    font-family: 'DM Sans', sans-serif;
    border-radius: 10px;
    border: 1.5px solid #E8E0D8;
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.realestate-login-form input:focus {
    border-color: #C4956A;
    box-shadow: 0 0 0 3px rgba(196,149,106,0.12);
    outline: none;
}

/* Close modal button */
.realestate-close-login-modal {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6B7B8D;
    cursor: pointer;
    transition: color 0.3s ease;
}

.realestate-close-login-modal:hover {
    color: #1B2D4F;
}

/* Form separator (or) */
.form-saprater p {
    font-family: 'DM Sans', sans-serif !important;
    color: #8E9BAE !important;
    font-size: 13px !important;
}

/* ============================================
   12. MOBILE BOTTOM MENU
   ============================================ */
.mobile-bottom-menu {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #F0EBE4;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
}

.mobile-menu-container .mobile-menu-item {
    font-family: 'DM Sans', sans-serif;
    color: #6B7B8D;
    font-size: 11px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu-container .mobile-menu-item:hover,
.mobile-menu-container .mobile-menu-item:active {
    color: #C4956A;
}

.mobile-menu-container .mobile-menu-item i {
    color: #8E9BAE;
    transition: color 0.3s ease;
    font-size: 18px;
}

.mobile-menu-container .mobile-menu-item:hover i {
    color: #C4956A;
}

/* Mobile Full Menu */
.mobile-full-menu {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-full-menu-header h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #1B2D4F;
}

.mobile-full-menu-item {
    font-family: 'DM Sans', sans-serif;
    color: #4A5568;
    border-bottom: 1px solid #F0EBE4;
}

.mobile-full-menu-item:hover {
    color: #C4956A;
    background: #FDF6F0;
}

/* ============================================
   13. NOTIFICATION / DROPDOWN
   ============================================ */
.notification-alert-box.realestate-popuop-notification {
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(27,45,79,0.15), 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid #F0EBE4;
}

.notification-alert-user-data span {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    color: #1B2D4F;
}

.c-eIrGqO {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #C4956A;
    font-weight: 500;
}

.c-gDIgBR::after {
    background: #C4956A;
}

/* ============================================
   14. SCROLL ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }
.fade-in-up.delay-4 { animation-delay: 0.4s; }

/* ============================================
   15. FAQ SECTION (SEO)
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 600;
    color: #1B2D4F;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.faq-item {
    border: 1px solid #F0EBE4;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #FAFAF8;
}

.faq-item:hover {
    border-color: #E8E0D8;
    box-shadow: 0 4px 16px rgba(27,45,79,0.04);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #FDF6F0;
}

.faq-question h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1B2D4F;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-question .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F0EBE4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #6B7B8D;
}

.faq-item.active .faq-question .faq-icon {
    background: #C4956A;
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #6B7B8D;
    line-height: 1.7;
}

/* ============================================
   16. CTA / TRUST SECTION
   ============================================ */
.trust-section {
    padding: 64px 0;
    background: #FDF6F0;
    text-align: center;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.trust-stat {
    text-align: center;
}

.trust-stat .stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: #1B2D4F;
    line-height: 1;
    margin-bottom: 6px;
}

.trust-stat .stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #6B7B8D;
    font-weight: 400;
}

.cta-section {
    padding: 80px 0;
    background: #1B2D4F;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,149,106,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    font-family: 'DM Sans', sans-serif;
    color: #8CA0B8;
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 32px;
}

.cta-btn {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    background: #C4956A;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.cta-btn:hover {
    background: #E8C9A8;
    color: #1B2D4F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,149,106,0.3);
}

/* ============================================
   17. FOOTER ENHANCEMENTS
   ============================================ */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.footer-links-grid a {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #8CA0B8;
    padding: 4px 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-grid a:hover {
    color: #E8C9A8;
    padding-left: 4px;
}

.footer-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #8CA0B8;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 300px;
}

/* ============================================
   18. UTILITY CLASSES
   ============================================ */
.pt-70 { padding-top: 70px; }
.pt-100 { padding-top: 100px; }
.pb-90 { padding-bottom: 90px; }
.pb-100 { padding-bottom: 100px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better focus styles */
*:focus-visible {
    outline: 2px solid #C4956A;
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================
   19. RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 991px) {
    .realestate-banner-home {
        min-height: 380px;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .realestate-home-banner-headings h1 {
        font-size: 32px;
    }

    .reaestate-section-headings h2,
    .reaestate-classic-headings h2 {
        font-size: 28px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .trust-stats {
        gap: 32px;
    }

    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .realestate-header-container {
        padding: 12px 16px;
    }

    .realestate-banner-home {
        min-height: 320px;
        padding-top: 100px;
    }

    .realestate-home-banner-headings h1 {
        font-size: 28px;
    }

    .realestate-tabs-feature-boxes {
        padding: 28px 20px;
    }

    .trust-stats {
        gap: 24px;
    }

    .trust-stat .stat-number {
        font-size: 32px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   20. PRINT STYLES
   ============================================ */
@media print {
    .realestate-header,
    .mobile-bottom-menu,
    .mobile-full-menu,
    footer {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }
}
