/* ============================================================
   Design System — Navy + Gold
   ============================================================ */
:root {
    --navy: #0D1F3C;
    --navy-deep: #081528;
    --navy-mid: #152D50;
    --navy-soft: #1E3A60;
    --gold: #C4933A;
    --cta: #D4A84B;
    --cta-hover: #E8C279;
    --cta-press: #BF9330;
    --cream: #FAFAF8;
    --cream-warm: #F3EDE1;
    --text-dark: #192840;
    --text-muted: #5B7290;
    --text-main: #FFFFFF;
    --text-soft: #C2CDE0;
    --line: rgba(196, 147, 58, 0.28);
    --line-light: rgba(196, 147, 58, 0.14);
    --shadow: 0 20px 50px rgba(8, 21, 40, 0.28);
    --shadow-sm: 0 4px 20px rgba(8, 21, 40, 0.09);
    --transition-smooth: 0.28s ease;
    --radius-lg: 1.25rem;
    --radius-md: 0.9rem;
    --radius-sm: 0.65rem;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.65;
}

h1, h2, h3,
.navbar-brand strong {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.01em;
}

h1, h2, h3 {
    color: var(--text-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-smooth), opacity var(--transition-smooth), transform var(--transition-smooth);
}

button, .btn, a {
    -webkit-tap-highlight-color: transparent;
}

/* ============================================================
   Navbar
   ============================================================ */
.site-navbar {
    padding: 1rem 0;
    background: rgba(8, 21, 40, 0.94);
    border-bottom: 1px solid rgba(196, 147, 58, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: padding 0.2s ease, background-color 0.2s ease;
}

.site-navbar.is-compact {
    padding: 0.65rem 0;
    background: rgba(6, 14, 30, 0.97);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    transition: transform var(--transition-smooth);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 147, 58, 0.14);
    border: 1px solid var(--line);
    color: var(--gold);
    font-weight: 800;
    font-size: 1rem;
    transition: transform var(--transition-smooth), background-color var(--transition-smooth);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-size: 1.16rem;
    color: var(--text-main);
}

.brand-copy small {
    margin-top: 0.3rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.71rem;
}

.navbar .nav-link {
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.91rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    position: relative;
    transition: color var(--transition-smooth);
}

.site-navbar .btn-cta {
    white-space: nowrap;
}

