/* ============================================
   PREMIUM HALI YIKAMA — COMPLETE CSS
   Design System: Apple-Inspired Minimal
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --navy: #0A1628;
    --gold: #c9a96e;
    --gold-dark: #B8943F;
    --gold-light: #E2C992;
    --white: #FAFAFA;

    /* Secondary Colors */
    --charcoal: #1E1E1E;
    --slate: #6B7280;
    --mist: #F3F4F6;
    --silver: #E5E7EB;

    /* Functional Colors */
    --success: #16A34A;
    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE5A;
    --warning: #F59E0B;
    --error: #DC2626;

    /* Deep Navy (Footer) */
    --deep-navy: #070E1A;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --container-padding: 24px;
    --section-padding: 96px;
    --section-padding-mobile: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.08);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 12px rgba(201,169,110,0.3);
    --shadow-whatsapp: 0 4px 16px rgba(37,211,102,0.3);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);

    /* Navbar */
    --navbar-height: 72px;
    --navbar-height-mobile: 64px;
}

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

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 1.75rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
h4 { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.005em; line-height: 1.3; }

.text-gold { color: var(--gold); }
.text-accent { color: var(--gold); font-weight: 500; }

/* ===== SECTION COMMONS ===== */
.section {
    padding: var(--section-padding) 0;
}

.section-white { background-color: var(--white); }
.section-gray { background-color: var(--mist); }
.section-dark { background: linear-gradient(135deg, var(--navy) 0%, #162A4A 100%); }

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 8px;
}

.section-subtitle-light {
    color: var(--silver);
}

.section-divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 16px auto 48px;
}

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

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    line-height: 1;
    white-space: nowrap;
}

.btn svg, .btn i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
    background: var(--gold-dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.btn-gold:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    box-shadow: var(--shadow-whatsapp);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.ghost-link {
    color: var(--gold);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 2px;
    transition: var(--transition-fast);
}

.ghost-link:hover {
    border-bottom-color: var(--gold);
}

/* ===== PRE-HEADER ===== */
.pre-header {
    background: var(--navy);
    padding: 8px 0;
    font-size: 0.8125rem;
    color: var(--silver);
}

.pre-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pre-header-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pre-header-icon {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.pre-header-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    height: var(--navbar-height);
    transition: var(--transition);
}

.navbar-scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
}

.navbar-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-text { color: var(--navy); }
.logo-dot { color: var(--gold); font-size: 2rem; }

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 4px 0;
    position: relative;
}

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

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

.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 600; }

.navbar-cta {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Navbar Toggle (Mobile) */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-list {
    margin-bottom: 40px;
}

.mobile-menu-list li {
    margin-bottom: 24px;
}

.mobile-menu-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--gold);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #162A4A 100%);
    overflow: hidden;
    padding-bottom: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(201,169,110,0.08) 0%, transparent 60%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0 96px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold);
}

.hero-badge-icon {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

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

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

/* Trust Bar */
.trust-bar {
    background: var(--mist);
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.trust-icon-wrap i {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.trust-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.trust-text span {
    font-size: 0.8125rem;
    color: var(--slate);
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 64px;
    align-items: start;
}

.problem-text p {
    margin-bottom: 16px;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--slate);
    margin-top: 4px;
    line-height: 1.5;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.02em;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.08);
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
}

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--navy);
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gold);
}

.service-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Premium Banner */
.premium-banner {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 8px;
}

.premium-banner-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.premium-banner-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.15);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.premium-banner-icon i {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.premium-banner-text {
    flex: 1;
}

.premium-banner-text h3 {
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 8px;
}

.premium-banner-text p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 24px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 2px;
    background: var(--silver);
    z-index: 1;
}

.step-card:last-child .step-connector {
    display: none;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.08);
    border-radius: var(--radius-lg);
    margin: 0 auto 16px;
}

.step-icon-wrap i {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
}

/* ===== BEFORE/AFTER ===== */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ba-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--silver);
    transition: var(--transition-smooth);
}

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

.ba-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.ba-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
}

.ba-after {
    position: relative;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.ba-handle-line {
    width: 2px;
    flex: 1;
    background: var(--white);
}

.ba-handle-circle {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.ba-handle-circle i {
    width: 20px;
    height: 20px;
    color: var(--navy);
}

.ba-info {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ba-location {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
}

.ba-result {
    font-size: 0.8125rem;
    color: var(--success);
    font-weight: 500;
}

/* Metrics Band */
.metrics-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.metric-item {
    text-align: center;
}

.metric-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    margin: 0 auto 8px;
}

.metric-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--slate);
    margin-top: 4px;
}

