/* ══════════════════════════════════════════════
   MARCOS SALES — INSTITUTIONAL STYLESHEET v2
   ══════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    /* Palette */
    --clr-forest:       #153B36;
    --clr-forest-deep:  #0D2622;
    --clr-forest-mid:   #1E4F48;
    --clr-sage:         #5C885B;
    --clr-gold:         #C9993A;
    --clr-gold-light:   #E0BE72;
    --clr-sand:         #EAE3CF;
    --clr-sand-light:   #F5F1E6;
    --clr-white:        #FFFFFF;
    --clr-dark:         #1A1A1A;
    --clr-text:         #333333;
    --clr-text-muted:   #6B6B6B;

    /* Typography — cohesive scale (1.2 ratio) */
    --ff-serif:   'Playfair Display', Georgia, serif;
    --ff-sans:    'Inter', system-ui, sans-serif;

    --fs-xs:   0.75rem;   /* 12px */
    --fs-sm:   0.875rem;  /* 14px */
    --fs-base: 1rem;      /* 16px */
    --fs-md:   1.125rem;  /* 18px */
    --fs-lg:   1.35rem;   /* ~22px */
    --fs-xl:   1.625rem;  /* 26px */
    --fs-2xl:  2rem;      /* 32px */
    --fs-3xl:  2.5rem;    /* 40px */

    /* Spacing */
    --section-py:  90px;
    --gap-lg:      50px;
    --gap-md:      28px;
    --gap-sm:      16px;

    /* Radius */
    --radius-lg:   20px;
    --radius-md:   14px;
    --radius-sm:   8px;
    --radius-pill:  50px;

    /* Shadows */
    --shadow-card:  0 6px 24px rgba(0,0,0,.07);
    --shadow-lg:    0 12px 40px rgba(0,0,0,.10);
    --shadow-glow:  0 0 30px rgba(201,153,58,.25);

    /* Transitions */
    --ease: cubic-bezier(.4,0,.2,1);
    --dur:  .35s;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-sans);
    font-size: var(--fs-base);
    color: var(--clr-text);
    line-height: 1.7;
    background: var(--clr-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Utility ─── */
.text-gold { color: var(--clr-gold); }

/* ══════════════ BUTTONS ══════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: var(--fs-sm);
    letter-spacing: .3px;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    padding: 11px 26px;
    white-space: nowrap;
}

.btn--primary {
    background: var(--clr-forest);
    color: var(--clr-white);
    border-color: var(--clr-forest);
}
.btn--primary:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-dark);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--clr-dark);
    border-color: var(--clr-dark);
}
.btn--outline:hover {
    background: var(--clr-dark);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn--sm   { padding: 7px 16px; font-size: var(--fs-xs); }
.btn--lg   { padding: 14px 32px; font-size: var(--fs-sm); }
.btn--block { width: 100%; }

/* ══════════════ HEADER ══════════════ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(253, 252, 249, 0.98); /* Almost solid to prevent heavy blur requirement */
    transition: box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}

.header.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    padding: 6px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

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

.logo-name {
    font-family: var(--ff-serif);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--clr-forest);
    letter-spacing: .5px;
}

.logo-label {
    font-family: var(--ff-sans);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--clr-gold);
    letter-spacing: 1px;
}

/* Nav */
.nav {
    display: flex;
    gap: 22px;
}

.nav-link {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: .4px;
    color: var(--clr-text);
    position: relative;
    padding: 4px 0;
    transition: color var(--dur) var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--clr-gold);
    border-radius: 2px;
    transition: width var(--dur) var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-forest);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    line-height: 1.3;
}

.header-phone i {
    font-size: 1.2rem;
    color: var(--clr-sage);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--clr-forest);
    border-radius: 3px;
    transition: all .3s var(--ease);
}

/* ══════════════ MOBILE DRAWER ══════════════ */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 999;
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.mobile-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-drawer {
    position: fixed;
    top: 0; right: -320px;
    width: 290px;
    height: 100vh;
    background: var(--clr-white);
    z-index: 1001;
    padding: 56px 28px 28px;
    transition: right .35s var(--ease);
    box-shadow: -4px 0 20px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-close {
    position: absolute;
    top: 14px; right: 18px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text);
    line-height: 1;
}

.drawer-brand {
    text-align: center;
    margin-bottom: 8px;
}

.drawer-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
}

.drawer-link {
    padding: 12px 0;
    font-weight: 600;
    font-size: var(--fs-sm);
    letter-spacing: .4px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: color var(--dur) var(--ease);
}

.drawer-link:hover { color: var(--clr-gold); }

/* ══════════════ HERO ══════════════ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #fdfcf9 0%, var(--clr-sand-light) 100%);
    padding: 110px 0 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/map_bg_light.png');
    background-size: cover;
    background-position: center;
    opacity: .08; /* made slightly lighter */
    z-index: 1;
}

/* ══════════════ HERO WAVES ══════════════ */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12vh;
    min-height: 80px;
    max-height: 150px;
    z-index: 1;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: -7px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
    will-change: transform;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end;
}

.hero-text {
    padding-bottom: 60px;
}

