/* =============================================
   COMFORT MY TRAVEL – LUXURY MULTI-PAGE
   Premium White & Blue Theme
   ============================================= */

/* --- RESET & VARIABLES --- */
:root {
    --primary: #003580;
    --primary-dark: #00234f;
    --primary-light: #0050b3;
    --accent: #0071eb;
    --accent-light: #4da3ff;
    --blue-100: #e6f0ff;
    --blue-50: #f0f7ff;
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --white: #ffffff;
    --off-white: #f7f9fc;
    --light-gray: #eef2f7;
    --text: #0d1b2a;
    --text-secondary: #3d5a80;
    --text-muted: #8696a7;
    --border: #dde5ef;
    --shadow-sm: 0 2px 8px rgba(0,53,128,0.06);
    --shadow: 0 4px 20px rgba(0,53,128,0.08);
    --shadow-md: 0 8px 32px rgba(0,53,128,0.12);
    --shadow-lg: 0 16px 56px rgba(0,53,128,0.16);
    --shadow-xl: 0 24px 72px rgba(0,53,128,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; }
.text-center { text-align: center; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(40px, 5vw, 72px); letter-spacing: -1px; }
h2 { font-size: clamp(30px, 3.5vw, 48px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
p { color: var(--text-secondary); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 60px; font-size: 15px;
    font-weight: 600; letter-spacing: 0.3px; border: none; cursor: pointer;
    transition: var(--transition); font-family: var(--font-body);
}
.btn-primary {
    background: var(--accent); color: var(--white);
    box-shadow: 0 4px 20px rgba(0,113,235,0.35);
}
.btn-primary:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,113,235,0.45); }
.btn-white {
    background: var(--white); color: var(--primary);
    box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.5); }
.btn-outline {
    background: transparent; color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-outline-white {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark); font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.btn-sm { padding: 12px 24px; font-size: 13px; }
.btn-lg { padding: 20px 48px; font-size: 17px; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- SECTION HEADERS --- */
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.section-label::before, .section-label::after {
    content: ''; width: 30px; height: 1.5px; background: var(--accent);
}
.section-label.light { color: var(--white); }
.section-label.light::before, .section-label.light::after { background: rgba(255,255,255,0.5); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { font-size: 17px; line-height: 1.8; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.highlight { color: var(--accent); }

/* ==================================
   TOP BAR
   ================================== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left { display: flex; gap: 28px; flex-wrap: wrap; }
.top-bar-left span { display: flex; align-items: center; gap: 8px; }
.top-bar-left i { color: var(--accent-light); font-size: 12px; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-right a { color: rgba(255,255,255,0.7); font-size: 14px; }
.top-bar-right a:hover { color: var(--white); }

/* ==================================
   NAVBAR
   ================================== */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 56px; width: auto; }
.logo-fallback { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 28px; color: var(--accent); }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--primary); letter-spacing: -0.5px; }
.logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
    padding: 10px 18px; border-radius: 10px; font-size: 14.5px; font-weight: 500;
    color: var(--text-secondary);
}
.nav-links a:hover { color: var(--accent); background: var(--blue-50); }
.nav-links a.active { color: var(--accent); background: var(--blue-100); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 8px; flex-direction: column; gap: 6px; width: 36px;
}
.hamburger span { width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ==================================
   PAGE HERO (Shared for inner pages)
   ================================== */
.page-hero {
    position: relative; min-height: 50vh; display: flex; align-items: center;
    justify-content: center; text-align: center; overflow: hidden;
    background: var(--primary-dark);
}
.page-hero .video-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .video-bg video,
.page-hero .video-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.page-hero .overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(0,35,79,0.85), rgba(0,80,179,0.7));
}
.page-hero-content {
    position: relative; z-index: 2; color: var(--white);
    padding: 140px 20px 80px; max-width: 800px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 20px; }
.page-hero-content p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 600px; margin: 0 auto; }
.breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* ==================================
   HOME HERO
   ================================== */
