/* =============================================
   CADDE PREMIUM CAR STYLING
   2026 Modern Premium UI
   Glassmorphism + Bold Typography + Micro-interactions
   ============================================= */

/* =============================================
   0. CUSTOM PROPERTIES
   ============================================= */
:root {
    --white: #ffffff;
    --black: #0a0a0a;
    --dark: #111111;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --fs-xs: clamp(0.7rem, 0.8vw, 0.8rem);
    --fs-sm: clamp(0.8rem, 0.9vw, 0.9rem);
    --fs-base: clamp(0.95rem, 1vw, 1.05rem);
    --fs-md: clamp(1.05rem, 1.15vw, 1.2rem);
    --fs-lg: clamp(1.15rem, 1.4vw, 1.4rem);
    --fs-xl: clamp(1.4rem, 2vw, 2rem);
    --fs-2xl: clamp(1.8rem, 2.8vw, 2.8rem);
    --fs-3xl: clamp(2.2rem, 3.5vw, 3.8rem);
    --fs-4xl: clamp(2.8rem, 5vw, 5.5rem);
    --fs-display: clamp(3.5rem, 8vw, 9rem);

    --header-h: 72px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.5s;
    --duration-slow: 0.8s;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease-out); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; border: none; outline: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--black); }

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

/* =============================================
   2. LAYOUT
   ============================================= */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--wide { max-width: 1520px; }
.container--narrow { max-width: 800px; }

.section {
    padding: clamp(5rem, 10vw, 10rem) 0;
    position: relative;
    overflow-x: hidden;
}

.section--dark {
    background: var(--black);
    color: var(--white);
}

.section--gray { background: var(--gray-50); }

/* Visibility helpers */
.desktop-only { display: flex !important; }
.mobile-only { display: none !important; }

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
}

/* =============================================
   3. TYPOGRAPHY
   ============================================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gray-400);
}

.section--dark .eyebrow { color: var(--gray-400); }
.section--dark .eyebrow::before { background: var(--gray-600); }

.heading-xl {
    font-size: var(--fs-4xl);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.heading-lg {
    font-size: var(--fs-3xl);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.heading-md {
    font-size: var(--fs-2xl);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.heading-sm {
    font-size: var(--fs-xl);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.text-body {
    font-size: var(--fs-md);
    line-height: 1.8;
    color: var(--gray-600);
}

.text-body--light { color: var(--gray-400); }

.text-sm {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: var(--gray-500);
}

.text-balance { text-wrap: balance; }
.text-center { text-align: center; }

/* =============================================
   4. BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn--outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--gray-300);
}

.btn--outline:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--black);
    border: 1.5px solid var(--white);
}

.btn--white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

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

.btn--ghost:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
}

.btn--lg { padding: 1.125rem 2.75rem; font-size: var(--fs-base); }
.btn--sm { padding: 0.75rem 1.75rem; font-size: var(--fs-xs); }

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-icon { transform: translateX(3px); }

/* Link style button */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
    transition: all 0.3s var(--ease-out);
}

.link-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.link-arrow:hover { gap: 0.75rem; }
.link-arrow:hover svg { transform: translateX(3px); }

.section--dark .link-arrow { color: var(--white); }

/* =============================================
   5. HEADER — Floating Bar
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    padding: 1rem 1.5rem;
    transition: all 0.4s var(--ease-out);
    pointer-events: none;
    overflow: visible;
}

.site-header.scrolled { padding: 0.6rem 1.5rem; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0.5rem 0 1.5rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-full);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease-out);
    pointer-events: auto;
}

.site-header.scrolled .header-inner {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.96);
}

.header-logo a { display: flex; align-items: center; }
.header-logo img, .header-logo svg { height: 28px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 0.5rem; }

.nav-list { display: flex; align-items: center; gap: 0; }

.nav-link {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--gray-700);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
    position: relative;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-link:hover { color: var(--black); background: var(--gray-100); }
.nav-link.active { color: var(--black); font-weight: 800; }

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.03);
    z-index: 100;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.625rem 1rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all 0.2s var(--ease-out);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dropdown-link:hover {
    background: var(--gray-100);
    color: var(--black);
}

/* Header right actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Header CTA */
.header-cta { margin-left: 0.5rem; }
.header-cta .btn { padding: 0.5rem 1.25rem; border-radius: var(--radius-full); font-size: var(--fs-xs); }

