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

:root {
    --bg-primary: #0a0a0e;
    --bg-secondary: #111115;
    --bg-tertiary: #16141c;
    --bg-card: #161619;
    --bg-card-hover: #1e1e22;
    --bg-elevated: rgba(24, 22, 30, 0.82);
    --accent: #d42020;
    --accent-light: #ef4444;
    --accent-dark: #b91c1c;
    --accent-bright: #ff3b3b;
    --accent-gold: #f0c870;
    --cream: #f5e6d3;
    --cream-light: #fdf2e9;
    --text-white: #f8f6f3;
    --text-light: #c4bfb6;
    --text-muted: #7a756d;
    --text-dark: #4a4640;
    --gold-light: #f4d995;
    --gradient: linear-gradient(135deg, var(--accent) 0%, #e85d3a 50%, #c9884c 100%);
    --gradient-text: linear-gradient(135deg, var(--accent-light) 0%, #ff8a6b 50%, #f0c870 100%);
    --surface-gradient: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    --whatsapp: #25d366;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --font-numeric: 'Montserrat', 'Segoe UI', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 40px rgba(212, 32, 32, 0.18);
    --radius: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 32, 32, 0.14) 0%, transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(240, 200, 112, 0.08) 0%, transparent 22%),
        radial-gradient(circle at 68% 72%, rgba(86, 48, 142, 0.12) 0%, transparent 26%),
        linear-gradient(180deg, #08090d 0%, #0c0b12 38%, #0a0a0e 100%);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    isolation: isolate;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1440px; margin: 0 auto; padding: 0 4rem; }

.page-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0.7;
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.32;
}

.ambient-blob-1 {
    top: -12rem;
    left: -8rem;
    width: 34rem;
    height: 34rem;
    background: radial-gradient(circle, rgba(212, 32, 32, 0.24) 0%, rgba(212, 32, 32, 0.04) 62%, transparent 100%);
}

.ambient-blob-2 {
    top: 18%;
    right: -10rem;
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(240, 200, 112, 0.14) 0%, rgba(240, 200, 112, 0.03) 60%, transparent 100%);
    animation-delay: -6s;
}

.ambient-blob-3 {
    bottom: -10rem;
    left: 42%;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(140, 83, 255, 0.16) 0%, rgba(140, 83, 255, 0.03) 58%, transparent 100%);
    animation-delay: -12s;
}

.ambient-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 140px 140px;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed; width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,32,32,0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.3s ease, top 0.3s ease;
    display: none;
}
@media (hover: hover) { .cursor-glow { display: block; } }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 50px; cursor: pointer;
    transition: all 0.4s var(--ease);
    border: none; position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(212, 32, 32, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 32, 32, 0.5);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: var(--text-white);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: rgba(212,32,32,0.08);
    transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.8rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; position: relative; }
.preloader-logo { width: 150px; margin: 0 auto; animation: pulse 2s ease-in-out infinite; filter: drop-shadow(0 4px 20px rgba(212, 32, 32, 0.4)); }
.preloader-spinner {
    width: 190px; height: 190px;
    border: 2px solid rgba(255,255,255,0.05);
    border-top-color: var(--accent);
    border-radius: 50%;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1.2s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0.8rem 0;
    background: linear-gradient(to bottom, rgba(8,8,12,0.78) 0%, rgba(8,8,12,0.22) 68%, transparent 100%);
    transition: all 0.4s var(--ease);
}
#navbar.scrolled {
    background:
        linear-gradient(135deg, rgba(14, 12, 18, 0.94) 0%, rgba(18, 14, 22, 0.92) 100%);
    padding: 0.4rem 0;
    box-shadow: 0 1px 30px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    max-width: 1440px; margin: 0 auto; padding: 0 4rem 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
    height: 100px;
    transition: all 0.4s var(--ease);
    filter: drop-shadow(0 2px 10px rgba(212, 32, 32, 0.35));
    margin-right: 1rem;
}
#navbar.scrolled .nav-logo img { height: 70px; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-light);
    position: relative; transition: color 0.3s; padding: 0.5rem 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gradient);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    background: var(--gradient) !important;
    color: #fff !important;
    padding: 0.55rem 1.5rem !important;
    border-radius: 50px !important;
    letter-spacing: 1px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(212,32,32,0.3); }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
