/**
 * TravelBliss Main Stylesheet
 * 
 * A Signature of Excellence
 * 
 * @package TravelBliss
 * @version 1.0.0
 */

/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */

:root {
    /* Colors - Primary */
    --tbs-primary: #1a3a6e;
    --tbs-primary-light: #2a5ba8;
    --tbs-primary-dark: #0f2544;
    --tbs-primary-rgb: 26, 58, 110;

    /* Colors - Accent */
    --tbs-accent: #f5a623;
    --tbs-accent-light: #ffc107;
    --tbs-accent-dark: #e09000;
    --tbs-accent-rgb: 245, 166, 35;

    /* Colors - Semantic */
    --tbs-success: #28a745;
    --tbs-warning: #ffc107;
    --tbs-error: #dc3545;
    --tbs-info: #17a2b8;

    /* Colors - Neutral */
    --tbs-white: #ffffff;
    --tbs-black: #000000;
    --tbs-gray-50: #f8f9fa;
    --tbs-gray-100: #f1f3f5;
    --tbs-gray-200: #e9ecef;
    --tbs-gray-300: #dee2e6;
    --tbs-gray-400: #ced4da;
    --tbs-gray-500: #adb5bd;
    --tbs-gray-600: #6c757d;
    --tbs-gray-700: #495057;
    --tbs-gray-800: #343a40;
    --tbs-gray-900: #212529;

    /* Typography */
    --tbs-font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --tbs-font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes */
    --tbs-text-xs: 0.75rem;
    --tbs-text-sm: 0.875rem;
    --tbs-text-base: 1rem;
    --tbs-text-lg: 1.125rem;
    --tbs-text-xl: 1.25rem;
    --tbs-text-2xl: 1.5rem;
    --tbs-text-3xl: 1.875rem;
    --tbs-text-4xl: 2.25rem;
    --tbs-text-5xl: 3rem;
    --tbs-text-6xl: 3.75rem;

    /* Font Weights */
    --tbs-font-light: 300;
    --tbs-font-normal: 400;
    --tbs-font-medium: 500;
    --tbs-font-semibold: 600;
    --tbs-font-bold: 700;
    --tbs-font-extrabold: 800;

    /* Line Heights */
    --tbs-leading-tight: 1.25;
    --tbs-leading-snug: 1.375;
    --tbs-leading-normal: 1.5;
    --tbs-leading-relaxed: 1.625;
    --tbs-leading-loose: 2;

    /* Spacing */
    --tbs-space-xs: 0.25rem;
    --tbs-space-sm: 0.5rem;
    --tbs-space-md: 1rem;
    --tbs-space-lg: 1.5rem;
    --tbs-space-xl: 2rem;
    --tbs-space-2xl: 3rem;
    --tbs-space-3xl: 4rem;
    --tbs-space-4xl: 6rem;
    --tbs-space-5xl: 8rem;

    /* Border Radius */
    --tbs-radius-sm: 0.25rem;
    --tbs-radius-md: 0.5rem;
    --tbs-radius-lg: 0.75rem;
    --tbs-radius-xl: 1rem;
    --tbs-radius-2xl: 1.5rem;
    --tbs-radius-full: 9999px;

    /* Shadows */
    --tbs-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --tbs-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --tbs-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --tbs-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --tbs-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --tbs-transition-fast: 150ms ease;
    --tbs-transition-base: 300ms ease;
    --tbs-transition-slow: 500ms ease;

    /* Z-Index */
    --tbs-z-dropdown: 100;
    --tbs-z-sticky: 200;
    --tbs-z-fixed: 300;
    --tbs-z-modal-backdrop: 400;
    --tbs-z-modal: 500;
    --tbs-z-popover: 600;
    --tbs-z-tooltip: 700;

    /* Container */
    --tbs-container-max: 1320px;
    --tbs-container-padding: 1rem;

    /* Header */
    --tbs-header-height: 80px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--tbs-font-secondary);
    font-size: var(--tbs-text-base);
    font-weight: var(--tbs-font-normal);
    line-height: var(--tbs-leading-normal);
    color: var(--tbs-gray-800);
    background-color: var(--tbs-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tbs-font-primary);
    font-weight: var(--tbs-font-bold);
    line-height: var(--tbs-leading-tight);
    color: var(--tbs-gray-900);
    margin-bottom: var(--tbs-space-md);
}

h1 {
    font-size: var(--tbs-text-4xl);
}

h2 {
    font-size: var(--tbs-text-3xl);
}

h3 {
    font-size: var(--tbs-text-2xl);
}

h4 {
    font-size: var(--tbs-text-xl);
}

h5 {
    font-size: var(--tbs-text-lg);
}

h6 {
    font-size: var(--tbs-text-base);
}

p {
    margin-bottom: var(--tbs-space-md);
}

a {
    color: var(--tbs-primary);
    text-decoration: none;
    transition: color var(--tbs-transition-fast);
}