.home-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden;
}
.home-hero .video-bg { position: absolute; inset: 0; z-index: 0; }
.home-hero .video-bg video { width: 100%; height: 100%; object-fit: cover; }
.home-hero .overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(0,23,55,0.88) 0%, rgba(0,80,179,0.65) 100%);
}
.home-hero-content {
    position: relative; z-index: 2; color: var(--white);
    max-width: 720px; padding: 0 40px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
    padding: 10px 24px; border-radius: 60px; font-size: 13px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,0.15);
}
.home-hero-content h1 { color: var(--white); margin-bottom: 24px; line-height: 1.1; }
.home-hero-content h1 .highlight { color: var(--accent-light); }
.hero-desc {
    font-size: 18px; color: rgba(255,255,255,0.85);
    margin-bottom: 40px; line-height: 1.9; max-width: 580px;
}
.hero-stats {
    display: flex; gap: 40px; margin-top: 60px; flex-wrap: wrap;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12);
}
.stat { text-align: left; }
.stat-num { display: block; font-size: 36px; font-weight: 700; font-family: var(--font-heading); color: var(--white); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* Home hero right side - floating search widget */
.home-hero-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 60px; }
.search-widget {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(24px);
    border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,0.12);
    padding: 36px; width: 420px; flex-shrink: 0;
}
.search-widget h3 { font-size: 22px; color: var(--white); margin-bottom: 24px; }
.sw-field { margin-bottom: 18px; }
.sw-field label {
    display: block; font-size: 11px; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; font-weight: 600;
}
.sw-field select, .sw-field input {
    width: 100%; padding: 14px 18px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08);
    color: var(--white); font-size: 14px; font-family: var(--font-body);
    appearance: none; transition: var(--transition);
}
.sw-field select option { color: var(--text); background: var(--white); }
.sw-field select:focus, .sw-field input:focus { border-color: var(--accent-light); outline: none; background: rgba(255,255,255,0.12); }
.search-widget .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ==================================
   VIDEO SECTIONS
   ================================== */
.video-section { position: relative; overflow: hidden; }
.video-bg { position: absolute; inset: 0; z-index: 0; }
.video-bg video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,35,79,0.85), rgba(0,80,179,0.7));
}
.video-overlay.darker {
    background: linear-gradient(135deg, rgba(0,20,50,0.92), rgba(0,53,128,0.85));
}
.section-z { position: relative; z-index: 2; }

/* ==================================
   CARDS – Shared Premium Style
   ================================== */
.card {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    transition: var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-img { position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 28px; }
.card-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: block;
}
.card-body h3 { margin-bottom: 12px; }
.card-body p { font-size: 14.5px; margin-bottom: 16px; }
.card-tag {
    position: absolute; top: 16px; left: 16px; z-index: 3;
    background: var(--accent); color: var(--white); padding: 6px 16px;
    border-radius: 60px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
}
.card-tag.hot { background: #e63946; }
.card-tag.deal { background: #06d6a0; color: var(--primary-dark); }
.card-duration {
    position: absolute; bottom: 16px; right: 16px; z-index: 3;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
    color: var(--white); padding: 6px 14px; border-radius: 60px;
    font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px;
}

/* Glass Card */
.glass-card {
    background: rgba(255,255,255,0.07); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
    padding: 40px 32px; transition: var(--transition); color: var(--white);
}
.glass-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-8px); border-color: rgba(255,255,255,0.3); }
.glass-icon {
    width: 68px; height: 68px; border-radius: 18px; margin-bottom: 24px;
    background: rgba(255,255,255,0.1); display: flex; align-items: center;
    justify-content: center; font-size: 26px;
}
.glass-card h3 { font-size: 20px; margin-bottom: 14px; }
.glass-card p { font-size: 14.5px; color: rgba(255,255,255,0.75); line-height: 1.8; }

/* ==================================
   GRIDS
   ================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ==================================
   WHY CHOOSE US (Home)
   ================================== */
.why-card {
    background: var(--white); padding: 44px 32px; border-radius: var(--radius-lg);
    text-align: center; transition: var(--transition); border: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.why-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--accent); transform: scaleX(0);
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
    width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
    background: var(--blue-100); display: flex; align-items: center;
    justify-content: center; font-size: 28px; color: var(--accent); transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--accent); color: var(--white); transform: scale(1.1) rotate(5deg); }
.why-card h3 { font-size: 20px; margin-bottom: 12px; }
.why-card p { font-size: 14.5px; }

/* ==================================
   PACKAGE CARDS
   ================================== */
