/* ==========================================================================
   DANIŞMAN - BOLD & MODERN DESIGN 2025
   Konsept: Dark Luxury + Neubrutalism Hybrid
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES - ANIMATED GRADIENTS
   -------------------------------------------------------------------------- */
@property --gradient-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@property --glow-opacity {
    syntax: '<number>';
    initial-value: 0;
    inherits: false;
}

:root {
    /* ===== DARK THEME (Default) ===== */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1a1a1a;
    --border-color: #2a2a2a;
    --text-primary: #fafafa;
    --text-secondary: rgba(250, 250, 250, 0.7);
    --text-muted: #666666;

    /* Legacy support */
    --black: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #1a1a1a;
    --gray-dark: #2a2a2a;
    --gray: #444444;
    --gray-light: #666666;
    --white: #fafafa;
    --white-muted: rgba(250, 250, 250, 0.7);

    /* Accent Colors - Neon Green + Gold */
    --accent: #00ff88;
    --accent-dim: rgba(0, 255, 136, 0.15);
    --accent-glow: rgba(0, 255, 136, 0.4);
    --accent-dark: #00cc6a;
    --gold: #d4a853;
    --gold-dim: rgba(212, 168, 83, 0.2);

    /* Theme transition */
    --theme-transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f0f2f5;
    --bg-card: #ffffff;
    --border-color: #e0e4e8;
    --text-primary: #1a1a2e;
    --text-secondary: rgba(26, 26, 46, 0.7);
    --text-muted: #6c757d;

    /* Override legacy */
    --black: #ffffff;
    --black-light: #f8f9fa;
    --black-lighter: #f0f2f5;
    --gray-dark: #e0e4e8;
    --gray: #adb5bd;
    --gray-light: #6c757d;
    --white: #1a1a2e;
    --white-muted: rgba(26, 26, 46, 0.7);

    /* Accent stays vibrant but slightly adjusted */
    --accent: #00d970;
    --accent-dim: rgba(0, 217, 112, 0.12);
    --accent-glow: rgba(0, 217, 112, 0.3);
    --accent-dark: #00b85c;
}

[data-theme="light"] .mesh-gradient {
    opacity: 0.25;
}

[data-theme="light"] .cursor-glow {
    opacity: 0 !important;
}

:root {
    /* Typography */
    --font-display: 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    --space-4xl: 12rem;

    /* Layout */
    --container: 1400px;
    --header-height: 80px;

    /* Borders - Neubrutalism */
    --border-thick: 3px solid var(--white);
    --border-accent: 3px solid var(--accent);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--black);
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: var(--theme-transition);
}

::selection {
    background: var(--accent);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
}

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

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

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

/* --------------------------------------------------------------------------
   ANIMATED BACKGROUND - MESH GRADIENT
   -------------------------------------------------------------------------- */
.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, var(--accent-dim), transparent),
        radial-gradient(ellipse 60% 40% at 80% 20%, var(--gold-dim), transparent),
        radial-gradient(ellipse 50% 30% at 50% 80%, var(--accent-dim), transparent);
    filter: blur(80px);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(2%, 3%) scale(1.02);
    }

    50% {
        transform: translate(-1%, -2%) scale(0.98);
    }

    75% {
        transform: translate(1%, -1%) scale(1.01);
    }
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY - OVERSIZED & BOLD
   -------------------------------------------------------------------------- */
.text-display {
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.text-headline {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.text-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-body-lg {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
}

.text-body {
    font-size: 1rem;
    line-height: 1.7;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Stroke Text - Outline Only */
.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.text-stroke:hover {
    color: var(--white);
    -webkit-text-stroke: 2px transparent;
}

/* --------------------------------------------------------------------------
   LAYOUT
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    position: relative;
    padding: var(--space-4xl) 0;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   HEADER - MODERN FLOATING GLASS (2025 TREND)
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

/* Accent line on left */
.header__inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
}

/* Shimmer effect */
.header__inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 255, 136, 0.03),
            transparent);
    animation: headerShimmer 8s ease-in-out infinite;
}

@keyframes headerShimmer {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

/* Scrolled state */
.header.scrolled .header__inner {
    background: rgba(10, 10, 10, 0.95);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: all var(--duration-normal);
}

.logo__icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.logo__icon::before {
    content: 'D';
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--black);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.logo__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.logo:hover .logo__icon {
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.logo:hover .logo__icon::after {
    opacity: 1;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo__text-main {
    font-size: 1.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--duration-normal);
}

.logo:hover .logo__text-main {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.logo__text-sub {
    font-size: 0.65rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.15em;
    margin-top: 3px;
    text-transform: uppercase;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: var(--space-sm) var(--space-md);
    position: relative;
    transition: all var(--duration-fast);
}

.nav__link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all var(--duration-normal) var(--ease-out-expo);
    z-index: -1;
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::before {
    opacity: 0.1;
    transform: scaleX(1);
}

.nav__link.active {
    color: var(--accent);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-md);
    right: var(--space-md);
    height: 2px;
    background: var(--accent);
}

/* Nav Actions */
.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Header CTA Button */
.nav__cta {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.75rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    position: relative;
    overflow: hidden;
}

.nav__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateX(-101%);
    transition: transform var(--duration-normal) var(--ease-out-expo);
    z-index: -1;
}

.nav__cta:hover {
    color: var(--black);
}

.nav__cta:hover::before {
    transform: translateX(0);
}

/* Theme Toggle Switch */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 32px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all var(--duration-normal);
}

.theme-switch:hover {
    border-color: var(--accent);
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.theme-switch__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: var(--duration-normal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.theme-switch__slider::before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: var(--black);
    transition: transform var(--duration-normal) var(--ease-out-expo), background-color var(--duration-normal);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent);
}

