/* ================================================
   Tıkanık Gider — Premium Design System v3
   Ultra-modern, glassmorphic, conversion-focused
   "3 saniyede WhatsApp'a tıklat" UX felsefesi
   ================================================ */

/* ---- Root Design Tokens ---- */
:root {
    /* Primary — Deep navy (Güven & Hijyen) */
    --navy-950: #050a18;
    --navy-900: #0a1128;
    --navy-800: #0f1a3e;
    --navy-700: #162456;
    --navy-600: #1e3478;
    --navy-500: #2a4a9a;

    /* Accent — Vibrant emerald (WhatsApp CTA) */
    --emerald-50:  #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;

    /* Warm accent — Urgency CTAs */
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --red-500: #ef4444;

    /* Neutrals */
    --gray-50:  #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Glassmorphism */
    --glass-bg: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.1);
    --glass-blur: 20px;

    /* Shadows */
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-medium: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-heavy: 0 16px 48px rgba(0,0,0,0.15);
    --shadow-glow-green: 0 0 40px rgba(16,185,129,0.25);
    --shadow-glow-blue: 0 0 60px rgba(42,74,154,0.15);
    --shadow-glow-orange: 0 0 40px rgba(249,115,22,0.2);

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transition */
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Base Reset & Smoothness ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--emerald-400);
    color: white;
}

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

a { text-decoration: none; }

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--emerald-500), var(--emerald-700));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--emerald-400); }

/* ================================================
   NAVBAR
   ================================================ */
.navbar-scrolled .navbar-inner {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom-color: rgba(255,255,255,0.08) !important;
}

/* ---- Lucide SVG Icon Alignment ---- */
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    flex-shrink: 0;
}

/* ---- Navbar Dropdown Menu ---- */
.nav-dropdown-wrap {
    position: relative;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-trigger:hover {
    color: rgba(255,255,255,0.9) !important;
    background: rgba(255,255,255,0.06) !important;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    padding-top: 0.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 300px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s var(--transition-smooth);
    z-index: 100;
}

.nav-dropdown-wrap:hover .nav-dropdown-menu,
.nav-dropdown-wrap:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-wrap:hover .nav-dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-inner {
    background: rgba(10,17,40,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

/* Dropdown arrow */
.nav-dropdown-inner::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(10,17,40,0.97);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 1;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.875rem;
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.6);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-dropdown-item:hover {
    background: rgba(255,255,255,0.06);
    color: white;
    transform: translateX(4px);
}

.nav-dropdown-icon {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
    transform: scale(1.1);
}

.nav-dropdown-footer {
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.nav-dropdown-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--emerald-400);
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-dropdown-all:hover {
    background: rgba(16,185,129,0.1);
    color: var(--emerald-300);
}

/* ---- Bölgeler Dropdown Grid ---- */
.nav-dropdown-bolge-menu {
    min-width: 320px;
}

.nav-dropdown-bolge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.nav-dropdown-bolge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown-bolge-item:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.95);
}

.nav-dropdown-bolge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nav-dropdown-bolge-item:hover .nav-dropdown-bolge-dot {
    transform: scale(1.3);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(5,10,24,0.93) 0%,
        rgba(10,17,40,0.87) 30%,
        rgba(15,26,62,0.82) 60%,
        rgba(5,10,24,0.90) 100%
    );
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.55) saturate(1.3);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

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

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
    0%   { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero-glow {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    border-radius: 50%;
}
.hero-glow-1 {
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.14) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}
.hero-glow-2 {
    bottom: 0;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42,74,154,0.18) 0%, transparent 70%);
    animation: glowPulse 5s ease-in-out 1s infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.08); }
}

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

/* ================================================
   GRADIENT TEXT
   ================================================ */
.text-gradient-emerald {
    background: linear-gradient(135deg, #6ee7b7, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fde68a, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-sky {
    background: linear-gradient(135deg, #93c5fd, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================
   GLASS CARDS
   ================================================ */
.glass-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 8px 40px rgba(16,185,129,0.08);
}

.glass-card-light {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

/* ================================================
   PREMIUM SERVICE CARDS
   ================================================ */
.service-card-v2 {
    position: relative;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald-400), var(--emerald-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(16,185,129,0.14), 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--emerald-300);
}

.service-card-v2:hover::before {
    transform: scaleX(1);
}

.service-card-v2 .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card-v2:hover .card-image {
    transform: scale(1.08);
}

.service-card-v2 .card-image-wrap {
    overflow: hidden;
    position: relative;
}

.service-card-v2 .card-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
}

/* ================================================
   STAT COUNTERS
   ================================================ */
.stat-counter {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-xl);
    transition: all 0.3s var(--transition-smooth);
}

