/* ============================================================================
   بحر لنقل وتغليف الأثاث — DESIGN SYSTEM
   ============================================================================
   Positioning  : بحر خبرة في نقل وتغليف عفشك
   Slogan       : نقلة هادية… بخبرة واسعة
   Personality  : خبرة واسعة، تنفيذ هادي، تنظيم واضح، ثقة من غير مبالغة.

   Voice rules
   -----------
   - مصري عملي، جمل قصيرة، نبرة هادية وواثقة.
   - التركيز على: الخبرة، الخطة الواضحة، التغليف، تفاصيل التنفيذ.
   - ممنوع أي ادعاء تفضيل أو رخص أو أي مبالغة تسويقية.
   - ممنوع أي صياغة عاطفية من نوع الأمانة/الطمأنينة — بحر بيتكلم تنفيذ.

   CTA standard (use verbatim)
   ---------------------------
   - Primary CTA   : "اتصل ببحر الآن"
   - WhatsApp CTA  : "ابعت تفاصيل النقلة على واتساب"
   - Form CTA      : "اطلب تقدير من بحر"
   - Final CTA     : "خلّي نقلة العفش تعدّي بهدوء"

   Color system — Deep Blue + Ocean + Wave on Foam. Cool, marine, calm.
   Sand is a single warm accent used sparingly (never a section background
   on its own). Two functional non-brand exceptions: WhatsApp green, and the
   conventional success/error pair inside the .alert rules.

   Shape language
   --------------
   - Soft rectangles (12–20px radii), NOT pill buttons. Deliberately squarer
     and more structural than a typical "trust" landing page.
   - The wave is the one repeating motif: section dividers, the underline on
     headings, the rail behind the process steps, the logo mark.
   - Every visual accent is horizontal — reads as calm/level, matching
     "نقلة هادية".
   ============================================================================ */

:root {
    --bahr-deep-blue: #073B4C;
    --bahr-ocean: #0B6E75;
    --bahr-wave: #118AB2;
    --bahr-sky: #D8F3F5;
    --bahr-sand: #F4E7C5;
    --bahr-foam: #F8FDFF;
    --bahr-text: #1E293B;
    --bahr-muted: #64748B;
    --bahr-border: #D6E6EA;
    --bahr-whatsapp: #1FAF60;

    --bahr-white: #FFFFFF;
    /* Derived functional shades — not brand tokens on their own. */
    --bahr-ocean-dark: #08565C;
    --bahr-wave-soft: rgba(17, 138, 178, .12);

    --shadow: 0 20px 48px rgba(7, 59, 76, .10);
    --shadow-lift: 0 26px 60px rgba(7, 59, 76, .16);
    --radius-panel: 20px;
    --radius-soft: 14px;
    --radius-btn: 12px;

    /* Motion — level and unhurried. No bounce, no pulse on page content. */
    --ease-calm: cubic-bezier(.22, .61, .36, 1);
    --transition-fast: 240ms var(--ease-calm);
    --transition-medium: 720ms var(--ease-calm);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--bahr-text);
    background: var(--bahr-white);
    line-height: 1.8;
    padding-bottom: 72px;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Phone numbers inside RTL text. Without isolation the bidi algorithm orders
   the space-separated digit groups right-to-left, so "0108 079 4585" renders
   as "4585 079 0108". Emitted by bahr_num() in index.php. */
.num {
    direction: ltr;
    unicode-bidi: isolate;
    white-space: nowrap;
    font-feature-settings: "tnum";
}

/* ==========================================================================
   Reveal system — soft fade/slide, once, on first entry into the viewport.
   ========================================================================== */

.js .reveal-up,
.js .reveal-fade,
.js .reveal-scale {
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    will-change: opacity, transform;
}

.js .reveal-up { opacity: 0; transform: translateY(20px); }
.js .reveal-fade { opacity: 0; }
.js .reveal-scale { opacity: 0; transform: scale(.98); }

.js .reveal-up.is-visible,
.js .reveal-fade.is-visible,
.js .reveal-scale.is-visible {
    opacity: 1;
    transform: none;
}

.js .stagger-group > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    will-change: opacity, transform;
}

