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

html, body {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0b1220;
    background: #020617;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 100% - 3rem);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.8), transparent);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f9fafb;
}

.logo span {
    color: #4f9cff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    font-size: 0.95rem;
}

.nav a {
    position: relative;
    color: #e5e7eb;
    padding-bottom: 0.2rem;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4f9cff, #e0f2fe);
    border-radius: 999px;
    transition: width 0.25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at top left, rgba(79, 156, 255, 0.2), transparent);
}

.nav-cta:hover {
    border-color: #4f9cff;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
}

.burger span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
    color: #f9fafb;
    background: radial-gradient(circle at top, #0b1120 0, #020617 45%, #020617 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 0 0, rgba(79, 156, 255, 0.18), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.2), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 0.4), transparent 65%);
    opacity: 0.9;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), transparent 40%, rgba(15, 23, 42, 0.8));
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #bfdbfe;
    margin-bottom: 0.8rem;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 3vw + 1.2rem, 3.4rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.02rem;
    color: #e5e7eb;
    max-width: 35rem;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.82rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.btn.primary {
    background: radial-gradient(circle at top left, #4f9cff, #1d4ed8);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.7);
    color: #f9fafb;
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
}

.btn.ghost {
    border-color: rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.7);
    color: #e5e7eb;
}

.btn.ghost:hover {
    border-color: #4f9cff;
    background: rgba(15, 23, 42, 1);
}

.btn.full-width {
    width: 100%;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background: radial-gradient(circle at top left, rgba(79, 156, 255, 0.18), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.65);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(18px);
    min-width: 9rem;
}

.badge-title {
    display: block;
    font-size: 0.8rem;
    color: #cbd5f5;
}

.badge-value {
    display: block;
    font-size: 1.02rem;
    font-weight: 600;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    border-radius: 1.75rem;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.95);
    overflow: hidden;
}

.hero-main-photo {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-label {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.75rem;
}

.hero-photo-label span:first-child {
    font-weight: 600;
    color: #f9fafb;
}

.hero-photo-label span:last-child {
    color: #bfdbfe;
}

.hero-card-info {
    padding: 1.25rem 1.5rem 1.4rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    row-gap: 0.9rem;
    column-gap: 1rem;
    font-size: 0.85rem;
}

.hero-label {
    display: block;
    color: #9ca3af;
    margin-bottom: 0.1rem;
}

.hero-value {
    display: block;
    color: #e5e7eb;
    font-weight: 500;
}

.section {
    padding: 5rem 0;
    background: #020617;
    color: #e5e7eb;
}

.section.alt {
    background: radial-gradient(circle at top, #020617, #020617 30%, #020617 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.section-header p {
    color: #9ca3af;
    max-width: 32rem;
    margin: 0 auto;
    font-size: 0.98rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
}

.card {
    padding: 1.8rem 1.6rem;
    border-radius: 1.6rem;
    background: radial-gradient(circle at top left, rgba(79, 156, 255, 0.16), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.65);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.85);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.95);
    border-color: #4f9cff;
}

.card-icon-circle {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.7), rgba(37, 99, 235, 0.25));
    font-size: 1.2rem;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.card p {
    font-size: 0.94rem;
    color: #cbd5f5;
}

.chauffeur-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.chauffeur-photo-block {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 0.75rem;
}

.chauffeur-main-photo,
.chauffeur-side-photo {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at top left, rgba(79, 156, 255, 0.18), rgba(15, 23, 42, 1));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.chauffeur-main-photo {
    min-height: 260px;
}

.chauffeur-side-photo {
    min-height: 140px;
    align-self: flex-end;
}

.chauffeur-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chauffeur-photo-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chauffeur-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 0.7rem;
}

.chauffeur-text p {
    color: #cbd5f5;
    margin-bottom: 1.6rem;
}

.chauffeur-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chauffeur-tags span {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bfdbfe;
    background: rgba(15, 23, 42, 0.9);
}

.fleet-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.fleet-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 0.7rem;
}

.fleet-text p {
    color: #cbd5f5;
    margin-bottom: 1.6rem;
}