a:hover {
    color: var(--tbs-primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul,
ol {
    list-style: none;
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--tbs-accent);
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip link */
.skip-link {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tbs-primary);
    color: var(--tbs-white);
    padding: var(--tbs-space-sm) var(--tbs-space-md);
    border-radius: var(--tbs-radius-md);
    z-index: var(--tbs-z-tooltip);
    transition: top var(--tbs-transition-fast);
}

.skip-link:focus {
    top: var(--tbs-space-md);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--tbs-container-max);
    margin: 0 auto;
    padding-left: var(--tbs-container-padding);
    padding-right: var(--tbs-container-padding);
}

.section {
    padding: var(--tbs-space-4xl) 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--tbs-space-sm);
    font-family: var(--tbs-font-primary);
    font-size: var(--tbs-text-base);
    font-weight: var(--tbs-font-semibold);
    line-height: 1;
    padding: var(--tbs-space-md) var(--tbs-space-xl);
    border: 2px solid transparent;
    border-radius: var(--tbs-radius-md);
    cursor: pointer;
    transition: all var(--tbs-transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Primary Button */
.btn--primary {
    background: linear-gradient(135deg, var(--tbs-accent) 0%, var(--tbs-accent-dark) 100%);
    color: var(--tbs-gray-900);
    border-color: var(--tbs-accent);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--tbs-accent-light) 0%, var(--tbs-accent) 100%);
    color: var(--tbs-gray-900);
    box-shadow: 0 8px 20px rgba(var(--tbs-accent-rgb), 0.4);
}

/* Outline Button */
.btn--outline {
    background: transparent;
    color: var(--tbs-primary);
    border-color: var(--tbs-primary);
}

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

/* Outline Light Button */
.btn--outline-light {
    background: transparent;
    color: var(--tbs-white);
    border-color: var(--tbs-white);
}

.btn--outline-light:hover {
    background: var(--tbs-white);
    color: var(--tbs-primary);
}

/* Accent Button */
.btn--accent {
    background: var(--tbs-accent);
    color: var(--tbs-gray-900);
    border-color: var(--tbs-accent);
}

.btn--accent:hover {
    background: var(--tbs-accent-light);
    color: var(--tbs-gray-900);
}

/* Button Sizes */
.btn--sm {
    font-size: var(--tbs-text-sm);
    padding: var(--tbs-space-sm) var(--tbs-space-md);
}

.btn--lg {
    font-size: var(--tbs-text-lg);
    padding: var(--tbs-space-lg) var(--tbs-space-2xl);
}

.btn--block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: relative;
    background: var(--tbs-white);
    z-index: var(--tbs-z-sticky);
    border-bottom: 1px solid var(--tbs-gray-200);
}

.site-header--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: background var(--tbs-transition-base), box-shadow var(--tbs-transition-base);
}

.site-header--sticky.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--tbs-shadow-md);
    backdrop-filter: blur(10px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--tbs-header-height);
    gap: var(--tbs-space-lg);
}

.site-header__logo img {
    max-height: 70px;
    width: auto;
}

.site-header__logo .site-logo--text {
    font-family: var(--tbs-font-primary);
    font-size: var(--tbs-text-2xl);
    font-weight: var(--tbs-font-bold);
    color: var(--tbs-primary);
}

.site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-header__nav .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--tbs-space-lg);
}

.site-header__nav .nav-menu a {
    font-family: var(--tbs-font-primary);
    font-size: var(--tbs-text-base);
    font-weight: var(--tbs-font-medium);
    color: var(--tbs-gray-700);
    padding: var(--tbs-space-sm) 0;
    position: relative;
    transition: color var(--tbs-transition-fast);
}

.site-header__nav .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tbs-accent);
    transition: width var(--tbs-transition-base);
}

.site-header__nav .nav-menu a:hover,
.site-header__nav .nav-menu .current-menu-item>a {
    color: var(--tbs-primary);
}

.site-header__nav .nav-menu a:hover::after,
.site-header__nav .nav-menu .current-menu-item>a::after {
    width: 100%;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--tbs-space-md);
}

.site-header__phone {
    display: flex;
    align-items: center;
    gap: var(--tbs-space-sm);
    font-weight: var(--tbs-font-semibold);
    color: var(--tbs-primary);
}

.site-header__toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--tbs-space-sm);
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--tbs-gray-800);
    transition: all var(--tbs-transition-base);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--tbs-white);
    z-index: var(--tbs-z-modal);
    transition: right var(--tbs-transition-base);
    overflow-y: auto;
    box-shadow: var(--tbs-shadow-2xl);
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu__inner {
    padding: var(--tbs-space-lg);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--tbs-space-lg);
    border-bottom: 1px solid var(--tbs-gray-200);
    margin-bottom: var(--tbs-space-lg);
}

.mobile-menu__close {
    background: none;
    border: none;
    font-size: var(--tbs-text-xl);
    color: var(--tbs-gray-600);
    cursor: pointer;
    padding: var(--tbs-space-sm);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: var(--tbs-space-xs);
}

.mobile-nav-menu a {
    display: block;
    padding: var(--tbs-space-md);
    font-size: var(--tbs-text-lg);
    font-weight: var(--tbs-font-medium);
    color: var(--tbs-gray-700);
    border-radius: var(--tbs-radius-md);
    transition: all var(--tbs-transition-fast);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu .current-menu-item>a {
    background: var(--tbs-gray-100);
    color: var(--tbs-primary);
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: var(--tbs-space-md);
    margin: var(--tbs-space-xl) 0;
}

.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    gap: var(--tbs-space-md);
    padding: var(--tbs-space-lg);
    background: var(--tbs-gray-50);
    border-radius: var(--tbs-radius-lg);
    margin-bottom: var(--tbs-space-lg);
}