input:checked+.theme-switch__slider::before {
    transform: translateX(28px);
    background-color: var(--white);
    border-color: var(--accent-dark);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.theme-switch__icon {
    width: 14px;
    height: 14px;
    z-index: 1;
    color: var(--white-muted);
}

.theme-switch__icon--sun {
    color: var(--gold);
}

.theme-switch__icon--moon {
    color: var(--text-muted);
}

[data-theme="light"] .theme-switch {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .theme-switch__icon--moon {
    color: var(--accent-dark);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    z-index: 1001;
    transition: all var(--duration-fast);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all var(--duration-normal) var(--ease-out-expo);
    transform-origin: center;
}

.menu-toggle.active {
    background: var(--accent);
    border-color: var(--accent);
}

.menu-toggle.active span {
    background: var(--black);
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform var(--duration-normal) var(--ease-out-expo);
    z-index: 999;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.nav-mobile__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.nav-mobile__link {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all var(--duration-fast);
}

.nav-mobile__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav-mobile__link:hover,
.nav-mobile__link.active {
    color: var(--accent);
    padding-left: var(--space-lg);
}

.nav-mobile__link:hover::before,
.nav-mobile__link.active::before {
    width: var(--space-md);
}

.nav-mobile__cta {
    margin-top: auto;
    padding: var(--space-lg);
}

.nav-mobile__cta .btn {
    width: 100%;
    justify-content: center;
}

/* Mobile Overlay */
.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal);
    z-index: 998;
}

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

/* Light Theme Header */
[data-theme="light"] .header__inner {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .header__inner::before {
    background: var(--accent);
}

[data-theme="light"] .header.scrolled .header__inner {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .logo {
    color: var(--black);
}

[data-theme="light"] .logo__text-main {
    background: none;
    -webkit-text-fill-color: #1a1a2e;
    color: #1a1a2e;
    font-weight: 900;
}

[data-theme="light"] .logo:hover .logo__text-main {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .logo__text-sub {
    background: linear-gradient(90deg, var(--accent-dark), #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .logo__icon {
    box-shadow:
        0 4px 15px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .logo:hover .logo__icon {
    box-shadow:
        0 6px 25px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .nav__link {
    color: var(--text-muted);
}

[data-theme="light"] .nav__link:hover {
    color: var(--black);
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-muted);
}

[data-theme="light"] .menu-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .menu-toggle span {
    background: var(--black);
}

[data-theme="light"] .nav-mobile {
    background: rgba(255, 255, 255, 0.98);
    border-left-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-mobile__link {
    color: var(--text-muted);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .nav-mobile__link:hover,
[data-theme="light"] .nav-mobile__link.active {
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   BUTTONS - NEUBRUTALISM STYLE
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
    border: var(--border-accent);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    color: var(--black);
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: var(--border-thick);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.btn-ghost:hover {
    border-bottom-color: var(--accent);
}

.btn-ghost .arrow {
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.btn-ghost:hover .arrow {
    transform: translateX(8px);
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   HERO - FULL IMPACT
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--space-lg);
}

.hero__eyebrow::before {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.hero__title {
    margin-bottom: var(--space-lg);
}

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title-word {
    display: inline-block;
    transform: translateY(100%);
    animation: slideUp 1s var(--ease-out-expo) forwards;
}

.hero__title-line:nth-child(2) .hero__title-word {
    animation-delay: 0.1s;
}

.hero__title-line:nth-child(3) .hero__title-word {
    animation-delay: 0.2s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.hero__description {
    max-width: 500px;
    color: var(--white-muted);
    margin-bottom: var(--space-xl);
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero Image - Geometric Frame */
.hero__visual {
    position: relative;
    aspect-ratio: 4/5;
}

.hero__image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--black-lighter);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.hero__image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border: var(--border-accent);
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.hero__image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray-light);
}

.hero__image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

/* Floating Accent Shapes */
.hero__shape {
    position: absolute;
    z-index: 1;
}

.hero__shape--1 {
    top: 20%;
    right: -5%;
    width: 200px;
    height: 200px;
    border: var(--border-accent);
    animation: float 6s ease-in-out infinite;
}

.hero__shape--2 {
    bottom: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--gold-dim);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* --------------------------------------------------------------------------
   STATS / TRUST BAND - MINIMAL
   -------------------------------------------------------------------------- */
.stats {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat {
    position: relative;
}

.stat__number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
}

.stat__suffix {
    font-size: 0.4em;
    color: var(--white);
}

.stat__label {
    margin-top: 0.5rem;
    color: var(--white-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   PROBLEMS SECTION - ASYMMETRIC GRID
   -------------------------------------------------------------------------- */
.problems {
    background: var(--black-light);
}

.problems__header {
    max-width: 800px;
    margin-bottom: var(--space-3xl);
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--gray-dark);
}

.problem-card {
    background: var(--black);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height var(--duration-slow) var(--ease-out-expo);
}

.problem-card:hover {
    background: var(--black-lighter);
}

.problem-card:hover::before {
    height: 100%;
}

.problem-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.problem-card__text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Solution Bridge */
.solution-bridge {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
}

.solution-bridge__text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
}

.solution-bridge__text::before,
.solution-bridge__text::after {
    content: '';
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.solution-bridge__text::after {
    background: linear-gradient(90deg, var(--accent), transparent);
}

/* --------------------------------------------------------------------------
   SERVICES - BOLD CARDS
   -------------------------------------------------------------------------- */
.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    position: relative;
    background: var(--black-lighter);
    padding: var(--space-xl);
    border: 1px solid var(--gray-dark);
    transition: all var(--duration-normal) var(--ease-out-expo);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

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

.service-card__number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-dark);
    line-height: 1;
    margin-bottom: var(--space-md);
    transition: color var(--duration-normal);
}

.service-card:hover .service-card__number {
    color: var(--accent-dim);
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.service-card__description {
    color: var(--white-muted);
    margin-bottom: var(--space-lg);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--duration-normal);
}

.service-card:hover .service-card__link {
    gap: 1rem;
}

/* --------------------------------------------------------------------------
   ABOUT - SPLIT SCREEN
   -------------------------------------------------------------------------- */
.about {
    background: var(--black-light);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    aspect-ratio: 1;
    background: var(--black-lighter);
    overflow: hidden;
}

.about__image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent);
    z-index: 2;
}

.about__image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: var(--border-thick);
    z-index: -1;
}

.about__content {
    padding: var(--space-lg) 0;
}

.about__greeting {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.about__bio {
    color: var(--white-muted);
    margin-bottom: var(--space-md);
}

.about__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
}

.credential {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-dim);
    font-size: 0.875rem;
    font-weight: 500;
}

.credential svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   PROCESS - TIMELINE
   -------------------------------------------------------------------------- */
.process__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gray-dark);
}

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

.process-step__number {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border: var(--border-thick);
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 1;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.process-step:hover .process-step__number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
    transform: scale(1.1);
}

.process-step__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step__description {
    font-size: 0.875rem;
    color: var(--white-muted);
}

/* --------------------------------------------------------------------------
   TESTIMONIALS - MINIMAL CARDS
   -------------------------------------------------------------------------- */
.testimonials {
    background: var(--black-light);
}

.testimonials__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--black);
    padding: var(--space-xl);
    border: 1px solid var(--gray-dark);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--gray-dark);
    font-family: Georgia, serif;
}

.testimonial-card__content {
    position: relative;
    z-index: 1;
}

.testimonial-card__text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--black);
    font-weight: 700;
}

.testimonial-card__name {
    font-weight: 600;
}

.testimonial-card__role {
    font-size: 0.875rem;
    color: var(--white-muted);
}

/* --------------------------------------------------------------------------
   BLOG - HOVER REVEAL
   -------------------------------------------------------------------------- */
.blog__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.blog-card {
    position: relative;
    overflow: hidden;
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

.blog-card__image {
    aspect-ratio: 16/10;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.blog-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--black-lighter));
    z-index: 1;
}

.blog-card__category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.blog-card__content {
    padding: var(--space-lg);
}

.blog-card__date {
    font-size: 0.75rem;
    color: var(--white-muted);
    margin-bottom: 0.5rem;
}

.blog-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--white-muted);
    line-height: 1.6;
}

.blog__footer {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* --------------------------------------------------------------------------
   CTA SECTION - FULL IMPACT
   -------------------------------------------------------------------------- */
.cta {
    background: var(--accent);
    color: var(--black);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gold);
    opacity: 0.2;
    filter: blur(100px);
}

.cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__title {
    margin-bottom: var(--space-md);
}