.hamburger span { display: block; width: 28px; height: 2px; background: var(--text-white); transition: all 0.3s var(--ease); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
#home {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center center; /* overridden per-slide by JS */
    opacity: 0;
    transform: scale(1.08);
    transform-origin: var(--kb-origin, center center);
    transition: opacity 1.8s ease, transform 8s ease-out;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Base overlay — lighter than before so photos breathe */
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(135deg, rgba(11,11,15,0.65) 0%, rgba(11,11,15,0.18) 50%, rgba(11,11,15,0.55) 100%),
        linear-gradient(to bottom, rgba(11,11,15,0.2) 0%, transparent 25%, transparent 60%, rgba(11,11,15,1) 100%);
}

/* ── PREMIUM LAYERS ── */

/* 1. Cinematic vignette — dark elliptical edges */
.hero-vignette {
    position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 42%, rgba(0,0,0,0.72) 100%);
    pointer-events: none;
}

/* 2. Color grade — warm reds in highlights, cool in shadows */
.hero-color-grade {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(145deg, rgba(180,22,0,0.09) 0%, transparent 45%),
        linear-gradient(325deg, rgba(8,5,25,0.18) 0%, transparent 45%);
    pointer-events: none;
}

/* 3. Film grain — animated SVG fractal noise */
.hero-grain {
    display: none;
}