.mobile-menu__contact a {
    display: flex;
    align-items: center;
    gap: var(--tbs-space-sm);
    color: var(--tbs-gray-700);
}

.mobile-menu__contact i {
    color: var(--tbs-accent);
    width: 20px;
}

.mobile-menu__social {
    display: flex;
    justify-content: center;
    gap: var(--tbs-space-md);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--tbs-header-height) + var(--tbs-space-xl)) 0 var(--tbs-space-2xl);
    overflow: hidden;
}

/* Hero Background Slides */
.hero__bg-slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero__bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
}

.hero__bg-slide.active {
    opacity: 1;
}

/* Ken Burns zoom effect on active slide */
.hero__bg-slide.active {
    animation: heroBgZoom 8s ease-out forwards;
}

@keyframes heroBgZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.hero__bg-slide .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 58, 110, 0.7) 100%);
}

/* Hero Text Slides */
.hero__slide {
    display: none;
    opacity: 0;
}

.hero__slide.active {
    display: block;
    animation: heroSlideIn 0.7s ease forwards;
}

.hero__slide.leaving {
    display: block;
    animation: heroSlideOut 0.4s ease forwards;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes heroSlideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Staggered animation for child elements */
.hero__slide.active .hero__tagline {
    animation: heroChildFade 0.5s ease 0.1s both;
}

.hero__slide.active .hero__title {
    animation: heroChildFade 0.5s ease 0.25s both;
}

.hero__slide.active .hero__subtitle {
    animation: heroChildFade 0.5s ease 0.4s both;
}

@keyframes heroChildFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* Slide Indicator Dots */
.hero__dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--tbs-space-xl);
    position: relative;
}

.hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero__dot:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

.hero__dot.active {
    border-color: var(--tbs-accent);
    background: var(--tbs-accent);
    width: 36px;
    border-radius: 6px;
}

/* Progress fill inside active dot */
.hero__dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.35);
    border-radius: inherit;
    animation: dotProgress 6s linear forwards;
}

@keyframes dotProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Floating Decorative Orbs */
.hero__decor {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--tbs-accent-rgb), 0.5), transparent 70%);
    top: -100px;
    right: -80px;
    animation: orbFloat1 8s ease-in-out infinite;
}

.hero__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 115, 223, 0.4), transparent 70%);
    bottom: -50px;
    left: -60px;
    animation: orbFloat2 10s ease-in-out infinite;
}

.hero__orb--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(28, 200, 138, 0.35), transparent 70%);
    top: 40%;
    left: 45%;
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 40px) scale(1.1);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -30px) scale(1.15);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -25px) scale(0.9);
    }
}

/* Split Layout */
.hero__split {
    display: grid;
    grid-template-columns: 1fr 580px;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.hero__content {
    text-align: left;
    color: var(--tbs-white);
    position: relative;
}

.hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: var(--tbs-font-bold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--tbs-accent);
    margin-bottom: var(--tbs-space-lg);
    padding: 8px 18px;
    background: rgba(var(--tbs-accent-rgb), 0.1);
    border-radius: 50px;
    border: 1px solid rgba(var(--tbs-accent-rgb), 0.2);
}

.hero__tagline i {
    font-size: 10px;
}

.hero__title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: var(--tbs-font-extrabold);
    color: var(--tbs-white);
    margin-bottom: var(--tbs-space-lg);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero__title span {
    color: var(--tbs-accent);
    position: relative;
}

.hero__subtitle {
    font-size: var(--tbs-text-base);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--tbs-space-xl);
    max-width: 480px;
    line-height: 1.75;
}

/* Hero CTAs */
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--tbs-space-md);
    margin-bottom: var(--tbs-space-2xl);
}

.hero__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: var(--tbs-font-bold);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(var(--tbs-accent-rgb), 0.35);
    transition: all 0.3s ease;
}

.hero__cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--tbs-accent-rgb), 0.5);
}

.hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: var(--tbs-font-bold);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.hero__cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Social Proof */
.hero__social-proof {
    display: flex;
    align-items: center;
    gap: var(--tbs-space-lg);
    margin-bottom: var(--tbs-space-xl);
    padding-bottom: var(--tbs-space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__avatars {
    display: flex;
    flex-shrink: 0;
}

.hero__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: var(--tbs-font-bold);
    color: #fff;
    border: 2px solid rgba(10, 22, 40, 0.9);
    margin-left: -8px;
    position: relative;
}

.hero__avatar:first-child {
    margin-left: 0;
}

.hero__avatar--count {
    background: var(--tbs-primary-light) !important;
    font-size: 10px;
    font-weight: var(--tbs-font-extrabold);
}

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

.hero__stars {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    color: var(--tbs-accent);
}

.hero__stars strong {
    font-size: 14px;
    color: var(--tbs-white);
    margin-left: 6px;
}

.hero__proof-text>span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Trust Strip */
.hero__trust-strip {
    display: flex;
    align-items: center;
    gap: var(--tbs-space-lg);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(var(--tbs-accent-rgb), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__trust-icon i {
    color: var(--tbs-accent);
    font-size: 14px;
}

.hero__trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hero__trust-text strong {
    font-size: 13px;
    color: var(--tbs-white);
    font-weight: var(--tbs-font-bold);
}

.hero__trust-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.hero__trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* ======================================================================
   Booking Widget — Clean White Card
   ====================================================================== */
.booking-widget {
    background: var(--tbs-white);
    border-radius: 20px;
    padding: 0;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Live Booking Indicator */
.booking-widget__live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--tbs-primary), var(--tbs-primary-dark));
    font-size: 12px;
    font-weight: var(--tbs-font-medium);
    color: rgba(255, 255, 255, 0.85);
}

.booking-widget__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1cc88a;
    display: inline-block;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(28, 200, 138, 0.6);
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Widget Header */
.booking-widget__header {
    text-align: center;
    padding: 28px 32px 8px;
}

.booking-widget__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--tbs-accent), var(--tbs-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 6px 20px rgba(var(--tbs-accent-rgb), 0.3);
}

.booking-widget__icon i {
    color: #fff;
    font-size: 18px;
}

.booking-widget__title {
    font-size: var(--tbs-text-xl);
    font-weight: var(--tbs-font-extrabold);
    color: var(--tbs-gray-900);
    margin-bottom: 4px;
}

.booking-widget__subtitle {
    font-size: 13px;
    color: var(--tbs-gray-500);
    margin-bottom: 0;
}

/* Booking Tabs — Radio Button Style */
.booking-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin: 20px 32px 0;
    background: var(--tbs-gray-100);
    border-radius: 14px;
    padding: 5px;
}

.booking-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    background: transparent;
    border: none;
    border-radius: 11px;
    font-family: var(--tbs-font-primary);
    font-size: 14px;
    font-weight: var(--tbs-font-bold);
    color: var(--tbs-gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.booking-tab:hover {
    color: var(--tbs-primary);
    background: rgba(255, 255, 255, 0.6);
}

.booking-tab.active {
    background: var(--tbs-primary);
    color: var(--tbs-white);
    box-shadow: 0 4px 14px rgba(var(--tbs-primary-rgb), 0.35);
}

.booking-tab i {
    font-size: 14px;
}

/* Booking Form */
.booking-form {
    padding: 20px 32px 28px;
}

.booking-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.booking-form__grid+.booking-tab-panel,
.booking-form__grid+.booking-form__grid,
.booking-tab-panel+.booking-form__grid {
    margin-top: 14px;
}

/* Tab Panel Show / Hide */
.booking-tab-panel {
    display: none;
}

.booking-tab-panel.active {
    display: block;
    animation: tabPanelFadeIn 0.3s ease;
}

@keyframes tabPanelFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.booking-widget .form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

/* Input with Icon */
.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrap>i {
    position: absolute;
    left: 16px;
    color: var(--tbs-gray-400);
    font-size: 12px;
    z-index: 1;
    transition: color 0.2s ease;
    pointer-events: none;
    width: 14px;
    text-align: center;
}

.input-icon-wrap--textarea>i {
    top: 16px;
    align-self: flex-start;
}

.booking-widget .input-icon-wrap input,
.booking-widget .input-icon-wrap select,
.booking-widget .input-icon-wrap textarea {
    width: 100%;
    padding: 14px 16px 14px 42px;
    background: var(--tbs-gray-50);
    border: 1.5px solid var(--tbs-gray-200);
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--tbs-font-primary);
    color: var(--tbs-gray-800);
    transition: all 0.25s ease;
}

.input-icon-wrap input::placeholder,
.input-icon-wrap textarea::placeholder {
    color: var(--tbs-gray-400);
    font-weight: var(--tbs-font-normal);
}

.input-icon-wrap input:focus,
.input-icon-wrap select:focus,
.input-icon-wrap textarea:focus {
    outline: none;
    border-color: var(--tbs-primary);
    background: var(--tbs-white);
    box-shadow: 0 0 0 4px rgba(var(--tbs-primary-rgb), 0.08);
}

.input-icon-wrap:focus-within>i {
    color: var(--tbs-primary);
}

.input-icon-wrap select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23adb5bd' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.input-icon-wrap textarea {
    resize: vertical;
    min-height: 56px;
}

/* Date input styling */
.input-icon-wrap input[type="date"] {
    cursor: pointer;
}

.input-icon-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}

/* Quantity Stepper */
.qty-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--tbs-gray-50);
    border: 1.5px solid var(--tbs-gray-200);
    border-radius: 12px;
    transition: all 0.25s ease;
    min-height: 50px;
}

.qty-stepper:hover {
    border-color: var(--tbs-gray-300);
}

