/* ================================================
   ROYAL HAWKS REAL ESTATE — STYLESHEET
   Premium UAE Real Estate Brokerage
   ================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; background: transparent; }
input, select, textarea { font-family: inherit; }

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* Palette — deep navy + antique gold */
    --navy-900: #0B1A2B;
    --navy-800: #122842;
    --navy-700: #1B3557;
    --gold-500: #C9A24B;
    --gold-400: #D8B56A;
    --gold-300: #E6CC8F;
    --cream: #F7F1E3;
    --beige: #F5EFE4;
    --stone-100: #FAF7F2;
    --stone-200: #EDE6D8;
    --text-900: #0B1A2B;
    --text-700: #3A3F4B;
    --text-500: #6B7280;
    --white: #FFFFFF;

    /* Type */
    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    /* Spacing */
    --container: 1280px;
    --radius: 4px;
    --radius-lg: 10px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 26, 43, 0.06);
    --shadow-md: 0 10px 30px rgba(11, 26, 43, 0.1);
    --shadow-lg: 0 20px 50px rgba(11, 26, 43, 0.14);

    /* Motion */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- BASE ---------- */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-700);
    background: var(--white);
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--text-900);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text { color: var(--gold-500); font-style: italic; font-weight: 400; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-primary {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
}
.btn-primary:hover {
    background: var(--navy-900);
    color: var(--gold-500);
    border-color: var(--navy-900);
}
.btn-primary-light {
    background: var(--gold-500);
    color: var(--navy-900);
}
.btn-primary-light:hover { background: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--navy-900);
    border-color: var(--navy-900);
}
.btn-outline:hover {
    background: var(--navy-900);
    color: var(--gold-500);
}
.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost-light:hover {
    background: var(--white);
    color: var(--navy-900);
    border-color: var(--white);
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 162, 75, 0.2);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.top-bar-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-contact i { color: var(--gold-500); margin-right: 6px; }
.top-bar-social { display: flex; gap: 16px; }
.top-bar-social a {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.top-bar-social a:hover { color: var(--gold-500); }

/* ---------- NAVBAR ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(11, 26, 43, 0.06);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--gold-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--gold-500);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy-900);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.logo-sub {
    font-size: 10px;
    color: var(--gold-500);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 500;
}
.logo-light .logo-name { color: var(--white); }

.nav-menu { display: flex; gap: 36px; }
.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-500);
    transition: width 0.3s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--navy-900); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 26px; height: 2px;
    background: var(--navy-900);
    transition: all 0.3s;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding: 80px 0 40px;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        url('https://images.unsplash.com/photo-1518684079-3c830dcef090?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(11, 26, 43, 0.85) 0%, rgba(11, 26, 43, 0.55) 100%);
}
.hero-inner {
    position: relative;
    text-align: center;
    width: 100%;
    animation: fadeUp 1.1s var(--ease);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--gold-300);
    font-weight: 500;
}
.hero-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    max-width: 680px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
    line-height: 1.7;
}

/* Search Card */
.search-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    text-align: left;
    color: var(--text-900);
}
.search-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--stone-200);
}
.search-tab {
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-500);
    position: relative;
    transition: color 0.3s;
}
.search-tab.active { color: var(--navy-900); }
.search-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-500);
}
.search-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 16px;
    align-items: end;
}
.search-field { display: flex; flex-direction: column; }
.search-field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-500);
    margin-bottom: 6px;
    font-weight: 600;
}
.search-field select {
    padding: 12px 14px;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    background: var(--stone-100);
    font-size: 15px;
    color: var(--text-900);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B1A2B' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: border-color 0.3s;
}
.search-field select:focus {
    outline: none;
    border-color: var(--gold-500);
}
.btn-search {
    padding: 14px 28px;
    height: 48px;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--gold-500);
    font-weight: 500;
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-down span {
    width: 2px; height: 8px;
    background: var(--gold-400);
    animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(14px); opacity: 0; }
    100% { opacity: 0; }
}