/* 4. Anamorphic light leak — warm glow top-left corner */
.hero-light-leak {
    position: absolute; top: -25%; left: -8%; z-index: 2;
    width: 58%; height: 68%;
    background: radial-gradient(ellipse, rgba(220,88,18,0.13) 0%, rgba(180,40,10,0.04) 40%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.45;
}

/* ── SLIDE COUNTER ── */
.hero-counter {
    position: absolute; bottom: 3.2rem; right: 2.5rem; z-index: 4;
    display: flex; align-items: baseline; gap: 0.4rem;
    opacity: 0; animation: fadeUp 1s ease 2s forwards;
}
.hero-counter-current {
    font-family: var(--font-numeric);
    font-size: 2.8rem; font-weight: 300;
    color: var(--text-white); line-height: 1;
    letter-spacing: 2px;
    font-variant-numeric: lining-nums tabular-nums;
}
.hero-counter-sep {
    font-size: 1rem; color: var(--text-muted);
    font-weight: 300; margin: 0 0.1rem;
}
.hero-counter-total {
    font-size: 0.85rem; font-weight: 500;
    color: var(--text-muted); letter-spacing: 2px;
}

/* ── PROGRESS BAR ── */
.hero-progress-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
    height: 2px; background: rgba(255,255,255,0.06);
}
.hero-progress-fill {
    height: 100%;
    background: var(--gradient);
    width: 0%;
    box-shadow: 0 0 10px rgba(212,32,32,0.7), 0 0 20px rgba(212,32,32,0.3);
}
.hero-particles {
    position: absolute; inset: 0; z-index: 2;
    overflow: hidden; pointer-events: none;
}
.particle {
    position: absolute; width: 3px; height: 3px;
    background: rgba(212, 32, 32, 0.4);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.hero-content {
    position: relative; z-index: 3;
    text-align: center;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 1s ease 0.3s forwards;
}
.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(212, 32, 32, 0.12);
    border: 1px solid rgba(212, 32, 32, 0.25);
    border-radius: 50px;
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-display);
    font-size: 5.5rem; font-weight: 300;
    letter-spacing: 4px; line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 0 80px rgba(0,0,0,0.3);
}
.hero-tagline {
    font-family: var(--font-script);
    font-size: 2.2rem; color: var(--gold-light);
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 1.2rem;
}
.hero-divider span:nth-child(1),
.hero-divider span:nth-child(3) { width: 40px; height: 1px; background: var(--text-muted); }
.hero-divider span:nth-child(2) { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.hero-subtitle {
    font-size: 0.82rem; letter-spacing: 5px;
    text-transform: uppercase; color: var(--text-light);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
    opacity: 0; animation: fadeUp 1s ease 1.5s forwards;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease infinite;
}
.scroll-indicator span { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.hero-social {
    position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
    z-index: 3; display: flex; flex-direction: column; gap: 1.2rem;
    opacity: 0; animation: fadeUp 1s ease 1.8s forwards;
}
.hero-social a {
    color: var(--text-muted); transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-social a:hover { color: var(--accent-light); border-color: var(--accent); transform: translateY(-2px); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION COMMON ===== */
section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
section:not(#home)::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: min(36vw, 420px);
    height: min(36vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 32, 32, 0.12) 0%, rgba(212, 32, 32, 0.02) 50%, transparent 75%);
    filter: blur(14px);
    opacity: 0.85;
    pointer-events: none;
}
section > * {
    position: relative;
    z-index: 1;
}
.section-label {
    font-size: 0.7rem; letter-spacing: 4px;
    text-transform: uppercase; color: var(--accent-light);
    font-weight: 600; display: block; margin-bottom: 0.8rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: 3.2rem; font-weight: 400;
    line-height: 1.15; margin-bottom: 1rem;
}
.title-accent {
    width: 50px; height: 3px;
    background: var(--gradient);
    border-radius: 3px; margin-bottom: 1.8rem;
}
.title-accent.center { margin-left: auto; margin-right: auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-desc { color: var(--text-muted); font-size: 0.95rem; max-width: 500px; margin: 0 auto; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0; transform: translateY(50px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== ABOUT ===== */
#about {
    background:
        radial-gradient(circle at 14% 20%, rgba(212, 32, 32, 0.14) 0%, transparent 26%),
        linear-gradient(180deg, rgba(19, 16, 24, 0.98) 0%, rgba(13, 12, 19, 1) 100%);
}
.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: start;
}
.about-image-wrapper {
    position: relative;
    height: 520px;   /* fixed height — photo never taller than this */
}
.about-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-location {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--text-muted); font-size: 0.85rem;
    margin-top: 1.2rem;
}
.about-location svg { color: var(--accent-light); }
.about-frame {
    position: absolute; top: -15px; left: -15px;
    width: 60%; height: 60%;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    opacity: 0.4; z-index: -1;
}
.about-dots {
    position: absolute; bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.2;
}
.experience-badge {
    position: absolute; bottom: -25px; right: 30px;
    background: var(--gradient);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius);
    display: flex; align-items: center; gap: 0.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.exp-number {
    font-family: var(--font-numeric);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    font-variant-numeric: lining-nums tabular-nums;
}
.exp-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.85); line-height: 1.4; }

#about .section-title { font-size: 2.4rem; line-height: 1.2; }
.about-description {
    color: var(--text-light); line-height: 1.9;
    margin-bottom: 1rem; font-size: 0.9rem;
}
.about-stats {
    display: flex; gap: 2.5rem; margin-top: 2rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}
.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    min-width: 150px;
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 34px rgba(0,0,0,0.18);
    transition:
        opacity 0.7s var(--ease),
        transform 0.7s var(--ease-bounce),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    transition-delay: var(--stat-delay, 0s);
}
.stat.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.stat-number {
    font-family: var(--font-numeric);
    font-size: 2.8rem; font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
    font-variant-numeric: lining-nums tabular-nums;
    filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0));
    transition: filter 0.35s ease, transform 0.35s ease;
}
.stat-plus {
    font-family: var(--font-numeric);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: lining-nums tabular-nums;
    display: inline-block;
    transition: transform 0.35s ease, color 0.35s ease;
}
.stat-label { display: block; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }
.stat.is-counting .stat-number {
    filter: drop-shadow(0 0 18px rgba(255, 97, 67, 0.24));
}
.stat.is-complete .stat-number {
    transform: scale(1.04);
    filter: drop-shadow(0 0 26px rgba(255, 97, 67, 0.35));
}
.stat.is-complete .stat-plus {
    transform: translateY(-2px) scale(1.08);
    color: var(--accent-bright);
}
.stat.is-complete {
    border-color: rgba(212, 32, 32, 0.18);
    box-shadow: 0 22px 40px rgba(0,0,0,0.22), 0 0 28px rgba(212, 32, 32, 0.08);
}

