/* ============================================================
   JUVENTUS TOURS & TRAVELS — style.css
   Theme: Bright Royal Blue (#1565C0) + Bold Red (#C62828)
          on clean white/light background
   Fonts: Cormorant Garamond (serif) · Outfit (sans)
   ============================================================ */

/* ── ROOT VARIABLES ── */
:root {
    --red: #C62828;
    --red-lt: #E53935;
    --red-dk: #8E1A1A;
    --blue: #1565C0;
    --blue-lt: #1976D2;
    --blue-dk: #0D47A1;
    --blue-pale: #E3F0FF;
    --white: #FFFFFF;
    --off-white: #F5F7FA;
    --grey-lt: #EEF1F6;
    --grey: #CBD5E1;
    --text: #1A1A2E;
    --text-md: #3D4466;
    --text-lt: #6B7280;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Outfit', sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --shadow: 0 4px 24px rgba(21, 101, 192, 0.10);
    --shadow-lg: 0 8px 48px rgba(21, 101, 192, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--blue);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--grey-lt);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 2px;
}

/* ── SECTION LABEL ── */
.section-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.btn-primary:hover {
    background: var(--red-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--blue);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 30px;
    border: 2px solid var(--blue);
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

/* ── HEADER ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(21, 101, 192, 0.10);
    border-bottom: 1px solid var(--grey-lt);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-dk) 0%, var(--blue) 50%, var(--red) 100%);
}

.logo img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.08em;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

nav a {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-md);
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 100%;
    height: 2px;
    background: var(--red);
    transition: right 0.3s var(--ease);
}

nav a:hover {
    color: var(--blue);
}

nav a:hover::after {
    right: 0;
}

.header-hotline {
    font-size: 0.78rem;
    color: var(--text-lt);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.header-hotline:hover {
    color: var(--blue);
}

.header-hotline i {
    color: var(--blue);
    font-size: 0.75rem;
}

.menu-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--blue);
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center 40%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(13, 71, 161, 0.88) 0%, rgba(21, 101, 192, 0.65) 45%, rgba(21, 101, 192, 0.20) 100%),
        linear-gradient(to top, rgba(13, 71, 161, 0.70) 0%, transparent 55%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.30) 0%, transparent 30%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeUp 0.9s var(--ease) 0.2s both;
}

.hero-eyebrow span {
    width: 40px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    animation: fadeUp 0.9s var(--ease) 0.4s both;
}

.hero h1 em {
    font-style: italic;
    color: #FFD54F;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.80);
    max-width: 480px;
    margin-bottom: 48px;
    animation: fadeUp 0.9s var(--ease) 0.6s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s var(--ease) 0.8s both;
}

.hero-cta .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-cta .btn-outline:hover {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--blue);
    padding: 40px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
}

/* ── ABOUT ── */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    background: var(--off-white);
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.about h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 28px;
}

.about h2 em {
    font-style: italic;
    color: var(--blue);
}

.about p {
    color: var(--text-lt);
    margin-bottom: 20px;
    font-size: 0.97rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 3px solid var(--blue-pale);
    z-index: 0;
    border-radius: 2px;
}

/* ── FLEET ── */
.fleet {
    background: var(--white);
    padding: 120px 0;
    overflow: hidden;
}

.fleet-header {
    padding: 0 80px;
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.fleet-header h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
}

.fleet-header h2 em {
    font-style: italic;
    color: var(--blue);
}

.fleet-hint {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-lt);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fleet-hint i {
    color: var(--blue);
}

.fleet-wrapper {
    position: relative;
}

.fleet-scroll-container {
    height: 82vh;
    max-height: 720px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fleet-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Fleet card */
.fleet-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 82vh;
    max-height: 720px;
    position: relative;
    display: flex;
    overflow: hidden;
}

.fleet-card-img {
    position: absolute;
    inset: 0;
}

.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s var(--ease);
}

.fleet-card:hover .fleet-card-img img {
    transform: scale(1.03);
}

.fleet-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(13, 71, 161, 0.97) 0%, rgba(21, 101, 192, 0.88) 40%, rgba(21, 101, 192, 0.10) 100%),
        linear-gradient(to top, rgba(13, 71, 161, 0.5) 0%, transparent 50%);
}

.fleet-card-info {
    position: relative;
    z-index: 2;
    width: 460px;
    max-width: 48%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 56px;
}

.fleet-card-num {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 2px;
}

.fleet-card-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #FFD54F;
    margin-bottom: 4px;
}

.fleet-card-name {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
}

.fleet-card-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-bottom: 14px;
}

.fleet-card-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-val {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: #FFD54F;
    line-height: 1;
}