.navbar .nav-link.active {
    color: var(--text-main);
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-cta,
.btn-cta:focus {
    background: var(--cta);
    border: 1px solid rgba(232, 194, 121, 0.45);
    color: #1a1005;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 22px rgba(212, 168, 75, 0.32);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

.btn-cta:hover {
    background: var(--cta-hover);
    color: #15100a;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(212, 168, 75, 0.44);
}

.btn-cta:active,
.btn-cta:focus-visible {
    background: var(--cta-press);
    color: #15100a;
    transform: translateY(-1px) scale(0.99);
}

.btn-outline-gold,
.btn-outline-gold:focus {
    color: var(--text-main);
    border: 1px solid rgba(196, 147, 58, 0.65);
    background: transparent;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
}

.btn-outline-gold:hover {
    color: #1a1005;
    background: rgba(212, 168, 75, 0.95);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(8, 21, 40, 0.22);
}

.btn-outline-gold:active,
.btn-outline-gold:focus-visible {
    color: #1a1005;
    background: rgba(212, 168, 75, 0.95);
    transform: translateY(-1px) scale(0.99);
}

/* ============================================================
   Section tag — decorative gold line prefix
   ============================================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-tag::before {
    content: "";
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    flex-shrink: 0;
}

/* ============================================================
   Hero section
   ============================================================ */
.hero-section {
    position: relative;
    padding: 11rem 0 6rem;
    background:
        linear-gradient(135deg, rgba(8, 21, 40, 0.92) 0%, rgba(13, 31, 60, 0.72) 55%, rgba(13, 31, 60, 0.38) 100%),
        url("../images/site/hero.webp") center/cover no-repeat;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 78% 18%, rgba(196, 147, 58, 0.18), transparent 50%);
    pointer-events: none;
}

.hero-section h1 {
    max-width: 18ch;
    font-size: clamp(2.7rem, 5.6vw, 4.8rem);
    line-height: 0.98;
    margin-bottom: 1rem;
}

.hero-subtitle {
    max-width: 30ch;
    margin-bottom: 1.1rem;
    color: var(--cta-hover);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    font-style: italic;
    line-height: 1.25;
}

.hero-section h1,
.hero-section h2 {
    color: var(--text-main);
}

.hero-section h2,
.section-block h2 {
    font-size: clamp(2.1rem, 4.4vw, 3.3rem);
    line-height: 1.05;
}

.lead-copy {
    max-width: 600px;
    color: var(--text-soft);
    font-size: 1.14rem;
    margin-bottom: 2rem;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-points li {
    padding: 0.85rem 1rem;
    background: rgba(13, 31, 60, 0.35);
    border: 1px solid rgba(196, 147, 58, 0.2);
    border-left: 2px solid rgba(196, 147, 58, 0.5);
    border-radius: 0.6rem;
    color: var(--text-soft);
    font-size: 0.92rem;
    transition: transform var(--transition-smooth), background-color var(--transition-smooth), border-color var(--transition-smooth);
}

.hero-panel {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    border-top: 2px solid var(--gold);
    background: rgba(8, 21, 40, 0.88);
    box-shadow: var(--shadow);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.panel-tag::before {
    content: "";
    display: block;
    width: 16px;
    height: 1.5px;
    background: currentColor;
    flex-shrink: 0;
}

.hero-panel p {
    color: var(--text-soft);
}

.panel-grid {
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.panel-grid div {
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(196, 147, 58, 0.18);
    background: rgba(21, 45, 80, 0.5);
    transition: transform var(--transition-smooth), background-color var(--transition-smooth);
}

.panel-grid span {
    color: var(--text-soft);
    display: block;
    font-size: 0.84rem;
}

.panel-grid strong {
    color: var(--text-main);
    font-size: 0.9rem;
}

/* ============================================================
   Section layout
   ============================================================ */
.section-block {
    padding: 5.5rem 0;
    background: var(--cream);
}

.section-head {
    max-width: 760px;
    margin-bottom: 3rem;
}

.section-head h2 {
    margin-bottom: 0.65rem;
}

.section-head p,
.section-block p,
.step-item p {
    color: var(--text-muted);
}

.hero-section p,
.hero-panel p,
.metric-item span,
.service-list li,
.service-card p,
.info-card p,
.form-card p {
    color: var(--text-soft);
}

/* ============================================================
   Cards — shared base
   ============================================================ */
.image-card,
.service-card,
.process-card,
.info-card,
.form-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    border-top: 2px solid var(--gold);
    background: rgba(13, 31, 60, 0.9);
    box-shadow: var(--shadow);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.service-card,
.info-card,
.form-card {
    padding: 1.6rem;
}

.image-card {
    overflow: hidden;
    min-height: 430px;
}

.image-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.05);
    transition: transform 0.5s ease, filter 0.4s ease;
}

/* ============================================================
   Metrics grid
   ============================================================ */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.metric-item {
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 147, 58, 0.2);
    border-top: 2px solid rgba(196, 147, 58, 0.5);
    background: rgba(13, 31, 60, 0.82);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.metric-item strong {
    display: block;
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 2.1rem;
    line-height: 1;
    white-space: nowrap;
}

.metric-item span {
    color: var(--text-soft);
    font-size: 0.88rem;
}

/* ============================================================
   Service cards
   ============================================================ */
.service-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    grid-template-areas:
        "title media"
        "list  media";
    column-gap: 1rem;
    align-items: stretch;
    overflow: hidden;
    height: 100%;
}

.service-card h3 {
    grid-area: title;
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
}

.service-media {
    grid-area: media;
    width: 100%;
    height: auto;
    min-height: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(196, 147, 58, 0.18);
    align-self: stretch;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.04);
    transition: transform 0.45s ease, filter 0.35s ease;
}