.js .stagger-group.is-visible > * {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .js .reveal-up,
    .js .reveal-fade,
    .js .reveal-scale,
    .js .stagger-group > * {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    right: 16px;
    background: var(--bahr-wave);
    color: var(--bahr-white);
    padding: 10px 16px;
    border-radius: 0 0 var(--radius-soft) var(--radius-soft);
    z-index: 999;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   Wave divider — the brand's signature separator between light sections.
   Rendered inline in index.php via bahr_wave_divider().
   ========================================================================== */

.wave-divider {
    display: block;
    width: 100%;
    height: clamp(38px, 5vw, 66px);
    margin: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Top bar — a flat location line, no slogan shouting.
   ========================================================================== */

.topbar {
    background: var(--bahr-deep-blue);
    color: rgba(255,255,255,.9);
    font-size: 13.5px;
}

.topbar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.topbar__text {
    margin: 0;
    font-weight: 700;
    letter-spacing: .2px;
}

.topbar__text strong {
    color: var(--bahr-sky);
    font-weight: 900;
}

.topbar__text--short {
    display: none;
}

/* ==========================================================================
   Header — foam surface closed by a wave-gradient rule, not a hairline.
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    background: rgba(248, 253, 255, .94);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--bahr-ocean), var(--bahr-wave), var(--bahr-sky)) 1;
    z-index: 50;
}

.header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.logo__mark {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--bahr-ocean);
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo__name {
    font-size: 22px;
    font-weight: 900;
    color: var(--bahr-deep-blue);
    letter-spacing: -.2px;
}

.logo__tagline {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--bahr-ocean);
    letter-spacing: .3px;
}

.logo--footer .logo__mark { color: var(--bahr-sky); }
.logo--footer .logo__name { color: var(--bahr-white); }
.logo--footer .logo__tagline { color: rgba(216,243,245,.75); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--bahr-deep-blue);
    font-weight: 700;
    font-size: 14.5px;
}

.main-nav a {
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--bahr-wave);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

/* ==========================================================================
   Buttons — soft rectangles, not pills. Ocean primary, flat and level.
   ========================================================================== */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: var(--radius-btn);
    padding: 14px 26px;
    min-height: 52px;
    font-weight: 800;
    font-size: 15.5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    text-align: center;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    color: var(--bahr-white);
    background: var(--bahr-ocean);
    box-shadow: 0 14px 30px rgba(11, 110, 117, .26);
}

.btn--primary:hover {
    background: var(--bahr-deep-blue);
    box-shadow: 0 18px 38px rgba(7, 59, 76, .3);
}

.btn--whatsapp {
    color: var(--bahr-white);
    background: var(--bahr-whatsapp);
    box-shadow: 0 14px 30px rgba(31, 175, 96, .22);
}

.btn--whatsapp:hover {
    box-shadow: 0 18px 38px rgba(31, 175, 96, .3);
}

.btn--outline {
    color: var(--bahr-ocean);
    border-color: var(--bahr-ocean);
    background: transparent;
}

.btn--outline:hover {
    background: var(--bahr-ocean);
    color: var(--bahr-white);
}

.btn--light {
    color: var(--bahr-deep-blue);
    background: var(--bahr-white);
}

.btn--light:hover {
    background: var(--bahr-sky);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* A low-amplitude cue reserved for the persistent mobile sticky bar only. */
.pulse-hint::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255,255,255,.4);
    opacity: 0;
    transform: scale(.94);
    animation: bahr-soft-pulse 8s var(--ease-calm) infinite;
    pointer-events: none;
}

@keyframes bahr-soft-pulse {
    0%, 82%, 100% { transform: scale(.94); opacity: 0; }
    91% { transform: scale(1); opacity: .3; }
}

@media (prefers-reduced-motion: reduce) {
    .pulse-hint::after { animation: none; display: none; }
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-soft);
    border: 1px solid var(--bahr-border);
    background: var(--bahr-white);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--bahr-deep-blue);
}

/* ==========================================================================
   Typography + section heads
   ========================================================================== */