.package-card .card-img { height: 220px; }
.package-features { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.package-features span { font-size: 12.5px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.package-features i { color: var(--accent); font-size: 13px; }
.package-price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid var(--border);
}
.price-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.price-current { font-size: 24px; font-weight: 700; color: var(--primary); font-family: var(--font-heading); }
.price-per { font-size: 12px; color: var(--text-muted); display: block; }

/* Filter Buttons */
.filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
    padding: 12px 28px; border-radius: 60px; border: 2px solid var(--border);
    background: var(--white); color: var(--text-secondary); font-size: 14px;
    font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ==================================
   DESTINATION CARDS
   ================================== */
.dest-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    cursor: pointer; min-height: 300px;
}
.dest-card-lg { min-height: 632px; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; position: absolute; inset: 0; }
.dest-card:hover img { transform: scale(1.1); }
.dest-card-content {
    position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    color: var(--white);
}
.dest-tag { background: var(--accent); padding: 5px 14px; border-radius: 60px; font-size: 11px; font-weight: 700; align-self: flex-start; margin-bottom: 12px; letter-spacing: 0.5px; }
.dest-card-content h3 { font-size: 24px; margin-bottom: 8px; color: var(--white); }
.dest-card-content p { font-size: 14px; opacity: 0.8; margin-bottom: 16px; }
.dest-discount { background: #e63946; padding: 5px 14px; border-radius: 60px; font-size: 11px; font-weight: 700; display: inline-block; margin-bottom: 12px; }

/* ==================================
   TRANSPORT CARDS
   ================================== */
.transport-card { overflow: hidden; }
.transport-card .card-img { height: 220px; }
.transport-features { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-muted); margin-bottom: 18px; }
.transport-features span { display: flex; align-items: center; gap: 5px; }
.transport-features i { color: var(--accent); }

/* Transport glass cards for video section */
.transport-glass .glass-card { padding: 0; overflow: hidden; }
.transport-glass .card-img { height: 200px; overflow: hidden; }
.transport-glass .card-img img { transition: transform 0.6s ease; }
.transport-glass .glass-card:hover .card-img img { transform: scale(1.1); }
.transport-glass .card-body { padding: 24px; }
.transport-glass .card-body h3 { font-size: 18px; color: var(--white); margin-bottom: 12px; }
.transport-glass .transport-features { color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.transport-glass .transport-features i { color: var(--accent-light); }

/* ==================================
   VISA CARDS
   ================================== */
.visa-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 36px; text-align: center; transition: var(--transition);
    position: relative; overflow: hidden;
}
.visa-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.visa-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.visa-card:hover::before { transform: scaleX(1); }
.visa-flag { font-size: 52px; margin-bottom: 16px; }
.visa-card h3 { font-size: 22px; margin-bottom: 8px; }
.visa-type { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 18px; }
.visa-price { font-size: 26px; font-weight: 700; color: var(--primary); font-family: var(--font-heading); margin-bottom: 24px; }
.visa-price span { font-size: 13px; color: var(--text-muted); font-weight: 400; display: block; }

/* ==================================
   DEALS / CTA CARDS
   ================================== */
.deal-card {
    position: relative; overflow: hidden; min-height: 400px;
    display: flex; align-items: flex-end; border-radius: var(--radius-lg);
}
.deal-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.7s ease; z-index: 0;
}
.deal-card:hover img { transform: scale(1.08); }
.deal-content {
    position: relative; z-index: 2; padding: 36px; width: 100%; color: var(--white);
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.deal-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }
.deal-content h3 { font-size: 26px; margin: 10px 0; color: var(--white); }
.deal-content p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.deal-discount {
    display: inline-block; background: #e63946; padding: 6px 18px;
    border-radius: 60px; font-size: 13px; font-weight: 700; margin-bottom: 20px;
}