.header-social { display: flex; align-items: center; gap: 0.5rem; margin-left: 0.5rem; }
.header-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: var(--radius-full); border: 1px solid rgba(0,0,0,0.12); color: var(--black); transition: background 0.3s, border-color 0.3s, transform 0.2s; }
.header-social a:hover { background: var(--black); border-color: var(--black); color: var(--white); transform: translateY(-2px); }
.header-social svg { width: 16px; height: 16px; }

/* Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    border-radius: var(--radius-sm);
    transition: background 0.3s;
}

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

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--black);
    transition: all 0.4s var(--ease-out);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   6. HERO - 4 COLUMN SPLIT
   ============================================= */
.hero {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    overflow: hidden;
    margin-top: 0;
    position: relative;
}

.hero-column {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s var(--ease-out);
    display: flex;
    align-items: flex-end;
    padding: 3rem 1.5rem;
}

.hero-column::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
    z-index: 3;
}

.hero-column:last-child::after { display: none; }

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.6);
    transition: all 0.8s var(--ease-out);
    transform: scale(1.05);
}

/* Hero görselleri: varsayılan mobil (küçük dosya), masaüstü tam boy */
.hero-bg--detay { background-image: url('../img/hero-mobile/detay.jpg'); }
.hero-bg--alimsatim { background-image: url('../img/hero-mobile/alimsatim.jpg'); }
.hero-bg--rentacar { background-image: url('../img/hero-mobile/rentacar.jpg'); }
.hero-bg--periyodik { background-image: url('../img/hero-mobile/periyodik.jpg'); }
@media (min-width: 769px) {
    .hero-bg--detay { background-image: url('../img/detay.jpg'); }
    .hero-bg--alimsatim { background-image: url('../img/alimsatim.jpg'); }
    .hero-bg--rentacar { background-image: url('../img/rentacar.jpg'); }
    .hero-bg--periyodik { background-image: url('../img/periyodik.jpg'); }
}

.hero-column::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.05) 100%);
    z-index: 2;
    transition: all 0.7s var(--ease-out);
}

.hero-column:hover { flex: 3; }
.hero-column:hover .hero-bg { filter: grayscale(0%) brightness(0.75); transform: scale(1); }
.hero-column:hover::before { background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.05) 60%, transparent 100%); }

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    width: 100%;
    max-width: 400px;
}

.hero-number {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.3em;
    opacity: 0.4;
    margin-bottom: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.hero-title {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: all 0.5s var(--ease-out);
}

.hero-column:hover .hero-title { margin-bottom: 0.75rem; }

.hero-subtitle {
    font-size: var(--fs-sm);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s var(--ease-out);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.hero-column:hover .hero-subtitle { opacity: 1; max-height: 120px; margin-bottom: 1.25rem; }

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.5s var(--ease-out);
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.hero-column:hover .hero-link { opacity: 1; transform: translateY(0); }
.hero-link:hover { border-bottom-color: var(--white); gap: 0.75rem; }
.hero-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.hero-link:hover svg { transform: translateX(3px); }

/* =============================================
   7. MARQUEE
   ============================================= */
.marquee-section {
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    font-size: var(--fs-2xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gray-200);
    white-space: nowrap;
    transition: color 0.3s;
    user-select: none;
}

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

.marquee-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Dark Marquee */
.section--dark .marquee-section {
    background: var(--black);
    border-color: var(--gray-800);
}

.section--dark .marquee-item { color: var(--gray-800); }
.section--dark .marquee-item:hover { color: var(--white); }
.section--dark .marquee-dot { background: var(--gray-700); }

/* =============================================
   8. ABOUT / KURUMSAL
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image picture {
    display: block;
}

.about-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.about-badge-number {
    font-size: var(--fs-3xl);
    font-weight: 800;
    line-height: 1;
    color: var(--black);
}

.about-badge-text {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-top: 2px;
}

.about-text .text-body { margin-bottom: 2rem; }

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s var(--ease-out);
}

.feature-tag:hover {
    background: var(--black);
    color: var(--white);
}

.feature-tag svg { width: 14px; height: 14px; }

/* =============================================
   9. SERVICES / HİZMETLER
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.5s var(--ease-out);
    group: true;
}

.service-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

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

.service-card-body { padding: 1.75rem; }

.service-card-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.service-card-text {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out);
}

.service-card-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* Service card without image (text only) */
.service-card--text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
    background: var(--gray-50);
    border-color: transparent;
}

.service-card--text .service-card-body {
    padding-bottom: 1rem;
}

.service-card--text .service-card-text {
    margin-bottom: 0;
}

.service-card--text:hover {
    background: var(--black);
    border-color: var(--black);
}

.service-card--text:hover .service-card-title { color: var(--white); }
.service-card--text:hover .service-card-text { color: var(--gray-400); }
.service-card--text:hover .service-card-link { color: var(--white); }

/* =============================================
   10. GALLERY / GALERİ
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-grid--masonry {
    grid-template-rows: auto;
}

.gallery-grid--masonry .gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-grid--masonry .gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out), filter 0.5s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-title { font-size: var(--fs-base); font-weight: 600; color: var(--white); }
.gallery-overlay-text { display: none; }

/* Gallery Filter */
.gallery-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: transparent;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

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

.gallery-more-wrap { margin-top: 2rem; }
.gallery-more-wrap .btn { min-width: 160px; }

/* Gallery full modal (Devamı → 4 sekme, 6’şar resim) */
.gallery-full-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
}
.gallery-full-modal.open {
    opacity: 1;
    visibility: visible;
}
.gallery-full-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    cursor: pointer;
}
.gallery-full-modal-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.gallery-full-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 1.5rem;
    line-height: 1;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.gallery-full-modal-close:hover {
    background: var(--black);
    color: var(--white);
}
.gallery-full-modal-title {
    padding: 1.5rem 1.5rem 0;
    margin: 0;
    font-size: var(--fs-lg);
    font-weight: 700;
}
.gallery-modal-tabs {
    display: flex;
    gap: 0.25rem;
    padding: 1rem 1.5rem 0;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--gray-200);
}
.gallery-modal-tab {
    padding: 0.5rem 1rem;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--gray-600);
    border: none;
    background: transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}