.section {
    padding: 92px 0;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
    font-size: clamp(31px, 4.4vw, 54px);
    line-height: 1.24;
    margin-bottom: 20px;
    color: var(--bahr-deep-blue);
    letter-spacing: -.6px;
}

h2 {
    font-size: clamp(26px, 2.9vw, 38px);
    line-height: 1.3;
    color: var(--bahr-deep-blue);
    margin-bottom: 16px;
    letter-spacing: -.3px;
}

h3 { color: var(--bahr-deep-blue); }

/* Eyebrow marked by a short wave stroke rather than a straight rule. */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--bahr-ocean);
    font-weight: 800;
    font-size: 13.5px;
    margin: 0 0 14px;
    letter-spacing: .4px;
    text-transform: none;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 7px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 7'><path d='M0 4c3-4 5.5 4 8.5 0S17 0 20 4s3 1 6-1' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 7'><path d='M0 4c3-4 5.5 4 8.5 0S17 0 20 4s3 1 6-1' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/></svg>") no-repeat center / contain;
}

.section-head {
    max-width: 700px;
    margin: 0 0 50px;
}

.section-head--center {
    text-align: center;
    margin-inline: auto;
}

.section-head--center .eyebrow { justify-content: center; }

.section-head p:not(.eyebrow) {
    color: var(--bahr-muted);
    font-size: 17.5px;
    margin-bottom: 0;
}

/* ==========================================================================
   Image + fallback placeholder system (bahr_media() in index.php)
   ========================================================================== */

.media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(140deg, rgba(11,110,117,.95), rgba(7,59,76,.92)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 8px, transparent 8px 16px);
    color: rgba(216,243,245,.6);
}

.img-placeholder__icon {
    width: 34px;
    height: 34px;
}

.media-caption {
    display: block;
    padding: 12px 16px;
    font-weight: 800;
    color: var(--bahr-deep-blue);
    font-size: 15px;
    text-align: center;
}

/* ==========================================================================
   1. HERO — text column + squared photo panel with an offset ocean rule,
   closed by a full-width chip strip. Level and horizontal throughout.
   ========================================================================== */

.hero {
    position: relative;
    background: linear-gradient(180deg, var(--bahr-foam) 0%, var(--bahr-sky) 100%);
    padding-top: 66px;
    padding-bottom: 0;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 54px;
    align-items: center;
    padding-bottom: 58px;
}

.hero__content .eyebrow { font-size: 15px; }

.hero__lead {
    font-size: 18.5px;
    color: var(--bahr-text);
    max-width: 580px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 14px;
}

.hero__microcopy {
    color: var(--bahr-ocean);
    font-weight: 700;
    font-size: 14.5px;
    margin: 0;
}

/* Squared photo panel: a flat ocean plate offset behind a hard-edged photo.
   Deliberately rectilinear — no rounded "card" softness. */
.hero__visual { position: relative; }

.hero-frame {
    position: relative;
    max-width: 460px;
    margin-inline: auto;
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 20px -20px -20px 20px;
    background: var(--bahr-ocean);
    border-radius: var(--radius-panel);
    z-index: 0;
    opacity: .16;
}

/* 4/3 matches the landscape source photo — a portrait crop would cut the
   team and the wrapped piece out of frame. */
.hero-frame__photo {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-panel);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lift);
    border: 6px solid var(--bahr-white);
}

/* Trust chips run as a full-width strip under the hero, not floating. */
.hero-chipstrip {
    background: var(--bahr-deep-blue);
}

.hero-chipstrip__list {
    list-style: none;
    margin: 0;
    padding: 18px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
}

.hero-chipstrip__list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bahr-white);
    font-weight: 700;
    font-size: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(216,243,245,.28);
    border-radius: var(--radius-soft);
    padding: 8px 16px;
}

.hero-chipstrip__list li > svg {
    width: 18px;
    height: 18px;
    color: var(--bahr-sky);
    flex-shrink: 0;
}

/* ==========================================================================
   2. PROBLEM — "النقلة مش مجرد عربية وعمال"
   Wide statement block with a photo band beneath it. No blob shapes.
   ========================================================================== */

