/* ============================================================
   TARUN TOUR AND TRAVEL — Custom Stylesheet
   Design: Luxury Travel Aesthetic — Deep Navy + Golden Amber
   Fonts: Cormorant Garamond (display) + Outfit (body)
============================================================ */

/* ────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES (Variables)
──────────────────────────────────────────────── */
:root {
    --navy: #0A2342;
    --navy-mid: #123763;
    --navy-light: #1a4a80;
    --gold: #E8B84B;
    --gold-dark: #c9961a;
    --gold-light: #f5d180;
    --warm-white: #F9F6F0;
    --off-white: #F0EBE1;
    --text-dark: #0D1B2A;
    --text-mid: #3C4A5C;
    --text-light: #7A8899;
    --white: #ffffff;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-sm: 0 2px 12px rgba(10, 35, 66, 0.08);
    --shadow-md: 0 8px 30px rgba(10, 35, 66, 0.12);
    --shadow-lg: 0 16px 50px rgba(10, 35, 66, 0.18);
    --shadow-xl: 0 24px 80px rgba(10, 35, 66, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ────────────────────────────────────────────────
   BASE RESET & GLOBAL
──────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ────────────────────────────────────────────────
   TYPOGRAPHY
──────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2.5rem;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.8rem;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}

.section-pad {
    padding: 6rem 0;
}

/* ────────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────────── */
#mainNavbar {
    background: transparent;
    padding: 1.2rem 0;
    transition: var(--transition-slow);
    z-index: 1000;
}

#mainNavbar.scrolled {
    background: var(--navy);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(10, 35, 66, 0.35);
}

/* Logo */
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-icon:hover {
    transform: rotate(45deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
}

.brand-sub {
    font-size: 0.65rem;
    color: var(--gold-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Nav links */
.navbar-nav .nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.5rem 0.75rem !important;
    letter-spacing: 0.04em;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

/* Book Now button in nav */
.btn-book {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.5rem 1.4rem !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.btn-book:hover {
    background: transparent;
    color: var(--gold) !important;
}

/* ────────────────────────────────────────────────
   HERO SECTION
   FIX NOTES:
   • BUG 3 — iOS Safari 100vh includes browser chrome bar.
     Use  calc(var(--vh, 1vh) * 100)  with a JS fallback that
     sets --vh = window.innerHeight * 0.01 on load/resize/orientationchange.
     This guarantees the section fills exactly the VISIBLE viewport.
   • BUG 5 — overflow:hidden moved from .hero-section to .hero-slider
     so the static stats bar can escape the overflow clip at mobile sizes.
──────────────────────────────────────────────── */
.hero-section {
    position: relative;
    /* Desktop default height */
    height: 100vh;
    /* iOS Safari dynamic viewport height fix (JS sets --vh) */
    height: calc(var(--vh, 1vh) * 100);
    /* Minimum height to ensure content fits — reduced for mobile */
    min-height: 650px;
    overflow: visible;
    /* Dark fallback to prevent white area if images fail or transition lags */
    background-color: var(--navy);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 520px; /* More appropriate for small screens */
    }
}

/* Slider
   FIX BUG 5: overflow:hidden lives here, not on .hero-section */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 35, 66, 0.78) 0%,
            rgba(10, 35, 66, 0.45) 50%,
            rgba(10, 35, 66, 0.3) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 820px;
    color: var(--white);
}

.slide-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease both;
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.9s ease 0.15s both;
}

.slide-title em {
    color: var(--gold);
    font-style: italic;
}

.slide-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.9s ease 0.3s both;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.45s both;
}

/* Hero Buttons */
.btn-hero-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    border: 2px solid var(--gold);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(232, 184, 75, 0.4);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(232, 184, 75, 0.5);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    margin-top: -30px;
    /* Offset stats bar */
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.slider-prev {
    left: 1.5rem;
}

.slider-next {
    right: 1.5rem;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active {
    background: var(--gold);
    width: 44px;
}

/* Stats Bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(10, 35, 66, 0.88);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(232, 184, 75, 0.2);
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1rem 0;
}

.stat-item {
    text-align: center;
    padding: 0 2.5rem;
    color: var(--white);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ────────────────────────────────────────────────
   BOOKING SECTION
──────────────────────────────────────────────── */
.booking-section {
    padding: 3rem 0 4rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 184, 75, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.booking-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 184, 75, 0.18);
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
    backdrop-filter: blur(10px);
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-header h2 {
    color: var(--white);
    font-size: 2rem;
}

.booking-header p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.booking-form .form-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.booking-form .form-control,
.booking-form .form-select {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.15);
    outline: none;
    color: var(--white);
}

