/* DrivyGo - Styles CSS Premium */
/* Version: 1.0 - Style Apple/Blacklane */

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-zinc-900: #18181B;
    --color-zinc-800: #27272A;
    --color-zinc-700: #3F3F46;
    --color-zinc-600: #52525B;
    --color-zinc-500: #71717A;
    --color-zinc-400: #A1A1AA;
    --color-white: #FFFFFF;
    --color-emerald: #10B981;
    --color-emerald-400: #34D399;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--color-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-black);
    font-size: 14px;
}

.nav-logo-text {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    color: var(--color-zinc-400);
}

.nav-links a:hover {
    color: var(--color-white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-account {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.3s;
}

.nav-account:hover {
    background: var(--color-emerald);
    color: var(--color-black);
}

.nav-phone {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-zinc-400);
    padding: 8px 16px;
}

.nav-phone:hover {
    color: var(--color-white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: #E4E4E7;
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .nav-phone {
        display: flex;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--color-zinc-900), var(--color-black), var(--color-black));
}

.hero-glow {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(120px);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-emerald);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge-text {
    font-size: 14px;
    color: var(--color-zinc-400);
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title-highlight {
    color: var(--color-zinc-500);
}

.hero-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--color-zinc-400);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    color: var(--color-zinc-500);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-icon {
    width: 20px;
    height: 20px;
    color: var(--color-emerald);
}

.hero-trust-icon-red {
    color: #EF4444;
}

/* ========================================
   DESTINATIONS SECTION
   ======================================== */
.section {
    padding: 96px 24px;
}

.section-dark {
    background: var(--color-zinc-900);
}

.section-darker {
    background: #0A0A0B;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-description {
    color: var(--color-zinc-500);
    max-width: 560px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 640px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.destination-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    display: block;
}

.destination-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.destination-tag {
    font-size: 12px;
    color: var(--color-zinc-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.destination-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.destination-price {
    color: var(--color-emerald-400);
    font-weight: 500;
}

.destination-time {
    font-size: 12px;
    color: var(--color-zinc-500);
}

.destination-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-arrow {
    opacity: 1;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 32px;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--color-white);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-description {
    color: var(--color-zinc-500);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-zinc-400);
    margin-bottom: 8px;
}

.service-features li::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-white);
}

/* ========================================
   FLEET SECTION
   ======================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .fleet-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fleet-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fleet-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.fleet-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.fleet-item-image {
    width: 128px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.fleet-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.fleet-item:hover .fleet-item-image img {
    transform: scale(1.05);
}

.fleet-item-content {
    flex: 1;
}

.fleet-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.fleet-item-name {
    font-size: 18px;
    font-weight: 600;
}

.fleet-item-price {
    color: var(--color-emerald-400);
    font-weight: 500;
}

.fleet-item-desc {
    font-size: 14px;
    color: var(--color-zinc-500);
}

.fleet-item-passengers {
    font-size: 12px;
    color: var(--color-zinc-600);
    margin-top: 4px;
}

.fleet-image {
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--color-zinc-900), var(--color-black));
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.1);
}

.fleet-image-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    font-size: 14px;
    color: var(--color-zinc-400);
}

/* ========================================
   ROUTES SECTION
   ======================================== */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .routes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.route-card {
    padding: 20px;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    display: block;
}

.route-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.route-from {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-zinc-500);
    margin-bottom: 12px;
}

.route-from::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-emerald);
}

.route-to {
    font-weight: 600;
    margin-bottom: 12px;
}

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

.route-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-emerald-400);
}

.route-time {
    font-size: 12px;
    color: var(--color-zinc-600);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    padding: 24px;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
}

.pricing-route {
    font-size: 14px;
    color: var(--color-zinc-500);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-time {
    font-size: 12px;
    color: var(--color-zinc-600);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: 96px 24px;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 32px;
    background: linear-gradient(to bottom right, var(--color-zinc-900), var(--color-black));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-description {
    color: var(--color-zinc-400);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: var(--color-zinc-500);
    margin-bottom: 16px;
}

.footer-phone {
    font-size: 14px;
    color: var(--color-white);
}

.footer-phone:hover {
    color: var(--color-zinc-300);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-zinc-500);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--color-zinc-500);
}

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

.footer-copyright {
    font-size: 14px;
    color: var(--color-zinc-600);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-8 {
    margin-bottom: 32px;
}

/* ========================================
   SEO PAGE STYLES
   ======================================== */
.page-hero {
    padding: 160px 24px 80px;
    background: linear-gradient(to bottom, var(--color-zinc-900), var(--color-black));
    text-align: center;
    position: relative;
}

.page-hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--color-zinc-400);
}

.page-badge-emerald {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--color-emerald-400);
}

.page-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 600;
    margin-bottom: 24px;
}

.page-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-zinc-400);
    max-width: 640px;
    margin: 0 auto 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 24px;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    color: var(--color-white);
}

.feature-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: var(--color-zinc-500);
}

/* Price highlight box */
.price-highlight {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.price-highlight-item {
    text-align: left;
}

.price-highlight-label {
    font-size: 14px;
    color: var(--color-zinc-500);
    margin-bottom: 4px;
}

.price-highlight-value {
    font-size: 24px;
    font-weight: 600;
}

.price-highlight-value-emerald {
    color: var(--color-emerald-400);
}

.price-highlight-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.faq-list {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
    background: rgba(24, 24, 27, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 16px;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 14px;
    color: var(--color-zinc-400);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: var(--color-zinc-400);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
}
