/*
Theme Name: Realty Keirah Theme
Author: Antigravity
Description: Premium Luxury Real Estate theme for Realty Keirah (Purity Mokeira). Inspired by afbeke.com with custom glassmorphism and golden peach tones.
Version: 1.0
*/

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

:root {
    --brand-peach: #fabaab;
    --brand-peach-light: #fce1da;
    --brand-peach-dark: #e59e8f;
    --brand-peach-rgb: 250, 186, 171;
    
    /* Gold Metallic Gradients */
    --gold-start: #cf852e;
    --gold-mid: #e1ae5d;
    --gold-end: #eac473;
    --gold-gradient: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    
    /* Layout Colors */
    --bg-light: #fdfaf9;
    --bg-card: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    
    /* Premium Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(246, 157, 143, 0.15);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 16px;
    --container-width: 1240px;
}

/* CSS Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Helper Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 80px 0;
}

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

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-bg {
    background: var(--gold-gradient);
}

/* Premium Glassmorphism Container */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius);
}

.glass-dark {
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    color: #ffffff;
}

.glass-hover:hover {
    transform: translateY(-6px);
    border-color: rgba(207, 133, 46, 0.3);
    box-shadow: 0 12px 40px 0 rgba(246, 157, 143, 0.25);
}

/* Floating Frosted Header */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 1000;
    padding: 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    top: 10px;
    width: 93%;
}

.header-glass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 3rem;
    border-radius: 100px; /* Fully rounded capsule ends */
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08); /* Transparent blurred capsule */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: var(--transition-smooth);
    width: 100%;
}

header.scrolled .header-glass {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.65rem 3rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

/* Scrolled Text Overrides */
header.scrolled .logo h1 {
    color: #111827;
}

header.scrolled .desktop-nav .menu-item > a {
    color: #111827 !important;
}

header.scrolled .desktop-nav .menu-item > a i {
    color: #4b5563 !important;
}

header.scrolled .lang-selector span {
    color: #111827 !important;
}

header.scrolled .lang-chevron {
    color: #4b5563 !important;
}

header.scrolled .user-profile {
    border-color: rgba(0, 0, 0, 0.1) !important;
    background: rgba(0, 0, 0, 0.03) !important;
}

header.scrolled .user-profile i {
    color: #111827 !important;
}

header.scrolled .menu-toggle i {
    color: #111827 !important;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
}

/* Navigation List overrides */
nav ul.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.desktop-nav .menu-item {
    position: relative;
    padding: 1.25rem 0;
}

.desktop-nav .menu-item > a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.5rem 0;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
}

.desktop-nav .menu-item > a i {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.desktop-nav .menu-item:hover > a i {
    transform: rotate(180deg);
}

.desktop-nav .menu-item > a:hover,
.desktop-nav .menu-item.current-menu-item > a {
    color: #ffffff !important;
    border-bottom: 2px solid var(--gold-start);
}

/* Dropdown Menu Layout */
.desktop-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 230px;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1010;
    margin: 0;
}

.desktop-nav .menu-item:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .dropdown-menu li {
    width: 100%;
    padding: 0;
}

.desktop-nav .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    border-bottom: none !important;
    transition: all 0.2s ease;
}

.desktop-nav .dropdown-menu a i {
    font-size: 0.8rem;
    color: var(--gold-start);
    width: 16px;
    text-align: center;
}

.desktop-nav .dropdown-menu a:hover {
    color: #ffffff !important;
    background: rgba(234, 196, 115, 0.1) !important;
    padding-left: 1.5rem;
}

/* Premium Mega Menu Layout */
.desktop-nav .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 780px;
    background: rgba(11, 15, 25, 0.96);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1010;
}

.desktop-nav .menu-item:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.desktop-nav .mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 2rem;
}

.desktop-nav .mega-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-start);
    margin-bottom: 1.15rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.5rem;
}

.desktop-nav .mega-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: flex-start;
}

.desktop-nav .mega-column ul li {
    width: 100%;
}

