/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --chrome: #c0c0c0;
    --accent: #ffffff;
    --gold: #d4af37;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--black);
    color: var(--accent);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--chrome);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.cta-link {
    background: var(--accent);
    color: var(--black) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* opacity: 0.3; */
    z-index: 1;
}

.hero-driver {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    filter: brightness(0.6);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    padding: 100px 0 60px;
}

.hero-headline {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subheadline {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--chrome);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--chrome);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--black);
}

.trust-strip {
    background: var(--charcoal);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip p {
    text-align: center;
    color: var(--chrome);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.services-driver-bg {
    width: 100%;
    height: 50%; 
    object-fit: cover;
    /* opacity: 0.15; */
    filter: brightness(0.3) blur(1px);
}

.services-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(26, 26, 26, 0.9) 50%, 
        rgba(26, 26, 26, 0.8) 100%); */
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    /* background: var(--dark-gray); */
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--gold);
    position: relative;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.service-card p {
    color: var(--chrome);
    line-height: 1.6;
}

.service-note {
    text-align: center;
    color: var(--chrome);
    font-size: 14px;
    margin-top: 20px;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.why-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.why-driver-bg {
    width: 100%;
     height: 100%; 
    object-fit: cover;
    /* opacity: 0.2; */
    filter: brightness(0.4) blur(1px);
}

.why-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.7) 0%, 
        rgba(10, 10, 10, 0.85) 50%, 
        rgba(10, 10, 10, 0.7) 100%); */
}

.why-section .container {
    position: relative;
    z-index: 2;
}

.why-section h2 {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.why-item {
    padding: 30px;
    background: var(--charcoal);
    border-left: 3px solid var(--gold);
    font-size: 18px;
}

.street-copy {
    text-align: center;
    font-size: 14px;
    color: var(--chrome);
    font-style: italic;
    margin-top: 40px;
}

/* For Section */
.for-section {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.for-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.for-driver-bg {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
     opacity: 0.3; 
    /*filter: brightness(0.3) blur(1px);*/
}

.for-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(26, 26, 26, 0.9) 50%, 
        rgba(26, 26, 26, 0.8) 100%); */
}

.for-section .container {
    position: relative;
    z-index: 2;
}

.for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.for-card {
    /* background: var(--dark-gray); */
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.for-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.for-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.for-card h4 {
    font-size: 16px;
    color: var(--chrome);
}

/* Slogan Section */
.slogan-section {
    padding: 150px 0;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slogan-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.slogan-driver-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.25; 
    filter: brightness(0.4) blur(2px);*/
}

.slogan-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(10, 10, 10, 0.6) 0%, 
        rgba(10, 10, 10, 0.9) 100%);
}

.slogan-section .container {
    position: relative;
    z-index: 2;
}

.slogan {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.2;
}

/* Request Section */
.request-section {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.request-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.request-driver-bg {
    width: 100%;
    /* height: 50%; */
    object-fit: cover;
    /* opacity: 0.12; */
    /* filter: brightness(0.25) blur(1px); */
}

.request-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, 
        rgba(26, 26, 26, 0.85) 0%, 
        rgba(26, 26, 26, 0.95) 50%, 
        rgba(26, 26, 26, 0.85) 100%); */
}

.request-section .container {
    position: relative;
    z-index: 2;
}

.request-section h2 {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.request-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 50px;
}

.form-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 15px;
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
}

textarea {
    resize: vertical;
}

.form-note {
    font-size: 14px;
    color: var(--chrome);
    margin-top: -10px;
    margin-bottom: 10px;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    background: var(--dark-gray);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.radio-label:hover,
.checkbox-label:hover {
    border-color: var(--gold);
}

input[type="radio"],
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
}

.confirm-message {
    display: none;
    text-align: center;
    padding: 30px;
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 8px;
    margin-top: 30px;
    font-size: 18px;
}

.confirm-message.show {
    display: block;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about h4,
.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-about p {
    color: var(--chrome);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--chrome);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--chrome);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-visual {
        width: 100%;
        /* opacity: 0.15; */
    }

    .hero-driver {
        max-height: 50vh;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .cta-link {
        padding: 8px 15px;
    }

    .hero-content {
        padding: 60px 0 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .for-grid {
        grid-template-columns: 1fr;
    }
}