.booking-form .form-select option {
    background: var(--navy-mid);
    color: var(--white);
}

.btn-book-submit {
    background: var(--gold);
    color: var(--navy);
    padding: 0.9rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--gold);
    letter-spacing: 0.04em;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(232, 184, 75, 0.35);
}

.btn-book-submit:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.booking-success h3 {
    color: var(--white);
    font-size: 1.8rem;
}

.booking-success p {
    color: rgba(255, 255, 255, 0.7);
}

.booking-success a {
    color: var(--gold);
    font-weight: 600;
}

/* ────────────────────────────────────────────────
   SERVICE CARDS
──────────────────────────────────────────────── */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.service-body {
    padding: 1.75rem;
    position: relative;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 15px rgba(10, 35, 66, 0.2);
}

.service-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.service-body p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 1rem;
    line-height: 1.65;
}

.service-features {
    margin-bottom: 1.25rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-mid);
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.btn-service {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 50px;
    padding: 0.55rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.btn-service:hover {
    background: var(--navy);
    color: var(--gold);
}

/* ────────────────────────────────────────────────
   FLEET SECTION
──────────────────────────────────────────────── */
.fleet-section {
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}

.fleet-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fleet-section .section-eyebrow {
    color: var(--gold-light);
}

.fleet-section .section-title {
    color: var(--white);
}

.fleet-section .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

.fleet-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fleet-img-wrap {
    height: 200px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.fleet-card:hover .fleet-img-wrap img {
    transform: scale(1.05);
}

.fleet-body {
    padding: 1.5rem;
    text-align: center;
}

.fleet-body h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.fleet-type {
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.fleet-specs {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.fleet-specs span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.fleet-specs span i {
    color: var(--gold);
    font-size: 0.75rem;
}

.btn-fleet {
    background: var(--gold);
    color: var(--navy);
    border-radius: 50px;
    padding: 0.55rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.btn-fleet:hover {
    background: transparent;
    color: var(--gold);
}

/* ────────────────────────────────────────────────
   PACKAGES SECTION
──────────────────────────────────────────────── */
.package-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--off-white);
    color: var(--text-mid);
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

.package-item {
    transition: var(--transition);
}

.package-item.hidden {
    display: none;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pkg-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.pkg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.package-card:hover .pkg-img-wrap img {
    transform: scale(1.08);
}

.pkg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 35, 66, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover .pkg-overlay {
    opacity: 1;
}

.btn-pkg-overlay {
    background: var(--gold);
    color: var(--navy);
    border-radius: 50px;
    padding: 0.6rem 1.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.package-card:hover .btn-pkg-overlay {
    transform: translateY(0);
}

.pkg-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--navy);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 50px;
    z-index: 1;
}

.new-badge {
    background: #e74c3c;
    color: var(--white);
}

.pkg-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    font-size: 0.72rem;
    padding: 0.28rem 0.75rem;
    border-radius: 50px;
    z-index: 1;
}

.pkg-duration i {
    color: var(--gold-light);
    margin-right: 0.3rem;
}

.pkg-body {
    padding: 1.4rem;
}

.pkg-destinations {
    margin-bottom: 0.6rem;
}

.pkg-destinations span {
    font-size: 0.78rem;
    color: var(--gold-dark);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.pkg-destinations i {
    font-size: 0.7rem;
    margin-right: 0.3rem;
}

.pkg-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--navy);
    line-height: 1.3;
}

.pkg-body p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.pkg-includes {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pkg-includes span {
    width: 32px;
    height: 32px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--navy-mid);
    transition: var(--transition);
    cursor: default;
}

.pkg-includes span:hover {
    background: var(--gold);
    color: var(--navy);
}

.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.9rem;
    border-top: 1px solid var(--off-white);
    gap: 0.75rem;
}

.pkg-price {
    line-height: 1.2;
}

.price-from {
    display: block;
    font-size: 0.68rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.price-amt {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
}

.price-amt span {
    font-size: 0.75rem;
    color: var(--text-mid);
    font-family: var(--font-body);
}

.btn-pkg {
    background: var(--navy);
    color: var(--gold);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-pkg:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-all-packages {
    background: var(--gold);
    color: var(--navy);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--gold);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(232, 184, 75, 0.35);
}

.btn-all-packages:hover {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

/* ────────────────────────────────────────────────
   DESTINATIONS MOSAIC
──────────────────────────────────────────────── */
.destinations-section {
    background: var(--off-white);
}

.destinations-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 1rem;
}

.dest-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.dest-item.dest-large {
    grid-row: span 2;
}

.dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dest-item:hover img {
    transform: scale(1.07);
}

.dest-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 35, 66, 0.75) 0%, transparent 55%);
    z-index: 1;
    transition: var(--transition);
}

