/* ============================================================
   El Bedihy & Co — Standalone Theme Design System
   Navy / Blue / White
   ============================================================ */

/* -----------------------------------------------
   1. DESIGN TOKENS
   ----------------------------------------------- */
:root {
    /* Brand colors from logo (image_0.png) */
    --eb-primary-blue: #00468C;       /* Primary Corporate Blue */
    --eb-primary-blue-dark: #00356B;  /* Darker variant for hover/active */
    --eb-primary-blue-light: #005AB5; /* Lighter variant */
    --eb-sky-blue: #A8DADC;           /* Secondary Sky Blue */
    --eb-sky-blue-dark: #7FC4D4;      /* Sky blue hover */
    
    /* Neutral grays */
    --eb-gray-900: #1a1a2e;           /* Near black for headings */
    --eb-gray-800: #333333;           /* Primary text */
    --eb-gray-700: #4a4a4a;
    --eb-gray-600: #666666;           /* Secondary text */
    --eb-gray-500: #888888;
    --eb-gray-400: #aaaaaa;
    --eb-gray-300: #cccccc;           /* Borders */
    --eb-gray-200: #e0e0e0;
    --eb-gray-100: #eeeeee;           /* Light backgrounds */
    --eb-gray-50: #f9f9f9;            /* Page background */
    
    /* Semantic aliases */
    --eb-navy: var(--eb-gray-900);
    --eb-navy-light: var(--eb-gray-800);
    --eb-navy-mid: var(--eb-gray-700);
    --eb-blue: var(--eb-primary-blue);
    --eb-blue-light: var(--eb-sky-blue);
    --eb-blue-dark: var(--eb-primary-blue-dark);
    --eb-blue-glow: rgba(0, 70, 140, 0.25);
    --eb-white: #ffffff;
    --eb-off-white: var(--eb-gray-50);
    --eb-light: var(--eb-gray-100);
    --eb-border: var(--eb-gray-300);
    --eb-text: var(--eb-gray-600);
    --eb-text-dark: var(--eb-gray-800);
    --eb-text-light: var(--eb-gray-500);
    --eb-success: #2ecc71;
    --eb-warning: #f39c12;
    --eb-error: #e74c3c;
    --eb-font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --eb-font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --eb-font-body: 'Outfit', -apple-system, sans-serif;
    --eb-max-width: 1200px;
    --eb-container-padding: 20px;
    --eb-header-h: 80px;
    --eb-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --eb-radius-sm: 6px;
    --eb-radius-md: 12px;
    --eb-radius-lg: 20px;
}

/* Dark mode tokens — inverted palette preserving brand blue */
@media (prefers-color-scheme: dark) {
    :root {
        --eb-gray-900: #f0f4f8;
        --eb-gray-800: #d1d9e0;
        --eb-gray-700: #b0bcc9;
        --eb-gray-600: #8fa3b8;
        --eb-gray-500: #6e869a;
        --eb-gray-400: #546e7a;
        --eb-gray-300: #42545e;
        --eb-gray-200: #2c3e4a;
        --eb-gray-100: #1e2d36;
        --eb-gray-50: #0f1a24;
        
        --eb-primary-blue: #7FC4D4;   /* Sky blue becomes primary in dark */
        --eb-primary-blue-dark: #A8DADC;
        --eb-primary-blue-light: #5BB8CC;
        --eb-sky-blue: #005AB5;       /* Primary blue becomes accent */
        --eb-sky-blue-dark: #00468C;
        
        --eb-blue: var(--eb-primary-blue);
        --eb-blue-light: var(--eb-primary-blue-dark);
        --eb-blue-dark: var(--eb-primary-blue-light);
        --eb-blue-glow: rgba(127, 196, 212, 0.35);
        --eb-white: #0f1a24;
        --eb-off-white: var(--eb-gray-50);
        --eb-light: var(--eb-gray-100);
        --eb-border: var(--eb-gray-300);
        --eb-text: var(--eb-gray-600);
        --eb-text-dark: var(--eb-gray-800);
        --eb-text-light: var(--eb-gray-400);
    }
}

/* -----------------------------------------------
   2. BASE
   ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding: 0;
    font-family: var(--eb-font-body);
    color: var(--eb-text);
    font-size: 16px;
    line-height: 1.7;
    background: var(--eb-white);
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--eb-font-heading);
    color: var(--eb-navy);
    line-height: 1.25;
    margin-top: 0;
}
h1 { font-size: clamp(2rem, 2.5vw + 1rem, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 1.8vw + 0.8rem, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 1.2vw + 0.6rem, 1.8rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 0.9vw + 0.5rem, 1.4rem); font-weight: 600; }
p { margin: 0 0 1.2em; }
a { color: var(--eb-blue); text-decoration: none; transition: var(--eb-transition); }
a:hover { color: var(--eb-blue-dark); }
img { max-width: 100%; height: auto; }
ul, ol { margin: 0 0 1.2em; padding: 0 0 0 1.5em; }
::selection { background: var(--eb-blue); color: var(--eb-white); }
.text-wrap-balance { text-wrap: balance; }

/* -----------------------------------------------
   3. UTILITY
   ----------------------------------------------- */