.problem {
    background: var(--bahr-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 54px;
    align-items: center;
}

.problem-lead {
    font-size: 18px;
    color: var(--bahr-text);
    margin-bottom: 26px;
}

.problem-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.problem-list li {
    position: relative;
    padding-right: 20px;
    font-weight: 700;
    font-size: 15.5px;
    color: var(--bahr-deep-blue);
}

.problem-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 13px;
    width: 10px;
    height: 2px;
    background: var(--bahr-wave);
}

.problem-photo {
    border-radius: var(--radius-panel);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
}

/* ==========================================================================
   3. SIGNATURE — "بحر خبرة تستوعب تفاصيل النقلة"
   Four wide horizontal rows on ocean, numbered. Not a card grid.
   ========================================================================== */

.signature {
    background: var(--bahr-ocean);
    color: var(--bahr-white);
}

.signature h2 { color: var(--bahr-white); }
.signature .eyebrow { color: var(--bahr-sky); }
.signature .section-head p:not(.eyebrow) { color: rgba(255,255,255,.78); }

.signature-rows {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(216,243,245,.25);
}

.signature-row {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 26px 4px;
    border-bottom: 1px solid rgba(216,243,245,.25);
}

.signature-row__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    color: var(--bahr-sky);
}

.signature-row__icon svg {
    width: 100%;
    height: 100%;
}

.signature-row h3 {
    color: var(--bahr-white);
    font-size: 20px;
    margin: 0 0 4px;
}

.signature-row p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 15.5px;
}

.signature-row__num {
    margin-inline-start: auto;
    flex-shrink: 0;
    font-size: 34px;
    font-weight: 900;
    color: rgba(216,243,245,.24);
    line-height: 1;
}

/* ==========================================================================
   4. SERVICES — sticky photo + expandable rows. Storage is visibly secondary.
   ========================================================================== */

.services {
    background: var(--bahr-white);
}

.services-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 56px;
    align-items: start;
}

.services-photo {
    position: sticky;
    top: 110px;
    border-radius: var(--radius-panel);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow);
}

.service-rows {
    border-top: 2px solid var(--bahr-border);
}

.service-row {
    border-bottom: 1px solid var(--bahr-border);
    padding: 0;
}

.service-row summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-weight: 900;
    font-size: 18.5px;
    color: var(--bahr-deep-blue);
}

.service-row summary::-webkit-details-marker { display: none; }

/* Service icons are inlined without a class attribute — sized in context. */
.service-row summary > svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--bahr-wave);
}

.service-row__toggle {
    margin-inline-start: auto;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: 1.5px solid var(--bahr-border);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--bahr-ocean);
    font-weight: 900;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.service-row[open] .service-row__toggle {
    transform: rotate(45deg);
    background: var(--bahr-ocean);
    color: var(--bahr-white);
    border-color: var(--bahr-ocean);
}

.service-row p {
    margin: 0 0 24px 44px;
    color: var(--bahr-muted);
    font-size: 15.5px;
    max-width: 540px;
}

/* Secondary service (تخزين مؤقت): quieter type, no accent icon color. */
.service-row--secondary summary {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--bahr-muted);
}

.service-row--secondary summary > svg { color: var(--bahr-muted); }

/* ==========================================================================
   5. SCENARIOS — "كل نقلة وليها طريقة مناسبة"
   Compact question cards, 3-up. Each opens with a wave tick.
   ========================================================================== */

