/* =====================================================
   Vezirköprü Taksi - style.css
   Modern Light Theme - Mobile-First Premium Design
   ===================================================== */

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
    /* Primary Palette - Warm Gold */
    --primary: #F59E0B;
    --primary-dark: #D97706;
    --primary-light: #FCD34D;
    --primary-50: #FFFBEB;
    --primary-100: #FEF3C7;
    --primary-200: #FDE68A;

    /* Neutral Palette - Warm Grays */
    --white: #FFFFFF;
    --gray-50: #FAFAF9;
    --gray-100: #F5F5F4;
    --gray-200: #E7E5E4;
    --gray-300: #D6D3D1;
    --gray-400: #A8A29E;
    --gray-500: #78716C;
    --gray-600: #57534E;
    --gray-700: #44403C;
    --gray-800: #292524;
    --gray-900: #1C1917;

    /* Accent Colors */
    --call-red: #DC2626;
    --call-red-dark: #B91C1C;
    --call-red-light: #FEE2E2;
    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE5A;
    --whatsapp-light: #DCFCE7;
    --blue: #2563EB;
    --blue-light: #DBEAFE;
    --teal: #0D9488;
    --teal-light: #CCFBF1;
    --purple: #7C3AED;
    --purple-light: #EDE9FE;
    --rose: #E11D48;
    --rose-light: #FFE4E6;

    /* Background */
    --bg-body: #FAFAF9;
    --bg-section-alt: #F5F5F4;
    --bg-card: #FFFFFF;
    --bg-hero: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 30%, #FFFFFF 70%);

    /* Text */
    --text-primary: #1C1917;
    --text-secondary: #57534E;
    --text-muted: #78716C;
    --text-light: #A8A29E;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.75rem;
    --font-size-5xl: 3.5rem;

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

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 4px 14px rgba(245, 158, 11, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --header-height: 72px;
    --sticky-bar-height: 68px;
}

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

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

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

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