.container { max-width: var(--eb-max-width); margin: 0 auto; padding: 0 var(--eb-container-padding); }
.eb-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px;
    font-family: var(--eb-font-body); font-size: 0.95rem;
    font-weight: 600; line-height: 1; border: none;
    cursor: pointer; transition: var(--eb-transition);
    text-decoration: none;
}
.eb-btn-primary { background: var(--eb-blue); color: var(--eb-white); }
.eb-btn-primary:hover { background: var(--eb-blue-dark); color: var(--eb-white); transform: translateY(-2px); box-shadow: 0 8px 25px var(--eb-blue-glow); }
.eb-btn-outline { background: transparent; color: var(--eb-navy); border: 2px solid var(--eb-navy); }
.eb-btn-outline:hover { background: var(--eb-navy); color: var(--eb-white); transform: translateY(-2px); }

/* Skip to content link */
.eb-skip-link {
    position: absolute; top: -100px; left: 0; z-index: 10000;
    background: var(--eb-primary-blue); color: var(--eb-white);
    padding: 12px 24px; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; border-radius: 0 0 var(--eb-radius-sm) 0;
    transition: top 0.2s ease;
}
.eb-skip-link:focus {
    top: 0; outline: 3px solid var(--eb-sky-blue); outline-offset: 2px;
}
.eb-btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.eb-btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.eb-section { padding: 80px 0; }
.eb-section-title { text-align: center; margin-bottom: 10px; }
.eb-section-title span { color: var(--eb-blue); }
.eb-section-subtitle { text-align: center; color: var(--eb-text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto 50px; }
.eb-accent { color: var(--eb-blue); }
.text-center { text-align: center; }

/* -----------------------------------------------
   4. HEADER
   ----------------------------------------------- */
.eb-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(0, 53, 107, 0.88);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    height: var(--eb-header-h);
    transition: var(--eb-transition);
    border-bottom: 1px solid rgba(168, 218, 220, 0.1);
}
.eb-header.scrolled { background: rgba(0, 53, 107, 0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.2); }
.eb-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--eb-max-width); margin: 0 auto; padding: 0 var(--eb-container-padding);
    height: 100%;
}
.eb-logo { display: flex; align-items: center; }
.eb-logo img { height: 50px; width: auto; }
.eb-logo-text { font-family: var(--eb-font-heading); font-size: 1.5rem; color: var(--eb-white); font-weight: 700; letter-spacing: 0.5px; }
.eb-logo-text span { color: var(--eb-sky-blue); font-weight: 400; }
.eb-nav { display: flex; align-items: center; gap: 30px; }
.eb-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}
.eb-nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--eb-sky-blue);
    transition: var(--eb-transition);
}
.eb-nav a:hover, .eb-nav .current-menu-item a {
    color: var(--eb-white);
}
.eb-nav a:hover::after, .eb-nav .current-menu-item a::after { width: 100%; }
.eb-nav .current-menu-item a { color: var(--eb-sky-blue); font-weight: 600; }
.eb-nav .current-menu-item a::after { width: 100%; background: var(--eb-sky-blue); }
.eb-header-cta { display: flex; align-items: center; gap: 15px; }
.eb-phone-link {
    color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}
.eb-phone-link i { color: #25d366; font-size: 1.1rem; }
.eb-phone-link:hover { color: var(--eb-sky-blue); }
.eb-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.eb-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--eb-white); border-radius: 2px;
    transition: var(--eb-transition);
}

/* Language Switcher */
.eb-language-switcher-wrap { position: relative; }
.eb-lang-toggle {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--eb-white);
    padding: 6px 14px;
    border-radius: var(--eb-radius-sm);
    cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    font-size: 0.85rem;
    font-family: var(--eb-font-body);
    transition: var(--eb-transition);
}
.eb-lang-toggle:hover { background: rgba(255,255,255,0.15); }
.eb-lang-toggle i { font-size: 0.7rem; opacity: 0.6; }
.eb-lang-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--eb-white);
    border-radius: var(--eb-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 180px;
    display: none;
    z-index: 100;
    overflow: hidden;
}
.eb-lang-dropdown.open { display: block; }
.eb-lang-option {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 16px;
    color: var(--eb-text-dark);
    font-size: 0.9rem;
    transition: var(--eb-transition);
    text-decoration: none;
}
.eb-lang-option:hover { background: var(--eb-off-white); color: var(--eb-primary-blue); }
.eb-lang-option.active { background: rgba(0,70,140,0.1); color: var(--eb-primary-blue); font-weight: 600; }
.eb-lang-en { font-size: 0.75rem; color: var(--eb-text-light); }