@keyframes statSettle {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* ===== PORTFOLIO SHOWCASE ===== */
#portfolio {
    background:
        radial-gradient(circle at 82% 18%, rgba(240, 200, 112, 0.12) 0%, transparent 22%),
        linear-gradient(180deg, rgba(10, 10, 14, 0.98) 0%, rgba(12, 10, 16, 1) 100%);
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 14px;
    margin-bottom: 0;
}
.showcase-item {
    position: relative; overflow: hidden;
    border-radius: var(--radius-sm); cursor: pointer;
    border: none;
    background: #0f0d11;
    box-shadow: 0 24px 50px rgba(0,0,0,0.24);
}
.showcase-item::before,
.gallery-item::before,
.lightbox.is-loading::before {
    content: 'Loading image...';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    z-index: 2;
}
.showcase-item::after,
.gallery-item::after,
.lightbox.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    margin: -42px 0 0 -21px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.12);
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
    z-index: 3;
}
.showcase-item.is-ready::before,
.showcase-item.is-ready::after,
.gallery-item.is-ready::before,
.gallery-item.is-ready::after,
.lightbox:not(.is-loading)::before,
.lightbox:not(.is-loading)::after {
    opacity: 0;
    pointer-events: none;
}
.showcase-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.showcase-item:nth-child(6) { grid-column: span 2; }

.showcase-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.8s var(--ease), filter 0.4s;
}
.showcase-item.is-ready img { opacity: 1; }
.showcase-item:hover img { transform: scale(1.04); filter: brightness(0.78); }
.showcase-item .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,11,15,0.9) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.4s;
    display: flex; flex-direction: column; align-items: flex-start;
    justify-content: flex-end; padding: 1.5rem;
}
.showcase-item:hover .overlay { opacity: 1; }
.overlay span {
    font-size: 0.7rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent-light);
}
.overlay .view-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0; transition: all 0.4s var(--ease-bounce);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem;
}
.showcase-item:hover .view-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.portfolio-gallery {
    display: none;
}

/* ===== PARALLAX QUOTE ===== */
#parallax-quote {
    position: relative; padding: 8rem 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.parallax-bg {
    position: absolute; inset: -20px;
    background-size: cover; background-position: center;
    background-attachment: fixed;
    filter: blur(3px);
}
.parallax-overlay {
    position: absolute; inset: 0;
    background: rgba(11, 11, 15, 0.82);
}
.parallax-content {
    position: relative; z-index: 1;
    text-align: center; max-width: 700px; padding: 0 2rem;
}
.quote-icon { color: var(--accent); margin-bottom: 1.5rem; opacity: 0.6; }
.quote-text {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 300;
    font-style: italic; line-height: 1.6;
    margin-bottom: 2rem;
}
.quote-line { width: 40px; height: 2px; background: var(--gradient); margin: 0 auto 1rem; border-radius: 2px; }
.quote-author { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-light); }

/* ===== CATEGORY GALLERY ===== */
#categories {
    background:
        radial-gradient(circle at 18% 10%, rgba(126, 80, 255, 0.12) 0%, transparent 24%),
        linear-gradient(180deg, rgba(18, 16, 23, 0.98) 0%, rgba(14, 12, 19, 1) 100%);
}
.category-filters {
    display: flex; justify-content: center;
    flex-wrap: wrap; gap: 0.6rem; margin-bottom: 3rem;
}
.filter-btn {
    padding: 0.55rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s var(--ease);
    border-radius: 50px;
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--accent);
    color: #fff;
    background: rgba(212, 32, 32, 0.1);
}