.spec-key {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* Price tiles */
.price-block {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.price-tile {
    flex: 1;
    padding: 10px 14px;
    border-radius: 4px;
}

.price-tile.self {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.price-tile.driver {
    background: rgba(198, 40, 40, 0.45);
    border: 1px solid rgba(229, 57, 53, 0.65);
}

.price-tile-label {
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-tile.self .price-tile-label i {
    color: #90CAF9;
}

.price-tile.driver .price-tile-label i {
    color: #FFCDD2;
}

.price-amount {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
}

.price-amount sub {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 3px;
}

/* Fleet nav */
.fleet-dots {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fleet-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(21, 101, 192, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.fleet-dot.active {
    background: var(--blue);
    height: 22px;
    border-radius: 3px;
}

.fleet-nav {
    position: absolute;
    bottom: 32px;
    right: 72px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.fleet-nav-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--blue);
    background: var(--white);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
    border-radius: 2px;
}

.fleet-nav-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.fleet-counter {
    position: absolute;
    bottom: 44px;
    left: 80px;
    z-index: 10;
    font-family: var(--serif);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.fleet-counter span {
    color: #FFD54F;
    font-size: 1.4rem;
}

/* ── TEAM ── */
.team {
    background: var(--off-white);
    padding: 120px 80px;
}

.team-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 64px;
    text-align: center;
}

.team-heading em {
    font-style: italic;
    color: var(--blue);
}

.team-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.team-row:last-child {
    margin-bottom: 0;
}

.team-row.reverse .team-image {
    order: 2;
}

.team-row.reverse .team-text {
    order: 1;
}

.team-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
}

.team-text h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 16px;
}

.team-text p {
    font-size: 0.95rem;
    color: var(--text-lt);
    line-height: 1.8;
}

/* ── TOURS ── */
.tours {
    background: var(--white);
    padding: 120px 80px;
}

.tours h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 56px;
}

.tours h2 em {
    font-style: italic;
    color: var(--blue);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tour-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.tour-card:hover img {
    transform: scale(1.07);
}

.tour-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 71, 161, 0.92) 0%, rgba(21, 101, 192, 0.35) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 24px;
}

.tour-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
}

.tour-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.tour-read {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFD54F;
    text-decoration: none;
    font-weight: 600;
}

/* ── CONTACT ── */
.contact {
    background: var(--grey-lt);
    padding: 120px 80px;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 28px;
}

.contact h2 em {
    font-style: italic;
    color: var(--red);
}

.contact-left-desc {
    font-size: 0.95rem;
    color: var(--text-lt);
    margin-bottom: 48px;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 2px;
}

.contact-detail-text span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-detail-text p,
.contact-detail-text a {
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
    margin: 0;
    transition: color 0.3s;
}

.contact-detail-text a:hover {
    color: var(--blue);
}

/* Form */
.form-field {
    position: relative;
    margin-bottom: 3px;
    background: var(--white);
    border: 1px solid var(--grey);
    transition: border-color 0.3s;
}

.form-field:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.08);
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px 20px 10px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 300;
    resize: none;
}

.form-field label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-lt);
    transition: all 0.2s;
    pointer-events: none;
}

.form-field input:focus~label,
.form-field input:not(:placeholder-shown)~label,
.form-field textarea:focus~label,
.form-field textarea:not(:placeholder-shown)~label {
    top: 8px;
    font-size: 0.6rem;
    color: var(--blue);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: transparent;
}

.form-submit {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wa-alt {
    font-size: 0.78rem;
    color: var(--text-lt);
    text-decoration: none;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.wa-alt:hover {
    color: #25D366;
}

.wa-alt i {
    color: #25D366;
}

/* ── FOOTER ── */
.footer {
    background: var(--blue-dk);
    border-top: 4px solid var(--red);
    padding: 72px 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 80px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.60);
    max-width: 280px;
    line-height: 1.8;
}

.footer-col h5 {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #FFD54F;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
    line-height: 1.6;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
    border-radius: 2px;
}

.social-link:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    animation: waPulse 3s ease-in-out infinite;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4
    }

    50% {
        opacity: 1
    }
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3)
    }

    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