.dest-item:hover::before {
    background: linear-gradient(to top, rgba(10, 35, 66, 0.85) 0%, rgba(10, 35, 66, 0.2) 60%);
}

.dest-label {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    color: var(--white);
}

.dest-label h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.1rem;
}

.dest-label span {
    font-size: 0.78rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
}

/* ────────────────────────────────────────────────
   WHY CHOOSE US SECTION
──────────────────────────────────────────────── */
.why-section {
    background: var(--warm-white);
}

.why-image-block {
    position: relative;
}

.why-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.why-badge-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--navy);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
}

.why-badge-card i {
    font-size: 2.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.why-badge-card strong {
    display: block;
    font-size: 1rem;
    color: var(--gold);
}

.why-badge-card span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 35, 66, 0.2);
}

.why-item h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
}

.btn-why-call {
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--navy);
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-why-call:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-why-wa {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-left: 0.75rem;
}

.btn-why-wa:hover {
    background: transparent;
    color: #25D366;
}

/* ────────────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────────────── */
.testimonials-section {
    background: linear-gradient(165deg, var(--navy) 0%, #0d2e5c 100%);
    overflow: hidden;
}

.testimonials-section .section-eyebrow {
    color: var(--gold-light);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        min-width: 33.333%;
    }
}

.testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 0.5rem;
    transition: var(--transition);
    height: 100%;
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.testi-stars {
    margin-bottom: 1rem;
}

.testi-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testi-card blockquote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
    position: relative;
}

.testi-card blockquote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    line-height: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.testi-author span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testi-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.testi-dots {
    display: flex;
    gap: 0.5rem;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.t-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ────────────────────────────────────────────────
   CONTACT SECTION
──────────────────────────────────────────────── */
.contact-section {
    background: var(--warm-white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.contact-item a {
    color: var(--navy);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--gold-dark);
}

.social-links h5 {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.email {
    background: var(--navy);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    opacity: 0.9;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--off-white);
}

/* ────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
}

.footer-main {
    padding: 5rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--gold);
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-list i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-list a:hover {
    color: var(--gold);
}

.btn-footer-wa {
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid #25D366;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-footer-wa:hover {
    background: transparent;
    color: #25D366;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ────────────────────────────────────────────────
   BACK TO TOP & FLOATING CALL
──────────────────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: var(--navy);
    color: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

#backToTop.visible {
    opacity: 1;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.floating-call {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    animation: pulse-green 2.5s infinite;
    transition: var(--transition);
}

.floating-call:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.15);
    }
}

/* ────────────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll-reveal utility */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ────────────────────────────────────────────────
   FORM VALIDATION STATES
──────────────────────────────────────────────── */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #4CAF50 !important;
    background-image: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #ef5350 !important;
    background-image: none;
}

.invalid-feedback {
    color: #ff8a80;
    font-size: 0.78rem;
}

/* ────────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
──────────────────────────────────────────────── */
@media (max-width: 1199px) {
    .destinations-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 250px 250px;
    }

    .dest-item.dest-large {
        grid-row: span 1;
    }

    .why-badge-card {
        right: 0;
        bottom: -1rem;
    }
}