.stat-counter:hover {
    transform: translateY(-4px) scale(1.02);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

/* ================================================
   TRUST BADGES (Hero)
   ================================================ */
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

.trust-pill:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(16,185,129,0.45);
    color: white;
    transform: translateY(-2px);
}

.trust-pill .pill-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* ================================================
   WHATSAPP CTA BUTTONS
   ================================================ */
.btn-wa-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 8px 28px rgba(16,185,129,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-wa-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-wa-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(16,185,129,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-wa-primary:hover::before {
    left: 100%;
}

.btn-wa-primary:active {
    transform: scale(0.97);
}

/* Outline Light Button */
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1.5px solid var(--gray-200);
    color: var(--navy-800);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    border-color: var(--emerald-400);
    color: var(--emerald-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ================================================
   CTA PULSE ANIMATIONS
   ================================================ */
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(16,185,129,0.4), 0 0 0 0 rgba(16,185,129,0.5); }
    50%      { box-shadow: 0 8px 28px rgba(16,185,129,0.4), 0 0 0 14px rgba(16,185,129,0); }
}

.btn-wa-pulse {
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.04); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.04); }
}

.btn-heartbeat {
    animation: heartbeat 1.8s ease-in-out infinite;
}

/* Slow pulse animation for badges */
@keyframes pulseSlow {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

.animate-pulse-slow {
    animation: pulseSlow 2s ease-in-out infinite;
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ================================================
   REVIEW CARDS
   ================================================ */
.review-card-v2 {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: all 0.35s ease;
    position: relative;
}

.review-card-v2::before {
    content: '"';
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--emerald-100);
    line-height: 1;
    pointer-events: none;
}

.review-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: var(--emerald-200);
}

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-item-v2 {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-v2:hover {
    border-color: var(--emerald-300);
}

.faq-item-v2 .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth), padding 0.3s ease;
}

.faq-item-v2.is-open .faq-answer {
    max-height: 500px;
}

.faq-item-v2 .faq-chevron {
    transition: transform 0.3s ease;
    color: var(--gray-400);
}

.faq-item-v2.is-open .faq-chevron {
    transform: rotate(180deg);
    color: var(--emerald-500);
}

.faq-item-v2.is-open {
    border-color: var(--emerald-400);
    box-shadow: 0 4px 24px rgba(16,185,129,0.12);
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Fade in from left */
.animate-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.animate-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up */
.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s var(--transition-bounce);
}
.animate-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* ================================================
   STICKY WHATSAPP BUTTON
   ================================================ */
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@keyframes waPing {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

.wa-sticky {
    position: fixed;
    bottom: 1.5rem;
    right: 1.25rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 700;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 8px 36px rgba(16,185,129,0.45);
    transition: all 0.3s ease;
    animation: waFloat 3s ease-in-out infinite;
}

.wa-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 48px rgba(16,185,129,0.55);
    animation: none;
}

.wa-sticky .wa-ping {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: rgba(16,185,129,0.4);
    animation: waPing 2s ease-out infinite;
    pointer-events: none;
}

/* ================================================
   FORM INPUTS (FIX: form-input + form-field both)
   ================================================ */
.form-field,
.form-input {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--gray-900);
    background: white;
    transition: all 0.25s ease;
    outline: none;
    font-family: inherit;
    line-height: 1.5;
}

.form-field:focus,
.form-input:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(16,185,129,0.12);
}

.form-field::placeholder,
.form-input::placeholder {
    color: var(--gray-400);
}

.form-field.border-red-400,
.form-input.border-red-400 {
    border-color: var(--red-500) !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

textarea.form-field,
textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

/* ================================================
   QUICK TAG BUTTONS
   ================================================ */
.quick-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-tag:hover, .quick-tag.active {
    border-color: var(--emerald-500);
    color: var(--emerald-600);
    background: rgba(16,185,129,0.08);
}

/* ================================================
   MAP WRAPPER (FIX: both map-wrap + map-wrapper)
   ================================================ */
.map-wrap,
.map-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--gray-200);
}

.map-wrap iframe,
.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================================================
   BREADCRUMB
   ================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: rgba(255,255,255,0.9);
}

.breadcrumb .sep {
    color: rgba(255,255,255,0.3);
}

.breadcrumb [aria-current] {
    color: rgba(255,255,255,0.8);
}

/* ================================================
   SUBPAGE HERO (Inner pages)
   ================================================ */
.subpage-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #050a18 0%, #0f1a3e 50%, #050a18 100%);
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.subpage-hero .hero-glow-sub-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
}