.qty-stepper__icon {
    color: var(--tbs-gray-400);
    font-size: 14px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.qty-stepper__label {
    font-size: 14px;
    font-weight: var(--tbs-font-semibold);
    color: var(--tbs-gray-600);
    flex: 1;
    white-space: nowrap;
}

.qty-stepper__controls {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.qty-stepper__btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--tbs-primary);
    color: var(--tbs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    padding: 0;
    font-family: var(--tbs-font-primary);
}

.qty-stepper__btn:hover {
    background: var(--tbs-primary-dark);
    transform: scale(1.08);
}

.qty-stepper__btn:active {
    transform: scale(0.92);
}

.qty-stepper__btn.disabled {
    opacity: 0.2;
    background: var(--tbs-gray-300);
    pointer-events: none;
    cursor: default;
}

.qty-stepper__value {
    width: 52px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: var(--tbs-font-extrabold);
    color: var(--tbs-gray-800);
    font-family: var(--tbs-font-primary);
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 0;
    line-height: 34px;
}

.qty-stepper__value::-webkit-outer-spin-button,
.qty-stepper__value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Submit Button */
.booking-form__submit {
    width: 100%;
    margin-top: 20px;
    padding: 0;
    height: 58px;
    font-size: 16px;
    font-weight: var(--tbs-font-bold);
    font-family: var(--tbs-font-primary);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--tbs-accent), var(--tbs-accent-dark));
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 6px 24px rgba(var(--tbs-accent-rgb), 0.35);
}

.booking-form__submit-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-form__submit-arrow {
    width: 58px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 14px 14px 0;
    font-size: 18px;
    transition: all 0.3s ease;
}

.booking-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--tbs-accent-rgb), 0.45);
}

.booking-form__submit:hover .booking-form__submit-arrow {
    background: rgba(0, 0, 0, 0.15);
}

.booking-form__submit:hover .booking-form__submit-arrow i {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

.booking-form__submit:active {
    transform: translateY(0);
}

/* Privacy Notice */
.booking-form__privacy {
    text-align: center;
    font-size: 11px;
    color: var(--tbs-gray-400);
    margin-top: 12px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.booking-form__privacy i {
    font-size: 10px;
    color: var(--tbs-gray-400);
}

/* ======================================================================
   General Form Group (non-widget / contact page)
   ====================================================================== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--tbs-space-xs);
}

.form-group label {
    font-size: var(--tbs-text-sm);
    font-weight: var(--tbs-font-medium);
    color: var(--tbs-gray-600);
}

.form-group input,
.form-group select {
    padding: var(--tbs-space-md);
    border: 1px solid var(--tbs-gray-300);
    border-radius: var(--tbs-radius-md);
    font-size: var(--tbs-text-base);
    color: var(--tbs-gray-800);
    transition: border-color var(--tbs-transition-fast), box-shadow var(--tbs-transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--tbs-accent);
    box-shadow: 0 0 0 3px rgba(var(--tbs-accent-rgb), 0.2);
}

/* Hero Stats */
.hero__stats {
    margin-top: auto;
    padding-top: var(--tbs-space-3xl);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--tbs-space-lg);
    text-align: center;
}

.stat-item {
    color: var(--tbs-white);
}

.stat-item__number {
    display: block;
    font-family: var(--tbs-font-primary);
    font-size: var(--tbs-text-4xl);
    font-weight: var(--tbs-font-bold);
    color: var(--tbs-accent);
    line-height: 1;
    margin-bottom: var(--tbs-space-xs);
}

.stat-item__number::after {
    content: '+';
}

.stat-item__label {
    font-size: var(--tbs-text-sm);
    color: rgba(255, 255, 255, 0.8);
}


/* ==========================================================================
   Section Header
   ========================================================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--tbs-space-3xl);
}

.section-header__tagline {
    display: inline-block;
    font-size: var(--tbs-text-sm);
    font-weight: var(--tbs-font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tbs-accent);
    margin-bottom: var(--tbs-space-sm);
}

.section-header__title {
    font-size: clamp(var(--tbs-text-2xl), 4vw, var(--tbs-text-4xl));
    color: var(--tbs-gray-900);
    margin-bottom: var(--tbs-space-md);
}

.section-header__description {
    font-size: var(--tbs-text-lg);
    color: var(--tbs-gray-600);
    margin-bottom: 0;
}

.section-header--light .section-header__title {
    color: var(--tbs-white);
}

.section-header--light .section-header__description {
    color: rgba(255, 255, 255, 0.8);
}

.section-footer {
    text-align: center;
    margin-top: var(--tbs-space-3xl);
}

/* ==========================================================================
   Service Cards
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--tbs-space-xl);
}

.service-card {
    background: var(--tbs-white);
    border-radius: var(--tbs-radius-xl);
    padding: var(--tbs-space-2xl);
    text-align: center;
    box-shadow: var(--tbs-shadow-md);
    transition: all var(--tbs-transition-base);
    border: 1px solid var(--tbs-gray-100);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--tbs-shadow-xl);
    border-color: var(--tbs-accent);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--tbs-space-lg);
    background: linear-gradient(135deg, var(--tbs-primary) 0%, var(--tbs-primary-light) 100%);
    border-radius: var(--tbs-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__icon i {
    font-size: var(--tbs-text-3xl);
    color: var(--tbs-white);
}

.service-card__title {
    font-size: var(--tbs-text-xl);
    color: var(--tbs-gray-900);
    margin-bottom: var(--tbs-space-md);
}

.service-card__title a {
    color: inherit;
}

.service-card__description {
    color: var(--tbs-gray-600);
    margin-bottom: var(--tbs-space-lg);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--tbs-space-xs);
    font-weight: var(--tbs-font-semibold);
    color: var(--tbs-accent);
    transition: gap var(--tbs-transition-fast);
}

.service-card__link:hover {
    gap: var(--tbs-space-sm);
    color: var(--tbs-accent-dark);
}

/* ==========================================================================
   Package Cards
   ========================================================================== */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--tbs-space-xl);
}