.cta__description {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta .btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.cta .btn-primary:hover {
    box-shadow: 4px 4px 0 var(--black);
}

/* --------------------------------------------------------------------------
   FOOTER - MODERN 2025 DESIGN
   -------------------------------------------------------------------------- */
.footer {
    position: relative;
    background: var(--black);
    overflow: hidden;
}

/* Footer Top - Big Statement */
.footer__top {
    padding: var(--space-4xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

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

.footer__statement {
    max-width: 900px;
}

.footer__statement-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.footer__statement-text .text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__statement-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--duration-normal);
}

.footer__statement-cta:hover {
    gap: var(--space-lg);
}

.footer__statement-cta .arrow {
    font-size: 1.5rem;
    transition: transform var(--duration-normal);
}

.footer__statement-cta:hover .arrow {
    transform: translateX(5px);
}

/* Footer Main Content */
.footer__main {
    padding: var(--space-3xl) 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-3xl);
}

/* Brand Column */
.footer__brand {
    padding-right: var(--space-xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.footer__logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.footer__logo-icon::before {
    content: 'D';
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--black);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer__logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.footer__logo:hover .footer__logo-icon {
    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.5),
        0 0 80px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.footer__logo:hover .footer__logo-icon::after {
    opacity: 1;
}

.footer__logo-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--duration-normal);
}

.footer__logo:hover .footer__logo-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.footer__logo-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    margin-left: 3px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    animation: logoDotPulse 2s ease-in-out infinite;
}

@keyframes logoDotPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
        transform: scale(1.1);
    }
}

.footer__tagline {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* Social Links - Modern Style */
.footer__social {
    display: flex;
    gap: var(--space-xs);
}

.footer__social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white-muted);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.footer__social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.footer__social-link:hover {
    border-color: var(--accent);
    color: var(--black);
}

.footer__social-link:hover::before {
    transform: translateY(0);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform var(--duration-fast);
}

.footer__social-link:hover svg {
    transform: scale(1.1);
}

/* Footer Columns */
.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__heading {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    align-self: flex-start;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    color: var(--white-muted);
    font-size: 0.9rem;
    padding: var(--space-xs) 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--duration-fast);
}

.footer__link::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--duration-normal) var(--ease-out-expo);
}

.footer__link:hover {
    color: var(--white);
    padding-left: var(--space-sm);
}

.footer__link:hover::before {
    width: 12px;
}

/* Contact Info */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer__contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.footer__contact-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.footer__contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer__contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 600;
}

.footer__contact-value {
    color: var(--white);
    font-weight: 500;
}

