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

:root {
    --yellow-primary: #FFD700;
    --yellow-secondary: #FFC700;
    --orange: #FFA500;
    --white: #FFFFFF;
    --black: #000000;
    --light-gray: #F8F8F8;
    --medium-gray: #E0E0E0;
    --dark-gray: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Open Sans', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HEADER */
#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.btn-header {
    padding: 12px 24px;
    background: var(--yellow-primary);
    color: var(--black);
    border: 2px solid var(--yellow-primary);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

#header.scrolled .logo-img {
    height: 60px;
    filter: none;
}

.logo-text {
    background: var(--yellow-primary);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

#nav {
    display: none;
}

.header-buttons {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

/* BUTTONS */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--yellow-primary);
    color: var(--black);
    border: 2px solid var(--yellow-primary);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--yellow-secondary);
    border-color: var(--yellow-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:focus {
    outline: 3px solid rgba(255, 215, 0, 0.5);
    outline-offset: 2px;
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--yellow-primary);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--yellow-primary);
    border-color: var(--yellow-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary:focus {
    outline: 3px solid rgba(255, 215, 0, 0.5);
    outline-offset: 2px;
}

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

.btn-outline:hover {
    background: var(--yellow-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 16px;
    background: var(--yellow-primary);
    color: var(--black);
    border: 2px solid var(--yellow-primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-hero:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

.btn-phone {
    background: var(--yellow-primary);
    color: var(--black);
}

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

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(255, 215, 0, 0.15) 100%), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920') center/cover;
    padding-top: 0;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.5);
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 40%; left: 20%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 60%; left: 15%; animation-delay: 1s; }
.star:nth-child(4) { top: 30%; left: 80%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 70%; left: 85%; animation-delay: 2s; }
.star:nth-child(6) { top: 50%; left: 90%; animation-delay: 2.5s; }
.star:nth-child(7) { top: 15%; left: 50%; animation-delay: 0.8s; }
.star:nth-child(8) { top: 80%; left: 30%; animation-delay: 1.2s; }
.star:nth-child(9) { top: 25%; left: 70%; animation-delay: 1.8s; }
.star:nth-child(10) { top: 65%; left: 60%; animation-delay: 0.3s; }
.star:nth-child(11) { top: 10%; left: 35%; animation-delay: 2.2s; }
.star:nth-child(12) { top: 85%; left: 75%; animation-delay: 1.6s; }
.star:nth-child(13) { top: 45%; left: 5%; animation-delay: 0.7s; }
.star:nth-child(14) { top: 55%; left: 95%; animation-delay: 2.8s; }
.star:nth-child(15) { top: 35%; left: 45%; animation-delay: 1.3s; }

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 54px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-image {
    animation: fadeInRight 1s ease-out;
    position: relative;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    font-size: 24px;
    color: var(--white);
    opacity: 0.9;
}

/* RESERVATION SECTION */
.reservation-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: floatCircle 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--black);
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.reservation-form {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px;
    border: 2px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.form-group input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow-primary);
    background: var(--white);
    color: var(--black);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.form-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.info-icon {
    font-size: 24px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.benefits-section::before,
.benefits-section::after {
    content: '🚕';
    position: absolute;
    font-size: 80px;
    opacity: 0.03;
    pointer-events: none;
}

.benefits-section::before {
    top: 10%;
    left: 5%;
    animation: driftRight 20s ease-in-out infinite;
}

.benefits-section::after {
    bottom: 10%;
    right: 5%;
    animation: driftLeft 20s ease-in-out infinite;
}

@keyframes driftRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(100px); }
}

@keyframes driftLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-100px); }
}

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

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--yellow-primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--black);
}

.benefit-card p {
    color: #666;
    font-size: 16px;
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.04; }
    50% { transform: scale(1.1); opacity: 0.06; }
}

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

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--black);
}

.about-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.stat-box {
    background: var(--light-gray);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--yellow-primary);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--yellow-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(rgba(248, 248, 248, 0.95), rgba(248, 248, 248, 0.95)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1600') center/cover fixed;
    position: relative;
}

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

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--yellow-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.step-icon {
    font-size: 48px;
    margin: 30px 0 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.step-card p {
    color: #666;
    font-size: 15px;
}

/* PRICING SECTION */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?w=1600') center/cover fixed;
    position: relative;
}

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

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--yellow-primary);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.pricing-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--black);
}

.pricing-route {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--yellow-primary);
    margin-bottom: 10px;
}