.gallery-modal-tab:hover { color: var(--black); }
.gallery-modal-tab.active {
    background: var(--black);
    color: var(--white);
}
.gallery-modal-panes {
    flex: 1;
    overflow: auto;
    padding: 1.5rem;
}
.gallery-modal-pane {
    display: none;
}
.gallery-modal-pane.active { display: block; }
.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-modal-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-100);
}
.gallery-modal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============================================
   11. VEHICLES / ARAÇLAR (Rent a Car)
   ============================================= */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vehicle-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.vehicle-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

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

.vehicle-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--black);
    color: var(--white);
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 0.35rem 0.875rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.vehicle-card-body { padding: 1.5rem; }

.vehicle-card-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.vehicle-card-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.vehicle-spec {
    font-size: var(--fs-xs);
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.vehicle-card-price {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.vehicle-card-price span { font-size: var(--fs-sm); font-weight: 400; color: var(--gray-400); }

/* =============================================
   12. STATS
   ============================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gray-200);
}

.section--dark .stat-item::after { background: var(--gray-800); }

.stat-number {
    font-size: var(--fs-4xl);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.section--dark .stat-number { color: var(--white); }

.stat-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* =============================================
   PAGE TITLE (H1 — tek ana başlık, SEO)
   ============================================= */
.page-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    text-align: center;
    margin: 1.25rem auto 0;
    padding: 0 1rem;
    max-width: 720px;
    color: var(--black);
    line-height: 1.4;
}

/* =============================================
   NEDEN BİZ — Reason cards
   ============================================= */
#neden-biz .about-grid {
    grid-template-columns: repeat(3, 1fr);
}

.reason-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.35s var(--ease-out);
}