/* Footer Bottom */
.footer__bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__copyright {
    font-size: 0.8rem;
    color: var(--white-muted);
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal-link {
    font-size: 0.8rem;
    color: var(--white-muted);
    transition: color var(--duration-fast);
}

.footer__legal-link:hover {
    color: var(--accent);
}

/* Footer Background Decoration */
.footer__bg-text {
    position: absolute;
    bottom: -20%;
    right: -5%;
    font-size: clamp(8rem, 20vw, 20rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    letter-spacing: -0.05em;
}

/* --------------------------------------------------------------------------
   ANIMATIONS - SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Stagger children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out-expo);
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.15s;
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.2s;
}

.stagger-children.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* Old mobile navigation styles removed - using new header styles */

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__visual {
        max-width: 400px;
        margin: 0 auto;
        order: -1;
    }

    .hero__description {
        margin: 0 auto var(--space-xl);
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__shape {
        display: none;
    }

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

    .process__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }

    .process__timeline::before {
        display: none;
    }

    .about__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about__image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer__brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
        margin-bottom: var(--space-xl);
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__statement-text {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* Header Mobile */
    .header {
        padding: var(--space-sm) 0;
    }

    .header__container {
        padding: 0 var(--space-md);
    }

    .header__inner {
        padding: var(--space-xs) var(--space-md);
    }

    .logo__text-sub {
        display: none;
    }

    .nav__list,
    .nav__cta {
        display: none;
    }

    .nav__actions {
        gap: var(--space-sm);
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .stats__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .problems__grid,
    .services__grid,
    .testimonials__grid,
    .blog__grid,
    .process__timeline {
        grid-template-columns: 1fr;
    }

    .hero__scroll {
        display: none;
    }

    /* Footer Mobile */
    .footer__top {
        padding: var(--space-2xl) 0;
    }

    .footer__statement-text {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .footer__main {
        padding: var(--space-2xl) 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .footer__brand {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 0;
    }

    .footer__column {
        align-items: center;
    }

    .footer__heading {
        align-self: center;
    }

    .footer__links {
        align-items: center;
    }

    .footer__link {
        justify-content: center;
    }

    .footer__link:hover {
        padding-left: 0;
    }

    .footer__contact {
        align-items: center;
    }

    .footer__contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-sm);
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__bg-text {
        font-size: clamp(4rem, 15vw, 8rem);
        bottom: -10%;
    }

    .solution-bridge__text::before,
    .solution-bridge__text::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .about__credentials {
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   CURSOR GLOW EFFECT (OPTIONAL)
   -------------------------------------------------------------------------- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   THEME TOGGLE BUTTON
   -------------------------------------------------------------------------- */
.theme-toggle {
    position: relative;
    width: 56px;
    height: 28px;
    background: var(--gray-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 6px;
    transition: background-color 0.4s ease;
    overflow: hidden;
    margin-left: var(--space-sm);
}

.theme-toggle__slider {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--accent);
    left: 3px;
    top: 3px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s ease;
    z-index: 2;
}

[data-theme="light"] .theme-toggle__slider {
    transform: translateX(28px);
}

.theme-toggle__icon {
    width: 14px;
    height: 14px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.theme-toggle__icon--sun {
    color: var(--gold);
    opacity: 0.5;
}

.theme-toggle__icon--moon {
    color: var(--white);
    opacity: 1;
}

[data-theme="light"] .theme-toggle__icon--sun {
    opacity: 1;
}

[data-theme="light"] .theme-toggle__icon--moon {
    opacity: 0.5;
}

.theme-toggle:hover {
    background: var(--gray);
}

/* Theme toggle in header */
.nav__theme {
    display: flex;
    align-items: center;
    margin-left: var(--space-sm);
}

/* --------------------------------------------------------------------------
   MODERN TESTIMONIAL SLIDER / CAROUSEL
   -------------------------------------------------------------------------- */
.slider {
    position: relative;
    overflow: hidden;
    padding-bottom: var(--space-xl);
}

.slider__container {
    overflow: hidden;
}

.slider__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.slider__slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 var(--space-md);
    opacity: 0.4;
    transform: scale(0.92);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slider__slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Slider Navigation */
.slider__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.slider__btn,
.slider__nav-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--gray-dark);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.slider__btn:hover,
.slider__nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
    transform: scale(1.1);
}

.slider__btn:disabled,
.slider__nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.slider__btn:disabled:hover,
.slider__nav-btn:disabled:hover {
    background: transparent;
    border-color: var(--gray-dark);
    color: var(--white);
}

.slider__btn svg,
.slider__nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.slider__dots {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
}

.slider__dot {
    width: 12px;
    height: 12px;
    background: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider__dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.slider__dot.active::before,
.slider__dot:hover::before {
    transform: scaleX(1);
}

.slider__dot.active {
    width: 32px;
}

/* Slider Progress Bar */
.slider__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    width: 0;
    transition: width 0.3s ease;
}

/* Auto-play indicator */
.slider__autoplay {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slider__autoplay-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

/* Modern Testimonial Card - Slider Context */
.slider .testimonial-card,
.testimonial-card--slider {
    background: var(--black-lighter);
    padding: var(--space-xl);
    border: 1px solid var(--gray-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}

/* Remove the default quote pseudo-element in slider context */
.slider .testimonial-card::before,
.testimonial-card--slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
    font-size: 0;
    /* Hide quote text */
}

.slider .testimonial-card:hover,
.testimonial-card--slider:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

.slider .testimonial-card:hover::before,
.testimonial-card--slider:hover::before {
    transform: scaleX(1);
}

.testimonial-card__quote {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--accent);
    opacity: 0.15;
}

.testimonial-card__quote svg {
    width: 60px;
    height: 60px;
}

.testimonial-card__rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-card__rating .star,
.testimonial-card__star {
    font-size: 1.25rem;
    color: var(--gold);
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__text--slider {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--white);
    flex-grow: 1;
    margin-bottom: var(--space-lg);
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-dark);
}

.testimonial-card__avatar--large {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--black);
}

.testimonial-card__meta {
    flex-grow: 1;
}

.testimonial-card__name--large {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.testimonial-card__role--large {
    font-size: 0.875rem;
    color: var(--white-muted);
}

.testimonial-card__company {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Drag cursor for slider */
.slider--draggable {
    cursor: grab;
}

.slider--draggable:active {
    cursor: grabbing;
}

/* Swipe hint animation */
@keyframes swipeHint {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }
}

.slider__hint {
    display: none;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--white-muted);
    animation: swipeHint 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .slider__hint {
        display: flex;
    }

    .slider__btn {
        width: 44px;
        height: 44px;
    }
}

/* --------------------------------------------------------------------------
   LIGHT THEME SPECIFIC ADJUSTMENTS
   -------------------------------------------------------------------------- */
[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .header::before {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), transparent);
}

[data-theme="light"] .logo__dot,
[data-theme="light"] .footer__logo-dot {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

[data-theme="light"] .btn-primary {
    background: var(--accent);
    color: #0a0a0a;
    border-color: var(--accent);
}

[data-theme="light"] .btn-primary::before {
    background: var(--accent-dark);
}

[data-theme="light"] .btn-outline {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

[data-theme="light"] .btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

[data-theme="light"] .problem-card,
[data-theme="light"] .service-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .testimonial-card--slider,
[data-theme="light"] .blog-card {
    background: var(--bg-card);
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .service-card__number {
    color: var(--border-color);
}

[data-theme="light"] .cta {
    background: var(--accent);
}

[data-theme="light"] .footer {
    background: #1a1a2e;
    color: #fafafa;
}

[data-theme="light"] .footer__top {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .footer__statement-text {
    color: #fafafa;
}

[data-theme="light"] .footer__logo-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .footer__logo-text {
    background: linear-gradient(135deg, #fafafa 0%, rgba(250, 250, 250, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .footer .footer__link,
[data-theme="light"] .footer .footer__contact-item,
[data-theme="light"] .footer .footer__tagline,
[data-theme="light"] .footer .footer__contact-value {
    color: rgba(250, 250, 250, 0.7);
}

[data-theme="light"] .footer .footer__link:hover,
[data-theme="light"] .footer .footer__contact-value {
    color: #fafafa;
}

[data-theme="light"] .footer__social-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(250, 250, 250, 0.7);
}

[data-theme="light"] .footer__social-link:hover {
    color: #1a1a2e;
}

[data-theme="light"] .footer__contact-icon {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .footer__copyright,
[data-theme="light"] .footer__legal-link {
    color: rgba(250, 250, 250, 0.5);
}

[data-theme="light"] .footer__legal-link:hover {
    color: var(--accent);
}

[data-theme="light"] .footer__bg-text {
    color: rgba(255, 255, 255, 0.03);
}

[data-theme="light"] .text-gradient {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--gold) 50%, var(--accent-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .stats {
    background: var(--bg-secondary);
}

[data-theme="light"] .problems,
[data-theme="light"] .about,
[data-theme="light"] .testimonials {
    background: var(--bg-secondary);
}

[data-theme="light"] .process-step__number {
    background: var(--bg-primary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .nav-mobile {
    background: var(--bg-primary);
}

[data-theme="light"] .theme-toggle {
    background: var(--border-color);
}

/* ==========================================================================
   SUB PAGES - COMMON STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   PAGE HERO - ALT SAYFALAR
   -------------------------------------------------------------------------- */
.page-hero {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

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

.page-hero__title {
    margin-bottom: var(--space-lg);
}

.page-hero__lead {
    font-size: var(--text-lg);
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.page-hero__stats {
    display: flex;
    gap: var(--space-xl);
}

.mini-stat {
    text-align: center;
}

.mini-stat__number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.mini-stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white-muted);
    margin-top: 0.5rem;
    display: block;
}

/* About Image Frame */
.about-image-frame {
    position: relative;
}

.about-image-placeholder {
    aspect-ratio: 4/5;
    background: var(--black-lighter);
    border: 4px solid var(--gray-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent);
    z-index: -1;
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--accent);
    color: var(--black);
    padding: 1rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    box-shadow: 6px 6px 0 var(--black);
}

.about-image-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

/* --------------------------------------------------------------------------
   STORY SECTION
   -------------------------------------------------------------------------- */
.story__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
}

.story__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.story__divider {
    width: 80px;
    height: 6px;
    background: var(--accent);
    margin-top: var(--space-lg);
}

.story__text {
    color: var(--white-muted);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

.story__text--lead {
    font-size: var(--text-lg);
    color: var(--white);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   TIMELINE
   -------------------------------------------------------------------------- */
.timeline-section {
    background: var(--black-light);
}

.timeline {
    position: relative;
    padding: var(--space-2xl) 0;
}

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gray-dark);
    transform: translateX(-50%);
}

.timeline__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--accent);
    transform: translateX(-50%);
    z-index: 2;
}

.timeline__item:nth-child(odd) .timeline__year {
    text-align: right;
}

.timeline__item:nth-child(even) {
    direction: rtl;
}

.timeline__item:nth-child(even)>* {
    direction: ltr;
}

.timeline__item:nth-child(even) .timeline__year {
    text-align: left;
}

.timeline__year {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    opacity: 0.5;
}

.timeline__content {
    background: var(--black-lighter);
    border: 3px solid var(--gray-dark);
    padding: var(--space-xl);
    position: relative;
    transition: all 0.3s var(--ease-out-expo);
}

.timeline__content:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 8px 8px 0 var(--accent-dim);
}

.timeline__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.timeline__desc {
    color: var(--white-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   PHILOSOPHY SECTION
   -------------------------------------------------------------------------- */
.philosophy-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
}

.philosophy-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--gray-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-dark) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.15;
}

.philosophy__content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy__quote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin: var(--space-xl) 0;
    position: relative;
}

.philosophy__quote::before,
.philosophy__quote::after {
    content: '"';
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 0;
    vertical-align: middle;
    opacity: 0.3;
}

.philosophy__cite {
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   VALUES SECTION
   -------------------------------------------------------------------------- */
.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.value-card {
    padding: var(--space-xl);
    border: 1px solid var(--gray-dark);
    text-align: center;
    position: relative;
    transition: all 0.3s var(--ease-out-expo);
    background: var(--black);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out-expo);
}

.value-card:hover {
    background: var(--black-lighter);
    z-index: 2;
}

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

.value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    color: var(--accent);
}

.value-card__icon svg {
    width: 32px;
    height: 32px;
}

.value-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.value-card__desc {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   CREDENTIALS SECTION
   -------------------------------------------------------------------------- */
.credentials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.credential-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--black-lighter);
    border: 3px solid var(--gray-dark);
    transition: all 0.3s var(--ease-out-expo);
}

.credential-card:hover {
    border-color: var(--accent);
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--accent);
}

.credential-card__badge {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.credential-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.credential-card__issuer {
    font-size: 0.875rem;
    color: var(--white-muted);
    margin-bottom: 0.5rem;
}

.credential-card__year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   RESPONSIVE - SUB PAGES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .page-hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .page-hero__image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .story__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .timeline__line {
        left: 20px;
    }

    .timeline__item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .timeline__item::before {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline__item:nth-child(odd) .timeline__year,
    .timeline__item:nth-child(even) .timeline__year {
        text-align: left;
    }

    .timeline__item:nth-child(even) {
        direction: ltr;
    }

    .timeline__year {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
    }

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

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

@media (max-width: 640px) {
    .page-hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
    }

    .page-hero__stats {
        gap: var(--space-lg);
    }

    .mini-stat__number {
        font-size: 2rem;
    }

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

    .credential-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Light Theme - Sub Pages */
[data-theme="light"] .page-hero {
    background: var(--bg-secondary);
}

[data-theme="light"] .timeline-section {
    background: var(--bg-secondary);
}

[data-theme="light"] .philosophy-section {
    background: var(--bg-tertiary);
}

[data-theme="light"] .value-card {
    background: var(--bg-card);
}

[data-theme="light"] .credential-card {
    background: var(--bg-card);
}

/* ==========================================================================
   SERVICES PAGE - HİZMETLER SAYFASI
   ========================================================================== */

/* --------------------------------------------------------------------------
   PAGE HERO - CENTER VARIANT
   -------------------------------------------------------------------------- */
.page-hero--services {
    text-align: center;
    min-height: 60vh;
}

.page-hero__center {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--white-muted);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   SERVICE BLOCKS
   -------------------------------------------------------------------------- */
.services-detail {
    background: var(--black-light);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--gray-dark);
}

.service-block:last-child {
    border-bottom: none;
}

.service-block--reverse {
    direction: rtl;
}

.service-block--reverse>* {
    direction: ltr;
}

.service-block__number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    display: block;
    margin-bottom: var(--space-sm);
}

.service-block__title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.service-block__desc {
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.service-block__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
}

.service-block__list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--white-muted);
    border-bottom: 1px solid var(--gray-dark);
}