.desktop-nav .mega-column ul a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    border-bottom: none !important;
    padding: 0.25rem 0;
    transition: all 0.2s ease;
}

.desktop-nav .mega-column ul a i {
    font-size: 0.8rem;
    color: var(--brand-peach);
    width: 16px;
    text-align: center;
}

.desktop-nav .mega-column ul a:hover {
    color: #ffffff !important;
    padding-left: 0.35rem;
}

/* Mega Menu Showcase Card */
.desktop-nav .mega-showcase .showcase-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.desktop-nav .mega-showcase .showcase-img {
    height: 110px;
    background-size: cover;
    background-position: center;
}

.desktop-nav .mega-showcase .showcase-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex-grow: 1;
}

.desktop-nav .mega-showcase .showcase-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0b0f19;
    background: var(--gold-start);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    align-self: flex-start;
    letter-spacing: 0.02em;
}

.desktop-nav .mega-showcase h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.25rem 0 0 0;
}

.desktop-nav .mega-showcase .showcase-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gold-start);
}

.desktop-nav .mega-showcase .showcase-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: none !important;
    padding: 0;
    transition: gap 0.25s ease;
}

.desktop-nav .mega-showcase .showcase-link:hover {
    gap: 0.5rem;
    color: var(--gold-start) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: #ffffff;
    transition: var(--transition-smooth);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(207, 133, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207, 133, 46, 0.45);
}

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

.btn-outline:hover {
    background: var(--text-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-peach {
    background: rgba(248, 185, 170, 0.2);
    color: var(--gold-start);
    border: 1px solid rgba(248, 185, 170, 0.6);
}

.btn-peach:hover {
    background: rgba(248, 185, 170, 0.35);
    transform: translateY(-2px);
}

/* Swiper Hero Slider */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.35); /* Subtle overlay for dark premium feel */
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-slide-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.75rem;
    font-weight: 300; /* Thinner, ultra-premium text weight matching afbeke.com */
    line-height: 1.1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.01em;
}

.hero-slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Sleek Centered Search Pill */
.search-glass-pill {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.12); /* Semi-transparent frosted capsule background */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px; /* Fully rounded capsule pill shape */
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.search-form-pill-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    align-items: center;
    width: 100%;
}

.search-pill-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-right: 1.25rem;
    padding-left: 0.25rem;
}

.search-pill-field:not(:nth-last-child(2))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.search-pill-field i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.search-pill-field select {
    border: none !important;
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 0 !important;
    width: 100%;
    outline: none !important;
    cursor: pointer;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
}

.search-pill-field select option {
    background: #111827; /* Dark elegant option elements background color */
    color: #ffffff;
}

.btn-pill-search {
    background: var(--gold-gradient); /* Reverted to Purity's premium brand gold! */
    color: #ffffff;
    border-radius: 100px;
    padding: 0.85rem 2.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(207, 133, 46, 0.3);
    transition: var(--transition-smooth);
}

.btn-pill-search:hover {
    background: var(--gold-gradient);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(207, 133, 46, 0.45);
}

/* Category Grid Card */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.category-card {
    position: relative;
    height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(246, 157, 143, 0.05);
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.85) 0%, rgba(17, 24, 39, 0.1) 100%);
    z-index: 1;
}

.category-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    width: 100%;
}

.category-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.category-content span {
    font-size: 0.8rem;
    color: var(--brand-peach-light);
    font-weight: 500;
}

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

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

/* Real Estate Listing Cards */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.listing-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(248, 185, 170, 0.25);
    box-shadow: 0 4px 20px rgba(246, 157, 143, 0.06);
    transition: var(--transition-smooth);
}

.listing-card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.listing-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.listing-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
}

.listing-badge-sale {
    background: var(--gold-gradient);
}

.listing-badge-rent {
    background: #111827;
}

.listing-badge-featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gold-start);
    border: 1px solid var(--gold-mid);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
}

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

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(246, 157, 143, 0.18);
    border-color: rgba(207, 133, 46, 0.25);
}

.listing-card-details {
    padding: 1.5rem;
}

