:root {
    --navy-950: #031126;
    --navy-900: #071a38;
    --navy-800: #0b2a51;
    --navy-700: #123f72;
    --gold-500: #d7a33b;
    --gold-400: #e5bd63;
    --gold-200: #f4e2b7;
    --white: #ffffff;
    --off-white: #f7f8fb;
    --surface: #ffffff;
    --text: #14213a;
    --muted: #67748b;
    --border: #e2e7ef;
    --success: #198754;
    --danger: #c73535;
    --shadow-soft: 0 16px 45px rgba(3, 17, 38, 0.10);
    --shadow-card: 0 10px 28px rgba(7, 26, 56, 0.08);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.site-container {
    width: min(1420px, calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--navy-900);
}

.top-strip {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: var(--navy-950);
    color: #dce7f5;
    font-size: 0.84rem;
}

.top-strip__content,
.top-strip__contact,
.top-strip__actions {
    display: flex;
    align-items: center;
}

.top-strip__content {
    min-height: 38px;
    justify-content: space-between;
    gap: 20px;
}

.top-strip__contact,
.top-strip__actions {
    gap: 12px;
}

.top-strip a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e8eef7;
}

.top-strip a:hover {
    color: var(--gold-400);
}

.top-strip__separator {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.18);
}

.language-button {
    padding: 0;
    border: 0;
    color: var(--gold-400);
    background: transparent;
}

.icon-circle--small {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    font-size: 0.72rem;
}

.icon-circle--whatsapp {
    border-color: rgba(37, 211, 102, 0.55);
    color: #72e89d;
}

.premium-navbar {
    min-height: 78px;
    padding: 0;
    background: rgba(7, 26, 56, 0.98);
}

.navbar-container {
    display: flex;
    min-height: 78px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
}

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

.brand__mark {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    direction: ltr;
}

.brand__text strong {
    font-size: 1.22rem;
    letter-spacing: 0.04em;
}

.brand__text small {
    margin-top: 5px;
    color: var(--gold-400);
    font-size: 0.68rem;
    letter-spacing: 0.28em;
}

.premium-nav-links {
    gap: 7px;
}

.premium-nav-links .nav-link {
    position: relative;
    padding: 27px 14px 25px !important;
    color: rgba(255, 255, 255, 0.83);
    font-weight: 700;
    font-size: 0.94rem;
}

.premium-nav-links .nav-link::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 15px;
    left: 14px;
    height: 2px;
    border-radius: 99px;
    background: var(--gold-500);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.premium-nav-links .nav-link:hover,
.premium-nav-links .nav-link.active {
    color: var(--white);
}

.premium-nav-links .nav-link:hover::after,
.premium-nav-links .nav-link.active::after {
    transform: scaleX(1);
}

.premium-gold-button,
.premium-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.premium-gold-button {
    min-height: 46px;
    padding-inline: 24px;
    border: 1px solid var(--gold-400);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-950);
    box-shadow: 0 12px 24px rgba(215, 163, 59, 0.25);
}

.premium-gold-button:hover {
    color: var(--navy-950);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(215, 163, 59, 0.32);
}

.premium-primary-button {
    min-height: 54px;
    width: 100%;
    padding-inline: 22px;
    border: 1px solid var(--navy-900);
    background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
    color: var(--white);
    box-shadow: 0 12px 24px rgba(7, 26, 56, 0.18);
}

.premium-primary-button:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.premium-toggler {
    display: none;
    width: 46px;
    height: 42px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 10px;
}

.premium-toggler span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: var(--white);
}

.hero-section {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background-color: var(--navy-900);
    background-image: url("../images/hero/hero-premium.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 17, 38, 0.03) 0%, rgba(3, 17, 38, 0.22) 45%, rgba(3, 17, 38, 0.82) 100%);
}

.hero-content {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(590px, 48%);
    margin-right: 0;
    margin-left: auto;
    padding: 48px 0 84px;
    text-align: right;
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gold-400);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.eyebrow--gold {
    color: var(--gold-400);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.75rem, 4.3vw, 4.75rem);
    font-weight: 900;
    line-height: 1.12;
}

.hero-copy h1 span {
    display: block;
    color: var(--gold-400);
}

.hero-copy > p {
    max-width: 590px;
    margin: 22px 0 30px;
    color: #dce7f5;
    font-size: 1.14rem;
    line-height: 1.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 12px;
    background: rgba(6, 20, 45, 0.36);
    backdrop-filter: blur(8px);
    color: #eff5fb;
    font-size: 0.9rem;
}

.hero-feature__icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(215, 163, 59, 0.58);
    border-radius: 9px;
    color: var(--gold-400);
    font-size: 0.78rem;
    font-weight: 900;
}