.reason-card:hover {
    background: var(--white);
    border-color: var(--black);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.reason-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.reason-icon svg { flex-shrink: 0; }

.reason-title {
    font-size: var(--fs-md);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.reason-card .text-body {
    font-size: var(--fs-sm);
    color: var(--gray-600);
    margin: 0;
}

/* =============================================
   FAQ — Sıkça Sorulan Sorular (Accordion)
   ============================================= */
.faq-section .container { max-width: 720px; }

.faq-header {
    margin-bottom: 2.5rem;
}

.faq-title {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 auto;
}

.faq-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.faq-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-card--open {
    border-color: var(--black);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.faq-card-header {
    padding: 0;
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: inherit;
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
    min-height: 44px;
}

.faq-trigger:hover {
    background: var(--gray-50);
}

.faq-card--open .faq-trigger {
    background: var(--gray-50);
}

.faq-trigger-text {
    flex: 1;
}

.faq-trigger-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    color: var(--black);
    transition: transform 0.35s var(--ease-spring), background 0.25s var(--ease-out);
}

.faq-trigger:hover .faq-trigger-icon {
    background: var(--gray-200);
}

.faq-card--open .faq-trigger-icon {
    background: var(--black);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-card-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s var(--ease-out);
}

.faq-card-body > * {
    min-height: 0;
    overflow: hidden;
}

.faq-card--open .faq-card-body {
    grid-template-rows: 1fr;
}

.faq-card-body .faq-answer {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-600);
    line-height: 1.7;
    border-top: 1px solid var(--gray-100);
}

.faq-card--open .faq-card-body .faq-answer {
    padding-top: 1rem;
}

.faq-card:not(.faq-card--open) .faq-card-body .faq-answer {
    padding-top: 0;
    padding-bottom: 0;
    border-top: none;
}

/* =============================================
   13. TESTIMONIALS — Horizontal Carousel
   ============================================= */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0 2rem;
    cursor: grab;
}

.testimonials-track:active { cursor: grabbing; }
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s var(--ease-out);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.25rem;
}

.testimonial-stars svg { width: 16px; height: 16px; fill: var(--black); }

.testimonial-quote {
    font-size: var(--fs-base);
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.testimonial-author-name { font-size: var(--fs-sm); font-weight: 600; color: var(--black); }
.testimonial-author-title { font-size: var(--fs-xs); color: var(--gray-500); }

/* Carousel navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonials-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.testimonials-nav-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: scale(1.05);
}

.testimonials-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    padding: 0;
}

.testimonials-dot.active {
    width: 24px;
    background: var(--black);
}

/* =============================================
   14. CTA
   ============================================= */
.cta-section {
    background: var(--black);
    color: var(--white);
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: 'CADDE';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(8rem, 20vw, 20rem);
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    letter-spacing: -0.05em;
    white-space: nowrap;
    pointer-events: none;
}

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

.cta-content .heading-lg { color: var(--white); margin-bottom: 1.25rem; }
.cta-content .text-body { color: var(--gray-400); max-width: 560px; margin: 0 auto 2.5rem; }

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =============================================
   15. CONTACT
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-out);
}

.contact-info-item:hover .contact-info-icon { background: var(--black); color: var(--white); }
.contact-info-item:hover .contact-info-icon svg { stroke: var(--white); }

.contact-info-title { font-size: var(--fs-base); font-weight: 600; margin-bottom: 2px; }

.contact-info-text { font-size: var(--fs-sm); color: var(--gray-500); line-height: 1.6; }
.contact-info-text a { color: var(--black); font-weight: 500; }
.contact-info-text a:hover { text-decoration: underline; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; }

.form-label {
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: var(--fs-base);
    color: var(--black);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--black);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

/* =============================================
   16. FOOTER
   ============================================= */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding-top: clamp(4rem, 8vw, 6rem);
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo img, .footer-logo svg {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-top: 1.25rem;
    max-width: 320px;
}