.listing-card-details .price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.listing-card-details h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-card-details .location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.listing-card-details .location i {
    color: var(--gold-start);
}

.listing-card-features {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(248, 185, 170, 0.2);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.listing-card-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.listing-card-features span i {
    color: var(--gold-start);
    font-size: 0.9rem;
}

.listing-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
}

/* Why Choose Section */
.why-section {
    background: linear-gradient(180deg, rgba(248, 185, 170, 0.15) 0%, rgba(251, 205, 192, 0.25) 100%);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(207, 133, 46, 0.25);
}

.why-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Premium Dark Footer */
footer {
    background: #111827;
    color: #ffffff;
    padding: 80px 0 30px;
    border-top: 2px solid var(--gold-start);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-column ul a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-contact li i {
    color: var(--gold-mid);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Sticky WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(15deg);
}

/* Scheduling Lead Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-card {
    max-width: 500px;
    width: 100%;
    position: relative;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--gold-start);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(248, 185, 170, 0.4);
    outline: none;
    font-family: inherit;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold-start);
    box-shadow: 0 0 0 3px rgba(207, 133, 46, 0.15);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Inner Search Filter Page Layout */
.properties-archive-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.properties-sidebar {
    position: sticky;
    top: 110px;
    padding: 0;
    border: none;
    background: transparent;
}

.sidebar-title {
    display: none; /* Controlled inline on afbeke layout */
}

.filter-widget-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.properties-listings-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.archive-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(248, 185, 170, 0.2);
}

/* Property Detail Page Styles */
.property-detail-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(248, 185, 170, 0.3);
}

.property-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 0;
}

.property-title-section h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.property-title-section .meta-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-start);
}

.property-gallery-slider {
    width: 100%;
    height: 550px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 3rem;
    position: relative;
}

.property-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

.detail-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1.75rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(248, 185, 170, 0.3);
}

.spec-item {
    text-align: center;
}

.spec-item i {
    font-size: 1.5rem;
    color: var(--gold-start);
    margin-bottom: 0.5rem;
}

.spec-item span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}

.spec-item strong {
    font-size: 1rem;
    color: var(--text-primary);
}

/* Interactive Details Tabs */
.tabs-nav {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid rgba(248, 185, 170, 0.3);
    margin-bottom: 2rem;
}

.tab-trigger {
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.tab-trigger.active {
    color: var(--gold-start);
    border-color: var(--gold-start);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.amenity-item i {
    color: #25D366;
}

/* Sticky Agent Sidebar Card */
.agent-card {
    padding: 2.5rem;
    border: 1px solid rgba(248, 185, 170, 0.4);
    box-shadow: var(--glass-shadow);
    text-align: center;
    position: sticky;
    top: 110px;
}

.agent-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--gold-start);
    box-shadow: 0 4px 15px rgba(246, 157, 143, 0.2);
}

.agent-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.agent-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.agent-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.agent-actions .btn {
    width: 100%;
}

.agent-actions .btn-wa {
    background-color: #25D366;
    color: #ffffff;
}

.agent-actions .btn-wa:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
}

/* Responsive Hamburger Menu Styles */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .properties-archive-container {
        grid-template-columns: 1fr;
    }
    
    .properties-sidebar {
        position: static;
        width: 100%;
    }
    
    .property-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .agent-card {
        position: static;
        margin-top: 2rem;
    }
}

/* Global Mobile Button Hide on Desktop */
.mobile-chat-btn {
    display: none !important;
}

