/* GoYoLux - Ana Web Sitesi Stilleri */

:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --accent: #48bb78;
    --dark: #1a202c;
    --text: #4a5568;
    --light: #f7fafc;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 900;
    color: white !important;
    text-decoration: none;
}

.navbar.scrolled .navbar-brand { color: var(--primary) !important; }

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.2s;
}

.navbar.scrolled .nav-link { color: var(--dark) !important; }
.nav-link:hover { color: white !important; }
.navbar.scrolled .nav-link:hover { color: var(--primary) !important; }

.btn-nav {
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

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

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 { width: 500px; height: 500px; background: white; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: white; bottom: -50px; left: -50px; }
.shape-3 { width: 200px; height: 200px; background: white; top: 40%; left: 30%; }

.hero-content { padding: 120px 0 60px; color: white; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd93d, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-hero-primary {
    background: white;
    color: var(--primary);
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: var(--primary); }

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-secondary:hover { background: rgba(255,255,255,0.25); color: white; }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.hero-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.hero-stats .stat span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Phone Mockup */
.hero-phone {
    position: absolute;
    bottom: 0;
    right: 3%;
    z-index: 3;
    pointer-events: none;
}

.hero-phone-img {
    max-height: 85vh;
    width: auto;
    display: block;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

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

.section-badge {
    display: inline-block;
    background: rgba(102,126,234,0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
}

/* Features */
.features-section { padding: 100px 0; background: white; }

.feature-card {
    padding: 35px 30px;
    border-radius: 20px;
    background: white;
    border: 1px solid #edf2f7;
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p { line-height: 1.7; }

/* How It Works */
.how-section { padding: 100px 0; background: var(--light); }

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 25px 0;
}

.step-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

/* Vehicles */
.vehicles-section { padding: 100px 0; background: white; }

.vehicle-card {
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #edf2f7;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.vehicle-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(102,126,234,0.03), white);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.vehicle-icon {
    color: var(--primary);
    margin-bottom: 20px;
}

.vehicle-card h3 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.vehicle-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    padding: 0;
}

.vehicle-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.vehicle-features li i {
    color: var(--accent);
    margin-right: 10px;
}

.vehicle-price {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #edf2f7;
}

.vehicle-price .price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.vehicle-price .label {
    display: block;
    font-size: 0.85rem;
    color: #718096;
}

.vehicle-tiers {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.88rem;
    color: #4a5568;
    border-bottom: 1px solid #f7fafc;
}

.tier-row:last-child {
    border-bottom: none;
}

.tier-row span:last-child {
    color: var(--primary);
}

/* Driver Section */
.driver-section { padding: 100px 0; background: var(--light); }

.driver-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.driver-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.driver-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.benefit i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102,126,234,0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.benefit strong { display: block; color: var(--dark); font-weight: 700; }
.benefit span { font-size: 0.8rem; color: #718096; }

/* Driver Mock Card */
.driver-card-mock {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    max-width: 320px;
    margin: 0 auto;
}

.driver-mock-header {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary);
}

.driver-mock-header h4 {
    color: var(--dark);
    margin: 10px 0 5px;
    font-weight: 700;
}

.driver-rating { color: #ffd93d; font-size: 0.9rem; }
.driver-rating span { color: var(--dark); font-weight: 700; margin-left: 5px; }

.driver-mock-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
}

.driver-mock-stats strong {
    display: block;
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 800;
}

.driver-mock-stats span { font-size: 0.75rem; color: #718096; }

/* Download Section */
.download-section { padding: 100px 0; background: white; }

.download-card {
    background: var(--gradient);
    border-radius: 30px;
    padding: 60px;
    color: white;
}

.download-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.download-card .gradient-text {
    background: linear-gradient(135deg, #ffd93d, #ffaa44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-card > .row > .col-lg-7 > p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.download-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.25);
    padding: 12px 25px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.download-btn:hover { background: rgba(0,0,0,0.4); color: white; }

.download-btn i { font-size: 1.8rem; }
.download-btn small { display: block; font-size: 0.7rem; opacity: 0.8; }
.download-btn strong { font-size: 1rem; }

.promo-code {
    background: rgba(255,255,255,0.15);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.qr-placeholder {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 40px;
    display: inline-block;
}

.qr-placeholder p {
    margin-top: 15px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-brand h3 {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-brand p { line-height: 1.7; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover { background: var(--primary); }

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.footer ul a:hover { color: white; }

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-phone {
        position: relative;
        right: auto;
        bottom: auto;
        text-align: center;
        margin-top: 30px;
    }
    .hero-phone-img {
        max-height: 60vh;
    }
    .download-card { padding: 40px 30px; }
    .driver-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-content { padding: 100px 0 40px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-stats { gap: 25px; }
    .section-header h2 { font-size: 1.8rem; }
    .hero-phone-img {
        max-height: 50vh;
    }
    .download-card h2 { font-size: 1.6rem; }
}

/* Smooth Scroll */
html { scroll-behavior: smooth; }

/* ========== Pricing Section ========== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.pricing-card.popular {
    border: 2px solid #667eea;
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(102,126,234,0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pricing-header h4 {
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-top: 8px;
}

.pricing-amount .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
}

.pricing-period {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 8px;
}

.pricing-body {
    flex: 1;
    text-align: left;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #4a5568;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    margin-top: 24px;
    padding-top: 16px;
}

.pricing-footer .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
}

.pricing-footer .btn-outline-primary {
    border-color: #667eea;
    color: #667eea;
}

.pricing-footer .btn-outline-primary:hover {
    background: #667eea;
    color: #fff;
}

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

/* Animations */
.feature-card, .step-card, .vehicle-card, .benefit, .pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.visible, .step-card.visible, .vehicle-card.visible, .benefit.visible, .pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}
