/* ========================================
   RentGo - Premium Rent A Car
   Modern & Dynamic Design
   ======================================== */

:root {
    --primary: #c41e3a;
    --primary-dark: #a01830;
    --secondary: #8b0000;
    --accent: #ff4d4d;
    --burgundy: #800020;
    --crimson: #dc143c;
    --dark: #1a1212;
    --darker: #0d0909;
    --text: #4a4545;
    --text-light: #6b6363;
    --text-dark: #2d2828;
    --border: #e8e2e2;
    --bg: #faf8f8;
    --white: #ffffff;
    --success: #48bb78;
    --warning: #f6ad55;
    --gradient: linear-gradient(135deg, #c41e3a 0%, #800020 100%);
    --gradient-animated: linear-gradient(90deg, #c41e3a, #800020, #dc143c, #c41e3a);
    --gradient-dark: linear-gradient(135deg, #0d0909 0%, #1a1212 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --radius: 0;
    --radius-lg: 0;
    --radius-xl: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    padding: 12px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
}

.logo-icon {
    width: 44px;
    height: 44px;
}

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

.header.scrolled .logo {
    color: var(--dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 0;
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.header.scrolled .nav-link {
    color: var(--text);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.phone-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.phone-icon svg {
    width: 20px;
    height: 20px;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-text span {
    font-size: 12px;
    opacity: 0.8;
}

.phone-text strong {
    font-size: 15px;
    font-weight: 600;
}

.header.scrolled .header-phone {
    color: var(--dark);
}

.header.scrolled .phone-icon {
    background: var(--bg);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
}

.header.scrolled .mobile-toggle {
    color: var(--dark);
}

/* Header Solid - for sub-pages with light backgrounds */
.header.header-solid {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    padding: 12px 0;
}

.header.header-solid .logo {
    color: var(--dark);
}

.header.header-solid .nav-link {
    color: var(--text);
}

.header.header-solid .nav-link:hover,
.header.header-solid .nav-link.active {
    color: var(--primary);
}

.header.header-solid .header-phone {
    color: var(--dark);
}

.header.header-solid .phone-icon {
    background: var(--bg);
}

.header.header-solid .mobile-toggle {
    color: var(--dark);
}

/* ========================================
   Hero Section - Dynamic & Alive
   ======================================== */
.hero {
    background: var(--darker);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(196, 30, 58, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(128, 0, 32, 0.15) 0%, transparent 50%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-shape-1 {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.12) 0%, transparent 60%);
    border-radius: 0;
}

.hero-shape-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.1) 0%, transparent 60%);
    border-radius: 0;
}

/* Subtle Grid Background */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 140px;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 40px;
    position: relative;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.hero-title-highlight {
    display: block;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #c41e3a, #dc143c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content > p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.hero-stat:hover .stat-icon {
    background: rgba(255,255,255,0.12);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.stat-info strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.stat-info span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.car-showcase {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-glow {
    display: none;
}

.hero-car, .hero-car-svg {
    position: relative;
    z-index: 2;
    max-width: 620px;
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    animation: carFloat 4s ease-in-out infinite;
}

.car-shadow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.35) 0%, transparent 70%);
    z-index: 1;
}

@keyframes carFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-rotate {
    opacity: 0;
    transform: perspective(500px) rotateX(30deg) translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-rotate.active {
    opacity: 1;
    transform: perspective(500px) rotateX(0) translateY(0);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Parallax Elements */
.parallax-slow {
    will-change: transform;
}

.parallax-medium {
    will-change: transform;
}

.parallax-fast {
    will-change: transform;
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-reveal.active span {
    transform: translateY(0);
}

/* Magnetic Hover Effect for Buttons */
.magnetic-btn {
    transition: transform 0.3s ease;
}

/* Progress Line Animation */
.progress-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
}

/* Hero Form Section */
.hero-form-section {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.form-container {
    background: var(--white);
    border-radius: 0;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    color: var(--text-light);
}

.form-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
}

.form-field label svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.form-field select,
.form-field input {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-field select:focus,
.form-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--gradient);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
    white-space: nowrap;
    height: 56px;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.5);
}

.btn-search svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Features Bar
   ======================================== */
.features-bar {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(128, 0, 32, 0.1) 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.feature-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.feature-text span {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   Cars Section
   ======================================== */
.section-cars {
    padding: 100px 0;
    background: var(--bg);
}

.car-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 0;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.car-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.car-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    transform: translateY(-6px);
}

.car-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--gradient);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 0;
    z-index: 5;
}

.car-badge.hot {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}

.car-image {
    height: 220px;
    overflow: hidden;
}

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

.car-card:hover .car-image img {
    transform: scale(1.03);
}

.car-content {
    padding: 24px;
}

.car-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.car-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.car-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.car-specs span svg {
    color: var(--text-muted);
}

.car-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.car-price .price {
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.car-price .period {
    font-size: 14px;
    color: var(--text-light);
}

.btn-rent {
    padding: 12px 24px;
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-rent:hover {
    background: var(--gradient);
}

.section-action {
    text-align: center;
    margin-top: 50px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
}

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

/* ========================================
   Services Section
   ======================================== */
.section-services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 24px;
    background: linear-gradient(135deg, rgba(196,30,58,0.08) 0%, rgba(128,0,32,0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 3px solid var(--primary);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.section-cta {
    padding: 100px 0;
    background: var(--bg);
}

.cta-box {
    background: var(--gradient-dark);
    border-radius: 0;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(128, 0, 32, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--white);
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ========================================
   Testimonials Section
   ======================================== */
.section-testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg);
    border-radius: 0;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card.featured {
    background: var(--gradient);
    transform: scale(1.05);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: #f6ad55;
}

.testimonial-card.featured .testimonial-rating svg {
    color: #fbd38d;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-card.featured p {
    color: rgba(255,255,255,0.9);
}

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

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 0;
    object-fit: cover;
    border: 3px solid var(--white);
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-card.featured .testimonial-author strong {
    color: var(--white);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-card.featured .testimonial-author span {
    color: rgba(255,255,255,0.7);
}

/* ========================================
   Contact Section
   ======================================== */
.section-contact {
    padding: 100px 0;
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(128, 0, 32, 0.1) 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-card strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card span {
    font-size: 14px;
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    border-radius: 0;
    padding: 44px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 28px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 0;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: var(--gradient);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gradient-dark);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
}

.footer-contact p i {
    color: var(--primary);
    width: 18px;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   WhatsApp Button
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .hero-wrapper {
        gap: 30px;
    }

    .hero-title-line {
        font-size: 44px;
    }

    .hero-title-highlight {
        font-size: 48px;
    }

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

    .btn-search {
        grid-column: span 3;
    }

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

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-content > p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        height: 400px;
    }


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

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

    .testimonial-card.featured {
        transform: scale(1);
    }

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

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-phone .phone-text {
        display: none;
    }

    .btn-primary {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-title-line {
        font-size: 32px;
    }

    .hero-title-highlight {
        font-size: 36px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-visual {
        height: 280px;
    }

    .hero-car {
        max-width: 350px;
    }

    .form-container {
        padding: 28px;
    }

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

    .btn-search {
        grid-column: span 1;
    }

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

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

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

    .section-header h2 {
        font-size: 32px;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-brand .logo {
        justify-content: center;
    }
}

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

    .hero-title-line {
        font-size: 28px;
    }

    .hero-title-highlight {
        font-size: 32px;
    }

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

    .contact-form {
        padding: 28px;
    }

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

/* Mobile Nav */
.nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow);
    border-radius: 0;
}

.nav.active .nav-link {
    color: var(--text);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.nav.active .nav-link:hover {
    color: var(--primary);
}

/* ========================================
   Page Header (Subpages)
   ======================================== */
.page-header {
    background: var(--gradient-dark);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(196, 30, 58, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(128, 0, 32, 0.2) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: rgba(255,255,255,0.4);
}

.breadcrumb span:last-child {
    color: var(--accent);
}

/* ========================================
   Filters Section
   ======================================== */
.filters-section {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.filters-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.filter-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.btn-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    white-space: nowrap;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.btn-filter svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Cars Page Section
   ======================================== */
.section-cars-page {
    padding: 60px 0 100px;
    background: var(--bg);
}

.section-cars-page .cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Car Features Tags */
.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.car-features span {
    padding: 6px 12px;
    background: rgba(196, 30, 58, 0.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 0;
}

/* ========================================
   Services Page
   ======================================== */
.section-services-page {
    padding: 80px 0;
    background: var(--white);
}

.services-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

@media (max-width: 1024px) {
    .services-page-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }
}

.service-page-card {
    display: flex;
    gap: 24px;
    padding: 36px;
    background: var(--bg);
    border-radius: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.service-page-card:hover {
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.service-page-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-page-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.service-page-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-page-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   About Page
   ======================================== */
.section-about {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 0;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 4px solid var(--primary);
    border-radius: 0;
    z-index: -1;
    opacity: 0.3;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature span {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

/* Stats Section */
.section-stats {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-item .number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #c41e3a, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}

/* Team Section */
.section-team {
    padding: 80px 0;
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
}

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

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card-content {
    padding: 24px;
}

.team-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 14px;
    color: var(--primary);
}

/* ========================================
   Contact Page
   ======================================== */
.section-contact-page {
    padding: 80px 0;
    background: var(--white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

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

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--bg);
    border-radius: 0;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.contact-info-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-info-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--primary);
    font-weight: 500;
}

/* Map Section */
.section-map {
    height: 450px;
    background: var(--bg);
}

.section-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   Responsive for Subpages
   ======================================== */
@media (max-width: 1024px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }

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

    .about-image {
        order: -1;
    }

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

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

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

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .filters-wrapper {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

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

    .section-cars-page .cars-grid {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

/* ========================================
   PROFESSIONAL FOOTER REDESIGN
   ======================================== */

.footer {
    background: linear-gradient(180deg, #0d0909 0%, #090505 100%);
    padding: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Grid Override */
.footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 48px;
    padding: 72px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .footer-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer .footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 300px;
}

.footer .footer-links h4,
.footer .footer-contact h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.footer .footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer .footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--primary);
    vertical-align: middle;
    margin-right: 0;
    transition: all 0.3s ease;
}

.footer .footer-links a:hover {
    color: var(--white);
    padding-left: 14px;
}

.footer .footer-links a:hover::before {
    width: 8px;
    margin-right: 6px;
}

/* Footer Newsletter */
.footer-newsletter {
    background: var(--primary);
    padding: 40px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.newsletter-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

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

.newsletter-form input[type="email"] {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 14px;
    width: 300px;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-newsletter {
    padding: 14px 28px;
    background: var(--darker);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: var(--white);
    color: var(--darker);
}

/* Footer Contact Items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

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

/* Footer Bottom */
.footer .footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: none;
}

.footer .footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

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

.footer-credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--white);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 56px 0 40px;
    }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-form input[type="email"] {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 0 32px;
    }

    .footer .footer-brand .logo {
        margin-bottom: 16px;
    }

    .footer-social {
        margin-top: 20px;
    }

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

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

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .footer-newsletter {
        padding: 30px 0;
    }
}

/* ========================================
   ABOUT PAGE - Hakkimizda
   ======================================== */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding: 140px 0 100px;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(196, 30, 58, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(128, 0, 32, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 700px;
}

.about-hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(196, 30, 58, 0.15);
    border-left: 3px solid var(--primary);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.about-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.about-hero-content h1 span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 560px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-indicator span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary);
    animation: mouse-scroll 1.8s ease-in-out infinite;
}

@keyframes mouse-scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-header {
    text-align: center;
    margin-bottom: 64px;
}

.story-header h2 {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.story-header h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
}

.timeline-item:not(:last-child) {
    border-bottom: none;
}

.timeline-dot {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-dot span {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.timeline-item:hover .timeline-dot {
    background: var(--primary);
}

.timeline-item:hover .timeline-dot span {
    color: var(--white);
}

.timeline-content {
    flex: 1;
    padding-top: 4px;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--bg);
}

.values-header {
    text-align: center;
    margin-bottom: 56px;
}

.values-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.values-header p {
    font-size: 17px;
    color: var(--text-light);
}

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

.value-card {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

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

.value-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(196, 30, 58, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.value-card:hover .value-card-icon {
    background: var(--gradient);
}

.value-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.value-card:hover .value-card-icon svg {
    color: var(--white);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Counter Section */
.counter-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(196, 30, 58, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 80% 50%, rgba(128, 0, 32, 0.1) 0%, transparent 50%);
}

.counter-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.counter-number {
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Difference Section */
.difference-section {
    padding: 100px 0;
    background: var(--white);
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.difference-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.difference-content > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
}

.difference-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.difference-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(196, 30, 58, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.difference-item-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.difference-item-text h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.difference-item-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Difference Visual */
.difference-visual {
    position: relative;
}

.difference-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.difference-graphic {
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, var(--bg) 0%, #f0eded 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.diff-graphic-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(196,30,58,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(128,0,32,0.04) 0%, transparent 50%);
}

.diff-stat-cards {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 40px;
    width: 100%;
    max-width: 380px;
}

.diff-stat-card {
    padding: 28px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.diff-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.diff-stat-card.accent {
    background: var(--primary);
    border-color: var(--primary);
}

.diff-stat-card.accent .diff-stat-num,
.diff-stat-card.accent .diff-stat-label {
    color: var(--white);
}

.diff-stat-card.dark {
    background: var(--dark);
    border-color: var(--dark);
}

.diff-stat-card.dark .diff-stat-num,
.diff-stat-card.dark .diff-stat-label {
    color: var(--white);
}

.diff-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.diff-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.floating-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-badge-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.floating-badge-text {
    display: flex;
    flex-direction: column;
}

.floating-badge-text strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.floating-badge-text span {
    font-size: 12px;
    color: var(--text-light);
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 42px;
    }

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

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

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .difference-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding: 120px 0 80px;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .story-header h3 {
        font-size: 30px;
    }

    .timeline::before {
        left: 24px;
    }

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

    .values-header h2 {
        font-size: 30px;
    }

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

    .counter-number {
        font-size: 40px;
    }

    .difference-content h2 {
        font-size: 28px;
    }

    .difference-visual img {
        height: 350px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 28px;
    }

    .counter-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .counter-number {
        font-size: 36px;
    }
}

/* ========================================
   CONTACT PAGE - Iletisim
   ======================================== */

/* Contact Page */
.contact-page {
    position: relative;
    padding: 140px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    pointer-events: none;
}

.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--burgundy);
    bottom: -100px;
    left: -100px;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* CTA Side */
.contact-cta {
    padding-top: 20px;
}

.cta-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cta-label span {
    width: 32px;
    height: 2px;
    background: var(--primary);
}

.cta-label p {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-title .highlight {
    background: linear-gradient(90deg, var(--primary), var(--crimson));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 440px;
}

/* Big Phone */
.big-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: var(--bg);
    border-left: 3px solid var(--primary);
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.big-phone:hover {
    background: rgba(196, 30, 58, 0.06);
}

.big-phone-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.big-phone-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.big-phone-text {
    display: flex;
    flex-direction: column;
}

.big-phone-text span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.big-phone-text a {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.big-phone-text a:hover {
    color: var(--primary);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 12px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.quick-action:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(196, 30, 58, 0.04);
}

.quick-action.whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
    background: rgba(37, 211, 102, 0.04);
}

.quick-action-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action-icon svg {
    width: 18px;
    height: 18px;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.form-card-header {
    padding: 32px 36px;
    border-bottom: 1px solid var(--border);
}

.form-card-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.form-card-header p {
    font-size: 14px;
    color: var(--text-light);
}

/* Compact Form */
.compact-form {
    padding: 32px 36px;
}

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

.compact-form .form-field {
    margin-bottom: 16px;
}

.compact-form .form-row .form-field {
    margin-bottom: 0;
}

.compact-form .form-field input,
.compact-form .form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    background: var(--bg);
    transition: all 0.3s ease;
}

.compact-form .form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.compact-form .form-field input:focus,
.compact-form .form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.08);
}

.compact-form .form-field input::placeholder,
.compact-form .form-field textarea::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

/* Subject Chips */
.subject-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.subject-chip {
    padding: 8px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.subject-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.subject-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Submit Button (contact page override) */
.compact-form .btn-submit,
.contact-form-card .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    width: 100%;
    justify-content: center;
}

.compact-form .btn-submit:hover,
.contact-form-card .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.compact-form .btn-submit svg,
.contact-form-card .btn-submit svg {
    width: 18px;
    height: 18px;
}

/* Info Strip */
.info-strip {
    padding: 48px 0;
    background: var(--dark);
}

.info-strip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(196, 30, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.info-item-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.info-item-text p {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
}

.info-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Map Full */
.map-full {
    position: relative;
    height: 450px;
    background: var(--bg);
}

.map-full iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

.map-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.map-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.map-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-badge-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.map-badge-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.map-badge-text p {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg);
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 17px;
    color: var(--text-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(196, 30, 58, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 120px 0 60px;
    }

    .cta-title {
        font-size: 30px;
    }

    .quick-actions {
        flex-direction: column;
    }

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

    .compact-form {
        padding: 24px;
    }

    .form-card-header {
        padding: 24px;
    }

    .info-strip-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-divider {
        width: 40px;
        height: 1px;
    }

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

    .map-full {
        height: 350px;
    }

    .faq-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 26px;
    }

    .big-phone-text a {
        font-size: 18px;
    }

    .subject-chips {
        gap: 6px;
    }

    .subject-chip {
        padding: 6px 14px;
        font-size: 12px;
    }
}

/* ========================================
   LEGAL PAGES (Gizlilik, Kullanim Sartlari)
   ======================================== */

.legal-page {
    padding: 140px 0 80px;
    background: var(--white);
}

.legal-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.legal-header p {
    font-size: 14px;
    color: var(--text-light);
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 36px 0 16px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.legal-content p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 12px 0 20px 20px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content strong {
    color: var(--dark);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }

    .legal-header h1 {
        font-size: 28px;
    }
}

/* ========================================
   RESERVATION SECTION (Contact Page)
   ======================================== */

.reservation-section {
    padding: 80px 0;
    background: var(--bg);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.reservation-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.reservation-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.reservation-info > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.reservation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.reservation-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.reservation-feature svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.reservation-form-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.reservation-form-card .form-field {
    margin-bottom: 16px;
}

.reservation-form-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.reservation-form-card input,
.reservation-form-card select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 14px;
    color: var(--text);
    transition: border-color 0.3s ease;
}

.reservation-form-card input:focus,
.reservation-form-card select:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-reserve-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--gradient);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-reserve-full:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-reserve-full svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .reservation-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .reservation-section {
        padding: 60px 0;
    }

    .reservation-info h2 {
        font-size: 26px;
    }

    .reservation-form-card {
        padding: 24px;
    }

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

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

/* ========================================
   VEHICLE DETAIL PAGE - Arac Detay
   ======================================== */

/* Vehicle Hero - Full Width Split */
.vehicle-hero-full {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

/* Image Area */
.vehicle-image-area {
    position: relative;
    background: var(--darker);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-number {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 100px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-tags {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.image-tag {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.image-tag.highlight {
    background: var(--primary);
}

/* Info Panel */
.vehicle-info-panel {
    padding: 60px 48px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.info-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.info-breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.info-breadcrumb a:hover {
    color: var(--primary);
}

.info-breadcrumb span {
    color: var(--border);
}

.info-breadcrumb span:last-child {
    color: var(--text);
    font-weight: 500;
}

.vehicle-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(196, 30, 58, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.vehicle-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 8px;
}

.vehicle-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Price Block */
.price-block {
    padding: 28px;
    background: var(--bg);
    border-left: 4px solid var(--primary);
    margin-bottom: 32px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.price-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

.price-feature svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* Specs List */
.specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(196, 30, 58, 0.2);
}

.spec-icon {
    width: 36px;
    height: 36px;
    background: rgba(196, 30, 58, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.spec-text span {
    font-size: 11px;
    color: var(--text-light);
}

/* Action Buttons */
.action-group {
    display: flex;
    gap: 12px;
}

.btn-reserve {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--gradient);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.btn-reserve svg {
    width: 20px;
    height: 20px;
}

.btn-call {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    color: var(--dark);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-call:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(196, 30, 58, 0.04);
}

.btn-call svg {
    width: 22px;
    height: 22px;
}

/* Features Section - Bento Grid */
.features-section {
    padding: 100px 0;
    background: var(--bg);
}

.features-section .features-header {
    margin-bottom: 48px;
}

.features-section .features-header span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.features-section .features-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
}

.features-bento {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.feature-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-card:hover {
    border-color: rgba(196, 30, 58, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.feature-card.dark {
    background: var(--dark);
    border-color: var(--dark);
}

.feature-card.dark h3 {
    color: var(--white);
}

.feature-card.dark p {
    color: rgba(255, 255, 255, 0.6);
}

.feature-card.dark .feature-number {
    color: rgba(255, 255, 255, 0.06);
}

.feature-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    pointer-events: none;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Bento Grid Spans */
.span-4 { width: calc(33.333% - 11px); }
.span-5 { width: calc(41.666% - 11px); }
.span-6 { width: calc(50% - 8px); }
.span-7 { width: calc(58.333% - 11px); }
.span-8 { width: calc(66.666% - 11px); }

/* Similar Section */
.similar-section {
    padding: 80px 0;
    background: var(--white);
}

.similar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.similar-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
}

.similar-header a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.3s ease;
}

.similar-header a:hover {
    gap: 12px;
}

.similar-header a svg {
    width: 18px;
    height: 18px;
}

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

/* Vehicle Detail Responsive */
@media (max-width: 1200px) {
    .vehicle-info-panel {
        padding: 48px 36px;
    }

    .vehicle-title {
        font-size: 30px;
    }

    .price-value {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .vehicle-hero-full {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .vehicle-image-area {
        height: 400px;
    }

    .vehicle-info-panel {
        padding: 40px 32px;
    }

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

    .features-bento {
        flex-direction: column;
    }

    .span-4, .span-5, .span-6, .span-7, .span-8 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vehicle-hero-full {
        margin-top: 70px;
    }

    .vehicle-image-area {
        height: 300px;
    }

    .vehicle-info-panel {
        padding: 32px 20px;
    }

    .vehicle-title {
        font-size: 26px;
    }

    .price-value {
        font-size: 26px;
    }

    .specs-list {
        grid-template-columns: 1fr;
    }

    .action-group {
        flex-direction: column;
    }

    .btn-call {
        width: 100%;
        height: 52px;
    }

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

    .similar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .similar-header h2 {
        font-size: 26px;
    }

    .features-section .features-header h2 {
        font-size: 28px;
    }

    .image-number {
        font-size: 60px;
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .vehicle-image-area {
        height: 250px;
    }

    .vehicle-title {
        font-size: 22px;
    }

    .price-block {
        padding: 20px;
    }

    .price-value {
        font-size: 22px;
    }

    .price-features {
        flex-direction: column;
        gap: 8px;
    }
}