@media (max-width: 768px) {
    .hero-slide-content h2 {
        font-size: 2.5rem;
    }
    
    /* Header Customizations */
    .header-actions .user-profile {
        display: none !important;
    }
    
    .header-glass {
        padding: 0.65rem 1.25rem !important;
        border-radius: 9999px !important;
        max-width: calc(100% - 2.5rem) !important;
        margin: 0 auto !important;
    }
    
    /* Search Form Card Container */
    .search-glass-pill {
        border-radius: 24px !important;
        padding: 1.5rem !important;
        background: rgba(11, 15, 25, 0.6) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        max-width: 100% !important;
    }
    
    .search-form-pill-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.85rem !important;
        grid-template-columns: none !important;
    }
    
    /* White Pill Fields */
    .search-pill-field {
        border-right: none !important;
        border-bottom: none !important;
        padding: 0.75rem 1.25rem !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 12px !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        color: #111827 !important;
    }
    
    .search-pill-field::after {
        display: none !important;
    }
    
    .search-pill-field select {
        color: #111827 !important;
        background: transparent !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .search-pill-field select option {
        background: #ffffff !important;
        color: #111827 !important;
    }
    
    .search-pill-field i {
        color: #4b5563 !important; /* Elegant gray matching icons */
        font-size: 0.95rem !important;
    }
    
    /* Horizontal Unified Button Row */
    .search-action-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-top: 0.35rem !important;
    }
    
    .mobile-chat-btn {
        width: 56px !important;
        height: 56px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        color: #ffffff !important;
        font-size: 1.25rem !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-chat-btn.blue-chat-btn {
        display: flex !important;
        background-color: #2563eb !important; /* Tailwind blue-600 */
    }
    
    .mobile-chat-btn.green-chat-btn {
        display: flex !important;
        background-color: #22c55e !important; /* Tailwind green-500 */
    }
    
    .mobile-chat-btn:hover {
        transform: scale(1.05) !important;
    }
    
    .search-submit-btn {
        flex-grow: 1 !important;
        width: auto !important;
        height: 56px !important;
        background: #2563eb !important; /* Solid blue matching afbeke */
        color: #ffffff !important;
        border-radius: 12px !important;
        font-weight: 700 !important;
        font-size: 0.95rem !important;
        text-transform: uppercase !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2) !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .search-submit-btn:hover {
        background: #1d4ed8 !important;
        transform: translateY(-1px) !important;
    }
    
    /* Hide float WhatsApp widget on mobile since we integrate it inline */
    .whatsapp-widget {
        display: none !important;
    }
    
    .category-grid {
        grid-template-columns: 1fr !important;
    }
    
    .listings-grid {
        grid-template-columns: 1fr !important;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-search-wrapper {
        bottom: -280px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background: #ffffff;
        padding: 2rem;
        border-bottom: 2px solid var(--brand-peach);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
    }
    
    nav.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .desktop-nav .menu-item {
        padding: 0.15rem 0 !important;
        width: 100% !important;
    }
    
    .desktop-nav .menu-item > a {
        display: block !important;
        padding: 0.6rem 1rem !important;
        text-align: center !important;
        color: #111827 !important; /* Force visible dark text */
        font-weight: 600 !important;
        font-size: 1.05rem !important;
        border-bottom: 1px solid rgba(250, 186, 171, 0.3) !important;
        transition: var(--transition-smooth) !important;
    }
    
    .desktop-nav .menu-item > a:hover {
        color: var(--brand-peach) !important;
    }

    /* Restructure large desktop submenus as nested vertical lists on mobile */
    .desktop-nav .mega-menu {
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #ffffff !important; /* Pure white card */
        border: 1px solid rgba(250, 186, 171, 0.35) !important; /* Subtle peach border */
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(250, 186, 171, 0.08) !important; /* Peach-tinted soft shadow */
        padding: 0.75rem !important;
        margin-top: 0.5rem !important;
        display: none !important;
    }
    
    /* Toggle display on hover / tap container active state */
    .desktop-nav .menu-item:hover > .mega-menu,
    .desktop-nav .menu-item:hover > .dropdown-menu {
        display: block !important;
    }
    
    .desktop-nav .dropdown-menu {
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #ffffff !important; /* Pure white card */
        border: 1px solid rgba(250, 186, 171, 0.35) !important; /* Subtle peach border */
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(250, 186, 171, 0.08) !important;
        padding: 0.5rem 0 !important;
        margin-top: 0.5rem !important;
        display: none !important;
    }
    
    .desktop-nav .mega-menu-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.85rem !important;
        grid-template-columns: none !important;
    }
    
    .desktop-nav .mega-column {
        width: 100% !important;
        padding: 0.5rem 0.25rem !important;
        border-bottom: 1px dashed rgba(250, 186, 171, 0.2) !important;
    }
    
    .desktop-nav .mega-column:last-child {
        border-bottom: none !important;
    }
    
    .desktop-nav .mega-column h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.65rem !important;
        color: var(--brand-peach-dark) !important; /* Richer peach header color */
        border-bottom: none !important;
        padding-bottom: 0 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        font-weight: 700 !important;
        text-align: left !important;
        padding-left: 0.75rem !important;
    }
    
    .desktop-nav .mega-column ul {
        gap: 0.35rem !important;
        align-items: stretch !important;
    }
    
    .desktop-nav .mega-column ul a,
    .desktop-nav .dropdown-menu a {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        color: #374151 !important; /* Premium dark charcoal slate text */
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        padding: 0.5rem 0.75rem !important;
        text-align: left !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        margin-bottom: 0.25rem !important;
        border: none !important;
        justify-content: flex-start !important;
    }
    
    .desktop-nav .mega-column ul a i,
    .desktop-nav .dropdown-menu a i {
        color: var(--brand-peach) !important;
        background: rgba(250, 186, 171, 0.12) !important;
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.85rem !important;
        transition: all 0.3s ease !important;
        flex-shrink: 0 !important;
    }
    
    .desktop-nav .mega-column ul a:hover,
    .desktop-nav .dropdown-menu a:hover {
        color: var(--brand-peach-dark) !important;
        background: rgba(250, 186, 171, 0.08) !important;
        padding-left: 1rem !important; /* Slide-in motion */
    }
    
    .desktop-nav .mega-column ul a:hover i,
    .desktop-nav .dropdown-menu a:hover i {
        background: var(--brand-peach) !important;
        color: #ffffff !important;
        transform: rotate(360deg) !important; /* Micro-interaction rotation! */
    }
    
    .desktop-nav .mega-showcase {
        display: none !important; /* Hide showcase card to save space */
    }
    
    .property-gallery-slider {
        height: 350px;
    }
    
    .detail-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dynamic Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Premium Properties Directory Archive Page Hero */
