/* ========================================================
   MEDELLÍN LASER CLINIC — Global Stylesheet v2.0
   Luxury Medical Dark Theme — Cinematic Edition
   ======================================================== */

/* ========== CUSTOM PROPERTIES ========== */
:root {
    --navy: #0a1628;
    --navy-light: #111f3a;
    --navy-mid: #0e1a30;
    --navy-deep: #060e1a;
    --slate: #1a2a4a;
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --gold-glow: rgba(201, 168, 76, 0.08);
    --gold-vivid: #dbb85e;
    --cream: #f5f0e8;
    --white: #ffffff;
    --gray-100: #e8e6e1;
    --gray-300: #b0aca3;
    --gray-500: #7a756c;
    --gray-700: #4a4640;
    --text-light: rgba(255,255,255,0.88);
    --text-dim: rgba(255,255,255,0.5);
    --text-faint: rgba(255,255,255,0.2);
    --border-subtle: rgba(201, 168, 76, 0.08);
    --border-gold: rgba(201, 168, 76, 0.2);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--text-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ========== GRAIN OVERLAY ========== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

/* ========== PAGE LOADER ========== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-iris {
    width: 80px;
    height: 80px;
    position: relative;
}

.loader-iris svg {
    width: 100%;
    height: 100%;
    animation: spin 3s linear infinite;
}

.loader-iris .pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.6; }
}

/* Keep legacy .loader-ring working for inner pages */
.loader-ring {
    width: 48px;
    height: 48px;
    border: 2px solid var(--border-subtle);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== LAYOUT ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== TYPOGRAPHY ========== */
.section-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-label.centered {
    justify-content: center;
}

.section-label.centered::before {
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-label.centered::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 600px;
}

.section-subtitle.centered {
    margin: 0 auto;
}

.gold-text { color: var(--gold); }

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    transition: all 0.4s var(--ease-out);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35), 0 0 80px rgba(201, 168, 76, 0.1);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all 0.4s var(--ease-out);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.2);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    color: var(--text-dim);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.btn-ghost:hover { color: var(--gold-light); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes rotateIris {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateIrisReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 40% / 40% 50% 60% 50%; }
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ========== LANGUAGE TOGGLE ========== */
.lang-toggle {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    padding: 3px;
}

.lang-btn {
    padding: 0.4rem 1rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border: none;
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--navy);
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.nav-logo:hover .nav-logo-icon {
    background: var(--gold-dim);
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.2);
    border-color: var(--gold-light);
}

.nav-logo-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-logo-text span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    padding: 0.6rem 1.5rem !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    font-size: 0.8rem !important;
    border-radius: var(--radius-sm) !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.25) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(6, 14, 26, 0.98);
    backdrop-filter: blur(40px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.mobile-nav-close svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}

/* ========== HERO (INDEX) ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 42, 74, 0.8) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 80%, var(--gold-glow) 0%, transparent 60%),
        linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 70%, var(--navy) 100%);
}

/* Animated mesh gradient */
.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 600px at 80% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 100%),
        radial-gradient(circle 400px at 20% 70%, rgba(26, 42, 74, 0.6) 0%, transparent 100%),
        radial-gradient(circle 300px at 60% 80%, rgba(201, 168, 76, 0.03) 0%, transparent 100%);
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(201, 168, 76, 0.05) 1px, transparent 0);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-glow {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
}

/* Particle canvas */
#heroParticles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Animated SVG Eye/Iris */
.hero-iris {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.hero-iris .iris-outer {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    animation: rotateIris 30s linear infinite;
}

.hero-iris .iris-outer::before,
.hero-iris .iris-outer::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
}

.hero-iris .iris-outer::before {
    inset: 10%;
    animation: rotateIrisReverse 20s linear infinite;
    border-style: dashed;
}

.hero-iris .iris-outer::after {
    inset: 25%;
    border-color: rgba(201, 168, 76, 0.25);
}

.hero-iris .iris-mid {
    position: absolute;
    inset: 20%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    animation: rotateIrisReverse 25s linear infinite;
}