.gallery-masonry { columns: 4; column-gap: 10px; }
.gallery-item {
    break-inside: avoid; margin-bottom: 10px;
    position: relative; overflow: hidden;
    border-radius: var(--radius-sm); cursor: pointer;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
    opacity: 0; transform: translateY(20px) scale(0.95);
    animation: galleryIn 0.5s var(--ease) forwards;
}
.gallery-item img {
    width: 100%; display: block;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.6s var(--ease), filter 0.3s;
}
.gallery-item.is-ready img { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.75); }
.gallery-item .img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,11,15,0.85) 0%, transparent 40%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end;
    padding: 1rem;
}
.gallery-item:hover .img-overlay { opacity: 1; }
.img-overlay span {
    font-size: 0.65rem; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--accent-light);
}
@keyframes galleryIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== GALLERY INFINITE SCROLL SENTINEL ===== */
.gallery-sentinel {
    display: flex; justify-content: center; align-items: center;
    height: 60px; margin-top: 2rem;
}
.sentinel-spinner {
    width: 36px; height: 36px;
    border: 2px solid rgba(255,255,255,0.08);
    border-top-color: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}
.sentinel-spinner.active {
    opacity: 1;
    animation: spinLoader 0.7s linear infinite;
}
@keyframes spinLoader {
    to { transform: rotate(360deg); }
}

/* ===== SERVICES ===== */
#services {
    background:
        radial-gradient(circle at 85% 22%, rgba(212, 32, 32, 0.12) 0%, transparent 24%),
        linear-gradient(180deg, rgba(11, 11, 15, 0.98) 0%, rgba(9, 9, 13, 1) 100%);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background:
        linear-gradient(180deg, rgba(24, 22, 30, 0.9) 0%, rgba(17, 17, 22, 0.86) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.service-card:hover {
    transform: translateY(-8px);
    background:
        linear-gradient(180deg, rgba(31, 28, 38, 0.94) 0%, rgba(22, 21, 28, 0.92) 100%);
    border-color: rgba(212,32,32,0.15);
    box-shadow: var(--shadow-glow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-number {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 300;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4; margin-bottom: 1rem;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 500;
    margin-bottom: 0.8rem; color: var(--text-white);
}
.service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.service-line { width: 30px; height: 2px; background: var(--gradient); margin-top: 1.5rem; border-radius: 2px; }

/* ===== INSTAGRAM CTA ===== */
#instagram-cta {
    padding: 4rem 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(212, 32, 32, 0.12) 0%, transparent 24%),
        linear-gradient(180deg, rgba(18, 16, 23, 0.98) 0%, rgba(14, 12, 19, 1) 100%);
}
.insta-banner {
    background:
        linear-gradient(135deg, rgba(24, 21, 30, 0.92) 0%, rgba(17, 16, 23, 0.88) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 3.5rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; overflow: hidden; position: relative;
}
.insta-banner::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,32,32,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.insta-text h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; margin-bottom: 0.5rem; }
.insta-text p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== BLOG ===== */
#blog {
    background:
        radial-gradient(circle at 86% 12%, rgba(240, 200, 112, 0.09) 0%, transparent 20%),
        linear-gradient(180deg, rgba(10, 10, 14, 0.98) 0%, rgba(12, 10, 16, 1) 100%);
}
.blog-grid { display: flex; flex-direction: column; gap: 3rem; }
.blog-card {
    display: grid; grid-template-columns: 380px 1fr;
    background:
        linear-gradient(135deg, rgba(24, 22, 30, 0.92) 0%, rgba(18, 18, 24, 0.88) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.blog-card:hover {
    border-color: rgba(212,32,32,0.15);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.blog-img {
    background-size: cover; background-position: center;
    min-height: 300px;
}
.blog-body { padding: 2.5rem; }
.blog-meta { display: flex; gap: 1rem; margin-bottom: 1rem; }
.blog-date {
    font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-muted);
}
.blog-tag {
    font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--accent-light);
    padding: 0.2rem 0.8rem;
    background: rgba(212,32,32,0.1);
    border-radius: 50px;
}
.blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 500;
    margin-bottom: 1.2rem; line-height: 1.3;
}
.blog-preview {
    max-height: 120px; overflow: hidden;
    transition: max-height 0.6s var(--ease);
    position: relative;
}
.blog-preview::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--bg-card));
    transition: opacity 0.4s;
}
.blog-card.expanded .blog-preview { max-height: 6000px; }
.blog-card.expanded .blog-preview::after { opacity: 0; }
.blog-preview p {
    color: var(--text-light); font-size: 0.88rem;
    line-height: 1.8; margin-bottom: 1rem;
}
.blog-preview p em { color: var(--accent-light); font-style: italic; }
.blog-subheading {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 500;
    color: var(--text-white);
    margin: 1.4rem 0 0.5rem;
    padding-left: 0.8rem;
    border-left: 2px solid var(--accent);
}
.blog-toggle { margin-top: 1.2rem; }
.blog-card.expanded .blog-toggle { margin-top: 1.5rem; }