/* Responsive Header */
@media (max-width: 900px) {
    .eb-nav { display: none; position: fixed; top: var(--eb-header-h); left: 0; right: 0;
        background: rgba(0,53,107,0.98); flex-direction: column; padding: 30px 20px;
        gap: 20px; z-index: 999; }
    .eb-nav.open { display: flex; }
    .eb-hamburger { display: flex; }
    .eb-header-cta .eb-btn { display: none; }
    .eb-phone-link span { display: none; }
    .eb-language-switcher-wrap .eb-lang-toggle { display: none; }
    .eb-nav .eb-mobile-lang { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
    .eb-nav .eb-mobile-lang a {
        color: rgba(255,255,255,0.7); font-size: 0.85rem; padding: 6px 12px;
        border: 1px solid rgba(255,255,255,0.15); border-radius: var(--eb-radius-sm);
        text-decoration: none; transition: var(--eb-transition);
    }
    .eb-nav .eb-mobile-lang a:hover, .eb-nav .eb-mobile-lang a.active {
        color: var(--eb-white); border-color: var(--eb-sky-blue); background: rgba(168,218,220,0.12);
    }
}

/* -----------------------------------------------
   5. HERO
   ----------------------------------------------- */
.eb-hero {
    position: relative; min-height: 85vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #00356B 0%, #00468C 40%, #005AB5 100%);
    overflow: hidden; padding: 120px 0 80px;
}
.eb-hero::before {
    content: ''; position: absolute; top: -30%; right: -20%;
    width: 60%; height: 120%;
    background: radial-gradient(circle at center, rgba(168,218,220,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.eb-hero::after {
    content: ''; position: absolute; bottom: -20%; left: -10%;
    width: 50%; height: 100%;
    background: radial-gradient(circle at center, rgba(168,218,220,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.eb-hero-content { position: relative; z-index: 1; max-width: 750px; }
.eb-hero h1 {     color: var(--eb-white); font-size: clamp(2rem, 3vw + 1rem, 4rem); margin-bottom: 20px; }
.eb-hero h1 span { color: var(--eb-blue); }
.eb-hero .eb-price-visual {
    font-size: clamp(2.5rem, 4vw + 1.5rem, 5.6rem); font-weight: 700;
    font-family: var(--eb-font-heading); line-height: 1; letter-spacing: -2px;
    background: linear-gradient(135deg, var(--eb-blue), #7ec8f0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 10px;
}
.eb-hero p { color: rgba(255,255,255,0.7); font-size: clamp(0.95rem, 0.8vw + 0.5rem, 1.15rem); max-width: 550px; margin-bottom: 35px; line-height: 1.8; }
.eb-hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }

/* -----------------------------------------------
   6. STATS BAR
   ----------------------------------------------- */
.eb-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--eb-border); border-radius: var(--eb-radius-md);
    overflow: hidden; margin-top: -50px; position: relative; z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.eb-stat-item {
    background: var(--eb-white); padding: 30px 20px;
    text-align: center;
}
.eb-stat-number {
    font-family: var(--eb-font-heading); font-size: 2.2rem;
    font-weight: 700; color: var(--eb-blue); display: block;
}
.eb-stat-label {
    font-size: 0.85rem; color: var(--eb-text-light); text-transform: uppercase;
    letter-spacing: 1px; font-weight: 500;
}

/* -----------------------------------------------
   7. PROPERTY CARDS
   ----------------------------------------------- */
.eb-property-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
}
@media (max-width: 900px) { .eb-property-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .eb-property-grid { grid-template-columns: 1fr; } }

.eb-property-card {
    background: var(--eb-white); border-radius: var(--eb-radius-md);
    overflow: hidden;     box-shadow: 0 2px 15px rgba(0,70,140,0.06);
    transition: var(--eb-transition); border: 1px solid var(--eb-border);
    display: flex; flex-direction: column;
}
.eb-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,70,140,0.12);
}
.eb-property-card-image {
    position: relative; overflow: hidden; aspect-ratio: 3/2;
}
.eb-property-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--eb-transition);
}
.eb-property-card:hover .eb-property-card-image img { transform: scale(1.05); }
.eb-property-card-badge {
    position: absolute; top: 15px; left: 15px;
    background: var(--eb-blue); color: var(--eb-white);
    padding: 4px 14px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px;
}
.eb-property-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.eb-property-card-price {
    font-family: var(--eb-font-heading); font-size: 1.3rem;
    font-weight: 700; color: var(--eb-blue); margin-bottom: 6px;
}
.eb-property-card-title {
    font-size: 1rem; font-weight: 600; color: var(--eb-navy);
    margin-bottom: 8px;
}
.eb-property-card-title a { color: var(--eb-navy); }
.eb-property-card-title a:hover { color: var(--eb-blue); }
.eb-property-card-location {
    font-size: 0.8rem; color: var(--eb-text-light); margin-bottom: 12px;
}
.eb-property-card-location i { color: var(--eb-blue); margin-right: 5px; }
.eb-property-card-meta {
    display: flex; gap: 15px; font-size: 0.8rem; color: var(--eb-text);
    margin-bottom: 12px; padding-top: 12px;
    border-top: 1px solid var(--eb-light);
}
.eb-property-card-meta span { display: flex; align-items: center; gap: 4px; }
.eb-property-card-meta i { color: var(--eb-blue); }
.eb-property-card-whatsapp {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px; background: #25d366; color: var(--eb-white);
    font-size: 0.85rem; font-weight: 600; text-decoration: none;
    transition: var(--eb-transition);
}
.eb-property-card-whatsapp:hover { background: #128c7e; color: var(--eb-white); }

/* -----------------------------------------------
   8. SERVICES
   ----------------------------------------------- */
.eb-services-grid {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: start;
}
@media (max-width: 768px) { .eb-services-grid { grid-template-columns: 1fr; } }
.eb-service-card {
    background: var(--eb-white); border-radius: var(--eb-radius-md);
    padding: 40px 30px; border: 1px solid var(--eb-border);
    transition: var(--eb-transition);
}
@media (max-width: 768px) { .eb-service-card { text-align: center; } }
.eb-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,70,140,0.08);
    border-color: var(--eb-blue);
}
.eb-service-card-featured {
    grid-row: span 2; padding: 50px 40px;
    border-color: var(--eb-blue); border-width: 1px;
    background: linear-gradient(135deg, var(--eb-white) 0%, rgba(0,70,140,0.03) 100%);
    display: flex; flex-direction: column;
}
.eb-service-card-featured .eb-service-icon {
    width: 80px; height: 80px; font-size: 2.2rem;
}
.eb-service-card-featured h3 { font-size: 1.4rem; }
.eb-service-card-featured p { font-size: 0.95rem; }
.eb-service-sub-grid {
    display: flex; flex-direction: column; gap: 30px;
}
.eb-service-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(0,70,140,0.08);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 1.5rem; color: var(--eb-blue);
}
.eb-service-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--eb-navy); }
.eb-service-card p { font-size: 0.9rem; color: var(--eb-text-light); margin: 0; line-height: 1.7; }