/* ===== FEATURES (NEDEN BİZ) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.feature-card-large {
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card-large:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.08);
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
}

.feature-icon-wrap i {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
}

.features-small-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-small {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--mist);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition-smooth);
}

.feature-small:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-small-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-small strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.feature-small span {
    font-size: 0.8125rem;
    color: var(--slate);
}

/* ===== PRICE CTA BAND ===== */
.price-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.price-cta-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    margin-top: 16px;
}

.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.social-proof-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.price-calculator {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calculator-result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.result-price {
    margin-bottom: 12px;
}

.result-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.result-note {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    line-height: 1.5;
}

.calculator-whatsapp-alt {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.calculator-whatsapp-alt .ghost-link {
    display: block;
    margin-top: 8px;
}

/* ===== FORMS ===== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate);
}

.form-input {
    background: var(--mist);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--charcoal);
    transition: var(--transition-fast);
    width: 100%;
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.form-input-dark {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-color: rgba(255,255,255,0.1);
}

.form-input-dark::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-input-dark:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.section-dark .form-group label {
    color: rgba(255,255,255,0.6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-privacy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin-top: 12px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 0.875rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--navy);
}

.testimonial-info span {
    display: block;
    font-size: 0.8125rem;
    color: var(--slate);
}

.verified {
    color: var(--success) !important;
    font-size: 0.75rem !important;
}

/* Video Testimonial */
.testimonial-video {
    display: flex;
    align-items: stretch;
}

.video-placeholder {
    width: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, #1A2D4A 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #0d1c33 0%, #1f3555 100%);
}

.video-play-btn {
    width: 56px;
    height: 56px;
    background: rgba(201,169,110,0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.video-placeholder:hover .video-play-btn {
    background: rgba(201,169,110,0.3);
    transform: scale(1.08);
}

.video-play-btn i {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.video-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 8px;
}

.video-author {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

/* Review Sources */
.review-sources {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: var(--mist);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.review-source {
    text-align: center;
}

.review-source strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.review-source span {
    font-size: 0.8125rem;
    color: var(--slate);
}

/* ===== SERVICE AREAS ===== */
.areas-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--slate);
}

.map-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 12px;
}

.map-placeholder p {
    font-size: 0.9375rem;
    font-weight: 500;
}

.area-group {
    margin-bottom: 32px;
}

.area-group:last-child {
    margin-bottom: 0;
}

.area-group-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.area-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}

.area-badge-green {
    background: rgba(22,163,74,0.1);
    color: var(--success);
}

.area-badge-blue {
    background: rgba(59,130,246,0.1);
    color: #3B82F6;
}

.area-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.area-items li {
    font-size: 0.9375rem;
    color: var(--charcoal);
    padding: 6px 0;
}

.areas-cta {
    text-align: center;
}

.areas-cta p {
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 16px;
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.04em;
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
}

.blog-meta span {
    color: var(--slate);
}

.blog-link {
    color: var(--gold);
    font-weight: 500;
}

.blog-link:hover {
    color: var(--gold-dark);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon-wrap i {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.contact-item strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--deep-navy);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.footer-logo .logo-text { color: var(--white); }

.footer-brand-desc {
    font-size: 0.9375rem;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.social-link i {
    width: 18px;
    height: 18px;
    color: #9CA3AF;
}

.social-link:hover {
    background: rgba(201,169,110,0.15);
}

.social-link:hover i {
    color: var(--gold);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.9375rem;
    color: #9CA3AF;
    transition: var(--transition-fast);
}

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

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
    color: #9CA3AF;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: #9CA3AF;
}

.footer-contact ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8125rem;
    color: #6B7280;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #6B7280;
}

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

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-whatsapp);
    z-index: 998;
    transition: var(--transition);
    animation: wa-pulse 2s infinite;
}

.floating-whatsapp svg {
    color: #fff;
}

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

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--white);
    border-top: 1px solid var(--silver);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
    z-index: 999;
    padding: 8px 16px;
    gap: 12px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.mobile-cta-btn i, .mobile-cta-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-cta-phone {
    background: var(--navy);
}

