/* =========================================================
   Meridian Wealth Advisory — Custom Stylesheet
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
    --navy-900: #061a2f;
    --navy-800: #0a2540;
    --navy-700: #102e4f;
    --navy-600: #1a3a5e;
    --gold-500: #c9a961;
    --gold-400: #d4b876;
    --gold-300: #e3cf9b;
    --cream-50: #faf7f0;
    --cream-100: #f5f1e8;
    --cream-200: #ece5d3;
    --ink-900: #111418;
    --ink-700: #2d3338;
    --ink-500: #5a6470;
    --ink-300: #9aa3ad;
    --line: rgba(10, 37, 64, 0.12);
    --line-light: rgba(255, 255, 255, 0.14);

    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;

    --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 2px 8px rgba(6, 26, 47, 0.06);
    --shadow-md: 0 12px 32px rgba(6, 26, 47, 0.08);
    --shadow-lg: 0 24px 64px rgba(6, 26, 47, 0.12);
}

/* ---------- Global Reset / Overflow Guard ---------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-700);
    background: var(--cream-50);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Containers should never push beyond viewport */
.container, .container-fluid {
    max-width: 100%;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
}

@media (min-width: 1200px) {
    .container { max-width: 1240px; }
}

img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Skip link (a11y) ---------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--navy-800);
    color: var(--cream-50);
    padding: 0.75rem 1.25rem;
    text-decoration: none;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6,
.display-title, .section-title, .form-title {
    font-family: var(--font-display);
    color: var(--navy-900);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

em {
    font-style: italic;
    color: var(--gold-500);
    font-feature-settings: "ss01";
}

p { margin-bottom: 1rem; }

a {
    color: var(--navy-700);
    text-decoration: none;
    transition: color 0.25s ease;
}
a:hover { color: var(--gold-500); }

::selection {
    background: var(--gold-500);
    color: var(--navy-900);
}

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.75rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-transform: none;
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
}
.btn-gold:hover, .btn-gold:focus {
    background: var(--navy-900);
    color: var(--gold-400);
    border-color: var(--navy-900);
}

.btn-ghost {
    background: transparent;
    color: var(--navy-900);
    border: 1px solid var(--navy-900);
}
.btn-ghost:hover, .btn-ghost:focus {
    background: var(--navy-900);
    color: var(--cream-50);
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--navy-900);
    color: var(--cream-100);
    font-size: 0.85rem;
    padding: 0.6rem 0;
    letter-spacing: 0.02em;
}
.top-bar i { color: var(--gold-400); margin-right: 0.4rem; }
.top-bar-right { color: var(--gold-300); }

/* ---------- Navbar ---------- */
.site-nav {
    background: var(--cream-50);
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all 0.3s ease;
}
.site-nav.is-scrolled {
    box-shadow: 0 4px 20px rgba(6, 26, 47, 0.08);
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
}
.brand-mark {
    width: 44px;
    height: 44px;
    background: var(--navy-900);
    color: var(--gold-500);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--navy-900);
    font-weight: 500;
    letter-spacing: -0.01em;
}
.brand-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-500);
    margin-top: 3px;
}

.navbar-nav .nav-link {
    color: var(--navy-900);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.5rem 1rem !important;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-nav .nav-link:hover { color: var(--navy-900); }

.navbar-toggler {
    border: 1px solid var(--navy-800);
    padding: 0.4rem 0.65rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 2px var(--gold-300); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(4rem, 10vw, 8rem) 0 clamp(4rem, 10vw, 7rem);
    background: var(--cream-50);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 90%, rgba(10, 37, 64, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(10, 37, 64, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-inner { position: relative; z-index: 1; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ink-500);
    margin-bottom: 1.75rem;
    font-weight: 500;
}
.eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold-500);
}

.display-title {
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 1.75rem;
    font-weight: 400;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}

.hero-lede {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--ink-700);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 3.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    color: var(--navy-900);
    line-height: 1;
    font-weight: 500;
}
.trust-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-500);
    margin-top: 0.4rem;
}
.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--line);
}

/* Hero card / quote */
.hero-card {
    background: var(--navy-900);
    color: var(--cream-100);
    padding: 2.75rem 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: rotate(0.5deg);
}
.hero-card::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--gold-500);
    border-radius: var(--radius-md);
    transform: rotate(-1deg);
    z-index: -1;
    opacity: 0.6;
}
.hero-card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-400);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.hero-quote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 400;
    margin: 0 0 2rem 0;
    position: relative;
    color: var(--cream-50);
}
.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-500);
    line-height: 0;
    position: absolute;
    top: -0.4rem;
    left: -0.5rem;
    opacity: 0.6;
}
.hero-card-author { display: flex; flex-direction: column; padding-top: 1.5rem; border-top: 1px solid rgba(201, 169, 97, 0.2); }
.author-name { color: var(--cream-50); font-weight: 500; font-size: 1rem; }
.author-title { color: var(--gold-400); font-size: 0.85rem; letter-spacing: 0.05em; margin-top: 0.2rem; }