/* -----------------------------------------------
   9. CTA SECTION
   ----------------------------------------------- */
.eb-cta-section {
    background: linear-gradient(135deg, #00356B 0%, #00468C 50%, #005AB5 100%);
    padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.eb-cta-section::before {
    content: ''; position: absolute; top: -50%; left: -20%;
    width: 70%; height: 150%;
    background: radial-gradient(circle at center, rgba(168,218,220,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.eb-cta-section h2 { color: var(--eb-white); font-size: 2.4rem; margin-bottom: 15px; position: relative; }
.eb-cta-section p { color: rgba(255,255,255,0.6); max-width: 550px; margin: 0 auto 30px; position: relative; }

/* -----------------------------------------------
   10. PAGE HEADER
   ----------------------------------------------- */
.eb-page-header {
    background: linear-gradient(135deg, #00356B 0%, #00468C 50%, #005AB5 100%);
    padding: 140px 0 60px; text-align: center; position: relative;
}
.eb-page-header h1 { color: var(--eb-white); margin: 0; }
.eb-page-header p { color: rgba(255,255,255,0.6); margin-top: 10px; }

/* -----------------------------------------------
   11. FOOTER
   ----------------------------------------------- */
.eb-footer {
    background: #00356B; color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.eb-footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 768px) { .eb-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .eb-footer-grid { grid-template-columns: 1fr; } }
.eb-footer h3, .eb-footer h4 {
    color: var(--eb-white); font-family: var(--eb-font-heading);
    margin-bottom: 20px;
}
.eb-footer-about p { font-size: 0.9rem; line-height: 1.7; }
.eb-footer-links { list-style: none; padding: 0; margin: 0; }
.eb-footer-links li { margin-bottom: 10px; }
.eb-footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.eb-footer-links a:hover { color: var(--eb-blue); }
.eb-footer-contact p { font-size: 0.9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.eb-footer-contact i { color: var(--eb-blue); width: 16px; }
.eb-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0; margin-top: 40px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 15px;
    font-size: 0.85rem;
}
.eb-footer-social { display: flex; gap: 12px; }
.eb-footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 0.95rem;
    transition: var(--eb-transition);
}
.eb-footer-social a:hover { background: var(--eb-blue); color: var(--eb-white); }

/* -----------------------------------------------
   12. BLOG / CONTENT
   ----------------------------------------------- */
.eb-content { padding: 60px 0; }
.eb-content-area { max-width: 800px; margin: 0 auto; }
.eb-post-card {
    background: var(--eb-white); border-radius: var(--eb-radius-md);
    overflow: hidden; box-shadow: 0 2px 15px rgba(0,70,140,0.06);
    border: 1px solid var(--eb-border); margin-bottom: 30px;
}
.eb-post-card-body { padding: 25px; }
.eb-post-card h2 { font-size: 1.4rem; margin-bottom: 10px; }
.eb-post-card h2 a { color: var(--eb-navy); }
.eb-post-card h2 a:hover { color: var(--eb-blue); }
.eb-post-meta { font-size: 0.85rem; color: var(--eb-text-light); margin-bottom: 15px; }
.eb-post-meta span { margin-right: 15px; }

/* -----------------------------------------------
   13. SINGLE PROPERTY
   ----------------------------------------------- */
.eb-single-property { padding: 60px 0; }
.eb-single-hero {
    position: relative; background: var(--eb-navy);
    min-height: 50vh; display: flex; align-items: flex-end;
}
.eb-single-hero-content { padding: 120px 0 40px; width: 100%; }
.eb-single-hero h1 { color: var(--eb-white); margin-bottom: 5px; }
.eb-single-hero .eb-property-card-price { font-size: 1.8rem; }
.eb-single-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 40px; }
@media (max-width: 768px) { .eb-single-grid { grid-template-columns: 1fr; } }
.eb-single-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.eb-single-gallery img { width: 100%; height: 250px; object-fit: cover; border-radius: var(--eb-radius-sm); }
.eb-single-gallery img:first-child { grid-column: 1 / -1; height: 400px; }
.eb-property-meta-bar {
    display: flex; flex-wrap: wrap; gap: 30px; padding: 20px 0;
    border-top: 1px solid var(--eb-border); border-bottom: 1px solid var(--eb-border);
    margin: 20px 0;
}
.eb-property-meta-bar span {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; color: var(--eb-text);
}
.eb-property-meta-bar i { color: var(--eb-blue); font-size: 1.1rem; }
.eb-property-sidebar {
    background: var(--eb-off-white); border-radius: var(--eb-radius-md);
    padding: 30px; border: 1px solid var(--eb-border);
    position: sticky; top: 100px;
}
.eb-property-sidebar h3 { margin-bottom: 20px; }
.eb-features-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.eb-features-list li {
    background: rgba(0,70,140,0.1); color: var(--eb-blue);
    padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 500;
}

/* Unit Variations Table */
.eb-unit-variations { overflow-x: auto; margin-bottom: 20px; }
.eb-unit-table {
    width: 100%; border-collapse: collapse;
    background: var(--eb-white);
    border-radius: var(--eb-radius-md);
    overflow: hidden;
    border: 1px solid var(--eb-border);
}
.eb-unit-table thead { background: var(--eb-navy); }
.eb-unit-table th {
    color: var(--eb-white); padding: 14px 16px;
    font-size: 0.85rem; font-weight: 600; text-align: left;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.eb-unit-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--eb-border);
    font-size: 0.9rem;
}
.eb-unit-table tbody tr:hover { background: var(--eb-off-white); }
.eb-unit-table tbody tr:last-child td { border-bottom: none; }
.eb-unit-price { font-family: var(--eb-font-heading); font-weight: 700; color: var(--eb-blue); }
.eb-unit-desc { font-size: 0.85rem; color: var(--eb-text-light); }
.eb-layout-link {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--eb-blue); font-size: 0.85rem; font-weight: 500;
}

/* Payment Plans */
.eb-payment-plans {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; margin-bottom: 30px;
}
.eb-payment-plan-card {
    background: var(--eb-off-white);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-md);
    padding: 25px;
    transition: var(--eb-transition);
}
.eb-payment-plan-card:hover {
    border-color: var(--eb-blue);
    box-shadow: 0 5px 20px rgba(0,70,140,0.08);
}
.eb-payment-plan-card h4 {
    font-family: var(--eb-font-heading);
    font-size: 1.2rem; color: var(--eb-navy);
    margin-bottom: 15px;
}
.eb-payment-plan-details {
    list-style: none; padding: 0; margin: 0 0 12px;
}
.eb-payment-plan-details li {
    padding: 6px 0;
    border-bottom: 1px solid var(--eb-light);
    font-size: 0.9rem;
    display: flex; justify-content: space-between;
}
.eb-payment-plan-details li:last-child { border-bottom: none; }
.eb-payment-desc { font-size: 0.85rem; color: var(--eb-text-light); margin: 0; }

/* -----------------------------------------------
   14. 404
   ----------------------------------------------- */
.eb-404 {
    min-height: 80vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 20px 60px;
}
.eb-404 h1 { font-size: 8rem; color: var(--eb-blue); line-height: 1; margin-bottom: 10px; }
.eb-404 h2 { font-size: 2rem; margin-bottom: 15px; }
.eb-404 p { color: var(--eb-text-light); margin-bottom: 30px; }

/* -----------------------------------------------
   15. PAGINATION
   ----------------------------------------------- */
.eb-pagination { display: flex; justify-content: center; gap: 8px; margin: 40px 0; }
.eb-pagination a, .eb-pagination span {
    padding: 10px 16px; border-radius: var(--eb-radius-sm);
    background: var(--eb-white); border: 1px solid var(--eb-border);
    color: var(--eb-text); font-size: 0.9rem; transition: var(--eb-transition);
}
.eb-pagination .current {
    background: var(--eb-navy); border-color: var(--eb-navy);
    color: var(--eb-white);
}
.eb-pagination a:hover { background: var(--eb-blue); border-color: var(--eb-blue); color: var(--eb-white); }

/* -----------------------------------------------
   16. SEARCH
   ----------------------------------------------- */
.eb-search-form { display: flex; gap: 10px; margin-bottom: 30px; }
.eb-search-form input {
    flex: 1; padding: 14px 20px; border: 2px solid var(--eb-border);
    border-radius: var(--eb-radius-sm); font-size: 1rem;
    transition: var(--eb-transition);
}
.eb-search-form input:focus { border-color: var(--eb-primary-blue); outline: 2px solid var(--eb-primary-blue); outline-offset: 1px; box-shadow: 0 0 0 3px rgba(0,70,140,0.15); }

/* -----------------------------------------------
   17. WIDGETS
   ----------------------------------------------- */
.eb-widget { margin-bottom: 30px; }
.eb-widget-title {
    font-family: var(--eb-font-heading); font-size: 1.2rem;
    margin-bottom: 15px; padding-bottom: 10px;
    border-bottom: 2px solid var(--eb-blue);
}

/* -----------------------------------------------
   18. CONTACT FORM
   ----------------------------------------------- */
.eb-contact-form { max-width: 600px; margin: 0 auto; }
.eb-contact-form input,
.eb-contact-form textarea,
.eb-contact-form select {
    width: 100%; padding: 14px 18px; border: 2px solid var(--eb-border);
    border-radius: var(--eb-radius-sm); font-family: var(--eb-font-body);
    font-size: 0.95rem; transition: var(--eb-transition); margin-bottom: 15px;
}
.eb-contact-form input:focus,
.eb-contact-form textarea:focus {
    border-color: var(--eb-primary-blue); outline: 2px solid var(--eb-primary-blue); outline-offset: 1px; box-shadow: 0 0 0 3px rgba(0,70,140,0.15);
}
.eb-contact-form textarea { min-height: 150px; resize: vertical; }

/* -----------------------------------------------
   19. FILTER FORM
   ----------------------------------------------- */
.eb-filter-form {
    background: var(--eb-white);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-md);
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 2px 10px rgba(0,70,140,0.04);
}
.eb-filter-row {
    display: flex; gap: 15px; align-items: flex-end;
    flex-wrap: wrap;
}
.eb-filter-field { flex: 1; min-width: 160px; }
.eb-filter-field input,
.eb-filter-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--eb-border);
    border-radius: var(--eb-radius-sm);
    font-family: var(--eb-font-body);
    font-size: 0.9rem;
    background: var(--eb-white);
    transition: var(--eb-transition);
    color: var(--eb-text-dark);
}
.eb-filter-field input:focus,
.eb-filter-field select:focus {
    border-color: var(--eb-primary-blue);
    outline: 2px solid var(--eb-primary-blue); outline-offset: 1px;
}
.eb-filter-actions {
    display: flex; gap: 8px;
    align-items: flex-end;
}
.eb-filter-actions .eb-btn { white-space: nowrap; padding: 12px 24px; }
.eb-filter-loading { position: relative; pointer-events: none; opacity: 0.7; }
.eb-filter-loading .eb-btn-3d::after {
    content: ''; display: inline-block; width: 16px; height: 16px;
    margin-left: 8px; vertical-align: middle;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--eb-white);
    border-radius: 50%; animation: eb-spin 0.6s linear infinite;
}
@keyframes eb-spin { to { transform: rotate(360deg); } }