.hero-iris .iris-mid::before {
    content: '';
    position: absolute;
    inset: 15%;
    border: 1px dashed rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    animation: rotateIris 15s linear infinite;
}

.hero-iris .iris-inner {
    position: absolute;
    inset: 38%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.hero-iris .iris-pupil {
    position: absolute;
    inset: 45%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Iris ring decorations */
.hero-iris .iris-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.hero-iris .iris-ring:nth-child(5) { inset: 5%; animation: rotateIris 40s linear infinite; }
.hero-iris .iris-ring:nth-child(6) { inset: 15%; animation: rotateIrisReverse 35s linear infinite; border-style: dashed; }
.hero-iris .iris-ring:nth-child(7) { inset: 30%; animation: rotateIris 22s linear infinite; }
.hero-iris .iris-ring:nth-child(8) { inset: 35%; border-color: rgba(201, 168, 76, 0.2); }

/* Crosshair lines */
.hero-iris .iris-cross {
    position: absolute;
    inset: 0;
    animation: rotateIris 60s linear infinite;
}

.hero-iris .iris-cross::before,
.hero-iris .iris-cross::after {
    content: '';
    position: absolute;
    background: rgba(201, 168, 76, 0.1);
}

.hero-iris .iris-cross::before {
    top: 0; bottom: 0; left: 50%; width: 1px;
    transform: translateX(-0.5px);
}

.hero-iris .iris-cross::after {
    left: 0; right: 0; top: 50%; height: 1px;
    transform: translateY(-0.5px);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 6rem;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 100px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s var(--ease-out) forwards;
    background: rgba(201, 168, 76, 0.04);
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
}

.hero-badge-text {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeUp 0.8s var(--ease-out) 0.15s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.4;
}

.hero-desc {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
    max-width: 520px;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: fadeUp 0.8s var(--ease-out) 0.45s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

/* ========== SERVICES CAROUSEL ========== */
.services-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.services-header-text {
    max-width: 500px;
}

.services-nav {
    display: flex;
    gap: 0.75rem;
}

.services-nav button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-nav button:hover {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.2);
}

.services-nav button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.services-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}

.services-track::-webkit-scrollbar { display: none; }

.service-card-v2 {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 320px;
    scroll-snap-align: start;
    background: linear-gradient(145deg, rgba(26, 42, 74, 0.6) 0%, rgba(17, 31, 58, 0.2) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    cursor: pointer;
}

.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--gold-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
}

.service-card-v2:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.service-card-v2:hover::before,
.service-card-v2:hover::after { opacity: 1; }

.service-card-v2 > * { position: relative; z-index: 2; }

.service-card-v2 .service-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 500;
    color: rgba(201, 168, 76, 0.06);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.5s ease;
}

.service-card-v2:hover .service-number {
    color: rgba(201, 168, 76, 0.12);
}

.service-card-v2 .service-icon-v2 {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card-v2:hover .service-icon-v2 {
    background: var(--gold-dim);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
}

.service-card-v2 .service-icon-v2 svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.service-card-v2 h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card-v2 p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.service-card-v2 .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s var(--ease-out), color 0.3s ease;
}

.service-card-v2:hover .service-link { gap: 0.85rem; color: var(--gold-light); }

.service-card-v2 .service-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Keep old .service-card for inner pages */
.service-card {
    background: linear-gradient(135deg, rgba(26, 42, 74, 0.5) 0%, rgba(17, 31, 58, 0.3) 100%);
    border: 1px solid var(--border-subtle);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    border-radius: var(--radius-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--gold-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-card > * { position: relative; z-index: 2; }

.service-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gold-dim);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s var(--ease-out);
}

.service-link:hover { gap: 0.85rem; }

.service-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ========== PARALLAX STRIP ========== */
.parallax-strip {
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-strip-bg {
    position: absolute;
    inset: -60px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3) saturate(0.7);
}