.service-block__list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.service-visual-box {
    aspect-ratio: 1;
    background: var(--black-lighter);
    border: 4px solid var(--gray-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.service-visual-box:hover {
    border-color: var(--accent);
    transform: translate(-8px, -8px);
    box-shadow: 12px 12px 0 var(--accent);
}

.service-visual-box--gold:hover {
    border-color: var(--gold);
    box-shadow: 12px 12px 0 var(--gold);
}

.service-visual-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    right: -10px;
}

.service-visual-icon {
    width: 120px;
    height: 120px;
    color: var(--accent);
}

.service-visual-icon svg {
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------------------------------
   PRICING SECTION
   -------------------------------------------------------------------------- */
.pricing-section {
    background: var(--black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
}

.pricing-card {
    background: var(--black-lighter);
    border: 3px solid var(--gray-dark);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s var(--ease-out-expo);
}

.pricing-card:hover {
    border-color: var(--accent);
    z-index: 2;
}

.pricing-card--featured {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
    transform: scale(1.05);
    z-index: 3;
}

.pricing-card--featured:hover {
    transform: scale(1.08);
}

.pricing-card--premium {
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    border-color: var(--gold);
}

.pricing-card--premium:hover {
    border-color: var(--gold);
    box-shadow: 0 0 40px var(--gold-dim);
}

.pricing-card__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--black);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--accent);
}

.pricing-card__header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid currentColor;
    opacity: 0.3;
}

.pricing-card--featured .pricing-card__header {
    border-color: var(--black);
    opacity: 1;
}