/* ==================================
   ABOUT
   ================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; padding: 30px; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img-second {
    position: absolute; bottom: -10px; right: -10px; width: 240px; height: 170px;
    border-radius: var(--radius-lg); overflow: hidden;
    border: 5px solid var(--white); box-shadow: var(--shadow-md);
}
.about-img-second img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge {
    position: absolute; top: 10px; left: 0; background: var(--accent);
    color: var(--white); padding: 24px; border-radius: var(--radius-lg);
    text-align: center; box-shadow: 0 10px 30px rgba(0,113,235,0.4);
}
.about-exp-badge .num { font-size: 38px; font-weight: 700; font-family: var(--font-heading); display: block; line-height: 1; }
.about-exp-badge .txt { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.about-rating-badge {
    position: absolute; bottom: 40px; left: 0; background: var(--white);
    padding: 18px 24px; border-radius: var(--radius); box-shadow: var(--shadow-md);
    text-align: center;
}
.rating-stars { color: #ffc107; font-size: 20px; margin-bottom: 6px; }
.about-rating-badge strong { display: block; font-size: 15px; color: var(--text); }
.about-rating-badge small { font-size: 11px; color: var(--text-muted); }
.about-content h2 { margin-bottom: 24px; }
.about-content p { font-size: 15.5px; margin-bottom: 18px; line-height: 1.85; }
.about-features { display: grid; gap: 14px; margin: 28px 0 36px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-secondary); }
.about-feature i { color: var(--accent); font-size: 18px; flex-shrink: 0; }

/* ==================================
   TESTIMONIALS
   ================================== */
.testimonial-card {
    background: var(--white); padding: 40px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 20px; right: 28px;
    font-size: 72px; font-family: var(--font-heading); color: var(--blue-100);
    line-height: 1;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.testimonial-stars { color: #ffc107; margin-bottom: 20px; font-size: 18px; }
.testimonial-card > p { font-size: 15.5px; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
    width: 52px; height: 52px; border-radius: 50%; background: var(--blue-100);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 22px;
}
.testimonial-author strong { display: block; font-size: 15px; }
.testimonial-author span { font-size: 13px; color: var(--text-muted); }

/* ==================================
   FAQ
   ================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    margin-bottom: 14px; border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; background: var(--white); transition: var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-question {
    width: 100%; padding: 22px 28px; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; font-weight: 600; color: var(--text); cursor: pointer;
    text-align: left; font-family: var(--font-body);
}
.faq-question span { flex: 1; padding-right: 16px; }
.faq-question i { transition: var(--transition); font-size: 14px; color: var(--accent); }
.faq-item.active .faq-question { color: var(--accent); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-answer p { padding: 0 28px 24px; font-size: 15px; line-height: 1.8; }

/* ==================================
   CONTACT
   ================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.contact-item { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-icon {
    width: 54px; height: 54px; border-radius: 14px; background: var(--blue-100);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 22px; flex-shrink: 0;
}
.contact-item h4 { font-size: 16px; font-family: var(--font-heading); margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 14.5px; color: var(--text-secondary); }
.contact-item a:hover { color: var(--accent); }
.recognition-badge {
    display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px;
    background: var(--blue-100); color: var(--accent); border-radius: 60px;
    font-size: 14px; font-weight: 700; margin-top: 12px;
}
.contact-form-wrap {
    background: var(--white); padding: 44px; border-radius: var(--radius-xl);
    border: 1px solid var(--border); box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-size: 26px; margin-bottom: 28px; }
.form-row { display: flex; gap: 16px; margin-bottom: 18px; }
.form-row input, .form-row select, .contact-form textarea {
    width: 100%; padding: 16px 20px; border: 1px solid var(--border);
    border-radius: var(--radius); font-size: 14.5px; font-family: var(--font-body);
    color: var(--text); background: var(--off-white); transition: var(--transition);
}
.contact-form textarea { margin-bottom: 18px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,113,235,0.08); background: var(--white);
}

/* ==================================
   FOOTER
   ================================== */
.footer {
    background: var(--primary-dark); color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo .logo-icon { color: var(--accent-light); }
.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.4); }
.footer > .container > .footer-grid > div:first-child > p { font-size: 14.5px; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; color: var(--white);
    font-size: 16px; transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer h4 { color: var(--white); font-size: 17px; margin-bottom: 24px; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 14.5px; opacity: 0.65; }
.footer ul a:hover { opacity: 1; color: var(--accent-light); }
.footer-contact { margin-top: 8px; }
.footer-contact p { font-size: 14px; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.7); }
.footer-contact i { color: var(--accent-light); margin-top: 4px; flex-shrink: 0; }
.footer-contact a { opacity: 0.8; }
.footer-contact a:hover { opacity: 1; color: var(--accent-light); }
.payment-icons { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.payment-badge {
    background: rgba(255,255,255,0.08); padding: 8px 16px; border-radius: 8px;
    font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 0.5px;
}
.footer-bottom {
    margin-top: 48px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center; font-size: 14px; opacity: 0.5;
}

/* ==================================
   FLOATING BTNS
   ================================== */
.floating-btns { position: fixed; bottom: 32px; right: 32px; display: flex; flex-direction: column; gap: 14px; z-index: 1001; }
.float-btn {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--white);
    box-shadow: 0 6px 24px rgba(0,0,0,0.22); transition: var(--transition);
}
.float-btn:hover { transform: scale(1.12); }
.call-btn { background: var(--accent); }
.whatsapp-btn { background: #25d366; }
.back-to-top {
    position: fixed; bottom: 110px; right: 40px; width: 48px; height: 48px;
    border-radius: 50%; background: var(--primary); color: var(--white);
    border: none; cursor: pointer; font-size: 18px; display: none;
    align-items: center; justify-content: center; z-index: 1001;
    box-shadow: var(--shadow-md); transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ==================================
   FLIGHT BOOKING
   ================================== */
.flight-search-section {
    position: relative;
    padding: 60px 0 80px;
    background: var(--off-white);
}
.flight-search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.flight-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border);
}
.flight-tab {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
    position: relative;
    transition: var(--transition);
}
.flight-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: var(--transition);
}
.flight-tab.active { color: var(--accent); }
.flight-tab.active::after { transform: scaleX(1); }
.flight-tab:hover { color: var(--accent); }
.flight-type-radios {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}
.flight-type-radios label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
}
.flight-type-radios input[type="radio"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}
.flight-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}
.flight-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.flight-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}
.flight-field input,
.flight-field select {
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}
.flight-field input:focus,
.flight-field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0,113,235,0.1);
}
.flight-field .swap-btn {
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    border: 3px solid var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 2;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.flight-field .swap-btn:hover { background: var(--primary); transform: translateY(-50%) scale(1.1); }
.flight-field-from { position: relative; }
.flight-search-btn {
    padding: 16px 40px;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: var(--font-body);
    box-shadow: 0 4px 20px rgba(0,113,235,0.35);
    white-space: nowrap;
    height: fit-content;
}
.flight-search-btn:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,113,235,0.45); }

