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

:root {
    --bg: #07111f;
    --bg-soft: #0d1727;
    --surface: #111f33;
    --surface-strong: #172840;
    --text: #f8fafc;
    --muted: #cbd5e1;
    --subtle: #94a3b8;
    --accent: #facc15;
    --accent-dark: #b88308;
    --line: rgba(255, 255, 255, 0.1);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    transform: translateY(-140%);
    background: var(--accent);
    color: #111827;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-weight: 700;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.58);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(14px);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(2, 6, 23, 0.96);
    border-color: var(--line);
}

.site-nav {
    width: min(1120px, 90%);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.logo i,
.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--accent);
}

.nav-toggle,
.nav-toggle-label {
    display: none;
}

.hero {
    min-height: 100svh;
    background:
        linear-gradient(rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.82)),
        url("https://images.unsplash.com/photo-1626761627604-f27d98885f4b?q=80&w=2070&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-content {
    max-width: 930px;
    animation: fadeUp 0.8s ease;
}

.eyebrow {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p:not(.eyebrow) {
    font-size: clamp(16px, 2vw, 20px);
    color: #e2e8f0;
    margin-bottom: 35px;
}

.hero-btns,
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    min-height: 50px;
    padding: 13px 24px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--accent);
    color: #111827;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #fff3a3;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--text);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--text);
    border-color: var(--text);
    color: #111827;
}

section {
    padding: 96px 8%;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}

.section-title h2 {
    font-size: clamp(32px, 5vw, 46px);
    line-height: 1.18;
    margin-bottom: 12px;
}

.section-title p:not(.eyebrow) {
    color: var(--muted);
}

.about,
.vehicles,
.places,
.faq {
    background: var(--bg-soft);
}

.services,
.gallery {
    background: var(--bg);
}

.about-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
    max-width: 1120px;
    margin: auto;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-content h3 {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-content p {
    color: var(--muted);
    margin-bottom: 18px;
}

.service-grid,
.vehicle-grid,
.gallery-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin: auto;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: auto;
}

.place-card,
.service-card,
.vehicle-card,
.faq-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.place-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.place-card:hover,
.service-card:hover,
.vehicle-card:hover,
.faq-card:hover {
    transform: translateY(-6px);
    background: var(--surface-strong);
    border-color: rgba(250, 204, 21, 0.28);
}

.place-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(15, 23, 42, 0.95));
}

.place-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.44), rgba(2, 6, 23, 0.03) 55%);
    pointer-events: none;
}

.place-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.place-card:hover img {
    transform: scale(1.04);
}

.place-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    max-width: calc(100% - 28px);
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.72);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.place-content,
.service-card,
.vehicle-card,
.faq-card {
    padding: 26px;
}

.place-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.place-content h3,
.service-card h3,
.vehicle-card h3,
.faq-card h3 {
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.place-content h3 {
    color: var(--accent);
}

.place-content p,
.service-card p,
.vehicle-card p,
.faq-card p {
    color: var(--muted);
    font-size: 15px;
}

.service-card i,
.vehicle-card i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.vehicle-card {
    text-align: center;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    min-height: 320px;
    border: 1px solid var(--line);
}

.gallery-item img {
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.05));
    display: flex;
    align-items: flex-end;
    padding: 22px;
}

.gallery-overlay h3 {
    font-size: 22px;
}

.faq-card a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cta {
    background:
        linear-gradient(rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.86)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-content {
    max-width: 880px;
    margin: auto;
}

.cta h2 {
    font-size: clamp(34px, 6vw, 56px);
    line-height: 1.15;
    margin-bottom: 18px;
}

.cta p:not(.eyebrow) {
    color: #e2e8f0;
    font-size: 18px;
    margin-bottom: 34px;
}

.site-footer {
    background: #020617;
    padding: 42px 8%;
    text-align: center;
    border-top: 1px solid var(--line);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.socials a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
    background: var(--accent);
    color: #111827;
    transform: translateY(-3px);
}

.site-footer p {
    color: var(--subtle);
}

.site-footer p a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 900px) {
    .site-nav {
        position: relative;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .nav-toggle-label {
        display: inline-flex;
        width: 44px;
        height: 44px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 0 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        cursor: pointer;
    }

    .nav-toggle-label span {
        width: 100%;
        height: 2px;
        background: var(--text);
        border-radius: 999px;
    }

    .nav-toggle:focus-visible + .nav-toggle-label {
        outline: 3px solid var(--accent);
        outline-offset: 4px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 14px);
        right: 0;
        width: min(280px, 90vw);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: rgba(2, 6, 23, 0.98);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-links a {
        padding: 12px 10px;
        border-radius: 6px;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        background: rgba(250, 204, 21, 0.12);
    }

    .nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 76px 6%;
    }

    .hero {
        min-height: 92svh;
        padding-top: 110px;
    }

    .hero-content p:not(.eyebrow),
    .cta p:not(.eyebrow) {
        font-size: 16px;
    }

    .service-grid,
    .vehicle-grid,
    .gallery-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .places-grid {
        gap: 18px;
    }

    .place-media {
        aspect-ratio: 4 / 3;
    }

    .gallery-item,
    .gallery-item img {
        min-height: 260px;
    }

    .hero-btns,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .logo {
        font-size: 18px;
    }

    .section-title {
        margin-bottom: 38px;
    }

    .place-content,
    .service-card,
    .vehicle-card,
    .faq-card {
        padding: 22px;
    }
}