/* ---------- Credentials Strip ---------- */
.credentials {
    background: var(--navy-900);
    color: var(--cream-100);
    padding: 2.25rem 0;
    overflow: hidden;
}
.credentials-label {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 1.25rem;
    text-align: center;
}
.credentials-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--cream-100);
}
.cred-dot {
    width: 4px;
    height: 4px;
    background: var(--gold-500);
    border-radius: 50%;
}

/* ---------- Sections ---------- */
.section {
    padding: clamp(4rem, 9vw, 7.5rem) 0;
    position: relative;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ink-500);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.section-label .num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-500);
    font-size: 1.1rem;
    letter-spacing: 0;
}
.section-label.light { color: rgba(245, 241, 232, 0.7); }

.section-title {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--navy-900);
    font-weight: 400;
}
.section-title.light { color: var(--cream-50); }
.section-title.light em { color: var(--gold-400); }

.section-lede {
    font-size: 1.05rem;
    color: var(--ink-700);
    line-height: 1.65;
}

/* ---------- Service Cards ---------- */
.services { background: var(--cream-50); }

.service-card {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--ink-300);
}
.service-icon {
    font-size: 2rem;
    color: var(--gold-500);
    margin-bottom: 1.5rem;
    display: block;
}
.service-title {
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
    color: var(--navy-900);
    font-weight: 500;
}
.service-card p {
    color: var(--ink-500);
    margin-bottom: 0;
    line-height: 1.65;
    font-size: 0.96rem;
}

/* ---------- About ---------- */
.about { background: #ffffff; }

.about-image-stack {
    position: relative;
    padding-bottom: 3rem;
    padding-right: 2rem;
}
.about-img-main {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}
.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 8px solid var(--cream-50);
    box-shadow: var(--shadow-md);
}
.about-badge {
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    background: var(--navy-900);
    color: var(--cream-50);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 130px;
}
.badge-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-500);
    display: block;
    line-height: 1;
}
.badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream-200);
    display: block;
    margin-top: 0.4rem;
}

.lead-paragraph {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--navy-900);
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}
.about-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.about-list li:last-child { border-bottom: none; }
.about-list i {
    color: var(--gold-500);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ---------- Approach (dark section) ---------- */
.approach {
    background: var(--navy-900);
    color: var(--cream-100);
    position: relative;
    overflow: hidden;
}
.approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.approach .container { position: relative; z-index: 1; }

.approach-step {
    padding: 2.25rem 1.75rem;
    border: 1px solid var(--line-light);
    height: 100%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}
.approach-step:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: rgba(201, 169, 97, 0.3);
}
.step-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2rem;
    color: var(--gold-500);
    margin-bottom: 1rem;
    line-height: 1;
}
.step-title {
    font-size: 1.5rem;
    color: var(--cream-50);
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.approach-step p {
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.94rem;
    margin: 0;
}

/* ---------- Team ---------- */
.team { background: var(--cream-100); }

.team-card {
    background: transparent;
    transition: transform 0.4s ease;
}
.team-card:hover { transform: translateY(-6px); }

.team-photo-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: var(--navy-700);
    aspect-ratio: 4 / 5;
}
.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(20%);
}
.team-card:hover .team-photo-wrap img {
    transform: scale(1.04);
    filter: grayscale(0);
}
.team-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 26, 47, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.team-name {
    font-size: 1.3rem;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
    font-weight: 500;
}
.team-role {
    font-size: 0.88rem;
    color: var(--ink-500);
    margin-bottom: 0;
    letter-spacing: 0.04em;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream-50); }

.testimonial {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 2.25rem 2rem;
    height: 100%;
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
}
.testimonial:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 169, 97, 0.3);
}

.testimonial-stars {
    color: var(--gold-500);
    margin-bottom: 1.25rem;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
}

.testimonial blockquote { margin: 0 0 1.5rem 0; }
.testimonial blockquote p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--navy-900);
    font-style: italic;
    margin-bottom: 0;
    font-weight: 400;
}