.scenarios {
    background: var(--bahr-foam);
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.scenario-card {
    background: var(--bahr-white);
    border: 1px solid var(--bahr-border);
    border-radius: var(--radius-soft);
    padding: 26px 24px;
    border-top: 3px solid var(--bahr-wave);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

@media (hover: hover) and (pointer: fine) {
    .scenario-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }
}

.scenario-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.scenario-card p {
    margin: 0;
    color: var(--bahr-muted);
    font-size: 15px;
}

/* ==========================================================================
   5b. WORK STRIP — four real job photos, captioned. Flat tiles on white,
   captions sit below the image (not overlaid) so nothing is obscured.
   ========================================================================== */

.work {
    background: var(--bahr-white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.work-item {
    display: flex;
    flex-direction: column;
}

.work-item__photo {
    border-radius: var(--radius-soft);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bahr-sky);
    border: 1px solid var(--bahr-border);
}

.work-item__photo img {
    transition: transform .6s var(--ease-calm);
}

@media (hover: hover) and (pointer: fine) {
    .work-item:hover .work-item__photo img {
        transform: scale(1.05);
    }
}

.work-item h3 {
    font-size: 16px;
    margin: 14px 0 4px;
}

.work-item p {
    margin: 0;
    color: var(--bahr-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ==========================================================================
   6. PROCESS — horizontal stepped rail on sky, numbered.
   Reads left-to-right as a level sequence, not a vertical drop.
   ========================================================================== */

.process {
    background: var(--bahr-sky);
}

.process-rail {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    position: relative;
}

/* The connecting rail sits behind the numbers, at their vertical center. */
.process-rail::before {
    content: "";
    position: absolute;
    top: 25px;
    right: 6%;
    left: 6%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--bahr-ocean) 0 10px, transparent 10px 18px);
    opacity: .5;
}

.process-step {
    position: relative;
    text-align: center;
}

.process-step__num {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    border-radius: var(--radius-soft);
    background: var(--bahr-white);
    border: 2px solid var(--bahr-ocean);
    color: var(--bahr-ocean);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.process-step:last-child .process-step__num {
    background: var(--bahr-ocean);
    color: var(--bahr-white);
}

.process-step p {
    margin: 0;
    font-weight: 700;
    color: var(--bahr-deep-blue);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ==========================================================================
   7. AREAS — light band, three column groups, flat area chips.
   ========================================================================== */

.areas {
    background: var(--bahr-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 46px;
    align-items: center;
}

.areas-photo {
    position: relative;
    border-radius: var(--radius-panel);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
}

.areas-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,59,76,.05), rgba(7,59,76,.55));
}

.areas-photo__badge {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 18px;
    left: 18px;
    background: rgba(248,253,255,.95);
    color: var(--bahr-deep-blue);
    border-radius: var(--radius-soft);
    padding: 13px 16px;
    font-weight: 900;
    text-align: center;
    font-size: 15px;
}

.areas-clusters {
    display: grid;
    gap: 16px;
}

.area-cluster {
    background: var(--bahr-foam);
    border: 1px solid var(--bahr-border);
    border-radius: var(--radius-soft);
    border-right: 4px solid var(--bahr-ocean);
    padding: 22px 24px;
}

.area-cluster h3 {
    font-size: 17px;
    margin-bottom: 12px;
}

.area-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.area-badges li {
    background: var(--bahr-wave-soft);
    border: 1px solid rgba(17,138,178,.28);
    color: var(--bahr-ocean-dark);
    border-radius: 8px;
    padding: 6px 13px;
    font-size: 13px;
    font-weight: 700;
}

.areas-more {
    margin-top: 30px;
    text-align: center;
}

/* ==========================================================================
   8. PRICING — one calm panel listing the factors. No tiers, no dot meters.
   ========================================================================== */

.pricing {
    background: var(--bahr-foam);
}

.pricing-panel {
    background: var(--bahr-white);
    border: 1px solid var(--bahr-border);
    border-radius: var(--radius-panel);
    padding: 46px 44px;
    max-width: 900px;
    margin-inline: auto;
    box-shadow: var(--shadow);
}

.pricing-panel > p {
    color: var(--bahr-text);
    font-size: 17px;
    max-width: 700px;
}

.pricing-factors {
    list-style: none;
    margin: 26px 0 30px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pricing-factors li {
    background: var(--bahr-sky);
    border-radius: 9px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--bahr-deep-blue);
    text-align: center;
}

.pricing-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ==========================================================================
   9. FAQ
   ========================================================================== */

.faq {
    background: var(--bahr-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

details {
    background: var(--bahr-foam);
    border: 1px solid var(--bahr-border);
    border-radius: var(--radius-soft);
    padding: 22px 26px;
}

summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--bahr-deep-blue);
    font-size: 16.5px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
    content: "+";
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: 1.5px solid var(--bahr-border);
    color: var(--bahr-ocean);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 900;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
    background: var(--bahr-ocean);
    color: var(--bahr-white);
    border-color: var(--bahr-ocean);
}

details p {
    color: var(--bahr-muted);
    margin: 14px 0 0;
    font-size: 15.5px;
}

/* ==========================================================================
   10. LEAD FORM — sky panel, checklist beside the form.
   ========================================================================== */

.booking {
    background: var(--bahr-white);
}

.booking-panel {
    background: var(--bahr-sky);
    border-radius: var(--radius-panel);
    padding: 8px;
}

.booking-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 0;
}

.booking-info {
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h3 {
    font-size: 21px;
    margin-bottom: 20px;
}

.booking-info ol {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: booking;
}

.booking-info li {
    counter-increment: booking;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: var(--bahr-deep-blue);
    padding: 8px 0;
    font-size: 15.5px;
}

.booking-info li::before {
    content: counter(booking);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bahr-ocean);
    color: var(--bahr-white);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
}

.booking-info__cta {
    margin-top: 22px;
    align-self: flex-start;
}

/* Call lines under the WhatsApp CTA: primary is a tap target, secondary is a
   quiet text line so it reads as a fallback, not a competing CTA. */
.booking-phones {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(7, 59, 76, .14);
}

.booking-phones__main {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 900;
    font-size: 16px;
    color: var(--bahr-deep-blue);
}

.booking-phones__main svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--bahr-ocean);
}