.parallax-strip-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--navy) 0%, transparent 30%, transparent 70%, var(--navy) 100%),
        linear-gradient(90deg, var(--navy) 0%, transparent 30%, transparent 70%, var(--navy) 100%);
}

.parallax-strip-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parallax-strip-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    max-width: 700px;
}

.parallax-strip-content cite {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ========== STATS ROW v2 ========== */
.stats-section {
    padding: 6rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: linear-gradient(135deg, rgba(26, 42, 74, 0.4) 0%, rgba(17, 31, 58, 0.2) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    backdrop-filter: blur(8px);
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), transparent, rgba(201, 168, 76, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.stat-card:hover::before { opacity: 1; }

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.4;
}

/* Legacy stats-row for inner pages */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    margin: 4rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.stat-item {
    background: var(--navy);
    padding: 3rem 2rem;
    text-align: center;
    transition: background 0.4s ease;
}

.stat-item:hover { background: var(--navy-light); }

/* ========== ABOUT PREVIEW ========== */
.about-preview {
    padding: 8rem 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-frame {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--slate), var(--navy-light));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.about-image-placeholder {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.about-image-placeholder svg {
    opacity: 0.15;
}

.about-image-placeholder p {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 1rem;
}

.about-decor-frame {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.about-floating-stat {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    z-index: 3;
}

.about-floating-stat .stat-number {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.about-floating-stat .stat-label {
    font-size: 0.75rem;
}

.about-text .feature-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.feature-item .feature-check {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .feature-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dim);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 42, 74, 0.4), rgba(17, 31, 58, 0.2));
    border: 1px solid var(--border-subtle);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: all 0.5s var(--ease-out);
}

.testimonial-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.testimonial-card .quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

.testimonial-note {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, var(--gold-glow) 0%, transparent 70%);
}

.cta-section-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(201, 168, 76, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-section-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.cta-section p {
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-contact-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.cta-contact-item span {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dim);
}

/* ========== PAGE HERO (INNER PAGES) ========== */
.page-hero {
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 30%, rgba(26, 42, 74, 0.6) 0%, transparent 70%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(201, 168, 76, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s var(--ease-out) forwards;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.page-hero-desc {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeUp 0.8s var(--ease-out) 0.15s both;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--text-faint);
    animation: fadeIn 0.6s ease both;
}

.breadcrumb a {
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-faint); }

/* ========== SPECIALIST CARD ========== */
.specialist-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.4s var(--ease-out);
    border-radius: var(--radius-md);
}

.specialist-card:hover { transform: translateY(-6px); }

.specialist-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--border-gold);
    overflow: hidden;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.specialist-card:hover .specialist-photo {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}

.specialist-photo svg {
    width: 60px;
    height: 60px;
    stroke: var(--text-faint);
    fill: none;
    stroke-width: 1;
}

.specialist-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.specialist-card .specialty {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ========== CONTACT FORM ========== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(26, 42, 74, 0.5);
    border: 1px solid var(--border-subtle);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    border-radius: var(--radius-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ========== DIVIDER ========== */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
    margin: 6rem 0;
}

/* ========== FOOTER ========== */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: var(--navy-deep);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-dim);
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-dim);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-dim);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.footer-social a:hover svg { stroke: var(--gold); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 800;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--slate); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .about-grid { gap: 3rem; }
    .service-card-v2 { flex: 0 0 calc(50% - 0.75rem); min-width: 280px; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .hero-iris { width: 500px; height: 500px; right: -15%; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero h1 { font-size: 2.4rem; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-iris { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .lang-toggle { right: 4rem; }
    .cta-contact-row { flex-direction: column; align-items: center; gap: 1rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .service-card { padding: 2rem; }
    .service-card-v2 { flex: 0 0 85%; min-width: 260px; }
    .page-hero { padding: 8rem 0 3rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-floating-stat { position: relative; bottom: auto; right: auto; margin-top: 1.5rem; display: inline-block; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .services-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .parallax-strip { height: 250px; }
    .parallax-strip-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .container { padding: 0 1.25rem; }
    .hero-stats { gap: 1.5rem; }
}