/* -----------------------------------------------
   20. SCROLL ANIMATIONS
   ----------------------------------------------- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible, .fade-in-scale.visible { opacity: 1; transform: none; }

/* -----------------------------------------------
   21. RESPONSIVE
   ----------------------------------------------- */
@media (max-width: 768px) {
    .eb-hero { min-height: 70vh; padding: 100px 0 60px; }
    .eb-stats { grid-template-columns: repeat(2, 1fr); margin-top: -30px; }
    .eb-section { padding: 50px 0; }
    .eb-cta-section h2 { font-size: 1.8rem; }
    .eb-single-hero h1 { font-size: 1.8rem; }
    .eb-footer-bottom { flex-direction: column; text-align: center; }
    .eb-filter-row { flex-direction: column; }
    .eb-filter-field { min-width: 100%; }
    .eb-filter-actions { width: 100%; }
    .eb-filter-actions .eb-btn { flex: 1; justify-content: center; }
    .eb-payment-plans { grid-template-columns: 1fr; }
}

/* -----------------------------------------------
   22. RTL SUPPORT
   ----------------------------------------------- */
.eb-rtl { direction: rtl; }
.eb-rtl .eb-hero-content { max-width: 750px; }
.eb-rtl .eb-hero-actions { flex-direction: row-reverse; }
.eb-rtl .eb-property-card-location i { margin-right: 0; margin-left: 5px; }
.eb-rtl .eb-hero { text-align: right; }
.eb-rtl .eb-section-title { text-align: center; }
.eb-rtl .eb-section-subtitle { text-align: center; }
.eb-rtl .eb-single-grid { direction: rtl; }
.eb-rtl .eb-unit-table th { text-align: right; }
.eb-rtl .eb-unit-table td { text-align: right; }
.eb-rtl .eb-property-meta-bar { flex-direction: row-reverse; }
.eb-rtl .eb-filter-row { flex-direction: row-reverse; }
.eb-rtl .eb-pagination { flex-direction: row-reverse; }
.eb-rtl .eb-lang-dropdown { right: auto; left: 0; }
.eb-rtl ul, .eb-rtl ol { padding: 0 1.5em 0 0; }