.package-card {
    background: var(--tbs-white);
    border-radius: var(--tbs-radius-xl);
    overflow: hidden;
    box-shadow: var(--tbs-shadow-md);
    transition: all var(--tbs-transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--tbs-shadow-xl);
}

.package-card--featured {
    border: 2px solid var(--tbs-accent);
}

.package-card__badge {
    position: absolute;
    top: var(--tbs-space-md);
    left: var(--tbs-space-md);
    background: var(--tbs-accent);
    color: var(--tbs-gray-900);
    padding: var(--tbs-space-xs) var(--tbs-space-md);
    border-radius: var(--tbs-radius-full);
    font-size: var(--tbs-text-sm);
    font-weight: var(--tbs-font-semibold);
    z-index: 1;
}

.package-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tbs-transition-slow);
}

.package-card:hover .package-card__image img {
    transform: scale(1.1);
}

.package-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--tbs-gray-100);
    color: var(--tbs-gray-400);
    font-size: var(--tbs-text-4xl);
}

.package-card__content {
    padding: var(--tbs-space-lg);
    flex: 1;
}

.package-card__duration {
    display: inline-flex;
    align-items: center;
    gap: var(--tbs-space-xs);
    font-size: var(--tbs-text-sm);
    color: var(--tbs-gray-500);
    margin-bottom: var(--tbs-space-sm);
}

.package-card__title {
    font-size: var(--tbs-text-xl);
    margin-bottom: var(--tbs-space-sm);
}

.package-card__title a {
    color: inherit;
}

.package-card__title a:hover {
    color: var(--tbs-primary);
}

.package-card__rating {
    display: flex;
    align-items: center;
    gap: var(--tbs-space-sm);
    margin-bottom: var(--tbs-space-md);
}

.star-rating {
    display: flex;
    gap: 2px;
    color: var(--tbs-accent);
}

.package-card__reviews {
    font-size: var(--tbs-text-sm);
    color: var(--tbs-gray-500);
}

.package-card__excerpt {
    font-size: var(--tbs-text-sm);
    color: var(--tbs-gray-600);
    margin-bottom: 0;
}

.package-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--tbs-space-lg);
    border-top: 1px solid var(--tbs-gray-100);
    background: var(--tbs-gray-50);
}

.package-card__price-label {
    display: block;
    font-size: var(--tbs-text-xs);
    color: var(--tbs-gray-500);
}

.package-card__price-old {
    font-size: var(--tbs-text-sm);
    color: var(--tbs-gray-400);
    text-decoration: line-through;
    margin-right: var(--tbs-space-xs);
}

.package-card__price-current {
    font-family: var(--tbs-font-primary);
    font-size: var(--tbs-text-xl);
    font-weight: var(--tbs-font-bold);
    color: var(--tbs-primary);
}

/* ==========================================================================
   Destination Cards
   ========================================================================== */

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--tbs-space-lg);
}

.destination-card {
    position: relative;
    border-radius: var(--tbs-radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.destination-card__link {
    display: block;
    height: 100%;
}

.destination-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.destination-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tbs-transition-slow);
}

.destination-card:hover .destination-card__image img {
    transform: scale(1.1);
}

.destination-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.destination-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--tbs-space-lg);
    color: var(--tbs-white);
}

.destination-card__title {
    font-size: var(--tbs-text-xl);
    font-weight: var(--tbs-font-bold);
    color: var(--tbs-white);
    margin-bottom: var(--tbs-space-xs);
}

.destination-card__country {
    font-size: var(--tbs-text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.destination-card__packages {
    display: inline-block;
    background: var(--tbs-accent);
    color: var(--tbs-gray-900);
    padding: var(--tbs-space-xs) var(--tbs-space-sm);
    border-radius: var(--tbs-radius-sm);
    font-size: var(--tbs-text-xs);
    font-weight: var(--tbs-font-semibold);
    margin-top: var(--tbs-space-sm);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
    background: linear-gradient(135deg, var(--tbs-primary) 0%, var(--tbs-primary-dark) 100%);
    color: var(--tbs-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--tbs-space-xl);
}

.testimonial-card {
    background: var(--tbs-white);
    border-radius: var(--tbs-radius-xl);
    padding: var(--tbs-space-2xl);
    color: var(--tbs-gray-800);
}

.testimonial-card__rating {
    margin-bottom: var(--tbs-space-lg);
}

.testimonial-card__content {
    font-size: var(--tbs-text-lg);
    font-style: italic;
    color: var(--tbs-gray-700);
    margin-bottom: var(--tbs-space-xl);
    line-height: var(--tbs-leading-relaxed);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--tbs-space-md);
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--tbs-radius-full);
    overflow: hidden;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tbs-gray-200);
    color: var(--tbs-gray-500);
}

