/* MotoTur — Profesyonel Tanıtım Sitesi */

:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8a5c;
    --primary-glow: rgba(255, 107, 53, 0.25);
    --dark: #0f0f0f;
    --dark-soft: #1a1a1a;
    --dark-muted: #252525;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-muted: #cbd5e1;
    --light: #f1f5f9;
    --white: #ffffff;
    --radius: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.16);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--white);
    font-family: 'Syne', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.logo img {
    height: 38px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--gray-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        radial-gradient(ellipse 120% 80% at 50% -20%, var(--primary-glow) 0%, transparent 50%),
        linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 140px 24px 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 8px 24px rgba(255, 107, 53, 0.2));
}

.hero h1 {
    font-family: 'Syne', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 4.5rem);
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--gray-light);
    font-weight: 500;
    margin-bottom: 16px;
    max-width: 480px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--gray-muted);
    max-width: 420px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.store-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    max-width: 100%;
    max-height: 540px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.4; transform: translateX(-50%) translateY(10px); }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
}

h2 {
    font-family: 'Syne', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* Features */
.features {
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.15);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Gallery */
.gallery {
    background: var(--white);
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 32px 28px;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.6) 60%, transparent 100%);
    color: var(--white);
}

.gallery-caption h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-caption h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
    margin-right: 12px;
    vertical-align: middle;
}

.gallery-caption p {
    font-size: 0.95rem;
    color: var(--gray-muted);
    line-height: 1.6;
    padding-left: 16px;
}

/* Security */
.security {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.security h2,
.security .section-subtitle {
    color: var(--white);
}

.security .section-subtitle {
    color: var(--gray-muted);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.security-item {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 53, 0.2);
}

.security-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.security-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.security-item p {
    color: var(--gray-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Download */
.download {
    background: 
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
}

.download h2,
.download .section-subtitle {
    color: var(--white);
}

.download .section-subtitle {
    opacity: 0.95;
}

.download-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 24px 40px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 44px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer p {
    color: var(--gray-muted);
    font-size: 0.9rem;
}

/* Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc,
    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-image {
        max-height: 340px;
    }

    .hero-logo {
        height: 80px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gallery-item img {
        min-height: 280px;
    }

    .gallery-caption {
        padding: 24px 20px;
    }

    .gallery-caption h3::before {
        height: 16px;
    }

    section {
        padding: 72px 0;
    }
}