.service-list {
    grid-area: list;
    margin: 0;
    padding-left: 1rem;
}

.service-list li {
    margin-bottom: 0.35rem;
    color: var(--text-soft);
    font-size: 0.93rem;
}

/* ============================================================
   Process card / Traspasos steps
   ============================================================ */
.process-card {
    padding: 2.4rem;
}

.process-card .section-head h2,
.step-item h3,
.info-card h2,
.form-card h2 {
    color: var(--text-main);
}

.process-card .section-head p {
    color: var(--text-soft);
}

.step-item {
    height: 100%;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 147, 58, 0.18);
    border-top: 2px solid rgba(196, 147, 58, 0.48);
    background: rgba(21, 45, 80, 0.5);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), background-color var(--transition-smooth);
}

.step-item span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 0.7rem;
    border-radius: 50%;
    background: rgba(196, 147, 58, 0.18);
    border: 1px solid rgba(196, 147, 58, 0.35);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform var(--transition-smooth), background-color var(--transition-smooth);
}

/* ============================================================
   Contact links & social
   ============================================================ */
.contact-links {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
    font-style: normal;
}

.social-panel {
    margin: 1.1rem 0 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 147, 58, 0.16);
    background: rgba(13, 31, 60, 0.05);
}

.social-title {
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(196, 147, 58, 0.26);
    background: rgba(13, 31, 60, 0.06);
    color: var(--navy);
    font-weight: 700;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), background-color var(--transition-smooth), color var(--transition-smooth);
}

.social-chip i {
    font-size: 1rem;
}

.social-chip-muted {
    opacity: 0.62;
    color: var(--text-muted);
    background: rgba(13, 31, 60, 0.03);
}

.contact-links a {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: color var(--transition-smooth), transform var(--transition-smooth);
}

/* ============================================================
   Map
   ============================================================ */
.map-frame {
    border: 1px solid var(--line);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(13, 31, 60, 0.9);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.map-frame iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
}