.subpage-hero .hero-glow-sub-2 {
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42,74,154,0.14) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
}

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

/* Inner Hero (alternate name) */
.inner-hero {
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.inner-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--gray-50));
    pointer-events: none;
}

/* ================================================
   URGENCY BANNER
   ================================================ */
.urgency-bar {
    background: linear-gradient(90deg, #f97316, #ea580c, #f97316);
    background-size: 200% 100%;
    animation: urgencyShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.urgency-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: urgencyShine 3s ease-in-out infinite;
}

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

@keyframes urgencyShine {
    0%   { left: -100%; }
    100% { left: 200%; }
}

/* ================================================
   FEATURE ICON BOX
   ================================================ */
.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.12) rotate(5deg);
}

/* ================================================
   IMAGE ASPECTS & UTILITIES
   ================================================ */
.aspect-video  { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-4-3    { aspect-ratio: 4 / 3; }
.obj-cover     { object-fit: cover; width: 100%; height: 100%; }

/* Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* SVG Icon Sizes */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Shadow Utility */
.shadow-soft { box-shadow: var(--shadow-soft); }

/* ================================================
   PAIN POINT CARDS (Sub-service pages)
   ================================================ */
.pain-card {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

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

/* ================================================
   PROCESS STEP CARDS
   ================================================ */
.step-card {
    position: relative;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--emerald-200);
}

.step-number {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    box-shadow: var(--shadow-medium);
}

/* ================================================
   MOBILE STICKY BOTTOM CTA (Thumb Zone)
   ================================================ */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 49;
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(5,10,24,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(16,185,129,0.25);
    display: none;
    gap: 0.5rem;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}

.mobile-sticky-cta .cta-btn-wa {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.875rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    animation: ctaPulse 2s ease-in-out infinite;
    transition: all 0.2s ease;
}

.mobile-sticky-cta .cta-btn-wa:active {
    transform: scale(0.96);
}

.mobile-sticky-cta .cta-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    border-radius: var(--radius-lg);
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mobile-sticky-cta .cta-btn-call:active {
    background: rgba(255,255,255,0.2);
}

/* ================================================
   COUNTER ANIMATION
   ================================================ */
@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

.counter-animate {
    animation: countUp 0.6s var(--transition-bounce) forwards;
}

/* ================================================
   FLOATING PARTICLES (subtle bg effect)
   ================================================ */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25%      { transform: translate(10px, -10px) rotate(5deg); }
    50%      { transform: translate(-5px, -20px) rotate(-5deg); }
    75%      { transform: translate(-10px, -5px) rotate(3deg); }
}

.float-animate {
    animation: float 6s ease-in-out infinite;
}

/* ================================================
   RESPONSIVE — MOBILE
   ================================================ */
@media (max-width: 639px) {
    /* Show mobile sticky CTA */
    .mobile-sticky-cta {
        display: flex;
    }

    /* Extra breathing room at bottom for sticky bar */
    body {
        padding-bottom: 5rem;
    }

    /* Hide floating WA on mobile (replaced by bottom bar) */
    .wa-sticky {
        display: none !important;
    }

    /* Hero section mobile spacing */
    .hero-section {
        min-height: 92vh;
    }

    /* Subpage hero mobile */
    .subpage-hero {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }

    /* Stat number mobile */
    .stat-number {
        font-size: 1.75rem;
    }

    /* Trust pill wrap on mobile */
    .trust-pill {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    /* Prevent h1 overflow */
    h1 {
        word-break: break-word;
        hyphens: auto;
    }

    /* Pain point cards mobile padding */
    .pain-card {
        padding: 1.25rem;
    }

    /* Service cards on mobile */
    .service-card-v2:hover {
        transform: translateY(-4px);
    }

    /* Review cards mobile */
    .review-card-v2:hover {
        transform: translateY(-3px);
    }

    /* Reduce form padding on mobile */
    .form-field,
    .form-input {
        padding: 0.75rem 1rem;
        font-size: 1rem; /* prevent iOS zoom */
    }
}

/* ================================================
   RESPONSIVE — TABLET
   ================================================ */
@media (min-width: 640px) and (max-width: 1023px) {
    .subpage-hero {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }
}

/* ================================================
   REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-bg-img { animation: none; }
    .hero-grid-pattern { animation: none; }
    .wa-sticky { animation: none; }
    .btn-wa-pulse { animation: none; }
}

/* ================================================
   PRINT
   ================================================ */
@media print {
    .wa-sticky, #navbar, .urgency-bar, .mobile-sticky-cta { display: none !important; }
    body { padding-bottom: 0; }
}