.testimonial figcaption { display: flex; flex-direction: column; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.t-name { color: var(--navy-900); font-weight: 500; font-size: 1rem; }
.t-role { color: var(--ink-500); font-size: 0.85rem; margin-top: 0.2rem; }

/* ---------- Contact ---------- */
.contact {
    background: var(--navy-900);
    color: var(--cream-100);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(201, 169, 97, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }

.contact-lede {
    color: rgba(245, 241, 232, 0.78);
    font-size: 1.05rem;
    margin: 1.25rem 0 2.5rem;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info li {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line-light);
}
.contact-info li:last-child { border-bottom: none; }
.contact-info i {
    color: var(--gold-500);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info strong {
    display: block;
    color: var(--gold-400);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.contact-info span {
    color: var(--cream-100);
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background: var(--cream-50);
    color: var(--ink-700);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.6rem;
    color: var(--navy-900);
    margin-bottom: 1.75rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.form-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-700);
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.form-label span { color: var(--gold-500); }

.form-control,
.form-select {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-size: 0.96rem;
    font-family: var(--font-body);
    color: var(--ink-900);
    transition: all 0.25s ease;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
    background: #ffffff;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--ink-500);
    line-height: 1.5;
}
.form-check-input {
    border: 1px solid var(--line);
    margin-top: 0.25rem;
}
.form-check-input:checked {
    background-color: var(--gold-500);
    border-color: var(--gold-500);
}
.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
    border-color: var(--gold-500);
}

.link-gold { color: var(--gold-500); text-decoration: underline; text-underline-offset: 3px; }
.link-gold:hover { color: var(--navy-900); }

.contact-form .btn-gold i { margin-right: 0.5rem; font-size: 1.15rem; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy-900);
    color: var(--cream-200);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}
.footer-brand { margin-bottom: 1.25rem; }
.footer-brand .brand-mark { background: var(--gold-500); color: var(--navy-900); }
.footer-brand .brand-name { color: var(--cream-50); }
.footer-brand .brand-sub { color: var(--gold-400); }

.footer-tagline {
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 380px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-400);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li { margin-bottom: 0.65rem; }
.footer-list a {
    color: rgba(245, 241, 232, 0.75);
    font-size: 0.94rem;
}
.footer-list a:hover { color: var(--gold-400); }

.footer-address {
    color: rgba(245, 241, 232, 0.75);
    font-size: 0.94rem;
    line-height: 1.7;
    font-style: normal;
}
.footer-address a { color: var(--gold-400); }
.footer-address a:hover { color: var(--cream-50); }

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(245, 241, 232, 0.55);
}
.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-legal a {
    color: rgba(245, 241, 232, 0.6);
    font-size: 0.85rem;
}
.footer-legal a:hover { color: var(--gold-400); }

/* ---------- Toast container ---------- */
.toast-stack { z-index: 1080; }

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
    background: var(--whatsapp-dark);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0, 0, 0, 0.2);
}
.whatsapp-float i { line-height: 1; }

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    opacity: 0.5;
    animation: whatsapp-pulse 2s ease-out infinite;
    z-index: -1;
}
@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-900);
    color: var(--cream-50);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-md);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--navy-900);
}
.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}

/* ---------- Mobile Adjustments ---------- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--line);
    }
    .navbar-nav .nav-link { padding: 0.7rem 0 !important; }
    .navbar-nav .nav-link::after { display: none; }
    .navbar-nav .nav-item.ms-lg-3 { margin-top: 0.75rem; }
    .navbar-nav .btn { display: inline-block; }

    .hero { padding-top: 3.5rem; padding-bottom: 4rem; }
    .display-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
    .hero-trust { gap: 1.25rem; }
    .trust-divider { display: none; }
    .trust-item { flex-basis: calc(50% - 0.625rem); }

    .about-img-accent { width: 50%; }
    .about-badge { left: -0.5rem; padding: 1rem 1.1rem; min-width: 110px; }
    .badge-num { font-size: 2rem; }

    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575.98px) {
    body { font-size: 16px; }

    .top-bar { display: none !important; }

    .brand-name { font-size: 1.15rem; }
    .brand-sub { font-size: 0.62rem; letter-spacing: 0.14em; }
    .brand-mark { width: 38px; height: 38px; font-size: 1.25rem; }

    .display-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }

    .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }

    .service-card { padding: 2rem 1.5rem; }
    .lead-paragraph { font-size: 1.15rem; }

    .approach-step { padding: 1.75rem 1.25rem; }

    .testimonial { padding: 1.75rem 1.5rem; }
    .testimonial blockquote p { font-size: 1.05rem; }

    .contact-form { padding: 1.75rem 1.5rem; }
    .form-title { font-size: 1.35rem; }

    .whatsapp-float { width: 54px; height: 54px; font-size: 1.65rem; bottom: 18px; right: 18px; }
    .whatsapp-tooltip { display: none; }

    .credentials-row { gap: 0.75rem; font-size: 0.95rem; }
    .cred-dot { width: 3px; height: 3px; }

    .about-image-stack { padding-right: 0; padding-bottom: 2rem; }
    .about-img-accent { display: none; }
    .about-badge { left: 1rem; top: 1rem; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .whatsapp-pulse { display: none; }
}

/* ---------- Print ---------- */
@media print {
    .whatsapp-float, .top-bar, .site-nav, .contact-form { display: none !important; }
}