/* -----------------------------------------------
   23. PHYSICAL 3D BUTTONS
   ----------------------------------------------- */
.eb-btn-3d {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border: none; border-radius: var(--eb-radius-sm);
    font-family: var(--eb-font-body); font-size: 0.95rem; font-weight: 600;
    cursor: pointer; text-decoration: none;
    background: var(--eb-blue); color: var(--eb-white);
    box-shadow: 0 4px 0 #00356B, 0 6px 12px rgba(0,70,140,0.15);
    transform: translateY(0);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s;
}
.eb-btn-3d:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #00356B, 0 10px 24px rgba(0,70,140,0.2);
    color: var(--eb-white);
}
.eb-btn-3d:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #00356B, 0 2px 6px rgba(0,70,140,0.15);
}
.eb-btn-3d-whatsapp { background: #25d366; box-shadow: 0 4px 0 #128c7e, 0 6px 12px rgba(0,70,140,0.15); }
.eb-btn-3d-whatsapp:hover { background: #20bd5a; box-shadow: 0 6px 0 #128c7e, 0 10px 24px rgba(0,70,140,0.2); }
.eb-btn-3d-whatsapp:active { box-shadow: 0 0px 0 #128c7e, 0 2px 6px rgba(0,70,140,0.15); }
.eb-btn-3d-ghost { background: transparent; color: var(--eb-white); box-shadow: 0 4px 0 rgba(255,255,255,0.3), 0 6px 12px rgba(0,70,140,0.15); border: 1px solid rgba(255,255,255,0.3); }
.eb-btn-3d-ghost:hover { background: rgba(255,255,255,0.05); box-shadow: 0 6px 0 rgba(255,255,255,0.35), 0 10px 24px rgba(0,70,140,0.2); }

/* -----------------------------------------------
   24. 3D PROPERTY CARD TILT
   ----------------------------------------------- */
.eb-card-tilt {
    perspective: 1000px;
}
.eb-card-tilt .eb-property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}
.eb-card-tilt .eb-property-card:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 50px rgba(0,70,140,0.18);
}

/* -----------------------------------------------
   25. CARD UNIQUE BACKDROPS
   ----------------------------------------------- */
.eb-card-backdrop {
    position: relative; overflow: hidden;
}
.eb-card-backdrop::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, var(--backdrop-color, rgba(0,70,140,0.06)) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
    transition: opacity 0.4s ease;
    opacity: 0;
}
.eb-card-backdrop:hover::before { opacity: 1; }