/* ---------- SECTIONS ---------- */
.section { padding: 100px 0; }
.section-dark {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 75, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 75, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.section-beige { background: var(--stone-100); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}
.eyebrow::before, .eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 1px;
    background: var(--gold-500);
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }
.eyebrow-light { color: var(--gold-400); }

.section-title {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    color: var(--navy-900);
    margin-bottom: 18px;
    font-weight: 500;
}
.section-title.light { color: var(--white); }
.section-sub {
    font-size: 1.05rem;
    color: var(--text-500);
    line-height: 1.7;
}
.section-sub.light { color: rgba(255, 255, 255, 0.7); }

.section-cta { text-align: center; margin-top: 56px; }

/* ---------- PROPERTY FILTERS + GRID ---------- */
.property-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--stone-200);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.filter-btn:hover { color: var(--navy-900); border-color: var(--navy-900); }
.filter-btn.active {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--gold-400);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}
.property-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--stone-200);
}
.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.property-card.hidden { display: none; }

.property-img {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.property-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,26,43,0.7) 100%);
}
.property-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 1;
}
.property-badge.badge-dark {
    background: var(--navy-900);
    color: var(--gold-400);
}
.property-price {
    position: absolute;
    bottom: 20px; left: 20px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    z-index: 1;
    letter-spacing: -0.01em;
}

.property-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.property-title {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--navy-900);
}
.property-location {
    font-size: 14px;
    color: var(--text-500);
    margin-bottom: 16px;
}
.property-location i { color: var(--gold-500); margin-right: 6px; }

.property-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--stone-200);
    border-bottom: 1px solid var(--stone-200);
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-700);
}
.property-specs i { color: var(--gold-500); margin-right: 4px; }

.property-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy-900);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.3s, color 0.3s;
}
.property-link:hover { color: var(--gold-500); gap: 14px; }

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: rgba(201, 162, 75, 0.15);
    border: 1px solid rgba(201, 162, 75, 0.15);
}
.service-card {
    background: var(--navy-900);
    padding: 48px 36px;
    transition: background 0.4s var(--ease);
    position: relative;
}
.service-card:hover { background: var(--navy-800); }
.service-icon {
    width: 64px; height: 64px;
    border: 1px solid var(--gold-500);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon {
    background: var(--gold-500);
    color: var(--navy-900);
}
.service-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 14px;
}
.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- ABOUT STRIP ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-imgs {
    position: relative;
    height: 560px;
}
.about-img-1, .about-img-2 {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
}
.about-img-1 {
    width: 70%; height: 70%;
    top: 0; left: 0;
}
.about-img-2 {
    width: 55%; height: 55%;
    bottom: 0; right: 0;
    border: 8px solid var(--white);
}
.about-accent {
    position: absolute;
    width: 120px; height: 120px;
    background: var(--gold-500);
    bottom: 30%; left: -30px;
    z-index: -1;
}
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content .eyebrow { margin-bottom: 16px; padding: 0; }
.about-content .eyebrow::before, .about-content .eyebrow::after { display: none; }
.about-content p { margin-bottom: 16px; font-size: 1.02rem; line-height: 1.8; }
.about-list {
    margin: 24px 0 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-900);
}
.about-list i { color: var(--gold-500); }