/* ========== SECTION STYLES ========== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    background: var(--primary-100);
    color: var(--primary-dark);
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.section-desc {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== HEADER / NAVBAR ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Premium Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 14px rgba(245, 158, 11, 0.22));
}

.logo-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, #E6A800 100%);
    border-radius: 12px;
    color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.logo:hover .logo-icon-box {
    box-shadow: 0 6px 16px rgba(255, 204, 0, 0.5);
    transform: scale(1.05);
}

.logo-icon-box svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-dark);
    background: var(--primary-50);
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--call-red);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--call-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
}

/* Modern Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    transition: all var(--transition-base);
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger:focus {
    outline: none;
}

.hamburger:hover {
    background: rgba(245, 166, 35, 0.1);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger span:nth-child(1) {
    transform-origin: top left;
    margin-bottom: 5px;
}

.hamburger span:nth-child(2) {
    transform-origin: center;
    margin-bottom: 5px;
}

.hamburger span:nth-child(3) {
    transform-origin: bottom left;
}

/* Hamburger Active State (X) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, -2px);
    width: 28px;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 1px);
    width: 28px;
}

/* Overlay for Mobile Menu */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
    overflow: hidden;
    background: var(--bg-hero);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245, 158, 11, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-body), transparent);
    pointer-events: none;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--white);
    aspect-ratio: 4/3;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all var(--transition-fast);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.slider-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--shadow-lg);
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.slider-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Hero Content (Right Side) */
.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-dark);
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--primary-200);
    box-shadow: var(--shadow-sm);
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: var(--shadow-sm), 0 0 0 0 rgba(245, 158, 11, 0.15);
    }

    50% {
        box-shadow: var(--shadow-sm), 0 0 0 12px rgba(245, 158, 11, 0);
    }
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 0 var(--space-xl);
    line-height: 1.75;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: var(--font-size-lg);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-call {
    background: var(--call-red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.btn-call:hover {
    background: var(--call-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: var(--space-sm);
    flex-wrap: nowrap;
}

.stat-item {
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    flex: 1;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.stat-number {
    font-size: var(--font-size-xl);
    font-weight: 900;
    color: var(--primary-dark);
    display: inline;
}

.stat-plus,
.stat-slash,
.stat-number-static {
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: var(--primary-dark);
}

.stat-label {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
    color: var(--text-light);
    z-index: 3;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========== ABOUT / HAKKIMIZDA SECTION ========== */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-content .section-title {
    color: var(--text-primary);
}

.about-text {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.about-highlight-item:hover {
    border-color: var(--primary-200);
    background: var(--primary-50);
}

.about-highlight-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
}

.about-highlight-text h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.about-highlight-text p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: 1.5;
}

/* About Visual */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.about-stat-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.about-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.about-stat-card:hover .about-card-image img {
    transform: scale(1.05);
}

.about-card-body {
    padding: var(--space-xl);
}

.about-stat-card .big-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.about-stat-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.about-stat-card p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.about-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.about-mini-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.about-mini-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-200);
}

.about-mini-card .mini-icon {
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
}

.about-mini-card h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.about-mini-card p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: var(--space-4xl) 0;
    background: var(--bg-section-alt);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.service-icon.icon-gold {
    background: var(--primary-100);
    color: var(--primary-dark);
}

.service-icon.icon-red {
    background: var(--rose-light);
    color: var(--rose);
}

.service-icon.icon-blue {
    background: var(--blue-light);
    color: var(--blue);
}

.service-icon.icon-green {
    background: var(--teal-light);
    color: var(--teal);
}

.service-icon.icon-purple {
    background: var(--purple-light);
    color: var(--purple);
}

.service-icon.icon-whatsapp {
    background: var(--whatsapp-light);
    color: var(--whatsapp);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.service-desc {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    margin-top: auto;
}

.service-btn svg {
    transition: transform var(--transition-base);
}

.service-card:hover .service-btn {
    color: var(--call-red);
}

.service-card:hover .service-btn svg {
    transform: translateX(6px);
}

/* ========== WHY US SECTION ========== */
.why-us {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.feature-item {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-md);
    background: var(--primary-100);
    color: var(--primary-dark);
}

.feature-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.feature-item p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== KALYON SECTION ========== */
.kalyon-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-section-alt);
    position: relative;
}

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

.kalyon-content .section-tag,
.kalyon-content .section-title {
    text-align: left;
}

.kalyon-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-size: var(--font-size-base);
}

.kalyon-steps {
    margin-bottom: var(--space-xl);
}

.kalyon-step {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 800;
    font-size: var(--font-size-lg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.step-content h3 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.step-content p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Kalyon Card */
.kalyon-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.kalyon-card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.kalyon-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
}

.kalyon-info-list {
    text-align: left;
}

.kalyon-info-list li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.kalyon-info-list li:last-child {
    border-bottom: none;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: var(--white);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary-200);
}

.faq-item.open {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-weight: 600;
    font-size: var(--font-size-base);
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform var(--transition-base);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-section-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-200);
    box-shadow: var(--shadow-card-hover);
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-md);
    background: var(--call-red-light);
    color: var(--call-red);
}

.contact-icon.icon-wa {
    background: var(--whatsapp-light);
    color: var(--whatsapp);
}

.contact-icon.icon-address {
    background: var(--primary-100);
    color: var(--primary-dark);
}

.contact-icon.icon-hours {
    background: var(--blue-light);
    color: var(--blue);
}