.booking-phones__main:hover { color: var(--bahr-ocean); }

.booking-phones__alt {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--bahr-muted);
}

.booking-phones__alt a {
    color: var(--bahr-ocean);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer__alt-phone {
    font-size: 14px;
    color: rgba(255,255,255,.62);
    font-weight: 700;
}

.footer__alt-phone a {
    font-weight: 800;
}

.booking-form-wrap {
    background: var(--bahr-white);
    border-radius: var(--radius-soft);
    padding: 38px;
}

.lead-form {
    display: grid;
    gap: 14px;
}

.lead-form label {
    display: grid;
    gap: 6px;
    color: var(--bahr-deep-blue);
    font-weight: 800;
    font-size: 14.5px;
}

input, select, textarea {
    width: 100%;
    border: 1px solid var(--bahr-border);
    border-radius: 10px;
    padding: 13px 14px;
    font: inherit;
    background: var(--bahr-foam);
    color: var(--bahr-text);
}

input:focus, select:focus, textarea:focus {
    outline: 3px solid rgba(17, 138, 178, .22);
    border-color: var(--bahr-wave);
    background: var(--bahr-white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hidden-field { display: none; }

.form-microcopy {
    margin: -4px 0 0;
    color: var(--bahr-muted);
    font-size: 13px;
    font-weight: 700;
}

.alert {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 800;
}

.alert p { margin: 0; }

.alert__cta {
    margin-top: 12px;
    width: 100%;
}

.alert--success {
    color: #0D6B39;
    background: #EAFBF1;
    border: 1px solid #BDEECC;
}

.alert--error {
    color: #8B1D1D;
    background: #FFF0F0;
    border: 1px solid #F5C2C2;
}

/* ==========================================================================
   11. CLOSING CTA — deep blue band with a large wave watermark.
   ========================================================================== */

.closing-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--bahr-deep-blue) 0%, var(--bahr-ocean) 100%);
    color: var(--bahr-white);
    padding: 86px 0;
}

.closing-cta__mark {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    color: var(--bahr-sky);
    opacity: .1;
    pointer-events: none;
}

.closing-cta__mark svg {
    width: 100%;
    height: 100%;
}

.closing-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}

.closing-cta h2 { color: var(--bahr-white); }

.closing-cta p {
    color: rgba(255,255,255,.82);
    font-size: 18px;
}

.closing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 28px 0 16px;
}

.closing-cta__note {
    color: rgba(216,243,245,.8);
    font-weight: 700;
    font-size: 14px;
    margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--bahr-deep-blue);
    color: rgba(255,255,255,.76);
    padding: 48px 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px 28px;
    align-items: start;
}