.map-note {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-note a {
    color: var(--gold);
    text-decoration: underline;
}

/* ============================================================
   Form
   ============================================================ */
.form-label {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    border: 1px solid rgba(196, 147, 58, 0.28);
    background: rgba(8, 21, 40, 0.82);
    color: var(--text-main);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1rem;
    transition: border-color var(--transition-smooth), background-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.form-control::placeholder {
    color: rgba(194, 205, 224, 0.58);
}

.form-control:focus {
    color: var(--text-main);
    border-color: rgba(212, 168, 75, 0.75);
    background: rgba(8, 21, 40, 0.96);
    box-shadow: 0 0 0 0.2rem rgba(212, 168, 75, 0.2);
    transform: translateY(-1px);
}

select.form-control {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C4933A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

select.form-control option {
    background: #081528;
    color: var(--text-main);
}

.form-status {
    font-size: 0.9rem;
    color: var(--text-soft);
    font-style: italic;
    min-height: 1.2em;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    padding: 1.3rem 0 2rem;
    border-top: 1px solid rgba(196, 147, 58, 0.13);
    color: var(--text-soft);
    background: var(--navy-deep);
}

.footer-meta {
    color: var(--text-soft);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-social a,
.footer-social span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(196, 147, 58, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold);
    transition: transform var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
}

.footer-social span {
    opacity: 0.52;
}

/* ============================================================
   Hover states — pointer devices only
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
    .navbar .nav-link:hover {
        color: var(--text-main);
    }

    .navbar-brand:hover {
        transform: translateY(-1px);
    }

    .navbar-brand:hover .brand-mark {
        transform: scale(1.05);
        background: rgba(196, 147, 58, 0.2);
    }

    .hero-points li:hover {
        transform: translateY(-3px);
        background: rgba(13, 31, 60, 0.52);
        border-color: rgba(196, 147, 58, 0.42);
    }

    .hero-panel:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 56px rgba(8, 21, 40, 0.44);
    }

    .panel-grid div:hover {
        transform: translateY(-2px);
        background: rgba(21, 45, 80, 0.72);
    }

    .image-card:hover,
    .service-card:hover,
    .process-card:hover,
    .info-card:hover,
    .form-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 56px rgba(8, 21, 40, 0.22);
        border-color: rgba(196, 147, 58, 0.5);
    }

    .image-card:hover img {
        transform: scale(1.03);
        filter: saturate(0.9) contrast(1.08);
    }

    .service-card:hover .service-media img {
        transform: scale(1.06);
        filter: saturate(0.95) contrast(1.08);
    }

    .metric-item:hover {
        transform: translateY(-3px);
        border-color: rgba(196, 147, 58, 0.44);
    }

    .step-item:hover {
        transform: translateY(-4px);
        border-color: rgba(196, 147, 58, 0.44);
        background: rgba(21, 45, 80, 0.68);
    }

    .step-item:hover span {
        transform: scale(1.1);
        background: rgba(196, 147, 58, 0.28);
    }

    .map-frame:hover {
        transform: translateY(-3px);
        border-color: rgba(196, 147, 58, 0.46);
    }

    .contact-links a:hover {
        color: #b07e20;
        transform: translateX(4px);
    }

    .social-chip:hover {
        color: var(--navy-deep);
        transform: translateY(-2px);
        border-color: rgba(196, 147, 58, 0.5);
        background: rgba(13, 31, 60, 0.1);
    }

    .footer-social a:hover {
        transform: translateY(-2px);
        color: var(--cta-hover);
        border-color: rgba(196, 147, 58, 0.44);
    }
}

/* Touch devices — disable transform hovers */
@media (hover: none) and (pointer: coarse) {
    .hero-points li,
    .hero-panel,
    .panel-grid div,
    .image-card,
    .service-card,
    .process-card,
    .info-card,
    .form-card,
    .metric-item,
    .step-item,
    .map-frame {
        transform: none;
    }

    .contact-links a,
    .navbar .nav-link,
    .btn,
    .social-chip {
        transition-duration: 0.16s;
    }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar {
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(196, 147, 58, 0.16);
    padding: 0.85rem 0;
}

.trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem 2.4rem;
}

.trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-soft);
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.trust-list li i {
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ============================================================
   Benefits section
   ============================================================ */
.section-benefits {
    background: var(--cream-warm);
}

.benefit-card {
    padding: 1.7rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(13, 31, 60, 0.09);
    border-top: 2px solid rgba(196, 147, 58, 0.38);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.benefit-icon {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(13, 31, 60, 0.07);
    margin-bottom: 1rem;
    transition: background-color var(--transition-smooth);
}

.benefit-icon i {
    font-size: 1.4rem;
    color: var(--navy);
}

.benefit-card h3 {
    font-size: 1.13rem;
    margin-bottom: 0.45rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) {
    .benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 34px rgba(13, 31, 60, 0.13);
        border-color: rgba(196, 147, 58, 0.48);
    }

    .benefit-card:hover .benefit-icon {
        background: rgba(13, 31, 60, 0.12);
    }
}

/* ============================================================
   FAQ section
   ============================================================ */
.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(13, 31, 60, 0.11) !important;
    border-left: 3px solid rgba(196, 147, 58, 0.42) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.7rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.faq-btn {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 1.1rem 1.4rem;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.faq-btn:not(.collapsed) {
    background: rgba(13, 31, 60, 0.03) !important;
    color: var(--navy) !important;
}

.faq-btn::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230D1F3C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-body {
    color: var(--text-muted);
    padding: 0.5rem 1.4rem 1.3rem;
    font-size: 1rem;
    line-height: 1.72;
    background: #ffffff;
}

/* ============================================================
   Floating WhatsApp button
   ============================================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 1.6rem;
    right: 1.6rem;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    animation: waPulse 2.8s ease infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.whatsapp-fab i {
    font-size: 1.3rem;
    line-height: 1;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

@media (hover: hover) and (pointer: fine) {
    .whatsapp-fab:hover {
        background: #1fba58;
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(37, 211, 102, 0.52);
        animation-play-state: paused;
    }
}

/* ============================================================
   Back to top button
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 5.4rem;
    right: 1.6rem;
    z-index: 1050;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(196, 147, 58, 0.38);
    background: rgba(8, 21, 40, 0.9);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.mobile-cta-bar {
    display: none;
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 4.4rem;
    }

    .mobile-cta-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1040;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
        background: rgba(6, 14, 30, 0.97);
        border-top: 1px solid rgba(196, 147, 58, 0.25);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-cta-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 48px;
        border-radius: var(--radius-sm);
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-cta-call {
        background: var(--cta);
        color: #1a1005;
    }

    .mobile-cta-wa {
        background: #25d366;
        color: #ffffff;
    }

    .whatsapp-fab {
        display: none !important;
    }

    .back-to-top {
        bottom: 5.4rem !important;
    }
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .back-to-top:hover {
        background: rgba(8, 21, 40, 1);
        border-color: rgba(196, 147, 58, 0.65);
    }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================================
   Coverage / Geographic section
   ============================================================ */
.section-coverage {
    background: var(--navy-deep);
}

.section-coverage .section-head h2 {
    color: var(--text-main);
}

.section-coverage .section-head p {
    color: var(--text-soft);
}

/* ============================================================
   Hero badge (credential callout)
   ============================================================ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.6rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(196, 147, 58, 0.38);
    background: rgba(8, 21, 40, 0.45);
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hero-badge i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================================================
   Coverage / Geographic section
   ============================================================ */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.coverage-group h3 {
    color: var(--gold);
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.9rem;
}

.coverage-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.coverage-chips span {
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(196, 147, 58, 0.24);
    background: rgba(196, 147, 58, 0.07);
    color: var(--text-soft);
    font-size: 0.875rem;
    transition: border-color var(--transition-smooth), background-color var(--transition-smooth);
}

@media (hover: hover) and (pointer: fine) {
    .coverage-chips span:hover {
        border-color: rgba(196, 147, 58, 0.5);
        background: rgba(196, 147, 58, 0.14);
    }
}

/* ============================================================
   Responsive breakpoints
   ============================================================ */
@media (max-width: 1199.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(8, 21, 40, 0.97);
        border: 1px solid rgba(196, 147, 58, 0.18);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 9rem;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .image-card,
    .image-card img {
        min-height: 320px;
    }

    .site-footer .container {
        text-align: center;
        align-items: center !important;
    }

    .footer-meta {
        align-items: center !important;
    }

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

@media (max-width: 767.98px) {
    .section-block {
        padding: 4.3rem 0;
    }

    .service-card {
        grid-template-columns: minmax(0, 1fr) 96px;
        column-gap: 0.8rem;
    }

    .panel-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn,
    .form-card .btn {
        width: 100%;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
    }

    .social-chip {
        justify-content: center;
    }

    .faq-btn {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-body {
        padding: 0.5rem 1rem 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-fab-label {
        display: none;
    }

    .whatsapp-fab {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .back-to-top {
        bottom: 5.8rem;
    }

    .trust-list {
        gap: 0.5rem 1.4rem;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
}

/* ============================================================
   Service pages
   ============================================================ */
.page-hero {
    padding: 9.5rem 0 4.5rem;
}

.page-hero h1 {
    max-width: 22ch;
    font-size: clamp(2.4rem, 4.8vw, 4rem);
}

.page-hero .lead-copy {
    max-width: 680px;
}

.breadcrumb-nav ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 1.4rem;
    padding: 0;
    list-style: none;
    font-size: 0.88rem;
    color: var(--text-soft);
}

.breadcrumb-nav li + li::before {
    content: "›";
    margin-right: 0.4rem;
    color: var(--gold);
}

.breadcrumb-nav a {
    color: var(--text-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(196, 147, 58, 0.5);
}

.breadcrumb-nav [aria-current] {
    color: var(--text-main);
}

.prose {
    color: var(--text-dark);
    font-size: 1.06rem;
    line-height: 1.75;
}

.prose h2 {
    margin: 2.8rem 0 1.1rem;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
}

.prose h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 0.6rem;
    border-radius: 2px;
    background: var(--gold);
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 2rem 0 0.45rem;
    font-family: "Source Sans 3", sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
    color: var(--navy);
}

.prose h3::before {
    content: "";
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: var(--gold);
    transform: rotate(45deg);
}

.section-block .prose p,
.prose li {
    color: #33445e;
}

.prose ul,
.prose ol {
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.prose li {
    margin-bottom: 0.45rem;
}

.prose li::marker {
    color: var(--gold);
}

.prose strong {
    color: var(--text-dark);
}

.prose a {
    color: var(--navy-soft);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}

.prose-steps {
    list-style: none;
    padding-left: 0 !important;
    counter-reset: step;
}

.prose-steps li {
    position: relative;
    padding: 1rem 1.2rem 1rem 3.6rem;
    margin-bottom: 0.7rem;
    border: 1px solid rgba(13, 31, 60, 0.1);
    border-left: 3px solid rgba(196, 147, 58, 0.5);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    counter-increment: step;
}

.prose-steps li::before {
    content: counter(step);
    position: absolute;
    top: 1rem;
    left: 1.1rem;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}

.prose-note {
    margin: 1.6rem 0;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: var(--cream-warm);
    border-left: 3px solid var(--gold);
    font-size: 0.98rem;
}

.page-aside {
    position: sticky;
    top: 6.5rem;
}

.page-aside h2 {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
}

.page-aside .contact-links a {
    color: var(--text-soft);
}

.aside-links {
    margin: 1.4rem 0 0;
    padding: 1.2rem 0 0;
    list-style: none;
    border-top: 1px solid rgba(196, 147, 58, 0.2);
}

.aside-links li {
    margin-bottom: 0.45rem;
}

.aside-links a {
    color: var(--cta-hover);
    font-weight: 600;
}

.aside-links a::after {
    content: " →";
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.related-card {
    display: block;
    padding: 1.3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(13, 31, 60, 0.1);
    border-top: 2px solid var(--gold);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.related-card strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    color: var(--text-dark);
}

.related-card span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-band {
    padding: 4.5rem 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(196, 147, 58, 0.18);
    text-align: center;
}

.cta-band .btn {
    min-width: 170px;
}

.cta-band .btn-outline-gold {
    color: var(--text-main);
    border-color: rgba(196, 147, 58, 0.6);
}

.cta-band h2 {
    color: var(--text-main);
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-band p {
    max-width: 620px;
    margin: 0 auto 1.8rem;
    color: var(--text-soft);
}

.card-more {
    grid-column: 1;
    justify-self: start;
    margin-top: 0.9rem;
    color: var(--cta-hover);
    font-weight: 700;
    font-size: 0.92rem;
}

.card-more + .card-more {
    margin-top: 0.3rem;
}

.card-more::after {
    content: " →";
}

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

    .card-more:hover,
    .aside-links a:hover {
        color: var(--text-main);
    }
}

@media (max-width: 991.98px) {
    .page-aside {
        position: static;
    }

    .page-hero {
        padding: 8rem 0 3.5rem;
    }
}

@media (min-width: 768px) {
    .site-footer {
        padding-bottom: 6rem;
    }
}

/* Compact navbar on phones: keep brand and toggler on one line */
@media (max-width: 575.98px) {
    .navbar-brand {
        gap: 0.55rem;
        min-width: 0;
        margin-right: 0.5rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        font-size: 0.82rem;
    }

    .brand-copy strong {
        font-size: 1rem;
        white-space: nowrap;
    }

    .brand-copy small {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .navbar-toggler {
        padding: 0.3rem 0.5rem;
    }

    .navbar-toggler-icon {
        width: 1.3em;
        height: 1.3em;
    }
    .page-hero {
        padding-top: 6.8rem;
    }
}