.contact-card h3 {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.contact-card a,
.contact-card p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: var(--space-2xl) 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-brand .logo-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.footer-brand .logo-icon-box svg {
    width: 20px;
    height: 20px;
}

.footer-name {
    font-size: var(--font-size-base);
    color: var(--primary-dark);
}

.footer-address {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

.footer-copy {
    font-size: var(--font-size-xs);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .footer {
        padding-bottom: calc(var(--sticky-bar-height) + var(--space-xl));
    }
}

/* ========== STICKY BOTTOM BAR ========== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    height: var(--sticky-bar-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--gray-200);
    padding: 8px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: var(--font-size-base);
    color: var(--white);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.sticky-btn-call {
    background: var(--call-red);
}

.sticky-btn-call:active {
    background: var(--call-red-dark);
    transform: scale(0.97);
}

.sticky-btn-wa {
    background: var(--whatsapp);
}

.sticky-btn-wa:active {
    background: var(--whatsapp-dark);
    transform: scale(0.97);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.services-grid .reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.services-grid .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .reveal:nth-child(3) {
    transition-delay: 0.15s;
}

.services-grid .reveal:nth-child(4) {
    transition-delay: 0.2s;
}

.services-grid .reveal:nth-child(5) {
    transition-delay: 0.25s;
}

.services-grid .reveal:nth-child(6) {
    transition-delay: 0.3s;
}

.features-grid .reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.features-grid .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.features-grid .reveal:nth-child(3) {
    transition-delay: 0.15s;
}

.features-grid .reveal:nth-child(4) {
    transition-delay: 0.2s;
}

.features-grid .reveal:nth-child(5) {
    transition-delay: 0.25s;
}

.features-grid .reveal:nth-child(6) {
    transition-delay: 0.3s;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-slider {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

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

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

    .kalyon-content .section-tag,
    .kalyon-content .section-title {
        text-align: center;
    }

    .kalyon-content p {
        text-align: center;
    }

    .kalyon-content .btn {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

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

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-content .about-text {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

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

    .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }

    /* Modern Premium Mobile Menu */
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 85%;
        max-width: 360px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 90px 24px 40px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.4s;
        z-index: 1000;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.5);
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 150px;
        background: linear-gradient(to top, var(--primary-50), transparent);
        pointer-events: none;
        z-index: -1;
    }

    .nav-link {
        font-size: 1.1rem;
        font-weight: 700;
        padding: 16px 20px;
        color: var(--primary-dark);
        width: 100%;
        border-radius: 14px;
        margin-bottom: 8px;
        letter-spacing: 0.2px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        background: transparent;
        transform: translateX(20px);
        opacity: 0;
    }

    .nav.open .nav-link {
        transform: translateX(0);
        opacity: 1;
    }

    .nav.open .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav.open .nav-link:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav.open .nav-link:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav.open .nav-link:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav.open .nav-link:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav.open .nav-link:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-dark);
        background: var(--primary);
        box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
        padding-left: 24px;
    }

    /* Change hamburger color to primary dark when open since background is white */
    .hamburger.active span {
        background: var(--call-red);
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height)) 0 var(--space-md);
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        padding: 0;
    }

    .hero-slider {
        order: -1;
        width: 100%;
        aspect-ratio: auto;
        min-height: 240px;
        height: 260px;
        border-radius: 0;
        border: none;
        box-shadow: none;
        position: relative;
    }

    .hero-slider::before,
    .hero-slider::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        z-index: 3;
        pointer-events: none;
    }

    .hero-slider::before {
        left: 0;
        background: linear-gradient(to right, var(--primary-50), transparent);
    }

    .hero-slider::after {
        right: 0;
        background: linear-gradient(to left, var(--primary-50), transparent);
    }

    .hero-slider .slider-slide img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

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

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

    .slider-prev {
        left: 8px;
    }

    .slider-next {
        right: 8px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-sm);
    }

    .hero-badge {
        margin-bottom: var(--space-md);
        font-size: var(--font-size-xs);
        padding: 6px 14px;
    }

    .hero-desc {
        margin: 0 auto var(--space-sm);
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }

    /* Mobilde hero butonlar ve istatistikler gizle (sticky bar mevcut) */
    .hero-buttons,
    .hero-stats {
        display: none !important;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: var(--font-size-base);
        padding: 14px 24px;
    }

    .scroll-indicator {
        display: none;
    }

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

    .about-highlights {
        grid-template-columns: 1fr;
    }

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

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

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

    .service-card {
        padding: var(--space-lg);
    }

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

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

    .feature-item {
        padding: var(--space-lg) var(--space-md);
    }

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

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

    .faq-question {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--font-size-sm);
    }

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

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

    .contact-card {
        padding: var(--space-lg);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .section-desc {
        font-size: var(--font-size-base);
    }

    .sticky-bottom-bar {
        display: flex;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

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

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

    .footer-links {
        gap: var(--space-md);
    }
}

/* ========== SERVICE PAGES (SEO) STYLES ========== */
.sp-breadcrumb {
    padding: calc(var(--header-height) + var(--space-md)) 0 var(--space-md) 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.sp-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.sp-breadcrumb a {
    color: var(--primary-dark);
    font-weight: 500;
}

.sp-hero {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-50) 100%);
    position: relative;
    overflow: hidden;
}

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