/* ===== GOOGLE REVIEWS ===== */
#google-reviews {
    background:
        radial-gradient(circle at 85% 18%, rgba(212, 32, 32, 0.12) 0%, transparent 24%),
        radial-gradient(circle at 10% 82%, rgba(255, 255, 255, 0.04) 0%, transparent 26%),
        linear-gradient(180deg, rgba(14, 13, 19, 0.98) 0%, rgba(11, 11, 16, 1) 100%);
}
.reviews-shell {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: calc(var(--radius) + 8px);
    padding: 2rem;
    background:
        linear-gradient(180deg, rgba(24, 22, 30, 0.92) 0%, rgba(17, 17, 22, 0.9) 100%);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}
.reviews-intro {
    display: grid;
    grid-template-columns: 1.05fr 1.45fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}
.reviews-intro h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}
.reviews-intro p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}
.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    margin-bottom: 1rem;
}
.reviews-badge-label {
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.reviews-badge-link {
    color: var(--accent-light);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
/* --- Marquee ticker --- */
.reviews-ticker {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    /* fade edges so it looks infinite */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.reviews-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}
.reviews-track--fwd {
    animation: ticker-fwd 32s linear infinite;
}
.reviews-track--rev {
    animation: ticker-rev 36s linear infinite;
}
@keyframes ticker-fwd {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes ticker-rev {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}
/* Pause on hover for accessibility / readability */
.reviews-ticker:hover .reviews-track {
    animation-play-state: paused;
}
.review-shot {
    flex-shrink: 0;
    display: block;
    overflow: hidden;
    border-radius: calc(var(--radius));
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-shot:hover {
    transform: scale(1.04);
    border-color: rgba(212, 32, 32, 0.5);
    box-shadow: 0 16px 48px rgba(212, 32, 32, 0.18), 0 4px 16px rgba(0,0,0,0.28);
}
.review-shot img {
    display: block;
    height: 220px;
    width: auto;
    object-fit: contain;
    background: rgba(255,255,255,0.01);
}
.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ===== CONTACT ===== */
#contact {
    background:
        radial-gradient(circle at 12% 78%, rgba(212, 32, 32, 0.12) 0%, transparent 22%),
        linear-gradient(180deg, rgba(18, 16, 23, 0.98) 0%, rgba(13, 12, 19, 1) 100%);
}
.contact-centered { text-align: center; max-width: 1180px; margin: 0 auto; }
.contact-intro {
    color: var(--text-light); font-size: 0.95rem;
    line-height: 1.8; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto;
}
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: stretch;
    text-align: left;
}
.contact-story {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-story-panel,
.contact-form {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(31, 26, 36, 0.92) 0%, rgba(18, 16, 24, 0.9) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.contact-story-panel {
    padding: 2rem;
}
.contact-story-panel::before,
.contact-form::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212, 32, 32, 0.22) 0%, transparent 70%);
    pointer-events: none;
}
.contact-kicker,
.contact-form-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: var(--accent-light);
    font-size: 0.72rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.contact-story-panel h3,
.contact-form-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 1rem 0 0.85rem;
}
.contact-story-panel p,
.contact-form-header p,
.contact-highlight span,
.contact-form-note {
    color: var(--text-muted);
    line-height: 1.8;
}
.contact-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
}
.contact-highlight {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.contact-highlight strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-white);
    font-size: 1rem;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.contact-card {
    background:
        linear-gradient(180deg, rgba(24, 22, 30, 0.9) 0%, rgba(18, 18, 24, 0.86) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s var(--ease);
}
.contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}
.contact-card-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1.2rem;
    background: rgba(212,32,32,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-light);
    transition: all 0.3s;
}
.contact-card:hover .contact-card-icon {
    background: var(--gradient); color: #fff;
}
.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 500;
    margin-bottom: 0.4rem;
}
.contact-card span { color: var(--text-muted); font-size: 0.8rem; }
.contact-whatsapp { border-color: rgba(37, 211, 102, 0.2); }
.contact-whatsapp .contact-card-icon { background: rgba(37,211,102,0.1); color: var(--whatsapp); }
.contact-whatsapp:hover { border-color: var(--whatsapp); }
.contact-whatsapp:hover .contact-card-icon { background: var(--whatsapp); color: #fff; }
.contact-form {
    padding: 2rem;
}
.contact-form-header {
    margin-bottom: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1rem;
}
.form-field span {
    color: var(--text-light);
    font-size: 0.86rem;
    letter-spacing: 0.3px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: var(--text-white);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    font: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,0.35);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(212, 32, 32, 0.7);
    box-shadow: 0 0 0 4px rgba(212, 32, 32, 0.12);
    background: rgba(255,255,255,0.06);
}
.form-field textarea {
    resize: vertical;
    min-height: 150px;
}
.form-field-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.contact-form-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}
.contact-submit {
    min-width: 190px;
}
.contact-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}
.contact-form-note {
    font-size: 0.84rem;
    margin: 0;
}
.contact-form-status {
    min-height: 1.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}