.footer__inner > div:first-child p {
    max-width: 440px;
    color: rgba(255,255,255,.68);
}

.logo--footer { margin-bottom: 14px; }

.site-footer h3 {
    color: var(--bahr-white);
    font-size: 17px;
    margin-bottom: 12px;
}

.site-footer a {
    color: var(--bahr-white);
    font-weight: 800;
}

.site-footer p { margin: 0 0 10px; }
.site-footer p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Mobile Sticky CTA
   ========================================================================== */

.sticky-cta {
    position: fixed;
    right: 16px;
    left: 16px;
    bottom: 14px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    z-index: 99;
}

.sticky-cta a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 52px;
    border-radius: var(--radius-btn);
    color: var(--bahr-white);
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(7,59,76,.28);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.sticky-cta.is-active a {
    box-shadow: 0 16px 38px rgba(7,59,76,.34);
}

.sticky-cta__whatsapp { background: var(--bahr-whatsapp); }
.sticky-cta__call { background: var(--bahr-ocean); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
    .process-rail {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px 12px;
    }

    .process-rail::before { display: none; }
}

@media (max-width: 980px) {
    .nav-toggle { display: inline-block; }

    .main-nav {
        position: absolute;
        top: 76px;
        right: 16px;
        left: 16px;
        background: var(--bahr-white);
        border: 1px solid var(--bahr-border);
        border-radius: var(--radius-soft);
        box-shadow: var(--shadow);
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 10px 4px; }

    .header-call { display: none; }

    .hero__grid,
    .problem-grid,
    .services-grid,
    .areas-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .services-photo {
        position: static;
        aspect-ratio: 16 / 9;
        margin-bottom: 8px;
    }

    .problem-grid { gap: 38px; }

    .scenario-grid { grid-template-columns: 1fr 1fr; }

    .work-grid { grid-template-columns: 1fr 1fr; }

    .pricing-panel { padding: 36px 30px; }

    .pricing-factors { grid-template-columns: 1fr 1fr; }

    .booking-form-wrap { padding: 28px; }
    .booking-info { padding: 32px 30px 6px; }

    .sticky-cta {
        display: grid;
        animation: bahr-sticky-enter .7s var(--ease-calm) both;
    }
}

@keyframes bahr-sticky-enter {
    from { transform: translateY(120%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta { animation: none; }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 82px;
        overflow-x: hidden;
    }

    .container { width: min(100% - 24px, 1160px); }

    .topbar { font-size: 11.5px; }
    .topbar__text--full { display: none; }
    .topbar__text--short { display: block; }

    .header__inner { min-height: 66px; }
    .logo__mark { width: 38px; height: 38px; }
    .logo__name { font-size: 18px; }
    .logo__tagline { font-size: 10.5px; }

    .section { padding: 60px 0; }

    .hero { padding-top: 34px; }

    .hero__grid {
        gap: 34px;
        padding-bottom: 40px;
    }

    .hero__lead { font-size: 16.5px; }

    .hero__actions,
    .closing-cta__actions,
    .pricing-cta {
        flex-direction: column;
    }

    .btn { width: 100%; }

    .hero-frame { max-width: 310px; }

    .hero-chipstrip__list li { font-size: 13px; padding: 7px 13px; }

    .problem-list { grid-template-columns: 1fr; }

    .signature-row {
        flex-wrap: wrap;
        gap: 14px;
        padding: 22px 2px;
    }

    .signature-row__icon { width: 38px; height: 38px; }
    .signature-row__num { font-size: 26px; }

    .service-row summary { font-size: 16.5px; gap: 12px; }
    .service-row p { margin-right: 0; margin-left: 0; }

    .scenario-grid { grid-template-columns: 1fr; }

    .work-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .work-item h3 { font-size: 15px; }
    .work-item p { font-size: 13.5px; }

    .process-rail { grid-template-columns: 1fr 1fr; gap: 24px 12px; }

    .pricing-factors { grid-template-columns: 1fr; }
    .pricing-panel { padding: 28px 22px; }

    .closing-cta__mark {
        width: 170px;
        height: 170px;
        left: -34px;
    }

    h1 { font-size: 29px; }
}