/* ---------- WHY CHOOSE ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}
.why-item {
    padding: 40px 30px 40px 0;
    border-top: 2px solid var(--navy-900);
    position: relative;
}
.why-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold-500);
    display: block;
    margin: 20px 0 12px;
    line-height: 1;
    font-weight: 500;
}
.why-item h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--navy-900);
}
.why-item p {
    font-size: 15px;
    color: var(--text-500);
    line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.testimonial {
    background: var(--stone-100);
    padding: 40px 32px;
    border-radius: var(--radius);
    border-top: 3px solid var(--gold-500);
    position: relative;
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px; right: 24px;
    font-family: var(--font-display);
    font-size: 100px;
    color: var(--gold-500);
    opacity: 0.3;
    line-height: 1;
}
.stars { color: var(--gold-500); margin-bottom: 16px; font-size: 14px; }
.stars i { margin-right: 2px; }
.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-700);
    margin-bottom: 20px;
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 400;
}
.testimonial footer { display: flex; flex-direction: column; }
.testimonial footer strong {
    color: var(--navy-900);
    font-weight: 600;
    font-size: 15px;
}
.testimonial footer span {
    color: var(--text-500);
    font-size: 13px;
    margin-top: 2px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background:
        linear-gradient(rgba(11, 26, 43, 0.92), rgba(11, 26, 43, 0.92)),
        url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80') center/cover;
    color: var(--white);
    padding: 80px 0;
}
.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-banner h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 10px;
}
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    border-radius: 50%;
    font-size: 14px;
}
.footer-social a:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
}
.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-family: var(--font-body);
    font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold-400); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.footer-contact i {
    color: var(--gold-500);
    margin-top: 4px;
    width: 16px;
}
.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-400); }

/* ---------- FLOAT WHATSAPP ---------- */
.float-whatsapp {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: transform 0.3s;
}
.float-whatsapp:hover { transform: scale(1.08); }

/* ---------- INNER PAGE HEADER ---------- */
.page-header {
    background:
        linear-gradient(rgba(11,26,43,0.8), rgba(11,26,43,0.8)),
        url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?w=1920&q=80') center/cover;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}
.page-header h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 16px;
}
.page-header .breadcrumb {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-400);
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.6); margin-right: 8px; }
.page-header .breadcrumb a:hover { color: var(--gold-400); }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-500);
    margin-bottom: 8px;
    font-weight: 600;
}
.form-field input,
.form-field textarea,
.form-field select {
    padding: 14px 16px;
    border: 1px solid var(--stone-200);
    background: var(--stone-100);
    font-size: 15px;
    color: var(--text-900);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--gold-500);
    background: var(--white);
}
.contact-info-card {
    background: var(--navy-900);
    color: var(--white);
    padding: 48px 36px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: var(--gold-500);
    opacity: 0.1;
    border-radius: 50%;
}
.contact-info-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 24px;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list i {
    width: 36px; height: 36px;
    background: rgba(201, 162, 75, 0.12);
    color: var(--gold-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.contact-info-list strong {
    display: block;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.contact-info-list span { color: rgba(255,255,255,0.75); line-height: 1.6; }

.map-embed {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- TEAM ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}
.team-card {
    text-align: center;
    background: var(--stone-100);
    padding: 36px 24px;
    border-radius: var(--radius);
    transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-6px); }
.team-img {
    width: 140px; height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    border: 3px solid var(--gold-500);
    font-weight: 500;
}
.team-card h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--navy-900);
}
.team-card .role {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}
.team-card p {
    font-size: 14px;
    color: var(--text-500);
    line-height: 1.7;
}

/* ---------- HELPERS ---------- */
.hide-mobile { display: inline; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-imgs { height: 400px; }
    .contact-grid { grid-template-columns: 1fr; }
    .search-form { grid-template-columns: 1fr 1fr; }
    .btn-search { grid-column: span 2; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section-header { margin-bottom: 48px; }
    .top-bar-contact { gap: 14px; font-size: 12px; }
    .hide-mobile { display: none; }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform 0.4s var(--ease);
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--stone-200);
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .search-form { grid-template-columns: 1fr; }
    .btn-search { grid-column: span 1; }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .about-list { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .logo-mark { width: 40px; height: 40px; font-size: 16px; }
    .logo-name { font-size: 18px; }
    .logo-sub { font-size: 9px; }
    .search-card { padding: 18px; }
    .property-img { height: 220px; }
    .hero-title { font-size: 2rem; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