.hero h1 {
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--clr-dark);
    margin-bottom: 12px;
}

.hero h1 strong {
    font-weight: 700;
    color: var(--clr-forest);
}

.hero-sub {
    font-family: var(--ff-sans);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: var(--clr-dark);
    margin-bottom: 12px;
}

.hero-credentials {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-bottom: 4px;
    line-height: 1.5;
}

/* Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.rating-score {
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--clr-dark);
}

.rating-stars {
    display: flex;
    gap: 1px;
    color: var(--clr-gold);
    font-size: var(--fs-sm);
}

.rating-label {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Hero Buttons — match original print (compact pill) */
.btn--hero {
    background: var(--clr-forest);
    color: var(--clr-white);
    border: 2px solid var(--clr-forest);
    padding: 10px 22px;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: .4px;
    border-radius: var(--radius-pill);
}

.btn--hero:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-dark);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn--hero-outline {
    background: transparent;
    color: var(--clr-dark);
    border: 2px solid var(--clr-dark);
    padding: 10px 22px;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: .4px;
    border-radius: var(--radius-pill);
}

.btn--hero-outline:hover {
    background: var(--clr-dark);
    color: var(--clr-white);
    transform: translateY(-2px);
}

/* Portrait — cutout style, floating from the bottom */
.hero-portrait {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-cutout {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.12));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--clr-forest);
    font-size: 1.3rem;
    animation: bounceDown 2s infinite;
    opacity: .5;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════ DECORATIVE LEAVES ══════════════ */
.leaf {
    position: absolute;
    color: rgba(92,136,91,.1);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.leaf--hero-1  { width: 90px; top: 50px; right: 50px; transform: rotate(25deg); color: rgba(92,136,91,.15); }
.leaf--hero-2  { width: 65px; bottom: 150px; left: 30px; transform: rotate(-20deg); color: rgba(92,136,91,.2); }
.leaf--about-1 { width: 80px; top: 30px; left: 20px; transform: rotate(15deg); color: rgba(92,136,91,.12); }
.leaf--about-2 { width: 55px; bottom: 50px; right: 40px; transform: rotate(-30deg); color: rgba(92,136,91,.12); }

.leaf--serv-1 { width: 130px; top: 40px; right: -20px; transform: rotate(-45deg); color: rgba(255,255,255,.05); }
.leaf--serv-2 { width: 90px; bottom: 80px; left: -10px; transform: rotate(30deg); color: rgba(255,255,255,.06); }

.leaf--spec-1 { width: 140px; top: -30px; right: 20px; transform: rotate(15deg); color: rgba(92,136,91,.08); }
.leaf--spec-2 { width: 80px; bottom: 60px; left: 10px; transform: rotate(-50deg); color: rgba(92,136,91,.1); }

.leaf--test-1 { width: 100px; top: 120px; left: -30px; transform: rotate(60deg); color: rgba(92,136,91,.1); }
.leaf--test-2 { width: 110px; bottom: 20px; right: -20px; transform: rotate(-15deg); color: rgba(92,136,91,.08); }

.leaf--cont-1 { width: 150px; top: 40px; right: -30px; transform: rotate(-25deg); color: rgba(255,255,255,.04); }

/* ══════════════ SECTION BASES ══════════════ */
.section-dark {
    position: relative;
    background: linear-gradient(170deg, var(--clr-forest-deep) 0%, var(--clr-forest) 40%, var(--clr-forest-mid) 100%);
    color: var(--clr-white);
    padding: var(--section-py) 0;
    overflow: hidden;
}

.section-light {
    position: relative;
    background: var(--clr-white);
    padding: var(--section-py) 0;
}

.section-sand {
    position: relative;
    background: var(--clr-sand-light);
    padding: var(--section-py) 0;
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.kicker {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 6px;
}

.kicker--light { color: var(--clr-gold-light); }

.section-heading {
    font-family: var(--ff-serif);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--clr-dark);
}

.section-heading--light { color: var(--clr-white); }

.divider {
    width: 50px;
    height: 3px;
    background: var(--clr-forest);
    border-radius: 3px;
    margin: 14px auto 0;
}

.divider--gold { background: var(--clr-gold); }

/* ══════════════ ABOUT ══════════════ */
.about-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    display: flex;
    align-items: center;
    background: var(--clr-sand-light);
}

.about-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--clr-text);
}

.about-body .kicker {
    color: var(--clr-text-muted);
}

.about-body .section-heading {
    margin-bottom: 4px;
}

.about-body .divider {
    margin: 14px 0 22px 0;
}

.about-body p {
    font-size: var(--fs-sm);
    margin-bottom: 14px;
    color: var(--clr-text-muted);
    line-height: 1.75;
}

.about-body .btn {
    align-self: flex-start;
    margin-top: 8px;
}

/* ══════════════ SERVICES ══════════════ */
.section-services {
    padding-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
}

.svc-card {
    background: rgba(255,255,255,.08); /* slight opacity increase to replace blur */
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
    animation-delay: var(--delay, 0s);
    will-change: transform, opacity;
}

.svc-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.1);
    box-shadow: 0 10px 32px rgba(0,0,0,.12);
}

