/* Color Palette and Variables */
:root {
    --bg-main: #0a0b10;
    --bg-light: #161823;
    --gold-primary: #D4AF37;
    --gold-dim: #AA8B28;
    --text-primary: #f8f9fa;
    --text-muted: #9ca3af;
    --border-color: rgba(212, 175, 55, 0.2);
    --glass-bg: rgba(22, 24, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Typography Utility */
.text-gold { color: var(--gold-primary); }
.text-center { text-align: center; }
.h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.padding-xl { padding: 3rem; }
.mt-xl { margin-top: 4rem; }

/* Layout & Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.bg-dark {
    background-color: var(--bg-light);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold-primary);
    color: var(--bg-main);
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    font-size: 1rem;
    font-weight: 400;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a:hover {
    color: var(--gold-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-primary:hover {
    background: var(--gold-primary);
    color: var(--bg-main);
    border-color: var(--gold-primary);
}

.btn-gold {
    background: var(--gold-primary);
    color: var(--bg-main);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

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

.btn-massive {
    padding: 1.2rem 3rem;
    font-size: 1.5rem;
    border-radius: 50px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 11, 16, 0.65), rgba(10, 11, 16, 0.95)), url('mercedes-vito-business-transfer.jpeg') center/cover no-repeat;
    z-index: -1;
    overflow: hidden;
}

.hero-bg::after {
    content:'';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: glowPulse 8s infinite alternate;
}

@keyframes glowPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5;}
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1;}
}

.hero-inner {
    max-width: 800px;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-primary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Grids & Cards */
.grid {
    display: grid;
    gap: 2rem;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 4rem;
}

.feature-card {
    padding: 2.5rem;
    text-align: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.5));
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Locations */
.locations-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.location-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.location-item:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.05);
}

.location-item span {
    color: var(--gold-primary);
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    border-color: var(--gold-primary);
}

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

/* Content Block for SEO */
.content-block {
    text-align: left;
}

.content-block ul {
    list-style-type: none;
    margin-top: 1.5rem;
}

.content-block ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    display: flex;
    align-items: flex-start;
}

.content-block ul li::before {
    content: '✓';
    color: var(--gold-primary);
    margin-right: 1rem;
    font-weight: bold;
}

.content-block ul li:last-child {
    border-bottom: none;
}

.content-block a {
    color: var(--gold-primary);
    text-decoration: underline;
}

/* FAQ */
.faq-card {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-q {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    margin: 0;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-q {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-primary);
}

.faq-q .plus {
    font-family: monospace;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-a {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

/* Footer */
.footer {
    background: #050608;
    padding: 5rem 0 2rem;
    border-top: 1px solid #111;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col a, .footer-col span {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.footer-col a:hover {
    color: var(--text-primary);
}

/* SVG Footer Logo (§7.1 marka kimliği) */
.footer-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
    line-height: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.footer-logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 640px) {
    .footer-logo img { max-width: 220px; }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #111;
    color: #444;
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

/* Animations Variables / Triggers */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
}
.stagger-1 { transition-delay: 0.2s; }
.stagger-2 { transition-delay: 0.4s; }
.stagger-3 { transition-delay: 0.6s; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 900px) {
    .desktop-nav, .d-none-mobile {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .btn-massive {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}

/* ==========================================================
   GEO/SEO geliştirmeleri — 2026-04-20 eklemeleri
   ========================================================== */

/* Hero TLDR (cevap-öncelikli, AI bot için ilk %30) */
.hero-tldr {
    max-width: 780px;
    margin: 1.5rem auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
}
.hero-tldr a {
    color: var(--gold-primary);
    font-weight: 600;
    border-bottom: 1px dashed var(--gold-dim);
}

/* Hero stat band */
.hero-stats {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 0;
}
.hero-stats li {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.hero-stats strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold-primary);
    font-weight: 700;
}

/* Routes Table */
.routes-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.routes-table thead {
    background: rgba(212, 175, 55, 0.12);
}
.routes-table th,
.routes-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.routes-table th {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}
.routes-table tbody tr {
    transition: background 0.3s ease;
}
.routes-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.06);
}
.routes-table tbody tr:last-child td {
    border-bottom: none;
}
.routes-table a {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Floating WhatsApp CTA */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.0); }
}

/* Mobile menu slide-in panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(10, 11, 16, 0.97);
    backdrop-filter: blur(14px);
    border-left: 1px solid var(--border-color);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 95;
    overflow-y: auto;
}
.mobile-menu[hidden] {
    display: flex; /* Override hidden so transition works */
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu a {
    color: var(--text-primary);
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--glass-border);
}
.mobile-menu a:hover {
    color: var(--gold-primary);
}
.mobile-menu .btn {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
}

/* Backdrop for mobile menu */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 94;
}
.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Accessibility — reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .floating-whatsapp {
        animation: none;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 900px) {
    .floating-whatsapp {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
    .hero-stats {
        gap: 1.2rem;
    }
    .hero-stats strong {
        font-size: 1.3rem;
    }
    .routes-table th,
    .routes-table td {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
}