.contact-form-status.is-success {
    color: #88e0aa;
}
.contact-form-status.is-error {
    color: #ff9f9f;
}

/* ===== FOOTER ===== */
footer {
    background:
        linear-gradient(180deg, rgba(15, 13, 20, 0.98) 0%, rgba(10, 10, 14, 1) 100%);
    padding: 5rem 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; }
.footer-logo { height: 90px; filter: drop-shadow(0 2px 12px rgba(212, 32, 32, 0.25)); }
.footer-nav h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 500;
    margin-bottom: 1.2rem;
}
.footer-nav a {
    display: block; color: var(--text-muted); font-size: 0.82rem;
    margin-bottom: 0.6rem; transition: all 0.3s;
}
.footer-nav a:hover { color: var(--accent-light); transform: translateX(3px); }
.footer-bottom {
    display: flex; justify-content: space-between;
    padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-dark); letter-spacing: 0.5px; }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(11, 11, 15, 0.97);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    backdrop-filter: blur(20px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox.is-loading img { opacity: 0.25; }
.lightbox img {
    max-width: 88vw; max-height: 85vh;
    object-fit: contain; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white); cursor: pointer;
    transition: all 0.3s; z-index: 1;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-close {
    top: 1.5rem; right: 2rem;
    width: 45px; height: 45px; border-radius: 50%;
    font-size: 1.4rem;
}
.lightbox-prev, .lightbox-next {
    top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; border-radius: 50%;
    font-size: 1.2rem;
}
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--accent); border-color: var(--accent);
}
.lightbox-caption {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted);
}
.lightbox-counter {
    position: absolute; top: 2rem; left: 2rem;
    font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .showcase-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
    .showcase-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .showcase-item:nth-child(6) { grid-column: span 1; }
    .gallery-masonry { columns: 3; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .insta-banner { flex-direction: column; text-align: center; padding: 2.5rem; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .nav-container { padding: 0 1.5rem; }
    .nav-logo img { height: 72px; }
    #navbar.scrolled .nav-logo img { height: 56px; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
        background: rgba(11,11,15,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 2rem; transition: right 0.4s var(--ease);
        z-index: 1000;
    }
    .nav-links.open { right: 0; }
    .hamburger { display: flex; }
    .hero-social { display: none; }

    .hero-title { font-size: 3rem; }
    .hero-tagline { font-size: 1.5rem; }
    .section-title { font-size: 2.4rem; }
    .ambient-grid { background-size: 96px 96px; }
    .ambient-blob { filter: blur(36px); opacity: 0.24; }

    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image-wrapper { height: 420px; }
    .reviews-intro { grid-template-columns: 1fr; }
    .review-shot img { height: 180px; }
    .contact-cards { grid-template-columns: repeat(3, 1fr); }
    .blog-card { grid-template-columns: 1fr; }
    .blog-img { min-height: 220px; }
    .about-image-col { order: -1; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .showcase-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-masonry { columns: 2; }
    .about-stats { gap: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
}

@media (max-width: 480px) {
    .gallery-masonry { columns: 2; }
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-item:nth-child(1) { grid-column: span 1; }
    .hero-title { font-size: 2.5rem; }
    .hero-tagline { font-size: 1.3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .reviews-shell { padding: 1.25rem; }
    .reviews-intro h3 { font-size: 1.65rem; }
    .review-shot img { height: 150px; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-story-panel,
    .contact-form { padding: 1.35rem; }
    .contact-story-panel h3,
    .contact-form-header h3 { font-size: 1.65rem; }
    .contact-form-footer { flex-direction: column; align-items: stretch; }
    .contact-submit { width: 100%; }
    section::before { width: 260px; height: 260px; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem;
    z-index: 999;
    width: 60px; height: 60px;
    background: var(--whatsapp);
    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 var(--ease);
    animation: whatsappPulse 2s ease infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { fill: #fff; width: 30px; height: 30px; }
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed; bottom: 6.5rem; right: 2.1rem;
    z-index: 999;
    width: 44px; height: 44px;
    background: rgba(15, 15, 20, 0.85);
    border: 1px solid rgba(212, 32, 32, 0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 6px 24px rgba(212, 32, 32, 0.45);
    transform: translateY(-3px);
}
.back-to-top svg { width: 18px; height: 18px; }

/* WhatsApp contact item highlight */
.contact-whatsapp { border-color: rgba(37, 211, 102, 0.25) !important; }
.contact-whatsapp .contact-icon { color: var(--whatsapp) !important; }
.contact-whatsapp:hover { border-color: var(--whatsapp) !important; background: rgba(37, 211, 102, 0.06); }

/* ===== FAQ SECTION ===== */
#faq {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}
#faq::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(212, 32, 32, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-grid { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s var(--ease);
}
.faq-item:hover { border-color: rgba(212,32,32,0.25); }
.faq-item.open { border-color: rgba(212,32,32,0.35); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white);
    text-align: left;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--accent-light); }
.faq-item.open .faq-question { color: var(--accent-light); }
.faq-icon {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.3s var(--ease);
    display: flex;
    align-items: center;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}
@media (max-width: 768px) {
    #faq { padding: 70px 0; }
    .faq-question { padding: 18px 18px; font-size: 0.9rem; }
    .faq-answer p { padding: 0 18px 18px; }
}

/* ===== HERO LOCATION TAG ===== */
.hero-location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-gold);
    opacity: 0.85;
    margin-top: 0.6rem;
    margin-bottom: 0;
}
.hero-location-tag svg { flex-shrink: 0; color: var(--accent-gold); }

/* ===== LOCAL SEO SECTION – ELECTRONIC CITY ===== */
#local {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 50%, var(--bg-primary) 100%);
    position: relative;
}
#local::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212, 32, 32, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.local-seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.local-seo-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.local-seo-card:hover {
    border-color: rgba(212, 32, 32, 0.3);
    transform: translateY(-4px);
}
.local-seo-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 32, 32, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    flex-shrink: 0;
}
.local-seo-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.4;
}
.local-seo-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-light);
    flex: 1;
}
.local-seo-link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-light);
    text-decoration: none;
    margin-top: 4px;
    transition: color 0.2s, letter-spacing 0.2s;
}
.local-seo-link:hover { color: var(--accent-gold); letter-spacing: 0.1em; }

.local-seo-nap {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
}
.local-nap-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-light);
}
.local-nap-item svg { color: var(--accent); flex-shrink: 0; }
.local-nap-item a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.local-nap-item a:hover { color: var(--accent-light); }
.local-map-btn { font-size: 0.82rem; padding: 10px 18px; }

.footer-phone { margin-top: 6px; }
.footer-phone a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-phone a:hover { color: var(--accent-light); }

@media (max-width: 1024px) {
    .local-seo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    #local { padding: 70px 0; }
    .local-seo-grid { grid-template-columns: 1fr; gap: 16px; }
    .local-seo-nap { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
    .local-map-btn, .local-seo-nap .btn { width: 100%; text-align: center; justify-content: center; }
}