.pricing-card__name {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.pricing-card__desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-card__price {
    margin-bottom: var(--space-xl);
}

.pricing-card__amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-card__period {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.pricing-card__features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card--featured .pricing-card__features li {
    border-color: rgba(0, 0, 0, 0.1);
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pricing-card__cta {
    display: block;
    width: 100%;
    padding: 1.25rem;
    margin-top: var(--space-xl);
    background: transparent;
    border: 3px solid currentColor;
    color: inherit;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-card__cta:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.pricing-card--featured .pricing-card__cta {
    background: var(--black);
    border-color: var(--black);
}

.pricing-card--featured .pricing-card__cta:hover {
    background: var(--white);
    border-color: var(--white);
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-xl);
    color: var(--white-muted);
    font-size: 0.9rem;
}

.pricing-note a {
    color: var(--accent);
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   PROCESS STEPS - DETAILED
   -------------------------------------------------------------------------- */
.process-detail {
    background: var(--black-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.process-step-card {
    padding: var(--space-xl);
    border: 1px solid var(--gray-dark);
    position: relative;
    background: var(--black);
    transition: all 0.3s var(--ease-out-expo);
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out-expo);
}

.process-step-card:hover {
    background: var(--black-lighter);
    z-index: 2;
}

.process-step-card:hover::before {
    transform: scaleX(1);
}

.process-step-card__number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.process-step-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.process-step-card__desc {
    font-size: 0.875rem;
    color: var(--white-muted);
    line-height: 1.7;
}

.process-step-card__icon {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    color: var(--gray-dark);
    opacity: 0.5;
}

.process-step-card__icon svg {
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------------------------------
   FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
    background: var(--black);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 3px solid var(--gray-dark);
    margin-bottom: -3px;
    background: var(--black-lighter);
}

.faq-item[open] {
    border-color: var(--accent);
    z-index: 2;
    position: relative;
}

.faq-question {
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-item[open] .faq-question {
    background: var(--accent);
    color: var(--black);
}

.faq-answer {
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    color: var(--white-muted);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   RESPONSIVE - SERVICES PAGE
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: var(--space-lg);
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-8px);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .service-block--reverse {
        direction: ltr;
    }

    .service-block__visual {
        max-width: 400px;
        margin: 0 auto;
    }

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

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step-card__icon {
        display: none;
    }
}

/* Light Theme - Services Page */
[data-theme="light"] .services-detail,
[data-theme="light"] .process-detail {
    background: var(--bg-secondary);
}

[data-theme="light"] .pricing-card {
    background: var(--bg-card);
}

[data-theme="light"] .pricing-card--featured {
    background: var(--accent);
}

[data-theme="light"] .faq-item {
    background: var(--bg-card);
}

[data-theme="light"] .process-step-card {
    background: var(--bg-card);
}

/* ==========================================================================
   BLOG PAGE - MAGAZINE STYLE
   ========================================================================== */

/* --------------------------------------------------------------------------
   Blog Hero
   -------------------------------------------------------------------------- */
.page-hero--blog {
    position: relative;
    overflow: hidden;
}

.blog-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-dark);
}

.blog-stat {
    text-align: left;
}

.blog-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.blog-stat__label {
    font-size: 0.875rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   Category Filter
   -------------------------------------------------------------------------- */
.blog-filter {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--gray-dark);
    position: sticky;
    top: 80px;
    z-index: 90;
    background: var(--bg);
    backdrop-filter: blur(10px);
}

.blog-filter__wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.blog-filter__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 2px solid var(--gray-dark);
    color: var(--white-muted);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-filter__btn:hover {
    border-color: var(--accent);
    color: var(--white);
}

.blog-filter__btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

.blog-filter__icon {
    width: 18px;
    height: 18px;
}

.blog-filter__icon svg {
    width: 100%;
    height: 100%;
}

/* Blog Search */
.blog-search {
    margin-left: auto;
    position: relative;
}

.blog-search__input {
    width: 240px;
    padding: 0.75rem 1rem;
    padding-left: 2.75rem;
    background: var(--black-lighter);
    border: 2px solid var(--gray-dark);
    color: var(--white);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.blog-search__input:focus {
    outline: none;
    border-color: var(--accent);
}

.blog-search__input::placeholder {
    color: var(--white-muted);
}

.blog-search__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--white-muted);
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Featured Post Card
   -------------------------------------------------------------------------- */
.featured-post {
    padding: var(--space-2xl) 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--black-light);
    border: 3px solid var(--gray-dark);
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.featured-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.1);
}

.featured-card__image {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.featured-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.featured-card__badge {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.featured-card__content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
}

.featured-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.featured-card__category {
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-card__date,
.featured-card__read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--white-muted);
}

.featured-card__date svg,
.featured-card__read-time svg {
    width: 16px;
    height: 16px;
}

.featured-card__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.featured-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-card__title a:hover {
    color: var(--accent);
}

.featured-card__excerpt {
    font-size: 1rem;
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.featured-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-dark);
}

.featured-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.featured-card__author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--black);
}

.featured-card__author-info {
    display: flex;
    flex-direction: column;
}

.featured-card__author-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.featured-card__author-title {
    font-size: 0.8rem;
    color: var(--white-muted);
}

.featured-card__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.featured-card__link:hover {
    gap: 1rem;
}

.featured-card__link svg {
    width: 20px;
    height: 20px;
}

/* --------------------------------------------------------------------------
   Blog Grid
   -------------------------------------------------------------------------- */
.blog-grid-section {
    padding: var(--space-2xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--black-light);
    border: 2px solid var(--gray-dark);
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

.blog-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card__image-placeholder {
    opacity: 0.6;
}

.blog-card__category-tag {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card__content {
    padding: var(--space-lg);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    font-size: 0.8rem;
    color: var(--white-muted);
}

.blog-card__dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
}

.blog-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: var(--accent);
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-dark);
}

.blog-card__author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-muted);
}

.blog-card__link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--black);
    transition: all 0.3s ease;
}

.blog-card__link:hover {
    background: var(--white);
}

.blog-card__link svg {
    width: 18px;
    height: 18px;
}

/* Load More Button */
.blog-load-more {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

.btn-load-more {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-load-more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-load-more:hover svg {
    transform: translateY(4px);
}

/* --------------------------------------------------------------------------
   Newsletter Section
   -------------------------------------------------------------------------- */
.newsletter-section {
    padding: var(--space-2xl) 0;
}

.newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    border: 3px solid var(--gray-dark);
}

.newsletter-card__content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.newsletter-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    flex-shrink: 0;
}

.newsletter-card__icon svg {
    width: 40px;
    height: 40px;
    color: var(--black);
}

.newsletter-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.newsletter-card__description {
    font-size: 0.95rem;
    color: var(--white-muted);
    max-width: 400px;
}

.newsletter-form {
    flex-shrink: 0;
}

.newsletter-form__group {
    display: flex;
    gap: 0;
}

.newsletter-form__input {
    width: 280px;
    padding: 1rem 1.25rem;
    background: var(--black);
    border: 2px solid var(--gray-dark);
    border-right: none;
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-form__input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-form__input::placeholder {
    color: var(--white-muted);
}

.newsletter-form__btn {
    padding: 1rem 1.5rem;
    white-space: nowrap;
}

.newsletter-form__note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    color: var(--white-muted);
}

.newsletter-form__note svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   Blog Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-card__image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-filter__wrapper {
        justify-content: flex-start;
    }

    .blog-search {
        width: 100%;
        margin-left: 0;
        margin-top: var(--space-md);
    }

    .blog-search__input {
        width: 100%;
    }

    .blog-stats {
        gap: var(--space-xl);
    }

    .blog-stat__number {
        font-size: 2rem;
    }

    .featured-card__title {
        font-size: 1.5rem;
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-card__content {
        flex-direction: column;
    }

    .newsletter-card__description {
        max-width: none;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-form__group {
        flex-direction: column;
    }

    .newsletter-form__input {
        width: 100%;
        border-right: 2px solid var(--gray-dark);
        border-bottom: none;
    }

    .newsletter-form__note {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-filter__btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .blog-filter__icon {
        display: none;
    }

    .featured-card__content {
        padding: var(--space-lg);
    }

    .featured-card__footer {
        flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }
}

/* --------------------------------------------------------------------------
   Light Theme - Blog Page
   -------------------------------------------------------------------------- */
[data-theme="light"] .blog-filter {
    background: var(--bg);
    border-color: var(--border);
}

[data-theme="light"] .blog-filter__btn {
    border-color: var(--border);
    color: var(--text-secondary);
}

[data-theme="light"] .blog-filter__btn:hover {
    border-color: var(--accent);
    color: var(--text);
}

[data-theme="light"] .blog-filter__btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

[data-theme="light"] .blog-search__input {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text);
}

[data-theme="light"] .featured-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="light"] .featured-card:hover {
    border-color: var(--accent);
}

[data-theme="light"] .featured-card__image-placeholder {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

[data-theme="light"] .featured-card__footer {
    border-color: var(--border);
}

[data-theme="light"] .blog-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="light"] .blog-card:hover {
    border-color: var(--accent);
}

[data-theme="light"] .blog-card__image-placeholder {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

[data-theme="light"] .blog-card__footer {
    border-color: var(--border);
}

[data-theme="light"] .newsletter-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg) 100%);
    border-color: var(--border);
}

[data-theme="light"] .newsletter-form__input {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
}

/* ==========================================================================
   BLOG DETAIL PAGE
   ========================================================================== */

/* --------------------------------------------------------------------------
   Reading Progress Bar
   -------------------------------------------------------------------------- */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gray-dark);
    z-index: 9999;
}