.svc-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: var(--clr-sand-light);
}

.svc-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .5s var(--ease);
}

.svc-card:hover .svc-img img {
    transform: scale(1.06);
}

.svc-body {
    padding: 28px 24px;
    text-align: center;
}

.svc-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(201,153,58,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur) var(--ease);
}

.svc-card:hover .svc-icon {
    background: var(--clr-gold);
    box-shadow: var(--shadow-glow);
}

.svc-icon i {
    font-size: 1.5rem;
    color: var(--clr-gold-light);
    transition: color var(--dur) var(--ease);
}

.svc-card:hover .svc-icon i { color: var(--clr-dark); }

.svc-card h3 {
    font-family: var(--ff-serif);
    font-size: var(--fs-md);
    font-weight: 600;
    margin-bottom: 10px;
}

.svc-card p {
    font-size: var(--fs-sm);
    line-height: 1.65;
    opacity: .85;
    margin-bottom: 0;
}

/* ══════════════ SPECIALTIES ══════════════ */
.specialties-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-sand-light);
    border: 1px solid rgba(21,59,54,.08);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--clr-forest);
    transition: all var(--dur) var(--ease);
    cursor: default;
}

.spec-tag:hover {
    background: var(--clr-forest);
    color: var(--clr-white);
    border-color: var(--clr-forest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.spec-tag i {
    font-size: 1.1rem;
    color: var(--clr-gold);
    transition: color var(--dur) var(--ease);
}

.spec-tag:hover i {
    color: var(--clr-gold-light);
}

/* ══════════════ TESTIMONIALS — Slider ══════════════ */
.section-desc {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-top: 12px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: var(--gap-md);
    transition: transform .45s var(--ease);
}

.test-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 28px 24px 24px;
    box-shadow: var(--shadow-card);
    border: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.test-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Avatar & Header */
.test-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-forest), var(--clr-forest-mid));
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: .5px;
}

.test-name {
    display: block;
    font-size: var(--fs-sm);
    color: var(--clr-dark);
}

.test-date {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.test-stars {
    display: flex;
    gap: 2px;
    color: var(--clr-gold);
    font-size: var(--fs-sm);
}

.test-card p {
    font-size: var(--fs-sm);
    font-style: italic;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--clr-forest);
    background: transparent;
    color: var(--clr-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.slider-btn:hover {
    background: var(--clr-forest);
    color: var(--clr-white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(21,59,54,.2);
    border: none;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    padding: 0;
}

.slider-dot.active {
    background: var(--clr-forest);
    transform: scale(1.2);
}


/* ══════════════ CONTACT ══════════════ */
.section-contact { padding-bottom: 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--clr-white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map {
    min-height: 400px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-info {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.contact-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-sand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.1rem;
    color: var(--clr-forest);
}

.contact-row strong {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 2px;
    letter-spacing: .3px;
}

.contact-row p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ══════════════ FOOTER ══════════════ */
.footer {
    background: var(--clr-forest-deep);
    color: rgba(255,255,255,.7);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-brand strong {
    font-size: var(--fs-sm);
    color: var(--clr-white);
    display: block;
}

.footer-brand p {
    font-size: var(--fs-xs);
    margin: 0;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: var(--fs-xs);
    font-weight: 500;
    transition: color var(--dur) var(--ease);
}

.footer-links a:hover { color: var(--clr-gold); }

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--dur) var(--ease);
}

.footer-social a:hover {
    background: var(--clr-gold);
    color: var(--clr-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    text-align: center;
    font-size: var(--fs-xs);
}

/* ══════════════ WHATSAPP FAB ══════════════ */
.fab-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 900;
    box-shadow: 0 4px 14px rgba(37,211,102,.35);
    transition: all var(--dur) var(--ease);
    animation: fabPulse 3s infinite;
}

.fab-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37,211,102,.45);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(37,211,102,.35); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 8px rgba(37,211,102,.08); }
}

/* ══════════════ SCROLL ANIMATIONS (Disabled for Performance) ══════════════ */
.anim-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.anim-fade.visible {
    opacity: 1 !important;
    transform: none !important;
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
    .nav { display: none; }
    .header-phone { display: none; }
    .hamburger { display: flex; }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text { order: 2; padding-bottom: 40px; }
    .hero-portrait { order: 1; max-width: 280px; margin: 0 auto; }
    .hero-cutout { max-width: 280px; }
    .hero-cta { justify-content: center; }
    .rating { justify-content: center; }

    .about-card { grid-template-columns: 1fr; }
    .about-img img { min-height: 260px; }
    .about-body { padding: 32px 24px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 280px; }
}

@media (max-width: 640px) {
    :root {
        --section-py: 56px;
        --fs-3xl: 1.85rem;
        --fs-2xl: 1.5rem;
    }

    .hero { min-height: auto; padding-top: 100px; }

    .header-actions { display: none; }

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

    .specialties-grid { gap: 8px; }
    .spec-tag {
        font-size: var(--fs-xs);
        padding: 8px 14px;
    }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .footer-social { justify-content: center; }

    .btn--lg { padding: 12px 24px; font-size: var(--fs-xs); }
}