.archive-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.5) 0%, rgba(17, 24, 39, 0.75) 100%);
    z-index: 1;
}

.archive-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}

.archive-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.archive-hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.25rem;
    font-weight: 300; /* Outfit light weight */
    margin-bottom: 1rem;
}

.archive-hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* Sleek Minimalist Filters Sidebar */
.filter-sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
}

.sidebar-search-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
}

.sidebar-search-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.sidebar-search-input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    background: #f8fafc !important;
    border: none !important;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
}

.sidebar-select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #f8fafc !important;
    border: none !important;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.sidebar-select-wrapper {
    position: relative;
}

.sidebar-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.75rem;
    pointer-events: none;
}

.sidebar-price-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sidebar-price-range input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #f8fafc !important;
    border: none !important;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
}

/* Premium afbeke-style Real Estate Cards */
/* Premium afbeke-style Real Estate Cards */
.afbeke-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.afbeke-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 15, 25, 0.08);
    border-color: rgba(234, 196, 115, 0.3);
}

.afbeke-card-media {
    position: relative;
    height: 270px;
    overflow: hidden;
}

.afbeke-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.afbeke-card:hover .afbeke-card-media img {
    transform: scale(1.06);
}

/* Dark bottom gradient overlay inside image */
.afbeke-card-media .media-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0) 0%, rgba(11, 15, 25, 0.2) 55%, rgba(11, 15, 25, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Text overlay inside media area */
.afbeke-card-media .media-text-overlay {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    color: #ffffff;
    pointer-events: auto;
}

.afbeke-card-media .media-text-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.4rem 0;
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-family: 'Outfit', sans-serif;
}

.afbeke-card-media .media-text-overlay h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.afbeke-card-media .media-text-overlay h3 a:hover {
    opacity: 0.9;
}