/* Flight Results */
.flight-results {
    margin-top: 48px;
}
.flight-result-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 32px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.flight-result-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.flight-airline {
    display: flex;
    align-items: center;
    gap: 14px;
}
.airline-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
}
.airline-info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
}
.airline-info span {
    font-size: 13px;
    color: var(--text-muted);
}
.flight-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.flight-time {
    text-align: center;
}
.flight-time .time {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-body);
}
.flight-time .code {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.flight-duration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    max-width: 200px;
}
.flight-duration span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.flight-line {
    width: 100%;
    height: 2px;
    background: var(--border);
    position: relative;
}
.flight-line::before {
    content: '✈';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 14px;
}
.flight-duration .stops {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
}
.flight-price-block {
    text-align: right;
}
.flight-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-body);
}
.flight-price-note {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}
.flight-book-btn {
    padding: 12px 32px;
    border-radius: 60px;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.flight-book-btn:hover { background: var(--primary); }
/* Flight Features */
.flight-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.flight-feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.flight-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}
.flight-feature-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--blue-50);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    transition: var(--transition);
}
.flight-feature-card:hover .flight-feature-icon {
    background: var(--accent);
    color: var(--white);
}
.flight-feature-card h4 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.flight-feature-card p {
    font-size: 14px;
    line-height: 1.6;
}
/* Popular Routes */
.route-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.route-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.route-card-img {
    height: 200px;
    overflow: hidden;
}
.route-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.route-card:hover .route-card-img img {
    transform: scale(1.08);
}
.route-card-body {
    padding: 24px;
}
.route-card-body h4 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}
.route-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}
.route-meta span {
    font-size: 13px;
    color: var(--text-muted);
}
.route-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

/* ==================================
   HOTEL BOOKING
   ================================== */
.hotel-search-section {
    position: relative;
    padding: 60px 0 80px;
    background: var(--off-white);
}
.hotel-search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.hotel-search-box h3 {
    font-family: var(--font-heading);
    margin-bottom: 28px;
    font-size: 22px;
}
.hotel-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}
.hotel-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hotel-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}
.hotel-field input,
.hotel-field select {
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}
.hotel-field input:focus,
.hotel-field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0,113,235,0.1);
}
.hotel-search-btn {
    padding: 16px 40px;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: var(--font-body);
    box-shadow: 0 4px 20px rgba(0,113,235,0.35);
    white-space: nowrap;
    height: fit-content;
}
.hotel-search-btn:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,113,235,0.45); }