.mobile-cta-whatsapp {
    background: var(--whatsapp);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-target {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-target {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   RESPONSIVE — TABLET (max 1023px)
   ============================================ */
@media (max-width: 1023px) {
    :root {
        --section-padding: 72px;
    }

    h1 { font-size: 2.75rem; }
    h2, .section-title { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .navbar-menu { display: none; }
    .navbar-cta { display: none; }
    .navbar-toggle { display: flex; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 0 64px;
    }

    .hero-title { font-size: 2.75rem; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-cta-group { justify-content: center; }

    .hero-visual {
        justify-content: center;
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    .hero-badge {
        margin: 0 auto 24px;
    }

    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .step-connector { display: none; }

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

    .ba-grid .ba-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

    .features-small-grid {
        grid-template-columns: 1fr;
    }

    .price-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .price-cta-text {
        text-align: center;
    }

    .social-proof {
        margin: 0 auto;
    }

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

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .blog-grid .blog-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .floating-whatsapp { display: none; }
    .mobile-cta-bar { display: flex; }

    body {
        padding-bottom: 64px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (max 639px)
   ============================================ */
@media (max-width: 639px) {
    :root {
        --section-padding: 56px;
        --container-padding: 20px;
    }

    h1 { font-size: 2.25rem; }
    h2, .section-title { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .pre-header-content {
        flex-direction: column;
        gap: 4px;
    }

    .pre-header-divider { display: none; }

    .pre-header-item:not(:first-child) {
        display: none;
    }

    .navbar {
        height: var(--navbar-height-mobile);
    }

    .navbar-content {
        height: var(--navbar-height-mobile);
    }

    .hero-content {
        padding: 32px 0 48px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

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

    .premium-banner-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .ba-grid .ba-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .metrics-band {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .review-sources {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .area-items {
        grid-template-columns: 1fr;
    }

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

    .blog-grid .blog-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .section-divider {
        margin: 16px auto 32px;
    }

    .mobile-menu-link {
        font-size: 1.25rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .pre-header,
    .navbar,
    .floating-whatsapp,
    .mobile-cta-bar,
    .mobile-menu-overlay,
    .hero-cta-group,
    .section-dark,
    .footer {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section {
        padding: 24px 0;
    }
}
/* ===== UPDATED SERVICE CARDS WITH IMAGES ===== */
.service-card {
    padding: 0;
    overflow: hidden;
}

.service-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5/3;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.service-badge {
    top: 12px;
    right: 12px;
    z-index: 2;
}

/* ===== HERO DECORATORS ===== */
.hero-image-decorator {
    position: absolute;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero-decorator-1 {
    width: 100%;
    height: 100%;
    top: 12px;
    right: -12px;
    border: 2px solid rgba(201, 169, 110, 0.3);
}

.hero-decorator-2 {
    width: 80px;
    height: 80px;
    bottom: -16px;
    left: -16px;
    background: rgba(201, 169, 110, 0.15);
}

.hero-image-wrapper {
    position: relative;
}

.hero-float-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-lg);
}

.hero-float-badge svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ===== HERO PATTERN ===== */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: none;
}

/* ===== PROBLEM SECTION VISUAL ===== */
.problem-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-illustration {
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius-lg);
    padding: 24px;
    overflow: hidden;
}

.problem-svg {
    width: 100%;
    height: auto;
}

.stat-icon-svg {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

/* ===== FEATURE CARDS WITH IMAGES ===== */
.feature-card-large {
    padding: 0;
    overflow: hidden;
}

.feature-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card-large:hover .feature-image {
    transform: scale(1.05);
}

.feature-card-large .feature-icon-wrap {
    margin-top: -32px;
    position: relative;
    z-index: 2;
    background: var(--white);
    border: 2px solid var(--mist);
}

.feature-card-large .feature-title,
.feature-card-large .feature-desc {
    padding: 0 28px;
}

.feature-card-large .feature-title {
    margin-top: 12px;
}

.feature-card-large .feature-desc {
    padding-bottom: 28px;
}

/* ===== PREMIUM BANNER WITH IMAGE ===== */
.premium-banner-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}

.premium-banner-image {
    width: 180px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.premium-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.premium-banner-text .premium-banner-icon {
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 4px;
}

.premium-banner-text .premium-banner-icon svg {
    color: var(--gold);
}

/* ===== BEFORE/AFTER SLIDER ENHANCED ===== */
.ba-slider-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.ba-image-container {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.ba-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-before-clip {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.ba-before-clip img {
    width: auto;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
    touch-action: none;
}

.ba-handle-line {
    width: 2px;
    flex: 1;
    background: var(--white);
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.ba-handle-circle svg {
    color: var(--navy);
}

.ba-label {
    position: absolute;
    top: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 4;
    pointer-events: none;
}

.ba-label-before {
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
}

.ba-label-after {
    right: 12px;
    background: rgba(201,169,110,0.9);
    color: var(--navy);
}

/* ===== ANKARA MAP ===== */
.ankara-map {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--silver);
    background: var(--white);
}

.map-district {
    transition: var(--transition-fast);
    cursor: pointer;
}

.map-district.map-active:hover {
    fill: rgba(201,169,110,0.3) !important;
    stroke-width: 2.5px;
}

.map-district.map-outer {
    cursor: default;
}

/* ===== LOGO ICON ===== */
.logo-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1023px) {
    .premium-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .premium-banner-image {
        width: 100%;
        height: 180px;
        margin: 0 auto;
    }

    .hero-decorator-1,
    .hero-decorator-2 {
        display: none;
    }

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

    .problem-illustration {
        order: -1;
    }
}

@media (max-width: 639px) {
    .hero-float-badge {
        font-size: 0.75rem;
        padding: 8px 12px;
        bottom: 12px;
        left: 12px;
    }

    .premium-banner-image {
        height: 150px;
    }

    .ba-handle-circle {
        width: 36px;
        height: 36px;
    }

    .ba-handle-circle svg {
        width: 16px;
        height: 16px;
    }
}
/* ===== UPDATED LOGO ===== */
.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--navy);
}

.logo-subtext {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-emoji {
    font-size: 2rem;
    line-height: 1;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

.footer-logo .logo-subtext {
    font-size: 0.6rem;
}

/* Mobile Menu Logo */
.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 40px;
}

.mobile-menu-logo span:first-child {
    font-size: 2rem;
}

/* ===== PRICING TABLE ===== */
.pricing-table-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.pricing-table thead {
    background: rgba(255, 255, 255, 0.06);
}

.pricing-table th {
    padding: 16px 24px;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table th:last-child {
    text-align: right;
}

.pricing-table td {
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.pricing-table td:last-child {
    text-align: right;
}

.pricing-table tbody tr {
    transition: var(--transition-fast);
}

.pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-popular {
    background: rgba(201, 169, 110, 0.06) !important;
}

.pricing-popular td {
    border-bottom-color: rgba(201, 169, 110, 0.15) !important;
}

.pricing-service {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-service svg {
    flex-shrink: 0;
}

.pricing-service span {
    color: var(--white);
    font-weight: 500;
}

.pricing-badge {
    font-size: 0.625rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--navy);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold);
}

/* Pricing Notice */
.pricing-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    margin-bottom: 48px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-notice svg {
    flex-shrink: 0;
}

.pricing-notice strong {
    color: var(--gold);
}

/* Pricing Packages */
.pricing-packages {
    margin-bottom: 56px;
}

.pricing-packages-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 24px;
}

.pricing-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.package-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.package-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.package-featured {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.06);
}

.package-featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.package-discount {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.package-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.package-content {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

/* Pricing Calculator Section */
.pricing-calculator-section {
    margin-bottom: 40px;
}

.price-cta-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

/* Pricing Trust */
.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-trust-item svg {
    flex-shrink: 0;
}

/* ===== RESPONSIVE — PRICING ===== */
@media (max-width: 1023px) {
    .pricing-packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 639px) {
    .pricing-table th,
    .pricing-table td {
        padding: 12px 16px;
        font-size: 0.8125rem;
    }

    .pricing-service {
        gap: 8px;
    }

    .pricing-service svg {
        display: none;
    }

    .pricing-price {
        font-size: 1rem;
    }

    .pricing-notice {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px;
    }

    .price-cta-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== DYNAMIC LOGO ===== */
.logo-emoji-icon {
    font-size: 1.75rem;
    line-height: 1;
    margin-right: 4px;
}

.logo-custom-img {
    height: 36px;
    width: auto;
    margin-right: 8px;
    border-radius: 8px;
    object-fit: contain;
}

@media (max-width: 639px) {
    .logo-custom-img {
        height: 28px;
    }
    .logo-emoji-icon {
        font-size: 1.5rem;
    }
}

/* ===== HESAPLAMA MODÜLÜ VE KARANLIK FORM DÜZELTMESİ ===== */
.calculator-form select,
.calculator-form input {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.calculator-form select option {
    background: var(--navy);
    color: var(--white);
}

.calculator-form select:focus,
.calculator-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.calculator-form select::placeholder,
.calculator-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

/* ===== ÜCRETSİZ TEKLİF ALIN FORMU AÇILIR MENÜ DÜZELTMESİ ===== */
.contact-form select option,
.form-input-dark option {
    background: var(--navy);
    color: var(--white);
}