@media (max-width: 991px) {
    .section-pad {
        padding: 4.5rem 0;
    }

    /*
   * FIX BUG 1 & 2 (tablet ≤991px):
   * `height: auto` makes .hero-slider { height:100% } resolve to 0.
   * CSS spec: percentage height requires a DEFINITE parent height —
   * min-height alone is NOT definite and does not satisfy this.
   * Solution: flex column layout so .hero-slider can use flex:1
   * to receive a calculable, definite height from the flex algorithm.
   */
    .hero-section {
        height: auto;
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
        display: flex;
        flex-direction: column;
    }

    /* Give slider a definite height via flex — replaces broken height:100% */
    .hero-slider {
        flex: 1 1 auto;
        height: auto;
        min-height: 560px;
    }

    .stat-item {
        padding: 0 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-main-img {
        height: 350px;
    }

    .why-badge-card {
        position: static;
        margin-top: 1rem;
        width: fit-content;
    }

    .booking-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 3.5rem 0;
    }

    /* ── HERO SECTION MOBILE FIXES (≤767px) ────────────────────────────
   *
   * FIX BUG 1 — Zero-height slider collapse (PRIMARY FIX)
   *   Root: .hero-slider { height:100% } — percentage height resolves
   *   against EXPLICIT height of the parent, NOT min-height. When parent
   *   is height:auto, child height:100% = 0 → all abs-positioned slides
   *   collapse to invisible.
   *   Fix: hero-section stays flex column (from ≤991px rule) + hero-slider
   *   gets an EXPLICIT pixel-based min-height so position:absolute children
   *   have a real stacking context to paint into.
   *
   * FIX BUG 2 — min-height alone doesn't establish definite height
   *   CSS spec §10.5: A percentage height is only resolved if the parent
   *   has a "definite" height. min-height does NOT count. flex:1 does.
   *   The ≤991px rule sets display:flex on .hero-section; this rule
   *   reinforces it and tightens the slider height for phones.
   *
   * FIX BUG 4 — Stats bar in normal flow inside collapsed section
   *   position:static on .hero-stats-bar is correct for mobile (so it
   *   stacks below the slide area). But it must be a flex sibling of
   *   .hero-slider, NOT inside a zero-height context. The flex layout
   *   from ≤991px ensures both are flex children of .hero-section.
   *
   * FIX BUG 6 — .slider-dots bottom:5rem overlapps static stats bar
   *   When stats bar leaves abs flow, bottom:5rem can overlay it.
   *   Change to bottom:1.25rem so dots sit inside the slide area.
   *
   * FIX BUG 7 — slide-content absolute centering
   *   position:absolute; top:50% centering works because .hero-slider
   *   now has a definite height (flex:1 + min-height).
   * ──────────────────────────────────────────────────────────────── */

    /* Hero section: already flex column from ≤991px breakpoint.
     Reinforce and allow stats bar to flow below. */
    .hero-section {
        height: auto;
        /* svh = Small Viewport Height (excludes browser chrome) — iOS fix */
        min-height: 100svh;
        /* Fallback for browsers without svh */
        min-height: calc(var(--vh, 1vh) * 100);
    }

    /* FIX BUG 1 & 2: Explicit height for the slide container.
     flex:1 (from ≤991px) makes the slider fill remaining section space.
     min-height ensures it never collapses below a readable size.     */
    .hero-slider {
        min-height: 560px;
        /* Constrain to viewport minus the stats bar (~110px) */
        max-height: calc(100svh - 110px);
        max-height: calc(var(--vh, 1vh) * 100 - 110px);
    }

    /* FIX BUG 4: Stats bar flows naturally below the slide area */
    .hero-stats-bar {
        position: static;
        /* Ensure it's not affected by the slider's overflow:hidden */
        flex-shrink: 0;
    }

    /* FIX BUG 6: Dots must sit INSIDE the slider, above its bottom edge */
    .slider-dots {
        bottom: 1.25rem;
    }

    /* Reduce heavy font size on small screens for readability */
    .slide-title {
        font-size: 2.2rem;
    }

    .slide-desc {
        font-size: 0.95rem;
    }

    .slide-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.16em;
    }

    /* ── END HERO FIXES ─────────────────────────────────────────────── */

    .stats-inner {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.25rem 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 0 1rem;
        min-width: 45%;
    }

    .destinations-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px;
    }

    .dest-item.dest-large {
        grid-column: span 2;
    }

    .booking-card {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    .why-badge-card {
        display: none;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .slide-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .footer-main {
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 480px) {
    .destinations-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .dest-item.dest-large {
        grid-column: 1;
    }

    .pkg-footer {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-pkg {
        width: 100%;
        text-align: center;
    }

    /* FIX: Very small screens (iPhone SE, Galaxy A series at 360px wide)
     Reduce hero text further so it never overflows its container */
    .slide-title {
        font-size: 1.85rem;
        line-height: 1.15;
    }

    .slide-desc {
        font-size: 0.88rem;
    }

    .hero-slider {
        min-height: 500px;
    }
}

/* ────────────────────────────────────────────────
   iOS SAFE AREA INSETS (notched iPhones — iPhone X+)
   FIX: viewport-fit=cover (in <meta viewport>) lets content
   fill notch areas; we must then manually inset interactive
   elements away from the notch/home-indicator.
──────────────────────────────────────────────── */
@supports (padding: env(safe-area-inset-bottom)) {
    .floating-call {
        bottom: calc(1.5rem + env(safe-area-inset-bottom));
    }

    #backToTop {
        bottom: calc(5.5rem + env(safe-area-inset-bottom));
    }

    .hero-stats-bar {
        /* On notched iPhones, pad the bottom of the stats bar */
        padding-bottom: env(safe-area-inset-bottom);
    }

    /* Ensure footer doesn't clip below home indicator */
    .footer-bottom {
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    }
}

/* ────────────────────────────────────────────────
   PRINT STYLES (basic)
──────────────────────────────────────────────── */
@media print {

    .navbar,
    #backToTop,
    .floating-call {
        display: none;
    }

    .hero-section {
        height: auto;
        min-height: auto;
    }

    body {
        font-size: 12pt;
    }
}