/* ═══════════════════════════════════════════════════════════
   YaLaw Theme — Custom WordPress Theme
   Arabic RTL | Premium Law Firm Design
   Colors: Deep Navy #1B2B4B | Warm Gold #B8965A | Cream #F2EDE3
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #1B2B4B;
    --navy-dark:   #111e33;
    --gold:        #B8965A;
    --gold-light:  #d4ae78;
    --cream:       #F2EDE3;
    --white:       #ffffff;
    --muted:       #526082;
    --border:      #ddd5c5;
    --text:        #1B2B4B;

    --font-body:    'Tajawal', sans-serif;
    --font-display: 'Cairo', sans-serif;
    --radius:       0.375rem;
    --transition:   0.25s ease;
    --shadow:       0 4px 24px rgba(27,43,75,.08);
    --shadow-lg:    0 8px 40px rgba(27,43,75,.14);
    --max-w:        1280px;
    --container-px: clamp(1rem, 4vw, 2rem);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    background: var(--cream);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(27,43,75,.25); border-radius: 4px; }

/* ── Layout Utilities ─────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--container-px);
}
.container--narrow { max-width: 860px; }

.text-center   { text-align: center; }
.text-gold     { color: var(--gold); }
.text-white    { color: var(--white); }
.text-white-70 { color: rgba(255,255,255,.7); }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Grid Helpers ─────────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.two-col--narrow { max-width: 900px; margin: 0 auto; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.four-col  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
    .four-col { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .two-col   { grid-template-columns: 1fr; gap: 2.5rem; }
    .three-col { grid-template-columns: 1fr; }
    .four-col  { grid-template-columns: 1fr; }
}

/* ── Section ─────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); }
.section--pattern { position: relative; }
.section--pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png') center/cover;
    opacity: .08;
    pointer-events: none;
}

.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}
.section-title   { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: .75rem; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; }
.section-text    { color: var(--muted); font-size: 1.05rem; }

/* ── Gold Divider ─────────────────────────────────────── */
.gold-divider {
    width: 4rem;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    display: block;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    padding: .65rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-lg  { font-size: 1.05rem; padding: .85rem 2.25rem; }
.btn-sm  { font-size: .85rem;  padding: .45rem 1.1rem; }

.btn-secondary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-secondary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline-navy:hover { background: rgba(27,43,75,.05); }

/* ── Header ─────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
    max-width: 60%;
}

/* Static logo img */
.brand-logo {
    height: 40px;
    width: auto;
    max-width: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .92;
    flex-shrink: 0;
}

/* WordPress custom logo (uploaded via Customizer) */
.brand .custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.brand .custom-logo-link .custom-logo {
    height: 40px;
    width: auto;
    max-width: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .92;
    display: block;
}

.brand-name {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}
.brand-name-line1, .brand-name-line2 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.brand-name-line1 { font-size: .85rem; }
.brand-name-line2 { font-size: .72rem; opacity: .8; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9rem;
    color: rgba(255,255,255,.8);
    padding: .5rem .85rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 0 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: color var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }

@media (max-width: 900px) {
    .main-nav  { display: none; }
    .mobile-toggle { display: flex; }
    .brand-name { display: none; }
}
@media (max-width: 480px) {
    .header-inner { height: 60px; }
    .brand-logo { height: 36px; }
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    min-height: clamp(560px, 90vh, 900px);
    display: flex;
    align-items: center;
    background: url('../images/hero-bg.jpg') center/cover no-repeat var(--navy);
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(27,43,75,.97), rgba(27,43,75,.7));
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 700px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--gold);
    background: rgba(184,150,90,.15);
    border: 1px solid rgba(184,150,90,.35);
    border-radius: 100px;
    padding: .4rem 1rem;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,.8);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 600px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}

/* ── Page Header ─────────────────────────────────────── */
.page-header {
    position: relative;
    padding: 7rem 0 4rem;
    background: url('../images/hero-bg.jpg') center/cover no-repeat var(--navy);
    overflow: hidden;
}
.page-header--sm { padding: 5.5rem 0 3rem; }
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,43,75,.82);
}
.page-header .container { position: relative; z-index: 1; }
.page-header-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--white);
    margin-bottom: .75rem;
}
.page-header-sub {
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto .75rem;
}