══════════════════════════════════════════════ */
@media (max-width: 900px) {

    /* Header */
    .header {
        padding: 0 20px;
        background: var(--white);
    }

    .header .btn-primary {
        display: none;
    }

    .header-hotline {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px 24px;
        gap: 18px;
        border-bottom: 3px solid var(--blue);
        box-shadow: 0 8px 24px rgba(21, 101, 192, 0.12);
        z-index: 998;
    }

    nav.open {
        display: flex;
    }

    nav a {
        font-size: 0.9rem;
        padding: 6px 0;
        color: var(--text);
        border-bottom: 1px solid var(--grey-lt);
    }

    nav a:last-child {
        border-bottom: none;
    }

    /* Hero */
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    /* Stats */
    .stats-bar {
        padding: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item {
        padding: 24px 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:nth-child(2),
    .stat-item:nth-child(4) {
        border-right: none;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    /* About */
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 72px 20px;
    }

    .about-image::before {
        display: none;
    }

    /* Fleet */
    .fleet {
        padding: 48px 0 0;
    }

    .fleet-header {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 20px;
    }

    .fleet-scroll-container {
        height: 100svh;
        max-height: 100svh;
    }

    /* Card — image on top, info below */
    .fleet-card {
        height: 100svh;
        max-height: 100svh;
        flex-direction: column;
        display: flex;
        overflow: hidden;
    }

    .fleet-card-img {
        position: relative;
        width: 100%;
        flex-shrink: 0;
        aspect-ratio: 16 / 9;
    }

    .fleet-card-img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none !important;
    }

    .fleet-card:hover .fleet-card-img img {
        transform: none !important;
    }

    .fleet-card-overlay {
        display: none;
    }

    .fleet-card-info {
        position: relative;
        width: 100%;
        max-width: 100%;
        flex: 1;
        height: auto;
        justify-content: flex-start;
        padding: 14px 18px 72px;
        background: var(--blue-dk);
        overflow-y: auto;
        scrollbar-width: none;
        border-top: 3px solid var(--red);
    }

    .fleet-card-info::-webkit-scrollbar {
        display: none;
    }

    .fleet-card-num {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.12);
    }

    .fleet-card-tag {
        font-size: 0.58rem;
    }

    .fleet-card-name {
        font-size: clamp(1.2rem, 4.5vw, 1.6rem);
        margin-bottom: 4px;
    }

    .fleet-card-desc {
        font-size: 0.74rem;
        line-height: 1.5;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .fleet-card-specs {
        gap: 14px;
        margin-bottom: 8px;
    }

    .spec-val {
        font-size: 0.95rem;
    }

    .spec-key {
        font-size: 0.55rem;
    }

    .price-block {
        gap: 6px;
        margin-bottom: 10px;
    }

    .price-tile {
        padding: 8px 12px;
    }

    .price-tile-label {
        font-size: 0.55rem;
        margin-bottom: 3px;
    }

    .price-amount {
        font-size: 1rem;
    }

    .price-amount sub {
        font-size: 0.55rem;
    }

    .btn-primary {
        padding: 11px 18px;
        font-size: 0.72rem;
        width: 100%;
        justify-content: center;
    }

    .fleet-dots {
        top: 12px;
        right: 12px;
        flex-direction: column;
        gap: 4px;
    }

    .fleet-dot {
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.4);
    }

    .fleet-dot.active {
        width: 4px;
        height: 16px;
        border-radius: 2px;
        background: var(--white);
    }

    .fleet-counter {
        left: 18px;
        bottom: 16px;
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .fleet-counter span {
        font-size: 0.95rem;
        color: #FFD54F;
    }

    .fleet-nav {
        right: 18px;
        bottom: 14px;
        gap: 6px;
    }

    .fleet-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 0.72rem;
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        color: var(--white);
    }

    .fleet-nav-btn:hover {
        background: var(--white);
        color: var(--blue-dk);
    }

    /* Team */
    .team {
        padding: 72px 20px;
    }

    .team-heading {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        margin-bottom: 40px;
    }

    .team-row,
    .team-row.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .team-row.reverse .team-image,
    .team-row.reverse .team-text {
        order: unset;
    }

    .team-text h3 {
        font-size: 1.6rem;
    }

    /* Tours */
    .tours {
        padding: 72px 20px;
    }

    .tours h2 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        margin-bottom: 32px;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tour-card {
        aspect-ratio: 16/9;
    }

    /* Contact */
    .contact {
        padding: 72px 20px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact h2 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    /* Footer */
    .footer {
        padding: 48px 20px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL PHONE (max 480px)
══════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .hero p {
        font-size: 0.88rem;
    }

    .stats-bar {}

    .stat-num {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.62rem;
    }

    .fleet-card-img {
        aspect-ratio: 4 / 3;
    }

    .fleet-card-info {
        padding: 12px 14px 68px;
    }

    .fleet-card-desc {
        -webkit-line-clamp: 2;
    }

    .price-amount {
        font-size: 0.92rem;
    }

    .tour-card {
        aspect-ratio: 4/3;
    }

    .section-label {
        font-size: 0.62rem;
        letter-spacing: 0.2em;
    }
}