.fleet-list {
    list-style: none;
    display: grid;
    gap: 1.1rem;
}

.fleet-title {
    display: block;
    font-weight: 500;
}

.fleet-sub {
    display: block;
    font-size: 0.9rem;
    color: #9ca3af;
}

.fleet-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.fleet-image {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at top left, rgba(79, 156, 255, 0.18), rgba(15, 23, 42, 1));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-image-label {
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.8);
    font-size: 0.75rem;
    color: #e5e7eb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
}

.testimonial {
    padding: 1.6rem 1.5rem;
    border-radius: 1.6rem;
    background: radial-gradient(circle at top left, rgba(79, 156, 255, 0.16), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.9);
    font-size: 0.95rem;
    color: #e5e7eb;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.avatar {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(79, 156, 255, 0.9);
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 500;
}

.testimonial-note {
    font-size: 0.85rem;
    color: #9ca3af;
}

.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.contact-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 0.7rem;
}

.contact-text p {
    color: #cbd5f5;
    margin-bottom: 1.7rem;
}

.contact-highlight {
    display: grid;
    gap: 1rem;
    padding: 1.4rem 1.35rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at top left, rgba(79, 156, 255, 0.18), rgba(15, 23, 42, 1));
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.9);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.1rem;
}

.contact-value {
    font-size: 0.95rem;
    color: #e5e7eb;
}

.contact-value:hover {
    color: #bfdbfe;
}

.contact-form-wrapper {
    padding: 1.6rem;
    border-radius: 1.6rem;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

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

label {
    font-size: 0.86rem;
    color: #e5e7eb;
}

input, select, textarea {
    font: inherit;
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: #020617;
    padding: 0.6rem 0.75rem;
    color: #e5e7eb;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input::placeholder, textarea::placeholder {
    color: #6b7280;
}

input:focus, select:focus, textarea:focus {
    border-color: #4f9cff;
    box-shadow: 0 0 0 1px rgba(79, 156, 255, 0.5);
    background: #020617;
}

textarea {
    resize: vertical;
    min-height: 90px;
}

.form-note {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.4rem;
}

.site-footer {
    border-top: 1px solid rgba(31, 41, 55, 1);
    background: #020617;
    color: #9ca3af;
    padding: 2.3rem 0 2.4rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-brand {
    max-width: 20rem;
}

.footer-brand p {
    margin-top: 0.55rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
}

.footer-links a {
    color: #e5e7eb;
    font-size: 0.86rem;
}

.footer-links a:hover {
    color: #bfdbfe;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: right;
}

.footer-meta span:last-child {
    color: #6b7280;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%) translateY(120%);
    background: rgba(15, 23, 42, 0.98);
    color: #e5e7eb;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.95);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 80;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.animate-up, .animate-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade {
    transform: translateY(10px);
}

.in-view.animate-up, .in-view.animate-fade {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}
/* Sponsors */
#sponsors .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

#sponsors .grid-3 > div {
    width: 100%;
    max-width: 260px;       
    display: flex;
    align-items: center;
    justify-content: center;
}

#sponsors .grid-3 img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}




@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.7rem;
    }
    .hero-visual {
        justify-content: flex-start;
    }
    .hero-card {
        max-width: 420px;
        margin: 0 auto;
    }
    .chauffeur-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .fleet-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .fleet-images {
        max-width: 420px;
        margin: 0 auto;
    }
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-meta {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .header-inner {
        padding: 0.9rem 0;
    }
    .nav {
        position: absolute;
        inset: 100% 0 auto 0;
        background: rgba(2, 6, 23, 0.98);
        border-bottom: 1px solid rgba(31, 41, 55, 1);
        flex-direction: column;
        padding: 0.9rem 1.5rem 1.2rem;
        gap: 0.9rem;
        transform-origin: top;
        transform: scaleY(0.9);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: scaleY(1);
    }
    .nav-cta {
        width: 100%;
        justify-content: center;
    }
    .burger {
        display: flex;
    }
    .hero {
        padding-top: 5.4rem;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-badges {
        flex-direction: column;
    }
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
    .reviews-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

@media (max-width: 720px) {
    #sponsors .grid-3 {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }
}