.afbeke-card-media .media-text-overlay .media-location-tag {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.afbeke-card-media .media-text-overlay .media-location-tag i {
    color: var(--brand-peach);
}

.afbeke-card-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Badges underneath image */
.afbeke-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.afbeke-card-badges span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.afbeke-card-badges .badge-status {
    font-weight: 700;
}

.afbeke-card-badges .badge-status.status-for-sale {
    background: rgba(207, 133, 46, 0.1);
    border: 1px solid rgba(234, 196, 115, 0.3);
    color: #cf852e;
}

.afbeke-card-badges .badge-status.status-for-rent {
    background: rgba(246, 157, 143, 0.12);
    border: 1px solid rgba(246, 157, 143, 0.3);
    color: var(--brand-peach);
}

.afbeke-card-badges .badge-type {
    background: rgba(11, 15, 25, 0.04);
    border: 1px solid rgba(11, 15, 25, 0.08);
    color: #475569;
}

.afbeke-card-badges .badge-featured {
    background: rgba(11, 15, 25, 0.85);
    color: #ffffff;
    border: 1px solid rgba(11, 15, 25, 0.85);
}

.afbeke-card-details .price {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0b0f19;
    margin-bottom: 1.25rem;
    display: block;
    letter-spacing: -0.01em;
}

/* Amenities Row */
.afbeke-card-features {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.82rem;
    color: #64748b;
    margin-top: auto;
    font-weight: 600;
}

.afbeke-card-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.afbeke-card-features span i {
    color: #64748b;
    font-size: 0.9rem;
}

/* Full Width View Details Button */
.afbeke-card-footer-action {
    margin-top: 1.25rem;
}

.btn-view-details {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: #0b0f19; /* Primary deep navy branding */
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #0b0f19;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-view-details:hover {
    background: linear-gradient(135deg, #cf852e, #eac473); /* Luxe Gold Gradient */
    border-color: transparent;
    color: #0b0f19; /* Contrast text inside gold hover state */
    box-shadow: 0 4px 15px rgba(207, 133, 46, 0.35);
}

/* Premium Property Details Page Styles */
.property-dark-hero {
    position: relative;
    background: #0b0f19; /* Solid deep dark slate background */
    color: #ffffff;
    padding: 7rem 0 9.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.property-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.property-hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.property-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.property-hero-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-start);
    font-family: 'Outfit', sans-serif;
}

/* Swiper Overlap Placement */
.property-gallery-overlap {
    position: relative;
    z-index: 10;
    margin-top: -8rem; /* Negative offset to overlap the dark section beautifully */
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.property-gallery-overlap swiper-container,
.property-gallery-overlap .property-gallery-slider {
    height: 480px;
    border-radius: 20px;
}

/* Wide Property Grid Columns */
.property-detail-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 340px; /* Precise widths matching afbeke */
    gap: 2.5rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Property Details 4-Column Specs Card */
.property-details-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.property-details-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.property-specs-layout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.detail-spec-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: var(--transition-smooth);
}

.detail-spec-box:hover {
    background: #ffffff;
    border-color: rgba(248, 185, 170, 0.5);
    box-shadow: 0 8px 20px rgba(246, 157, 143, 0.06);
}

.detail-spec-box i {
    font-size: 1.35rem;
    color: var(--gold-start);
}

.detail-spec-box div {
    display: flex;
    flex-direction: column;
}

.detail-spec-box .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.detail-spec-box .value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.15rem;
}

/* Tabs Navigation styling on White backdrop */
.property-tabs-nav {
    display: flex;
    gap: 2rem;
    border-bottom: 1.5px solid #e2e8f0;
    margin-bottom: 1.75rem;
    padding-bottom: 0.25rem;
}

.property-tab-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding-bottom: 0.85rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.property-tab-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--brand-peach);
    transition: var(--transition-smooth);
}

.property-tab-link:hover {
    color: var(--brand-peach);
}

.property-tab-link.active {
    color: var(--brand-peach);
}

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

.property-tab-pane {
    display: none;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 0.95rem;
    animation: fadeIn 0.4s ease;
}

.property-tab-pane.active {
    display: block;
}