/* -----------------------------------------------
   26. GRAIN TEXTURE
   ----------------------------------------------- */
.eb-grain::after {
    content: ''; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999;
}
@media (prefers-reduced-motion: reduce) {
    .eb-grain::after { display: none; }
}

/* -----------------------------------------------
   27. ENHANCED SCROLL ANIMATIONS
   ----------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal-up { transform: translateY(40px); }
    .reveal-down { transform: translateY(-40px); }
    .reveal-left { transform: translateX(-40px); }
    .reveal-right { transform: translateX(40px); }
    .reveal-scale { transform: scale(0.92); }
    .reveal.visible { opacity: 1; transform: none; }

    .reveal-card:nth-child(1) { transition-delay: 0s; }
    .reveal-card:nth-child(2) { transition-delay: 0.08s; }
    .reveal-card:nth-child(3) { transition-delay: 0.16s; }
    .reveal-card:nth-child(4) { transition-delay: 0.24s; }
    .reveal-card:nth-child(5) { transition-delay: 0.32s; }
    .reveal-card:nth-child(6) { transition-delay: 0.40s; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal, .fade-in, .fade-in-left, .fade-in-right, .fade-in-scale { opacity: 1; transform: none; }
}

/* -----------------------------------------------
   28. STATS COUNTER ANIMATION
   ----------------------------------------------- */
@keyframes count-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.eb-stat-item { animation: count-up 0.6s ease both; }
.eb-stat-item:nth-child(1) { animation-delay: 0s; }
.eb-stat-item:nth-child(2) { animation-delay: 0.15s; }
.eb-stat-item:nth-child(3) { animation-delay: 0.3s; }
.eb-stat-item:nth-child(4) { animation-delay: 0.45s; }

/* -----------------------------------------------
   29. HERO AMBIENT GLOW
   ----------------------------------------------- */
.eb-hero-glow {
    position: absolute; width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,218,220,0.18) 0%, transparent 70%);
    animation: ambient-drift 12s ease-in-out infinite;
}
.eb-hero-glow-1 { top: -10%; right: -5%; animation-delay: 0s; }
.eb-hero-glow-2 { bottom: -20%; left: -10%; width: 400px; height: 400px; animation-delay: -4s; }
.eb-hero-glow-3 { top: 30%; left: 40%; width: 300px; height: 300px; animation-delay: -8s; }
@keyframes ambient-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* -----------------------------------------------
   30. SPLIT HERO LAYOUT
   ----------------------------------------------- */