.booking-shell {
    position: relative;
    z-index: 5;
    margin-top: -56px;
}

.booking-card {
    padding: 28px;
    border: 1px solid rgba(215, 163, 59, 0.38);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

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

.section-heading--compact {
    margin-bottom: 24px;
}

.section-heading > span {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--gold-500);
    font-size: 0.9rem;
    font-weight: 800;
}

.section-heading h2 {
    position: relative;
    margin: 0;
    padding-bottom: 14px;
    color: var(--navy-900);
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    font-weight: 900;
}

.section-heading h2::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 99px;
    background: var(--gold-500);
    transform: translateX(50%);
}

.section-heading p {
    margin: 12px 0 0;
    color: var(--muted);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.booking-field {
    grid-column: span 1;
}

.booking-field--wide {
    grid-column: span 1;
}

.booking-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy-900);
    font-size: 0.84rem;
    font-weight: 800;
}

.booking-field input,
.booking-field select {
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.booking-field input:focus,
.booking-field select:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(215, 163, 59, 0.13);
}

.booking-action {
    grid-column: span 1;
}

.booking-note {
    margin-top: 16px;
    color: var(--muted);
    text-align: center;
    font-size: 0.86rem;
}

.booking-note strong {
    color: var(--gold-500);
}

.booking-feedback {
    min-height: 0;
    margin-top: 0;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    transition: all 160ms ease;
}

.booking-feedback--success,
.booking-feedback--error {
    min-height: 44px;
    margin-top: 14px;
    padding: 10px 14px;
}

.booking-feedback--success {
    border: 1px solid rgba(25, 135, 84, 0.25);
    background: rgba(25, 135, 84, 0.08);
    color: var(--success);
}

.booking-feedback--error {
    border: 1px solid rgba(199, 53, 53, 0.25);
    background: rgba(199, 53, 53, 0.08);
    color: var(--danger);
}

.content-section {
    padding: 88px 0;
}