.testimonial-card__name {
    display: block;
    font-style: normal;
    font-weight: var(--tbs-font-semibold);
    color: var(--tbs-gray-900);
}

.testimonial-card__title {
    font-size: var(--tbs-text-sm);
    color: var(--tbs-gray-500);
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--tbs-space-4xl);
    align-items: center;
}

.why-us__content .section-header__tagline,
.why-us__content .section-header__title {
    text-align: left;
}

.why-us__text {
    color: var(--tbs-gray-600);
    margin-bottom: var(--tbs-space-2xl);
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: var(--tbs-space-xl);
    margin-bottom: var(--tbs-space-2xl);
}

.feature-item {
    display: flex;
    gap: var(--tbs-space-lg);
}

.feature-item__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--tbs-accent) 0%, var(--tbs-accent-dark) 100%);
    border-radius: var(--tbs-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item__icon i {
    font-size: var(--tbs-text-xl);
    color: var(--tbs-white);
}

.feature-item__content h4 {
    font-size: var(--tbs-text-lg);
    margin-bottom: var(--tbs-space-xs);
}

.feature-item__content p {
    color: var(--tbs-gray-600);
    margin-bottom: 0;
}

.why-us__image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--tbs-space-md);
}

.why-us__image-item {
    border-radius: var(--tbs-radius-xl);
    overflow: hidden;
}

.why-us__image-item--large {
    grid-column: span 2;
}

.why-us__image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-cta {
    background: linear-gradient(135deg, var(--tbs-primary) 0%, var(--tbs-primary-dark) 100%);
    padding: var(--tbs-space-4xl) 0;
}

.footer-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--tbs-space-xl);
}

.footer-cta__title {
    color: var(--tbs-white);
    font-size: var(--tbs-text-3xl);
    margin-bottom: var(--tbs-space-sm);
}

.footer-cta__text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-cta__actions {
    display: flex;
    gap: var(--tbs-space-md);
}

.footer-main {
    background: var(--tbs-gray-900);
    padding: var(--tbs-space-4xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--tbs-space-2xl);
}

.footer-col__title {
    color: var(--tbs-white);
    font-size: var(--tbs-text-lg);
    margin-bottom: var(--tbs-space-lg);
    position: relative;
    padding-bottom: var(--tbs-space-md);
}

.footer-col__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--tbs-accent);
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: var(--tbs-space-lg);
}

.footer-about {
    color: var(--tbs-gray-400);
    margin-bottom: var(--tbs-space-lg);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: var(--tbs-space-sm);
}

.footer-menu a {
    color: var(--tbs-gray-400);
    transition: all var(--tbs-transition-fast);
    padding: var(--tbs-space-xs) 0;
}

.footer-menu a:hover {
    color: var(--tbs-accent);
    padding-left: var(--tbs-space-sm);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--tbs-space-md);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--tbs-space-md);
    color: var(--tbs-gray-400);
}

.footer-contact i {
    color: var(--tbs-accent);
    margin-top: 4px;
    width: 16px;
}

.footer-contact a {
    color: inherit;
}

.footer-contact a:hover {
    color: var(--tbs-accent);
}

.footer-social {
    display: flex;
    gap: var(--tbs-space-sm);
}

.social-links {
    display: flex;
    gap: var(--tbs-space-sm);
}

.social-links__item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tbs-gray-800);
    border-radius: var(--tbs-radius-full);
    color: var(--tbs-white);
    transition: all var(--tbs-transition-fast);
}

.social-links__item:hover {
    background: var(--tbs-accent);
    color: var(--tbs-gray-900);
    transform: translateY(-3px);
}

.footer-bottom {
    background: var(--tbs-black);
    padding: var(--tbs-space-lg) 0;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--tbs-space-md);
}

.footer-copyright {
    color: var(--tbs-gray-500);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--tbs-space-lg);
}

.footer-legal a {
    color: var(--tbs-gray-500);
    font-size: var(--tbs-text-sm);
}

.footer-legal a:hover {
    color: var(--tbs-accent);
}