.pricing-unit {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.pricing-info {
    background: #FFFACD;
    border: 2px solid var(--yellow-primary);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.pricing-info p {
    margin: 10px 0;
    font-size: 15px;
    color: var(--black);
}

/* DRIVER SECTION */
.driver-section {
    padding: 0 0 80px 0;
    background: var(--white);
}

.driver-header {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 165, 0, 0.95) 100%), url('https://images.unsplash.com/photo-1552345387-e04c83f1e3c5?w=1600') center/cover fixed;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.driver-header h2 {
    font-size: 48px;
    color: var(--black);
    margin-bottom: 15px;
}

.driver-header p {
    font-size: 20px;
    color: var(--black);
    opacity: 0.9;
    margin-bottom: 25px;
}

.btn-driver-phone {
    padding: 18px 40px;
    font-size: 18px;
    background: var(--black);
    color: var(--yellow-primary);
    border: 2px solid var(--black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.btn-driver-phone:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.driver-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.driver-intro p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.driver-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.process-step {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--yellow-primary);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.process-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.process-step p {
    color: #666;
    font-size: 15px;
}

.driver-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    background: var(--light-gray);
    padding: 60px 40px;
    border-radius: 12px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-item .benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.benefit-item p {
    color: #666;
    font-size: 14px;
}

.driver-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.driver-form-container h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--black);
}

.driver-form {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 12px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--medium-gray);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h4 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--black);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(rgba(26, 26, 26, 0.92), rgba(26, 26, 26, 0.92)), url('https://images.unsplash.com/photo-1514565131-fce0801e5785?w=1600') center/cover fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section .contact-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.contact-section .star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.5);
    animation: twinkle 3s infinite;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

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

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--yellow-primary);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--yellow-primary);
}

.contact-item p {
    color: #ccc;
    font-size: 14px;
    margin-top: 10px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-container h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--yellow-primary);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-form label {
    color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* FOOTER */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow-primary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 24px;
}

.footer-social a {
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--yellow-primary);
    transform: scale(1.2);
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--yellow-primary);
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .logo-img {
        height: 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .driver-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .driver-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 40px 20px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .about-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero {
        width: 100%;
        padding: 15px 30px;
        font-size: 15px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    #header.scrolled .logo-img {
        height: 50px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    #header .container {
        padding: 15px 20px;
        flex-wrap: nowrap;
        gap: 15px;
    }
    
    .btn-header {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .header-buttons {
        flex-direction: row;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .header-buttons .btn {
        padding: 8px 10px;
        font-size: 10px;
        white-space: nowrap;
        border-radius: 6px;
    }
    
    .hero {
        padding-top: 140px;
        min-height: 100vh;
        padding-bottom: 80px;
    }
    
    .hero-container {
        gap: 40px;
        padding: 0;
    }
    
    .hero-content {
        padding: 0 10px;
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn-hero {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .reservation-section,
    .benefits-section,
    .about-section,
    .how-it-works-section,
    .pricing-section,
    .driver-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .form-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .about-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-card {
        padding: 50px 25px 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 35px 25px;
    }
    
    .pricing-amount {
        font-size: 42px;
    }
    
    .pricing-info {
        padding: 25px 20px;
    }
    
    .driver-header {
        padding: 60px 0;
    }
    
    .driver-header h2 {
        font-size: 32px;
    }
    
    .driver-header p {
        font-size: 18px;
    }
    
    .btn-driver-phone {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .driver-intro {
        margin-bottom: 40px;
    }
    
    .driver-intro p {
        font-size: 16px;
    }
    
    .driver-process {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .process-step {
        padding: 35px 25px;
    }
    
    .driver-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
        margin-bottom: 40px;
    }
    
    .benefit-item {
        padding: 25px;
    }
    
    .driver-form-container h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .reservation-form,
    .driver-form,
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 70px;
    }
    
    #header .container {
        padding: 12px 20px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 26px;
        margin-top: 10px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .benefit-icon,
    .step-icon,
    .pricing-icon,
    .process-icon {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .pricing-amount {
        font-size: 36px;
    }
    
    .driver-header h2 {
        font-size: 26px;
    }
    
    .reservation-form,
    .driver-form {
        padding: 25px 15px;
    }
}

/* ANIMATIONS */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* SUCCESS POPUP */
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 10000;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transition: transform 0.3s ease;
}

.success-popup.show {
    transform: translate(-50%, -50%) scale(1);
}

.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-popup-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-popup h3 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 15px;
}

.success-popup p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.success-popup .btn {
    width: 100%;
}