.content-section--soft {
    background: linear-gradient(180deg, #f9fafc, #f4f6fa);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card {
    min-height: 235px;
    padding: 26px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: 0 7px 20px rgba(7, 26, 56, 0.04);
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card:hover {
    transform: translateY(-7px);
    border-color: rgba(215, 163, 59, 0.45);
    box-shadow: var(--shadow-card);
}

.benefit-icon {
    display: inline-flex;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid var(--gold-200);
    border-radius: 20px;
    background: #fffaf0;
    color: var(--navy-900);
    font-size: 1.45rem;
    font-weight: 900;
}

.benefit-card h3 {
    margin: 0 0 10px;
    color: var(--navy-900);
    font-size: 1.05rem;
    font-weight: 900;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.fleet-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 42px rgba(7, 26, 56, 0.15);
}

.fleet-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 99px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-size: 0.75rem;
    font-weight: 900;
}

.fleet-card__visual {
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #edf1f6, #ffffff);
}

.fleet-card--luxury .fleet-card__visual {
    background: linear-gradient(145deg, #f0e7d4, #fffdf7);
}

.fleet-card--suv .fleet-card__visual {
    background: linear-gradient(145deg, #e2e8ef, #fafcfe);
}

.fleet-card--family .fleet-card__visual {
    background: linear-gradient(145deg, #e9edf3, #ffffff);
}

.fleet-card--economy .fleet-card__visual {
    background: linear-gradient(145deg, #edf3f7, #ffffff);
}

.car-silhouette {
    position: relative;
    display: inline-flex;
    width: 78%;
    height: 82px;
    align-items: center;
    justify-content: center;
    border-radius: 45% 45% 20% 20% / 55% 55% 25% 25%;
    background: linear-gradient(145deg, #0f2949, #020912);
    color: transparent;
    box-shadow: inset 0 -8px 14px rgba(255, 255, 255, 0.08), 0 18px 28px rgba(7, 26, 56, 0.20);
}

.car-silhouette::before,
.car-silhouette::after {
    content: "";
    position: absolute;
    bottom: -18px;
    width: 46px;
    height: 46px;
    border: 8px solid #101820;
    border-radius: 50%;
    background: #b7c0ca;
}

.car-silhouette::before {
    right: 16%;
}

.car-silhouette::after {
    left: 16%;
}

.fleet-card__content {
    padding: 24px;
}

.fleet-card__content h3 {
    margin: 0 0 8px;
    color: var(--navy-900);
    font-size: 1.3rem;
    font-weight: 900;
}

.fleet-card__content p {
    min-height: 56px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.9rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-800);
    font-weight: 900;
}

.text-link span {
    color: var(--gold-500);
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 48px;
    right: 12%;
    left: 12%;
    border-top: 1px dashed #a9b6c7;
}

.step-card {
    position: relative;
    z-index: 1;
    padding: 0 18px;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -4px;
    right: calc(50% - 48px);
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-400);
    color: var(--navy-950);
    font-size: 0.76rem;
    font-weight: 900;
}

.step-icon {
    display: inline-flex;
    width: 96px;
    height: 96px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 2px solid var(--navy-900);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 8px var(--white);
    color: var(--navy-900);
    font-size: 1.7rem;
    font-weight: 900;
}

.step-card h3 {
    margin: 0 0 8px;
    color: var(--navy-900);
    font-size: 1.05rem;
    font-weight: 900;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.corporate-section {
    padding: 0 0 88px;
}

.corporate-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px 48px;
    border: 1px solid rgba(215, 163, 59, 0.25);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 15% 10%, rgba(215, 163, 59, 0.19), transparent 32%),
        linear-gradient(135deg, var(--navy-800), var(--navy-950));
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.corporate-card h2 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 900;
}

.corporate-card p {
    margin: 0;
    color: #dce7f5;
}

.testimonials-section {
    padding-top: 0;
}

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

.testimonial-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.stars {
    margin-bottom: 12px;
    color: #e7ad2a;
    letter-spacing: 3px;
}

.testimonial-card p {
    min-height: 70px;
    margin: 0 0 14px;
    color: var(--muted);
}

.testimonial-card strong {
    color: var(--navy-900);
}

.contact-band {
    padding: 0 0 36px;
}

.contact-band__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    padding: 28px 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.contact-band__whatsapp,
.contact-band__phone {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-band__whatsapp div,
.contact-band__phone {
    flex-direction: column;
    align-items: flex-start;
}

.contact-band__icon {
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 2rem;
}

.contact-band small {
    color: #c8d5e5;
}

.contact-band strong,
.contact-band a {
    font-size: 1.3rem;
    font-weight: 900;
}

.contact-band__divider {
    width: 1px;
    height: 64px;
    background: rgba(255, 255, 255, 0.18);
}

.site-footer {
    padding: 64px 0 0;
    background: var(--navy-950);
    color: #c8d5e5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: 44px;
    padding-bottom: 46px;
}

.brand--footer {
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 360px;
    color: #aebed2;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h3 {
    margin: 0 0 12px;
    color: var(--gold-400);
    font-size: 1rem;
    font-weight: 900;
}

.footer-column a:hover {
    color: var(--gold-400);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #90a4bd;
    font-size: 0.82rem;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--white);
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
    font-size: 1.65rem;
}

.floating-whatsapp:hover {
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .premium-toggler {
        display: block;
        margin-right: auto;
    }

    .navbar-booking-button {
        margin: 16px 0 22px;
    }

    .premium-nav-links .nav-link {
        padding: 11px 0 !important;
    }

    .premium-nav-links .nav-link::after {
        display: none;
    }

    .booking-form {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .booking-field--wide {
        grid-column: span 1;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-container {
        width: min(100% - 30px, 1420px);
    }

    .top-strip__actions span:last-child {
        display: none;
    }

    .hero-section,
    .hero-content {
        min-height: 590px;
    }

    .hero-section {
        background-position: 30% center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(3, 17, 38, 0.52), rgba(3, 17, 38, 0.97));
    }

    .hero-copy {
        width: 100%;
        margin: 0;
        padding-top: 72px;
        text-align: center;
    }

    .hero-copy > p {
        margin-inline: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .booking-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-field,
    .booking-field--wide,
    .booking-action {
        grid-column: span 1;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 46px;
    }

    .steps-grid::before {
        display: none;
    }

    .corporate-card,
    .contact-band__content {
        flex-direction: column;
        text-align: center;
    }

    .contact-band__divider {
        width: 80%;
        height: 1px;
    }

    .contact-band__phone,
    .contact-band__whatsapp div {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .site-container {
        width: min(100% - 22px, 1420px);
    }

    .top-strip__content {
        justify-content: center;
    }

    .top-strip__actions {
        display: none;
    }

    .brand__mark {
        width: 44px;
        height: 44px;
    }

    .brand__text strong {
        font-size: 1rem;
    }

    .brand__text small {
        font-size: 0.57rem;
    }

    .hero-section,
    .hero-content {
        min-height: 650px;
    }

    .hero-copy h1 {
        font-size: 3.05rem;
    }

    .hero-feature {
        width: calc(50% - 6px);
        justify-content: center;
    }

    .booking-card {
        padding: 24px 16px;
        border-radius: 22px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 66px 0;
    }

    .benefits-grid,
    .fleet-grid,
    .steps-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: 0;
    }

    .corporate-card {
        padding: 34px 24px;
    }

    .contact-band__content {
        padding: 28px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }
}