/* Hotel Result Cards */
.hotel-results { margin-top: 48px; }
.hotel-result-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    margin-bottom: 24px;
    transition: var(--transition);
}
.hotel-result-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.hotel-result-img {
    height: 100%;
    min-height: 260px;
    overflow: hidden;
}
.hotel-result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.hotel-result-card:hover .hotel-result-img img { transform: scale(1.06); }
.hotel-result-body {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hotel-star-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.hotel-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.hotel-star-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hotel-result-body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 6px;
}
.hotel-location {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hotel-amenities {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.hotel-amenity {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hotel-amenity i { color: var(--accent); font-size: 14px; }
.hotel-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}
.hotel-price-block {}
.hotel-price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.hotel-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-body);
}
.hotel-price-note {
    font-size: 12px;
    color: var(--text-muted);
}
.hotel-book-btn {
    padding: 14px 36px;
    border-radius: 60px;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.hotel-book-btn:hover { background: var(--primary); }

/* Hotel Cards (city cards) */
.hotel-city-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.hotel-city-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.hotel-city-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.hotel-city-card:hover img { transform: scale(1.06); }
.hotel-city-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 32px 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
}
.hotel-city-overlay h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 4px;
}
.hotel-city-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 8px;
}
.hotel-city-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-light);
}

/* ==================================
   CTA BANNER (reusable full-width)
   ================================== */
.cta-banner { padding: 120px 0; text-align: center; color: var(--white); }
.cta-banner h2 { color: var(--white); max-width: 700px; margin: 0 auto 20px; }
.cta-banner p { max-width: 650px; margin: 0 auto 36px; font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.85; }

/* ==================================
   ANIMATIONS
   ================================== */
.animate-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ==================================
   RESPONSIVE
   ================================== */
@media (max-width: 1200px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .home-hero-inner { flex-direction: column; text-align: center; }
    .home-hero-content { max-width: 100%; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; }
    .stat { text-align: center; }
    .search-widget { width: 100%; max-width: 480px; }
}
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-second { right: 10px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .flight-form-grid { grid-template-columns: 1fr 1fr; }
    .flight-result-card { grid-template-columns: 1fr; text-align: center; }
    .flight-price-block { text-align: center; }
    .flight-features-grid { grid-template-columns: repeat(2, 1fr); }
    .hotel-form-grid { grid-template-columns: 1fr 1fr; }
    .hotel-result-card { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 20px;
        box-shadow: var(--shadow-md); border-top: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .nav-inner { height: 68px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .flight-form-grid { grid-template-columns: 1fr; }
    .flight-search-btn { width: 100%; justify-content: center; }
    .flight-tabs { overflow-x: auto; }
    .flight-route { flex-direction: column; gap: 12px; }
    .flight-features-grid { grid-template-columns: 1fr; }
    .hotel-form-grid { grid-template-columns: 1fr; }
    .hotel-search-btn { width: 100%; justify-content: center; }
    .hotel-result-card { grid-template-columns: 1fr; }
    .hotel-result-img { min-height: 200px; }
    .hotel-bottom-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .top-bar-left { gap: 14px; justify-content: center; }
    .home-hero { min-height: 85vh; }
    .home-hero-content h1 { font-size: 34px; }
    .hero-desc { font-size: 15px; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 26px; }
    .page-hero { min-height: 40vh; }
    .page-hero-content { padding: 120px 20px 60px; }
    .search-widget { padding: 24px; }
    .dest-card-lg { min-height: 300px; }
    .about-exp-badge { position: relative; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; }
    .about-rating-badge { position: relative; margin-top: 20px; display: inline-block; }
    .about-images { padding: 0; }
    .about-img-second { position: relative; width: 100%; height: 200px; right: 0; bottom: 0; margin-top: 16px; border: none; }
}
@media (max-width: 480px) {
    .section { padding: 60px 0; }
    .container { padding: 0 16px; }
    .btn { padding: 14px 28px; font-size: 14px; }
    .floating-btns { bottom: 20px; right: 16px; }
    .float-btn { width: 52px; height: 52px; font-size: 22px; }
    .back-to-top { bottom: 90px; right: 24px; }
    .section-header { margin-bottom: 48px; }
}