/* Agent Sidebar Glass Card Redesign */
.agent-sidebar-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.035);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.agent-sidebar-card .profile-img-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--brand-peach) 100%);
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(246, 157, 143, 0.2);
}

.agent-sidebar-card .profile-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
}

.agent-sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.agent-sidebar-card .title-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.agent-sidebar-card .contacts-list {
    width: 100%;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 1.25rem 0;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
}

.agent-sidebar-card .contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.agent-sidebar-card .contact-row i {
    color: var(--gold-start);
    width: 16px;
    text-align: center;
}

.agent-sidebar-card .contact-row a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.agent-sidebar-card .contact-row a:hover {
    color: var(--gold-start);
}

.agent-sidebar-card .action-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-sidebar-solid {
    background: var(--gold-gradient);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 4px 15px rgba(207, 133, 46, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-sidebar-solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(207, 133, 46, 0.35);
}

.btn-sidebar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
}

.btn-sidebar-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid #cbd5e1;
    border-radius: 30px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-sidebar-outline:hover {
    border-color: var(--brand-peach);
    color: var(--brand-peach);
    background: rgba(248, 185, 170, 0.05);
}

.sidebar-stats-box {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    margin: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.btn-sidebar-save {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid #cbd5e1;
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-sidebar-save:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.detail-map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.015);
}

/* About Page (Who We Are) Styles */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0 6rem 0;
    text-align: center;
    color: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
    margin-top: 4rem;
}

@media (max-width: 991px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.about-intro-highlight-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.about-intro-highlight-row .icon-wrapper {
    flex-shrink: 0;
}

.about-intro-highlight-row div {
    display: flex;
    flex-direction: column;
}

.about-intro-highlight-row strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
}

.about-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.about-card-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.025);
    border-color: rgba(246, 157, 143, 0.4);
}

.about-card-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 991px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.about-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-gallery-item:hover img {
    transform: scale(1.04);
}

/* Contact Page Styles */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (max-width: 991px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    margin-bottom: 2rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-info-item .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(246, 157, 143, 0.1);
    color: var(--brand-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-info-item div {
    display: flex;
    flex-direction: column;
}

.contact-info-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-info-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--brand-peach);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(246, 157, 143, 0.15);
}

/* ==========================================================================
   Insights System Mobile Responsiveness Rules
   ========================================================================== */

/* Archive Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
}

/* Details Page Layout */
.insights-details-layout {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* GEO Metrics Grid */
.geo-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Mobile overrides */
@media (max-width: 991px) {
    .insights-details-layout {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .geo-metrics-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* ==========================================================================
   HOMEPAGE HERO STYLES (DYNAMIC MULTI-TYPE VIEWPORT OVERRIDES)
   ========================================================================== */
.hero-slide-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b0f19;
}

/* Swiper Hero Wrapper */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Swiper Custom Pagination bullets in brand gold */
.hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 50%;
    margin: 0 6px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end)) !important;
    box-shadow: 0 0 10px rgba(207, 133, 46, 0.5);
}

/* Full-cover YouTube Video Background container */
.video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.video-background-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Search pill overlay positioning */
.hero-search-container {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-search-container {
        bottom: 5%;
    }
}

/* Swiper fade overlap correction */
.hero-swiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity 1.4s ease-in-out !important;
    pointer-events: none;
}

.hero-swiper .swiper-slide-active {
    opacity: 1 !important;
    pointer-events: auto;
}

/* Custom Language Dropdown Selector Styles */
.lang-dropdown-wrapper.active .lang-chevron {
    transform: rotate(180deg) !important;
}

.lang-option:hover {
    background: rgba(250, 186, 171, 0.15) !important;
    color: var(--brand-peach-dark) !important;
}

.lang-option.active {
    background: rgba(250, 186, 171, 0.25) !important;
    color: var(--brand-peach-dark) !important;
}

/* Stripping Google Translate branding and layout shifts for pure luxury look */
#google_translate_element {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

iframe.goog-te-banner-frame,
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}

body {
    top: 0px !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Quick keyframes for language fade in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