.reading-progress__bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
    transition: width 0.1s ease-out;
}

/* --------------------------------------------------------------------------
   Article Hero
   -------------------------------------------------------------------------- */
.article-hero {
    padding-top: calc(var(--space-3xl) + 80px);
    padding-bottom: var(--space-2xl);
}

.article-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    color: var(--white-muted);
}

.article-hero__breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-hero__breadcrumb a:hover {
    color: var(--white);
}

.article-hero__category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.article-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    max-width: 900px;
}

.article-hero__excerpt {
    font-size: 1.25rem;
    color: var(--white-muted);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: var(--space-xl);
}

.article-hero__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-dark);
}

.article-hero__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.article-hero__author-avatar {
    width: 56px;
    height: 56px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--black);
}

.article-hero__author-info {
    display: flex;
    flex-direction: column;
}

.article-hero__author-name {
    font-weight: 700;
    font-size: 1rem;
}

.article-hero__author-title {
    font-size: 0.875rem;
    color: var(--white-muted);
}

.article-hero__details {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.article-hero__date,
.article-hero__read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--white-muted);
}

.article-hero__date svg,
.article-hero__read-time svg {
    width: 18px;
    height: 18px;
}

.article-hero__image {
    margin-top: var(--space-2xl);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.article-hero__image-placeholder {
    width: 100%;
    aspect-ratio: 21/9;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    border: 3px solid var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Article Layout - Sidebar + Content
   -------------------------------------------------------------------------- */
.article-layout {
    padding: var(--space-2xl) 0;
}

.article-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-2xl);
}

/* --------------------------------------------------------------------------
   Table of Contents Sidebar
   -------------------------------------------------------------------------- */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.article-toc {
    padding: var(--space-lg);
    background: var(--black-light);
    border: 2px solid var(--gray-dark);
    margin-bottom: var(--space-xl);
}

.article-toc__title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gray-dark);
}

.article-toc__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.article-toc__link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--white-muted);
    font-size: 0.875rem;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.article-toc__link:hover {
    color: var(--white);
    background: var(--black-lighter);
    border-left-color: var(--accent);
}

.article-toc__link.active {
    color: var(--accent);
    background: var(--black-lighter);
    border-left-color: var(--accent);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Share Buttons
   -------------------------------------------------------------------------- */
.article-share {
    padding: var(--space-lg);
    background: var(--black-light);
    border: 2px solid var(--gray-dark);
}

.article-share__title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-muted);
    margin-bottom: var(--space-md);
}

.article-share__buttons {
    display: flex;
    gap: 0.5rem;
}

.article-share__btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border: 2px solid var(--gray-dark);
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.article-share__btn svg {
    width: 20px;
    height: 20px;
}

.article-share__btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.article-share__btn--twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: var(--white);
}

.article-share__btn--linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
    color: var(--white);
}

.article-share__btn--whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

/* --------------------------------------------------------------------------
   Article Content - Typography
   -------------------------------------------------------------------------- */
.article-content {
    max-width: 720px;
}

.article-content__lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: var(--space-xl);
    padding-left: var(--space-lg);
    border-left: 4px solid var(--accent);
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    scroll-margin-top: 100px;
}

.article-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.article-content p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--white-muted);
    margin-bottom: var(--space-lg);
}

.article-content strong {
    color: var(--white);
    font-weight: 600;
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.article-content li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--white-muted);
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.article-content ul li::marker {
    color: var(--accent);
}

.article-content ol li::marker {
    color: var(--accent);
    font-weight: 700;
}

/* Article Quote */
.article-quote {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: var(--black-light);
    border-left: 4px solid var(--accent);
    position: relative;
}

.article-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.article-quote p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.article-quote cite {
    display: block;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--white-muted);
}

.article-quote--accent {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
    border-left-color: var(--gold);
}

.article-quote--accent::before {
    color: var(--gold);
}

/* Article Highlight Box */
.article-highlight {
    display: flex;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
    border: 2px solid var(--accent);
}

.article-highlight__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    flex-shrink: 0;
}

.article-highlight__icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
}

.article-highlight__content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--white-muted);
}

.article-highlight__content strong {
    display: block;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--gray-dark);
}

.article-tags__label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white-muted);
}

.article-tag {
    padding: 0.5rem 1rem;
    background: var(--black-light);
    border: 1px solid var(--gray-dark);
    color: var(--white-muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   Author Box
   -------------------------------------------------------------------------- */
.author-box-section {
    padding: var(--space-2xl) 0;
    background: var(--black-light);
}

.author-box {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: var(--black);
    border: 3px solid var(--gray-dark);
}

.author-box__avatar {
    width: 120px;
    height: 120px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 3rem;
    color: var(--black);
    flex-shrink: 0;
}

.author-box__content {
    flex-grow: 1;
}

.author-box__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.author-box__name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.author-box__title {
    font-size: 0.9rem;
    color: var(--white-muted);
    margin-bottom: var(--space-md);
}

.author-box__bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--white-muted);
    margin-bottom: var(--space-lg);
}

.author-box__links {
    display: flex;
    gap: var(--space-md);
}

.author-box__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 2px solid var(--gray-dark);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-box__link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.author-box__link svg {
    width: 16px;
    height: 16px;
}

.author-box__link--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

.author-box__link--primary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

/* --------------------------------------------------------------------------
   Related Posts
   -------------------------------------------------------------------------- */
.related-posts {
    padding: var(--space-2xl) 0;
}

.related-posts__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-xl);
}

.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* --------------------------------------------------------------------------
   Blog Detail Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: flex;
        gap: var(--space-lg);
    }

    .article-toc,
    .article-share {
        flex: 1;
        margin-bottom: 0;
    }

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

@media (max-width: 768px) {
    .article-hero__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-sidebar {
        flex-direction: column;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-box__avatar {
        margin: 0 auto;
    }

    .author-box__links {
        justify-content: center;
    }

    .related-posts__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .article-hero__title {
        font-size: 1.75rem;
    }

    .article-hero__excerpt {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-quote {
        padding: var(--space-lg);
    }

    .article-quote p {
        font-size: 1.1rem;
    }

    .article-highlight {
        flex-direction: column;
    }

    .author-box__avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .author-box__links {
        flex-direction: column;
    }
}

/* --------------------------------------------------------------------------
   Light Theme - Blog Detail
   -------------------------------------------------------------------------- */
[data-theme="light"] .reading-progress {
    background: var(--border);
}

[data-theme="light"] .article-hero__breadcrumb a {
    color: var(--accent);
}

[data-theme="light"] .article-hero__image-placeholder {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg) 100%);
    border-color: var(--border);
}

[data-theme="light"] .article-toc {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="light"] .article-toc__title {
    border-color: var(--border);
}

[data-theme="light"] .article-toc__link:hover,
[data-theme="light"] .article-toc__link.active {
    background: var(--bg-secondary);
}

[data-theme="light"] .article-share {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="light"] .article-share__btn {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
}

[data-theme="light"] .article-content__lead {
    color: var(--text);
}

[data-theme="light"] .article-content strong {
    color: var(--text);
}