.footer-heading {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-link {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
    transition: all 0.3s var(--ease-out);
}

.footer-link:hover { color: var(--white); transform: translateX(4px); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; opacity: 0.4; }
.footer-contact-item span, .footer-contact-item a { font-size: var(--fs-sm); color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-contact-item a:hover { color: var(--white); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.footer-social a:hover { background: var(--white); border-color: var(--white); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); transition: fill 0.3s; }
.footer-social a:hover svg { fill: var(--black); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-text { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: var(--white); }
.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-credit:hover { color: var(--white); }
.footer-credit-text { white-space: nowrap; }
.footer-credit img { height: 24px; width: auto; opacity: 0.7; }
.footer-credit:hover img { opacity: 1; }

/* =============================================
   17. PAGE HERO (İç Sayfalar)
   ============================================= */
.page-hero {
    padding: clamp(8rem, 14vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
    margin-top: 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 40%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-title {
    font-size: var(--fs-4xl);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--gray-400);
}

.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb .separator { opacity: 0.4; }

/* =============================================
   18. SERVICE DETAIL
   ============================================= */
.service-detail-grid {
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 4rem;
}

.service-detail-content h3 {
    font-size: var(--fs-xl);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: var(--fs-base);
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.service-detail-content ul { margin-bottom: 1.5rem; }

.service-detail-content ul li {
    padding: 0.625rem 0 0.625rem 1.75rem;
    position: relative;
    font-size: var(--fs-base);
    color: var(--gray-700);
}

.service-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.service-sidebar { position: sticky; top: calc(var(--header-h) + 2rem); }

.sidebar-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.sidebar-card-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.sidebar-card .footer-contact-item svg { opacity: 0.7; color: var(--black); }
.sidebar-card .footer-contact-item span,
.sidebar-card .footer-contact-item a { color: var(--gray-500); }
.sidebar-card .footer-contact-item a:hover { color: var(--black);
}

.sidebar-nav { display: flex; flex-direction: column; }

.sidebar-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.3s var(--ease-out);
}

.sidebar-nav-link:hover, .sidebar-nav-link.active { color: var(--black); font-weight: 600; }
.sidebar-nav-link svg { width: 14px; height: 14px; opacity: 0; transition: all 0.3s var(--ease-out); }
.sidebar-nav-link:hover svg, .sidebar-nav-link.active svg { opacity: 1; }

/* =============================================
   19. ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =============================================
   20. BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
    background: #20ba5a;
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* Pulse animation */
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(37,211,102,0.4);
    animation: wp-pulse 2s ease-out infinite;
}

@keyframes wp-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Mobil: WhatsApp ikonu hero geçilince görünsün */
@media (max-width: 768px) {
    .whatsapp-float {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(12px);
    }
    .whatsapp-float.whatsapp-float--visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .whatsapp-float.whatsapp-float--visible:hover {
        transform: translateY(-3px) scale(1.05);
    }
}

/* =============================================
   22. RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid--3col { grid-template-columns: repeat(3, 1fr); }
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    #neden-biz .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .testimonial-card { flex: 0 0 340px; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .gallery-grid--masonry .gallery-item:nth-child(1) { grid-row: span 1; }
    .gallery-grid--masonry .gallery-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 768px) {
    .site-header { padding: 0.75rem 1rem; pointer-events: auto; }
    .header-inner {
        height: 64px;
        padding: 0 0.5rem 0 1rem;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .header-logo { position: relative; z-index: 1003; }
    .header-actions { position: relative; z-index: 1003; }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
        z-index: 1001;
        pointer-events: none;
        overflow-y: auto;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-list { flex-direction: column; text-align: center; gap: 0.5rem; }
    .nav-link { font-size: var(--fs-xl); padding: 0.75rem 1.5rem; color: var(--black); }
    .nav-dropdown { position: static; transform: none; box-shadow: none; border: none; min-width: auto; background: transparent; padding: 0; display: none; }
    .main-nav.open .nav-dropdown { display: block; opacity: 1; visibility: visible; }
    .nav-item:hover .nav-dropdown { transform: none; }
    .dropdown-link { color: var(--gray-500); }

    .main-nav .header-cta { margin-left: 0; margin-top: 1.5rem; }
    .main-nav .header-social { margin-left: 0; margin-top: 1rem; justify-content: center; }
    .menu-toggle { display: flex; pointer-events: auto; z-index: 1002; }

    .hero { flex-direction: column; height: auto; min-height: auto; margin-top: 80px; }
    .hero-column { min-height: 260px; padding: 2rem 1.5rem; }
    .hero-column::after { display: none; }
    .hero-column:hover { flex: 1; }
    .hero-content { transform: none; }
    .hero-subtitle { opacity: 1; max-height: 120px; margin-bottom: 1.25rem; }
    .hero-link { opacity: 1; transform: translateY(0); }

    .services-grid--3col { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonial-card { flex: 0 0 300px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .gallery-modal-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-modal-tabs { overflow-x: auto; flex-wrap: nowrap; }
}
@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .services-grid { grid-template-columns: 1fr; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-modal-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item::after { display: none !important; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; }
    .hero-column { min-height: 220px; }
    .features-list { gap: 0.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   22. PRINT
   ============================================= */
@media print {
    .site-header, .site-footer, .hero, .cta-section, .marquee-section, .back-to-top, .whatsapp-float { display: none; }
    body { font-size: 12pt; color: #000; }
    .section { padding: 1rem 0; }
}
