:root {
    --primary: #8A8F2F;
    --primary-dark: #666A25;
    --brown: #3F3026;
    --sand: #D8C5A3;
    --dark-bg: #080A08;
    --dark-soft: #10130F;
    --card-bg: rgba(19, 22, 17, 0.88);
    --text-main: #F8F7F1;
    --text-muted: #B8B9AE;
    --border-color: rgba(255, 255, 255, 0.12);
    --glass-bg: rgba(8, 10, 8, 0.72);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top left, rgba(138, 143, 47, 0.16), transparent 38%), var(--dark-bg);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1, h2, h3, .brand-logo {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.03em;
}

.container,
.top-bar-container,
.nav-container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--primary);
    color: #101010;
    padding: 10px 16px;
    border-radius: 12px;
    z-index: 9999;
}

.skip-link:focus {
    left: 12px;
}

.top-bar {
    background: #050605;
    color: var(--text-muted);
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-container {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-bar-info,
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar i {
    color: var(--primary);
}

.top-bar a:hover,
.top-bar-social a:hover {
    color: var(--primary);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 6, 5, 0.94);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
}

.nav-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: #111;
    background: linear-gradient(135deg, var(--sand), var(--primary));
    box-shadow: 0 10px 30px rgba(138, 143, 47, 0.24);
}

.logo-text {
    display: grid;
    line-height: 1;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.logo-text strong {
    color: var(--primary);
}

.logo-text small {
    margin-top: 4px;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    color: rgba(248, 247, 241, 0.88);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav,
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-nav,
.btn-primary {
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--sand));
    color: #111 !important;
    box-shadow: 0 14px 36px rgba(138, 143, 47, 0.2);
}

.btn-nav {
    padding: 10px 20px;
}

.btn-primary {
    padding: 13px 23px;
}

.btn-large {
    min-height: 52px;
    padding: 15px 25px;
}

.btn-secondary,
.btn-outline {
    border: 1px solid rgba(216, 197, 163, 0.48);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    padding: 13px 23px;
}

.btn-secondary {
    width: 100%;
}

.btn-nav:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #111;
}

.mobile-menu-btn {
    display: none;
    border: 1px solid var(--border-color);
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 1.2rem;
}

.hero {
    position: relative;
    min-height: 780px;
    display: grid;
    place-items: center;
    padding: 120px 0 170px;
    background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&q=80&w=2200') center/cover fixed;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 10, 8, 0.92), rgba(8, 10, 8, 0.55), rgba(8, 10, 8, 0.82)),
        radial-gradient(circle at 50% 30%, rgba(138, 143, 47, 0.28), transparent 38%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(92%, 980px);
    text-align: center;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sand);
    background: rgba(138, 143, 47, 0.16);
    border: 1px solid rgba(216, 197, 163, 0.22);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    margin: 22px auto 18px;
    max-width: 940px;
    font-size: clamp(2.6rem, 6vw, 5.7rem);
    line-height: 0.96;
    font-weight: 900;
}

.hero-subtitle {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(248, 247, 241, 0.8);
    font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-strip {
    margin: 34px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-strip span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(248, 247, 241, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.trust-strip i {
    color: var(--primary);
}

.booking-section {
    position: relative;
    z-index: 2;
    margin-top: -112px;
    padding-bottom: 80px;
}

.booking-widget {
    background: linear-gradient(145deg, rgba(21, 24, 19, 0.96), rgba(10, 12, 10, 0.96));
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(22px, 4vw, 34px);
}

.booking-heading {
    margin-bottom: 22px;
}

.booking-heading span {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.booking-heading h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    margin-top: 4px;
}

.booking-heading p {
    color: var(--text-muted);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 0.9fr auto;
    gap: 14px;
    align-items: end;
}

.input-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.input-group input,
.input-group select {
    width: 100%;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    outline: none;
    padding: 0 14px;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(138, 143, 47, 0.14);
}

.input-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.75;
}

.booking-footer {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.booking-footer i {
    color: var(--primary);
}

.features,
.fleet,
.faq,
.process,
.testimonials,
.contact,
.split-section {
    padding: 92px 0;
}

.section-kicker {
    margin-bottom: 14px;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 14px;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
    color: var(--text-muted);
}

.features .section-kicker,
.fleet .section-kicker,
.process .section-kicker,
.faq .section-kicker {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.features-grid,
.fleet-grid,
.process-grid,
.stats-grid {
    display: grid;
    gap: 22px;
}

.features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.fleet-card,
.process-card,
.contact-card,
.testimonial-box,
.booking-widget {
    position: relative;
    overflow: hidden;
}

.feature-card,
.process-card,
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px;
}

.feature-card::before,
.fleet-card::before,
.process-card::before,
.contact-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0.85;
}

.feature-card i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: var(--primary);
    background: rgba(138, 143, 47, 0.12);
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.feature-card h3,
.process-card h3,
.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.16rem;
}

.feature-card p,
.process-card p,
.contact-card li,
.split-content p,
.testimonial-box p {
    color: var(--text-muted);
}

.split-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.split-grid,
.contact-grid,
.testimonial-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.split-image {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--shadow);
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.split-content h2,
.contact-content h2,
.testimonial-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.check-list,
.specs-list,
.contact-card ul,
.footer-col ul {
    list-style: none;
}

.check-list {
    margin: 24px 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    display: flex;
    gap: 12px;
    color: rgba(248, 247, 241, 0.86);
}

.check-list i {
    margin-top: 5px;
    color: var(--primary);
}

.fleet {
    background: rgba(255, 255, 255, 0.02);
}

.fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fleet-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.2);
}