[data-theme="light"] .article-quote {
    background: var(--bg-card);
}

[data-theme="light"] .article-quote p {
    color: var(--text);
}

[data-theme="light"] .article-highlight {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
}

[data-theme="light"] .article-tag {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-secondary);
}

[data-theme="light"] .article-tags {
    border-color: var(--border);
}

[data-theme="light"] .author-box-section {
    background: var(--bg-secondary);
}

[data-theme="light"] .author-box {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="light"] .author-box__link {
    border-color: var(--border);
    color: var(--text);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

/* --------------------------------------------------------------------------
   Contact Hero
   -------------------------------------------------------------------------- */
.page-hero--contact .page-hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
}

/* --------------------------------------------------------------------------
   Contact Info Cards
   -------------------------------------------------------------------------- */
.contact-info-section {
    padding: var(--space-xl) 0;
    margin-top: calc(-1 * var(--space-2xl));
    position: relative;
    z-index: 10;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--black-light);
    border: 3px solid var(--gray-dark);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out-expo);
}

.contact-info-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.contact-info-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    flex-shrink: 0;
}

.contact-info-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--black);
}

.contact-info-card__content {
    flex-grow: 1;
}

.contact-info-card__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.contact-info-card__value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-info-card__note {
    display: block;
    font-size: 0.8rem;
    color: var(--white-muted);
}

.contact-info-card__arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-card__arrow svg {
    width: 20px;
    height: 20px;
    color: var(--white-muted);
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-card__arrow {
    background: var(--accent);
}

.contact-info-card:hover .contact-info-card__arrow svg {
    color: var(--black);
    transform: translateX(4px);
}

.contact-info-card--location {
    cursor: default;
}

.contact-info-card--location:hover {
    transform: none;
}

/* --------------------------------------------------------------------------
   Contact Form Section
   -------------------------------------------------------------------------- */
.contact-form-section {
    padding: var(--space-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
}

.contact-form-wrapper {
    padding: var(--space-2xl);
    background: var(--black-light);
    border: 3px solid var(--gray-dark);
}

.contact-form-header {
    margin-bottom: var(--space-xl);
}

.contact-form-header__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-form-header__desc {
    font-size: 0.95rem;
    color: var(--white-muted);
}

/* Form Elements */
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.contact-form__group {
    position: relative;
}

.contact-form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--black);
    border: 2px solid var(--gray-dark);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: var(--white-muted);
}

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

.contact-form__textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form__error {
    display: none;
    font-size: 0.75rem;
    color: #ff4444;
    margin-top: 0.5rem;
}

.contact-form__input:invalid:not(:placeholder-shown)+.contact-form__error,
.contact-form__textarea:invalid:not(:placeholder-shown)+.contact-form__error {
    display: block;
}

/* Checkbox */
.contact-form__consent {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.contact-form__checkbox input[type="checkbox"] {
    display: none;
}

.contact-form__checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray-dark);
    background: var(--black);
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.contact-form__checkbox input:checked+.contact-form__checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.contact-form__checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.contact-form__checkbox input:checked+.contact-form__checkmark::after {
    transform: translate(-50%, -60%) rotate(-45deg) scale(1);
}

.contact-form__checkbox-text {
    font-size: 0.875rem;
    color: var(--white-muted);
    line-height: 1.6;
}

.contact-form__checkbox-text a {
    color: var(--accent);
    text-decoration: underline;
}

/* Submit Button */
.contact-form__submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-form__submit svg {
    width: 20px;
    height: 20px;
}

.contact-form__submit .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------------------
   Contact Booking Card
   -------------------------------------------------------------------------- */
.contact-booking {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-booking__card {
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    border: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.contact-booking__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}

.contact-booking__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    margin-bottom: var(--space-lg);
}

.contact-booking__icon svg {
    width: 32px;
    height: 32px;
    color: var(--black);
}

.contact-booking__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-booking__desc {
    font-size: 0.95rem;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.contact-booking__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
}

.contact-booking__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-dark);
}

.contact-booking__features li:last-child {
    border-bottom: none;
}

.contact-booking__features svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-booking__btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   Contact Social
   -------------------------------------------------------------------------- */
.contact-social {
    padding: var(--space-xl);
    background: var(--black-light);
    border: 3px solid var(--gray-dark);
}

.contact-social__title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-muted);
    margin-bottom: var(--space-lg);
}

.contact-social__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-social__link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 1rem;
    background: var(--black);
    border: 2px solid var(--gray-dark);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social__link:hover {
    border-color: var(--accent);
    background: var(--black-lighter);
}

.contact-social__link svg {
    width: 24px;
    height: 24px;
}

.contact-social__link span {
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Contact Map
   -------------------------------------------------------------------------- */
.contact-map-section {
    padding: var(--space-xl) 0;
}

.contact-map {
    width: 100%;
    height: 400px;
    background: var(--black-light);
    border: 3px solid var(--gray-dark);
}

.contact-map__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--white-muted);
}

.contact-map__placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--accent);
}

.contact-map__placeholder span {
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-map__placeholder p {
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Contact FAQ
   -------------------------------------------------------------------------- */
.contact-faq {
    padding: var(--space-2xl) 0;
    background: var(--black-light);
}

.contact-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Contact Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-booking {
        order: -1;
    }

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

@media (max-width: 768px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrapper {
        padding: var(--space-lg);
    }
}

@media (max-width: 640px) {
    .contact-info-card {
        flex-wrap: wrap;
    }

    .contact-info-card__arrow {
        margin-left: auto;
    }
}

/* --------------------------------------------------------------------------
   Light Theme - Contact Page
   -------------------------------------------------------------------------- */
[data-theme="light"] .contact-info-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="light"] .contact-info-card:hover {
    border-color: var(--accent);
}

[data-theme="light"] .contact-info-card__arrow {
    background: var(--bg);
}

[data-theme="light"] .contact-form-wrapper {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="light"] .contact-form__input,
[data-theme="light"] .contact-form__select,
[data-theme="light"] .contact-form__textarea {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
}

[data-theme="light"] .contact-form__checkmark {
    background: var(--bg);
    border-color: var(--border);
}

[data-theme="light"] .contact-booking__card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg) 100%);
}

[data-theme="light"] .contact-social {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="light"] .contact-social__link {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
}

[data-theme="light"] .contact-map {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="light"] .contact-faq {
    background: var(--bg-secondary);
}

/* ==========================================================================
   SCROLL REVEAL & MODERN ANIMATIONS
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1.visible {
    transition-delay: 0.15s;
}

.reveal-delay-2.visible {
    transition-delay: 0.3s;
}

.reveal-delay-3.visible {
    transition-delay: 0.45s;
}

.stagger-children>* {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible>* {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.6s;
}

.stagger-children.visible>*:nth-child(7) {
    transition-delay: 0.7s;
}

/* Image hover zoom for modern feel */
.about__image-wrapper,
.hero__image-container,
.blog-card__image {
    overflow: hidden;
}

.about__image-wrapper img,
.hero__image,
.blog-card__image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.about__image-wrapper:hover img,
.hero__image-container:hover .hero__image,
.blog-card:hover .blog-card__image img {
    transform: scale(1.08);
}