/* ==========================================================================
   WhatsApp Float & Back to Top
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: var(--tbs-space-lg);
    right: var(--tbs-space-lg);
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--tbs-white);
    border-radius: var(--tbs-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--tbs-text-2xl);
    box-shadow: var(--tbs-shadow-lg);
    z-index: var(--tbs-z-fixed);
    transition: all var(--tbs-transition-base);
}

.whatsapp-float:hover {
    background: #20b858;
    color: var(--tbs-white);
    transform: scale(1.1);
}

.whatsapp-float__tooltip {
    position: absolute;
    right: 70px;
    background: var(--tbs-gray-900);
    color: var(--tbs-white);
    padding: var(--tbs-space-sm) var(--tbs-space-md);
    border-radius: var(--tbs-radius-md);
    font-size: var(--tbs-text-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--tbs-transition-fast);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    bottom: var(--tbs-space-lg);
    right: calc(var(--tbs-space-lg) + 70px);
    width: 45px;
    height: 45px;
    background: var(--tbs-primary);
    color: var(--tbs-white);
    border: none;
    border-radius: var(--tbs-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: var(--tbs-z-fixed);
    transition: all var(--tbs-transition-base);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--tbs-primary-light);
    transform: translateY(-3px);
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    background: linear-gradient(135deg, var(--tbs-primary) 0%, var(--tbs-primary-dark) 100%);
    padding: calc(var(--tbs-header-height) + var(--tbs-space-3xl)) 0 var(--tbs-space-3xl);
    color: var(--tbs-white);
}

.page-header__title {
    color: var(--tbs-white);
    font-size: var(--tbs-text-4xl);
    margin-bottom: var(--tbs-space-sm);
}

.page-header__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--tbs-text-lg);
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: var(--tbs-space-lg);
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--tbs-space-sm);
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: var(--tbs-space-sm);
}

.breadcrumbs__link {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--tbs-text-sm);
}

.breadcrumbs__link:hover {
    color: var(--tbs-accent);
}

.breadcrumbs__separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--tbs-text-xs);
}

.breadcrumbs__current {
    color: var(--tbs-accent);
    font-size: var(--tbs-text-sm);
}

/* ==========================================================================
   Archive Layout
   ========================================================================== */

.archive-page {
    padding-bottom: var(--tbs-space-4xl);
}

.archive-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--tbs-space-3xl);
    padding-top: var(--tbs-space-3xl);
}

.archive-layout .archive-content {
    min-width: 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--tbs-space-xl);
}

/* ==========================================================================
   Contact Info Block
   ========================================================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--tbs-space-md);
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: var(--tbs-space-md);
    color: var(--tbs-gray-700);
}

.contact-info__item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tbs-gray-100);
    border-radius: var(--tbs-radius-full);
    color: var(--tbs-primary);
}

.contact-info__item a {
    color: inherit;
}

.contact-info__item--whatsapp a {
    display: inline-flex;
    align-items: center;
    gap: var(--tbs-space-sm);
    background: #25d366;
    color: var(--tbs-white);
    padding: var(--tbs-space-sm) var(--tbs-space-lg);
    border-radius: var(--tbs-radius-full);
}

.contact-info__item--whatsapp a:hover {
    background: #20b858;
    color: var(--tbs-white);
}

/* ==========================================================================
   No Results
   ========================================================================== */

.no-results {
    text-align: center;
    padding: var(--tbs-space-4xl);
}

.no-results h2 {
    margin-bottom: var(--tbs-space-md);
}

.no-results p {
    color: var(--tbs-gray-600);
    margin-bottom: var(--tbs-space-xl);
}

/* ==========================================================================
   Preloader
   ========================================================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tbs-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--tbs-transition-slow), visibility var(--tbs-transition-slow);
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__spinner {
    text-align: center;
}

.preloader__logo img {
    max-height: 60px;
    margin-bottom: var(--tbs-space-lg);
}

.preloader__dots {
    display: flex;
    justify-content: center;
    gap: var(--tbs-space-sm);
}

.preloader__dots span {
    width: 10px;
    height: 10px;
    background: var(--tbs-accent);
    border-radius: var(--tbs-radius-full);
    animation: preloaderBounce 1.4s ease-in-out infinite;
}

.preloader__dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader__dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes preloaderBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {

    .site-header__nav,
    .site-header__actions .site-header__phone,
    .site-header__actions .btn--outline {
        display: none;
    }

    .site-header__toggle {
        display: block;
    }

    .hero__split {
        grid-template-columns: 1fr;
        gap: var(--tbs-space-2xl);
    }

    .hero__content {
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__social-proof {
        justify-content: center;
    }

    .hero__trust-strip {
        justify-content: center;
    }

    .hero__title {
        font-size: var(--tbs-text-4xl);
    }

    .booking-widget {
        max-width: 520px;
        margin: 0 auto;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: var(--tbs-space-2xl);
    }

    .why-us__image {
        order: -1;
    }

    .archive-layout {
        grid-template-columns: 1fr;
    }

    .archive-sidebar {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --tbs-header-height: 70px;
    }

    .section {
        padding: var(--tbs-space-3xl) 0;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--tbs-header-height) + var(--tbs-space-2xl));
    }

    .hero__decor {
        display: none;
    }

    .booking-widget__live {
        font-size: 11px;
        padding: 8px 12px;
    }

    .booking-widget__header {
        padding: 20px 20px 6px;
    }

    .booking-form {
        padding: 16px 20px 20px;
    }

    .booking-tabs {
        margin: 12px 20px 0;
    }

    .booking-tab span {
        display: none;
    }

    .booking-tab {
        padding: 10px;
    }

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

    .hero__trust-strip {
        flex-wrap: wrap;
        gap: var(--tbs-space-md);
    }

    .hero__trust-divider {
        display: none;
    }

    .stats-row {
        gap: var(--tbs-space-md);
    }

    .stat-item__number {
        font-size: var(--tbs-text-2xl);
    }

    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-cta .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col__title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

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

    .whatsapp-float {
        bottom: var(--tbs-space-md);
        right: var(--tbs-space-md);
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        right: calc(var(--tbs-space-md) + 60px);
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .stat-item__number {
        font-size: var(--tbs-text-xl);
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}