/* ── Quote Block ─────────────────────────────────────── */
.quote-block {
    background: var(--navy);
    border-radius: .75rem;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quote-pattern {
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png') center/cover;
    opacity: .08;
    pointer-events: none;
}
.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.quote-attr { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: .75rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* ── Check List ─────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--navy);
    font-weight: 500;
}
.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8965A' stroke-width='2.5'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Cards ─────────────────────────────────────────── */
.card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); border-color: rgba(184,150,90,.3); }
.card--centered { text-align: center; }
.card-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(184,150,90,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin: 0 auto 1.5rem;
}
.card-title { font-size: 1.15rem; margin-bottom: .75rem; }
.card-text  { color: var(--muted); font-size: .95rem; }

/* ── Service Cards (Home grid) ──────────────────────── */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(184,150,90,.3); }
.service-card-icon {
    width: 48px; height: 48px;
    border-radius: 6px;
    background: rgba(27,43,75,.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    margin-bottom: 1.25rem;
    transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-card-icon { background: var(--gold); color: var(--white); }
.service-card-title { font-size: 1rem; margin-bottom: .5rem; }
.service-card-text  { color: var(--muted); font-size: .88rem; line-height: 1.7; margin-bottom: 1rem; }
.service-card-link  { color: var(--gold); font-weight: 700; font-size: .875rem; transition: gap var(--transition); }

/* ── Service Cards (Services page) ─────────────────── */
.service-card-full {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 2rem 1.75rem;
    transition: all var(--transition);
}
.service-card-full:hover { box-shadow: var(--shadow-lg); border-color: rgba(184,150,90,.3); }
.service-card-full-header { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.25rem; }
.service-icon-lg {
    width: 56px; height: 56px; min-width: 56px;
    border-radius: 8px;
    background: rgba(27,43,75,.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    transition: background var(--transition), color var(--transition);
}
.service-card-full:hover .service-icon-lg { background: var(--gold); color: var(--white); }
.service-title { font-size: 1.2rem; padding-top: .4rem; }
.service-desc  { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.service-value {
    font-size: .88rem; font-weight: 600; color: var(--navy);
    border-right: 3px solid var(--gold);
    padding-right: .75rem;
    margin-bottom: 1.25rem;
}
.service-cta-link { color: var(--gold); font-weight: 700; font-size: .95rem; transition: opacity var(--transition); }
.service-cta-link:hover { opacity: .75; }

/* ── Target Clients ─────────────────────────────────── */
.tags-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; }
.client-tag {
    padding: .65rem 1.5rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    cursor: default;
    transition: all var(--transition);
}
.client-tag:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── Partner Cards ──────────────────────────────────── */
.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}
.partner-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(184,150,90,.3); }
.partner-name { font-size: 1.15rem; margin-bottom: .25rem; }
.partner-role { color: var(--gold); font-weight: 600; font-size: .875rem; margin-bottom: 1rem; }
.partner-bio  { color: var(--muted); font-size: .9rem; line-height: 1.8; }

/* ── CTA Block ──────────────────────────────────────── */
.cta-block { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.cta-text  { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.25rem; line-height: 1.8; }

/* ── Mission / Vision ───────────────────────────────── */
.mv-card {
    border-radius: .75rem;
    padding: 2.5rem;
    position: relative; overflow: hidden;
}
.mv-card--navy { background: var(--navy); }
.mv-card--navy::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/pattern.png') center/cover;
    opacity: .08;
    pointer-events: none;
}
.mv-card--gold { background: rgba(184,150,90,.1); border: 1px solid rgba(184,150,90,.2); }
.mv-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(184,150,90,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.mv-title { font-size: 1.4rem; color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.mv-text  { color: rgba(255,255,255,.8); line-height: 1.8; font-size: 1.05rem; position: relative; z-index: 1; }
.mv-title-navy { font-size: 1.4rem; color: var(--navy); margin-bottom: 1rem; }
.mv-text-navy  { color: var(--muted); line-height: 1.8; font-size: 1.05rem; }

/* ── Process ────────────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 3rem;
    right: 10%; left: 10%;
    height: 1px;
    background: rgba(255,255,255,.2);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: var(--navy);
    border: 4px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 6px rgba(184,150,90,.15);
}
.process-title { font-size: 1.1rem; color: var(--white); margin-bottom: .75rem; }
.process-desc  { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; }

@media (max-width: 768px) {
    .process-grid { grid-template-columns: repeat(2,1fr); }
    .process-grid::before { display: none; }
}
@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* ── WhatsApp Banner (Contact) ──────────────────────── */
.wa-banner {
    background: var(--gold);
    border-bottom: 4px solid var(--navy);
    padding: 1.1rem 0;
}
.wa-banner-link {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    transition: opacity var(--transition);
}
.wa-banner-link:hover { opacity: .8; }

/* ── Contact Page ───────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-title { font-size: 1.5rem; margin-bottom: .5rem; }
.contact-info-sub   { color: var(--muted); margin-bottom: 2rem; }

.contact-detail-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-detail-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 50%;
    background: rgba(184,150,90,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.contact-detail-label { font-weight: 700; color: var(--navy); margin-bottom: .25rem; font-size: .95rem; }
.contact-detail-text  { color: var(--muted); font-size: .9rem; line-height: 1.7; }
.contact-detail-link  { color: var(--muted); font-size: .9rem; transition: color var(--transition); }
.contact-detail-link:hover { color: var(--gold); }

.wa-card {
    background: var(--navy);
    border-radius: .75rem;
    padding: 1.5rem;
    text-align: center;
    border: 4px solid rgba(184,150,90,.25);
}
.wa-card-title { color: var(--white); font-weight: 700; font-size: 1.05rem; margin-bottom: .35rem; }
.wa-card-sub   { color: rgba(255,255,255,.65); font-size: .875rem; margin-bottom: 1.25rem; }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.form-title { font-size: 1.5rem; margin-bottom: .4rem; }
.form-sub   { color: var(--muted); margin-bottom: 2rem; }

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

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--navy);
}
.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--navy);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .65rem .9rem;
    width: 100%;
    transition: border-color var(--transition);
    direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-privacy {
    text-align: center;
    font-size: .8rem;
    color: var(--muted);
    margin-top: .75rem;
}

.form-success {
    text-align: center;
    padding: 3rem 1.5rem;
}
.success-icon { color: var(--gold); margin: 0 auto 1rem; }
.form-success h4 { font-size: 1.35rem; margin-bottom: .5rem; }
.form-success p  { color: var(--muted); max-width: 360px; margin: 0 auto; }

.form-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    color: #b91c1c;
    font-size: .9rem;
}

/* ── Map Section ────────────────────────────────────── */
.map-section { border-top: 1px solid var(--border); }
.map-section .container { padding: 2.5rem var(--container-px) 1rem; }
.map-frame { height: 420px; width: 100%; }
.map-frame iframe { width: 100%; height: 100%; }

/* ── Long Text (About story) ────────────────────────── */
.long-text { display: flex; flex-direction: column; gap: 1.5rem; }
.long-text p { color: var(--muted); font-size: 1.05rem; line-height: 1.9; }

/* ── Page Content ───────────────────────────────────── */
.page-content { color: var(--muted); line-height: 1.9; font-size: 1.05rem; }
.page-content h2 { color: var(--navy); font-size: 1.5rem; margin: 2rem 0 .75rem; }
.page-content p  { margin-bottom: 1rem; }

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 0;
    border-top: 4px solid var(--gold);
    overflow: hidden;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    overflow: hidden;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.footer-brand,
.footer-col {
    min-width: 0;
    overflow: hidden;
}

.footer-logo {
    height: 44px;
    width: auto;
    max-width: 56px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .9;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-social { display: flex; gap: .75rem; }
.social-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    transition: all var(--transition);
}
.social-icon:hover { background: var(--gold); color: var(--navy); }

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 2.5rem;
    height: 2px;
    background: var(--gold);
}

.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links li a {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    display: block;
    transition: color var(--transition);
    word-break: break-word;
}
.footer-links li a:hover { color: var(--gold); }
.footer-links--plain li { font-size: .875rem; color: rgba(255,255,255,.6); word-break: break-word; }

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; }
.icon-gold { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: .825rem;
    color: rgba(255,255,255,.4);
}

/* ── Floating WhatsApp ──────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    left: 1.75rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #25D366;
    color: var(--white);
    border-radius: 100px;
    padding: .75rem 1.25rem .75rem 1rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9rem;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,.45);
    color: var(--white);
}
.whatsapp-float-label { font-size: .875rem; }

@media (max-width: 480px) {
    .whatsapp-float { padding: .7rem; border-radius: 50%; }
    .whatsapp-float-label { display: none; }
}

/* ── Animations ─────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}