.fleet-img {
    position: relative;
    height: 290px;
    overflow: hidden;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img img {
    transform: scale(1.06);
}

.fleet-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--primary);
    color: #111;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 900;
}

.fleet-tag.soft {
    background: rgba(248, 247, 241, 0.88);
}

.fleet-info {
    padding: 30px;
}

.category {
    color: var(--primary);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 900;
    margin-bottom: 6px;
}

.fleet-info h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.specs-list {
    display: grid;
    gap: 11px;
    margin-bottom: 24px;
}

.specs-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(248, 247, 241, 0.84);
}

.specs-list i {
    color: var(--primary);
    width: 20px;
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card span {
    display: inline-block;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 16px;
}

.testimonial-box {
    background: linear-gradient(135deg, rgba(138, 143, 47, 0.16), rgba(63, 48, 38, 0.18));
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: clamp(28px, 5vw, 48px);
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid div {
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);
}

.stats-grid strong {
    display: block;
    color: var(--sand);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-grid span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    font-weight: 800;
    text-align: left;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

.faq-answer p {
    padding: 0 22px 22px;
    color: var(--text-muted);
}

.contact {
    background: linear-gradient(180deg, transparent, rgba(138, 143, 47, 0.06));
}

.contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.contact-card ul {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.contact-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-card i {
    color: var(--primary);
    margin-top: 4px;
}

.footer {
    background: #050605;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 38px;
}

.footer-col h2,
.footer-col h3 {
    margin-bottom: 16px;
}

.footer-col h2 {
    color: var(--primary);
    letter-spacing: 0.05em;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col ul {
    display: grid;
    gap: 10px;
}

.footer-col li {
    display: flex;
    gap: 10px;
}

.footer-col i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #74766f;
    font-size: 0.84rem;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1001;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 2rem;
    box-shadow: 0 14px 38px rgba(37, 211, 102, 0.32);
    animation: pulse 2.4s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 14px 38px rgba(37, 211, 102, 0.32); }
    50% { box-shadow: 0 14px 46px rgba(37, 211, 102, 0.52); }
}

@media (max-width: 1100px) {
    .booking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .btn-group {
        grid-column: 1 / -1;
    }

    .btn-group .btn-primary {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .top-bar-social,
    .top-bar-info a {
        display: none;
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
    }

    .nav-links {
        position: fixed;
        top: 114px;
        left: 4%;
        right: 4%;
        display: grid;
        gap: 6px;
        padding: 18px;
        border: 1px solid var(--border-color);
        border-radius: 22px;
        background: rgba(8, 10, 8, 0.97);
        box-shadow: var(--shadow);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .btn-nav {
        margin-top: 6px;
    }

    .hero {
        min-height: 720px;
        padding: 96px 0 150px;
        background-attachment: scroll;
    }

    .trust-strip {
        align-items: stretch;
    }

    .booking-section {
        margin-top: -86px;
    }

    .booking-grid,
    .split-grid,
    .fleet-grid,
    .process-grid,
    .testimonial-box,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .split-image,
    .split-image img {
        min-height: 340px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .top-bar-container {
        justify-content: center;
        text-align: center;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: clamp(2.35rem, 14vw, 3.6rem);
    }

    .hero-actions,
    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions a,
    .contact-actions a {
        width: 100%;
    }

    .booking-widget,
    .feature-card,
    .process-card,
    .contact-card,
    .fleet-info {
        padding: 22px;
    }

    .features,
    .fleet,
    .faq,
    .process,
    .testimonials,
    .contact,
    .split-section {
        padding: 68px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 18px;
        bottom: 18px;
    }
}