.eb-hero-split .eb-hero-content { max-width: 100%; }
.eb-hero-split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.eb-hero-badge {
    display: inline-block; background: rgba(168,218,220,0.15); color: var(--eb-sky-blue);
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    padding: 6px 16px; border-radius: 20px; margin-bottom: 15px;
}
.eb-hero-desc { color: rgba(255,255,255,0.7); font-size: clamp(0.95rem, 0.8vw + 0.5rem, 1.15rem); max-width: 480px; margin-bottom: 35px; line-height: 1.8; }
.eb-hero-visual { position: relative; }
.eb-hero-image-frame {
    position: relative; border-radius: var(--eb-radius-lg); overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.eb-hero-image-frame img { width: 100%; height: auto; display: block; }
.eb-hero-image-shine {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
    pointer-events: none;
}
.eb-hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,70,140,0.85);
    backdrop-filter: blur(10px);
    padding: 10px 18px; border-radius: 30px;
    margin-top: 20px; border: 1px solid rgba(255,255,255,0.1);
}
.eb-hero-tag-icon {
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    background: var(--eb-blue); border-radius: 50%; color: var(--eb-white); font-size: 0.75rem;
}
.eb-hero-tag-text { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; }
@media (max-width: 768px) {
    .eb-hero-split-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .eb-hero-split-inner .eb-hero-desc { max-width: 100%; }
    .eb-hero-visual { order: -1; }
    .eb-hero-tag { justify-content: center; }
}

/* -----------------------------------------------
   31. ENHANCED GALLERY
   ----------------------------------------------- */
.eb-gallery-grid { display: grid; gap: 4px; }
.eb-gallery-grid img {
    width: 100%; height: 100%; object-fit: cover; cursor: pointer;
    transition: transform 0.4s ease, filter 0.4s ease; filter: saturate(0.92);
}
.eb-gallery-grid img:hover { transform: scale(1.02); filter: saturate(1); }
.eb-gallery-masonry {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 4px;
}
.eb-gallery-masonry img:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.eb-gallery-masonry img:nth-child(4) { grid-column: 2 / 4; }

/* -----------------------------------------------
   32. DIRECTIONAL UNDERLINE
   ----------------------------------------------- */
.eb-nav a {
    position: relative;
}
.eb-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--eb-blue);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.eb-nav a:hover::after { width: 100%; }

/* -----------------------------------------------
   33. PHYSICAL CARD LIFT
   ----------------------------------------------- */
.eb-service-card, .eb-post-card {
    box-shadow: 0 1px 3px rgba(0,70,140,0.06);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.eb-service-card:hover, .eb-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,70,140,0.1);
}

/* -----------------------------------------------
   34. SECTION DIVIDER WAVES
   ----------------------------------------------- */
.eb-divider-wave {
    position: relative;
}
.eb-divider-wave::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,20 Q150,40 300,20 Q450,0 600,20 Q750,40 900,20 Q1050,0 1200,20 L1200,40 L0,40Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 40px;
}

/* -----------------------------------------------
   35. FOCUS VISIBLE
   ----------------------------------------------- */
:focus-visible {
    outline: 2px solid var(--eb-primary-blue);
    outline-offset: 2px;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--eb-primary-blue);
    outline-offset: 2px;
    border-radius: var(--eb-radius-sm);
}
.eb-nav a:focus-visible { outline-color: var(--eb-sky-blue); }
.eb-property-card a:focus-visible, .eb-pagination a:focus-visible, .eb-lang-option:focus-visible {
    outline-offset: 2px;
}
.eb-footer a:focus-visible { outline-color: var(--eb-sky-blue); }
.eb-hamburger:focus-visible { outline-color: var(--eb-sky-blue); }
.eb-header a:focus-visible, .eb-header button:focus-visible { outline-color: var(--eb-sky-blue); }

/* Footer language switcher */
.eb-footer-lang { display: flex; gap: 8px; flex-wrap: wrap; }
.eb-footer-lang-option {
    color: rgba(255,255,255,0.5); font-size: 0.8rem; text-decoration: none;
    padding: 4px 10px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--eb-radius-sm);
    transition: var(--eb-transition);
}
.eb-footer-lang-option:hover, .eb-footer-lang-option.active {
    color: var(--eb-white); border-color: var(--eb-blue); background: rgba(0,70,140,0.15);
}

/* Admin bar on frontend — ensure header content not hidden */
body.admin-bar .eb-header { top: 32px; }
body.admin-bar .eb-nav.open { top: calc(var(--eb-header-h) + 32px); }
@media (max-width: 782px) {
    body.admin-bar .eb-header { top: 46px; }
    body.admin-bar .eb-nav.open { top: calc(var(--eb-header-h) + 46px); }
}

/* -----------------------------------------------
   36. ADDITIONAL UTILITIES
   ----------------------------------------------- */
.eb-mb-0 { margin-bottom: 0; }
.eb-mt-1 { margin-top: 10px; }
.eb-mt-2 { margin-top: 20px; }
.eb-mb-2 { margin-bottom: 20px; }
.eb-text-center { text-align: center; }
.eb-flex-center { display: flex; align-items: center; justify-content: center; }

/* -----------------------------------------------
   37. BREADCRUMBS
   ----------------------------------------------- */
.eb-breadcrumbs { padding: 100px 0 10px; font-size: 0.85rem; }
.eb-breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.eb-breadcrumbs li { display: flex; align-items: center; }
.eb-breadcrumbs li + li::before { content: '/'; margin-right: 8px; color: var(--eb-text-light); }
.eb-breadcrumbs a { color: var(--eb-sky-blue); }
.eb-breadcrumbs a:hover { color: var(--eb-white); text-decoration: underline; }
.eb-breadcrumbs span { color: rgba(255,255,255,0.6); }
.eb-breadcrumbs [aria-current="page"] { color: var(--eb-white); font-weight: 600; }