.sp-hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
    letter-spacing: -1px;
}

.sp-hero-title .hero-highlight {
    color: var(--call-red);
}

.sp-hero-desc {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.sp-hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.sp-stat {
    display: flex;
    flex-direction: column;
}

.sp-stat-num {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.sp-stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.sp-hero-buttons {
    display: flex;
    gap: var(--space-md);
}

.sp-hero-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.sp-hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.sp-areas {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.sp-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

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

.sp-area-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.sp-area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.sp-area-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.sp-area-card h3 {
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.sp-area-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.sp-features {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.sp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
}

.sp-feature {
    text-align: center;
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.sp-feature:hover {
    background: var(--primary-50);
    transform: translateY(-3px);
}

.sp-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}

.sp-feature h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
    color: var(--primary-dark);
}

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

.sp-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.sp-step-num {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--primary-dark);
    font-size: var(--font-size-2xl);
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-md);
}

.sp-step h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
    color: var(--primary-dark);
}

.sp-content {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.sp-content-block {
    max-width: 800px;
    margin: 0 auto;
}

.sp-content-block h2 {
    font-size: var(--font-size-3xl);
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
}

.sp-content-block h3 {
    font-size: var(--font-size-xl);
    color: var(--primary-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.sp-content-block p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.sp-content-block strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.sp-content-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.sp-content-item {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.sp-content-item h3 {
    margin-top: 0;
    font-size: var(--font-size-lg);
}

.sp-cta {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.sp-cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.sp-cta-card h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.sp-cta-card p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.sp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.sp-related {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.sp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.sp-related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.sp-related-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.sp-related-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.sp-related-card h3 {
    color: var(--primary-dark);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
}

.sp-related-card p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

@media (max-width: 992px) {
    .sp-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sp-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .sp-hero-visual {
        order: -1;
    }

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

    .sp-content-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sp-hero {
        padding: var(--space-xl) 0;
    }

    .sp-hero-title {
        font-size: var(--font-size-3xl);
    }

    .sp-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }

    .sp-stat-num {
        font-size: var(--font-size-xl);
    }

    .sp-areas-grid-3 {
        grid-template-columns: 1fr;
    }

    .sp-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .sp-hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .sp-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .sp-cta-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .sp-cta-card h2 {
        font-size: var(--font-size-2xl);
    }
}

/* ========== ADMIN PANEL STYLES ========== */
.admin-body {
    background: var(--gray-50);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.admin-container {
    width: 100%;
    max-width: 560px;
}

.admin-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.admin-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.admin-header .logo-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-md);
}

.admin-header h1 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.admin-header p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

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

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-hint {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-top: 4px;
}

.btn-admin {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 700;
    font-size: var(--font-size-base);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-admin:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

.btn-logout {
    display: block;
    text-align: center;
    margin-top: var(--space-lg);
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.btn-logout:hover {
    color: var(--call-red);
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.login-form {
    margin-top: var(--space-xl);
}

.admin-nav {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.admin-nav a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.admin-nav a:hover {
    color: var(--primary-dark);
    border-color: var(--primary-200);
    background: var(--primary-50);
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

::selection {
    background: rgba(245, 158, 11, 0.2);
    color: var(--text-primary);
}