/* ============================================================
   SUVIDHA TOURISM - Premium CSS Design System
   ============================================================ */

/* ============================================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================================ */
:root {
    /* Primary Colors */
    --sky-blue: #0ea5e9;
    --ocean-blue: #0c4a6e;
    --deep-blue: #0f172a;
    --golden: #f59e0b;
    --emerald: #10b981;
    --accent-orange: #f97316;
    --light-grey: #f1f5f9;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --gradient-hero: linear-gradient(135deg, #0c1445 0%, #1a237e 50%, #01579b 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b, #d97706);
    --gradient-emerald: linear-gradient(135deg, #10b981, #059669);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 4px 20px rgba(14, 165, 233, 0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Spacing */
    --section-padding: 80px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Text colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --bg-body: #ffffff;
    --bg-section: #f8fafc;
    --border-color: #e2e8f0;
}

/* Dark Mode */
[data-theme="dark"] {
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --bg-body: #0f172a;
    --bg-section: #1e293b;
    --light-grey: #1e293b;
    --border-color: #334155;
    --white: #1e293b;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-body);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

a { text-decoration: none; color: var(--sky-blue); transition: var(--transition); }
a:hover { color: var(--ocean-blue); }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--text-primary); line-height: 1.3; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--deep-blue); display: flex; align-items: center; justify-content: center;
    z-index: 99999; transition: opacity 0.5s, visibility 0.5s;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-inner {
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.preloader-logo {
    width: 110px; height: auto; display: block; margin: 0 auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-spinner {
    width: 60px; height: 60px; border: 3.5px solid rgba(14,165,233,0.25); border-top-color: var(--sky-blue);
    border-radius: 50%; animation: spin 0.8s linear infinite; margin: 20px auto 0 auto; display: block;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes preloaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--deep-blue); color: rgba(255,255,255,0.8); font-size: 13px; padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-left span { margin-right: 20px; }
.top-bar-left a, .top-bar-right a { color: rgba(255,255,255,0.8); }
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--golden); }
.top-bar-left i { color: var(--sky-blue); margin-right: 6px; font-size: 12px; }
.top-bar-right a { margin-left: 12px; font-size: 14px; }
.theme-toggle {
    background: none; border: none; color: rgba(255,255,255,0.8); font-size: 14px; cursor: pointer;
    margin-left: 12px; padding: 2px 6px; transition: var(--transition);
}
.theme-toggle:hover { color: var(--golden); }

/* ============================================================
   HEADER
   ============================================================ */
.main-header {
    background: var(--white); position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.main-header.scrolled { box-shadow: var(--shadow-md); }
.header-logo { height: 55px; width: auto; transition: var(--transition); }
.main-header.scrolled .header-logo { height: 45px; }

.navbar { padding: 8px 0; }
.navbar-nav .nav-link {
    font-family: var(--font-primary); font-size: 14px; font-weight: 500;
    color: var(--text-primary) !important; padding: 10px 14px !important;
    position: relative; transition: var(--transition);
    white-space: nowrap !important;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--sky-blue) !important; }
.navbar-nav .nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--sky-blue); transition: var(--transition); transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { width: 60%; }

.dropdown-arrow { font-size: 10px; margin-left: 4px; transition: var(--transition); }

/* Dropdown Menu */
.has-dropdown { position: relative; }
.dropdown-menu-custom {
    position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition);
    border: 1px solid var(--border-color); z-index: 100;
}
.has-dropdown:hover > .dropdown-menu-custom { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu-custom li a {
    display: block; padding: 8px 20px; color: var(--text-secondary); font-size: 14px;
    transition: var(--transition); font-family: var(--font-primary);
}
.dropdown-menu-custom li a:hover { background: var(--light-grey); color: var(--sky-blue); padding-left: 24px; }

/* Sub-dropdown */
.dropdown-menu-custom li { position: relative; }
.sub-dropdown {
    position: absolute; top: 0; left: 100%; min-width: 290px; background: var(--white);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateX(10px); transition: var(--transition);
    border: 1px solid var(--border-color); list-style: none; z-index: 1050;
}
.sub-dropdown li a { white-space: normal; line-height: 1.3; padding: 10px 16px; border-bottom: 1px solid #f1f5f9; }
.sub-dropdown li:last-child a { border-bottom: none; }
.dropdown-menu-custom li:hover > .sub-dropdown { opacity: 1; visibility: visible; transform: translateX(0); }

/* Mega Menu */
.mega-menu-item { position: static !important; }
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(12px);
    width: 920px; max-width: 94vw; background: var(--white); border-radius: 18px; box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    padding: 28px 32px; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color); z-index: 1000;
    max-height: 80vh; overflow-y: auto;
}
.mega-menu-item:hover > .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-menu-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 36px; }
.mega-menu-col { transition: var(--transition); }
.mega-menu-title {
    font-family: var(--font-primary); font-weight: 700; color: #0284c7; font-size: 15.5px;
    display: block; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid #0ea5e9;
    text-decoration: none; transition: var(--transition);
}
.mega-menu-title:hover { color: #0369a1; border-bottom-color: #0369a1; transform: translateX(3px); }
.mega-menu-links { list-style: none; padding: 0; margin: 0; }
.mega-menu-links li { margin-bottom: 6px; }
.mega-menu-links li a {
    display: block; padding: 4px 0; color: #64748b; font-size: 13.5px;
    transition: all 0.2s ease; text-decoration: none; font-weight: 400;
}
.mega-menu-links li a:hover { color: #0ea5e9; transform: translateX(4px); font-weight: 500; }

/* Header CTA */
.btn-header-cta {
    background: var(--gradient-primary); color: #fff !important; padding: 10px 24px;
    border-radius: var(--radius-full); font-family: var(--font-primary); font-size: 14px;
    font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow-glow); transition: var(--transition); margin-left: 16px;
}
.btn-header-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(14,165,233,0.4); color: #fff !important; }

/* Mobile Toggler */
.navbar-toggler { border: none; padding: 8px; }
.toggler-icon { display: flex; flex-direction: column; width: 24px; gap: 5px; }
.toggler-icon span { display: block; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* Mobile Nav */
.offcanvas { max-width: 320px; }
.mobile-nav { list-style: none; padding: 0; }
.mobile-nav li a { display: block; padding: 12px 16px; color: var(--text-primary); font-weight: 500; border-bottom: 1px solid var(--border-color); }
.mobile-nav li a:hover { background: var(--light-grey); color: var(--sky-blue); }
.mobile-nav li a i { width: 24px; color: var(--sky-blue); }
.mobile-nav .submenu { list-style: none; padding: 0 0 0 24px; display: none; }
.mobile-nav .submenu.open { display: block; }
.mobile-nav .submenu li a { font-size: 14px; padding: 8px 16px; }
.mobile-cta { background: var(--gradient-primary) !important; color: #fff !important; border-radius: var(--radius-sm); margin-top: 10px; text-align: center; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider { position: relative; }
.hero-slide { height: 52vh; min-height: 420px; max-height: 520px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; padding-bottom: 30px; }
.hero-default-bg { background: var(--gradient-hero); }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-title {
    font-size: clamp(26px, 3.8vw, 48px); color: #fff; font-weight: 800;
    text-shadow: 0 3px 12px rgba(0,0,0,0.7); margin-bottom: 12px; line-height: 1.2;
}
.hero-subtitle { font-size: clamp(14px, 1.6vw, 19px); color: rgba(255,255,255,0.92); max-width: 680px; margin: 0 auto 24px; font-weight: 400; text-shadow: 0 2px 6px rgba(0,0,0,0.6); }
.hero-content.text-center .hero-subtitle { margin-left: auto; margin-right: auto; }
.hero-content.text-left .hero-subtitle { margin-left: 0; }

.btn-hero-primary {
    background: var(--gradient-primary); color: #fff; padding: 14px 36px; border-radius: var(--radius-full);
    font-family: var(--font-primary); font-weight: 600; font-size: 16px; border: none;
    box-shadow: 0 4px 15px rgba(14,165,233,0.4); transition: var(--transition); display: inline-block; margin: 6px;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(14,165,233,0.5); color: #fff; }
.btn-hero-outline {
    background: transparent; color: #fff; padding: 14px 36px; border-radius: var(--radius-full);
    font-family: var(--font-primary); font-weight: 600; font-size: 16px; border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition); display: inline-block; margin: 6px;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

.hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next {
    color: #fff; width: 50px; height: 50px; background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px); border-radius: 50%; transition: var(--transition);
}
.hero-swiper .swiper-button-prev:hover, .hero-swiper .swiper-button-next:hover { background: var(--sky-blue); }
.hero-swiper .swiper-button-prev::after, .hero-swiper .swiper-button-next::after { font-size: 18px; }
.hero-swiper .swiper-pagination-bullet { width: 12px; height: 12px; background: rgba(255,255,255,0.5); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--sky-blue); width: 32px; border-radius: 6px; }

/* Hero Search Bar */
.hero-search-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
    transform: translateY(50%);
}
.search-form-hero {
    background: var(--white); border-radius: var(--radius-xl); padding: 28px 32px;
    box-shadow: var(--shadow-xl); border: 1px solid var(--border-color);
}
.search-form-hero label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; display: block; }
.search-form-hero .form-control, .search-form-hero .form-select {
    border-radius: var(--radius-sm); border: 1px solid var(--border-color); padding: 10px 14px;
    font-size: 14px; font-family: var(--font-primary); background: var(--bg-body); color: var(--text-primary);
}
.search-form-hero .form-control:focus, .search-form-hero .form-select:focus { border-color: var(--sky-blue); box-shadow: 0 0 0 3px rgba(14,165,233,0.1); }
.btn-search-hero {
    background: var(--gradient-primary); color: #fff; border: none; border-radius: var(--radius-sm);
    padding: 10px 20px; font-weight: 600; font-family: var(--font-primary); transition: var(--transition);
}
.btn-search-hero:hover { box-shadow: var(--shadow-glow); transform: translateY(-1px); color: #fff; }

/* ============================================================
   SECTION STYLING
   ============================================================ */
section { padding: var(--section-padding); }
.section-header { margin-bottom: 40px; }
.section-badge {
    display: inline-block; background: rgba(14,165,233,0.1); color: var(--sky-blue);
    padding: 6px 18px; border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
    font-family: var(--font-primary); margin-bottom: 12px; letter-spacing: 0.5px;
}
.section-badge i { margin-right: 6px; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 12px; }
.section-desc { color: var(--text-secondary); font-size: 16px; max-width: 600px; margin: 0 auto; }

.section-destinations { padding-top: 120px; background: var(--bg-section); }

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.destination-card {
    display: block; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); transition: var(--transition); background: var(--white);
}
.destination-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.dest-image { position: relative; height: 250px; overflow: hidden; }
.dest-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.destination-card:hover .dest-image img { transform: scale(1.1); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.dest-badge {
    position: absolute; top: 16px; right: 16px; background: var(--sky-blue); color: #fff;
    padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600;
}
.dest-placeholder { height: 250px; display: flex; align-items: center; justify-content: center; background: var(--gradient-hero); color: rgba(255,255,255,0.3); font-size: 60px; }
.dest-info { padding: 20px; }
.dest-info h3 { font-size: 20px; margin-bottom: 6px; }
.dest-info p { color: var(--text-secondary); font-size: 14px; margin-bottom: 8px; }
.dest-link { color: var(--sky-blue); font-weight: 600; font-size: 14px; }
.dest-link i { transition: var(--transition); }
.destination-card:hover .dest-link i { transform: translateX(4px); }

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.section-packages { background: var(--bg-body); }
.package-card {
    border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
    box-shadow: var(--shadow-md); transition: var(--transition); height: 100%;
    display: flex; flex-direction: column; border: 1px solid var(--border-color);
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pkg-image { position: relative; height: 220px; overflow: hidden; }
.pkg-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.package-card:hover .pkg-image img { transform: scale(1.08); }
.pkg-placeholder { height: 220px; display: flex; align-items: center; justify-content: center; background: var(--gradient-hero); color: rgba(255,255,255,0.3); font-size: 50px; }
.pkg-discount {
    position: absolute; top: 12px; left: 12px; background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff; padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700;
}
.pkg-duration {
    position: absolute; bottom: 12px; left: 12px; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    color: #fff; padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 500;
}
.pkg-type {
    position: absolute; top: 12px; right: 12px; background: rgba(14,165,233,0.9);
    color: #fff; padding: 4px 10px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.pkg-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.pkg-location { font-size: 12px; color: var(--sky-blue); font-weight: 600; margin-bottom: 6px; }
.pkg-location i { margin-right: 4px; }
.pkg-title { font-size: 16px; margin-bottom: 10px; line-height: 1.4; }
.pkg-title a { color: var(--text-primary); }
.pkg-title a:hover { color: var(--sky-blue); }
.pkg-features { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.pkg-features span { font-size: 12px; color: var(--text-muted); }
.pkg-features i { color: var(--emerald); margin-right: 4px; font-size: 11px; }
.pkg-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-color); }
.price-original { text-decoration: line-through; color: var(--text-muted); font-size: 13px; display: block; }
.price-current { font-size: 22px; font-weight: 800; color: var(--ocean-blue); font-family: var(--font-heading); }
.price-per { font-size: 11px; color: var(--text-muted); display: block; }
.btn-pkg-view {
    background: var(--gradient-primary); color: #fff; padding: 8px 18px; border-radius: var(--radius-full);
    font-size: 13px; font-weight: 600; white-space: nowrap; transition: var(--transition);
}
.btn-pkg-view:hover { box-shadow: var(--shadow-glow); color: #fff; transform: translateY(-1px); }

.btn-view-all {
    background: transparent; border: 2px solid var(--sky-blue); color: var(--sky-blue);
    padding: 12px 32px; border-radius: var(--radius-full); font-weight: 600;
    font-family: var(--font-primary); transition: var(--transition); display: inline-block;
}
.btn-view-all:hover { background: var(--sky-blue); color: #fff; box-shadow: var(--shadow-glow); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.section-why-choose { background: var(--bg-section); }
.feature-card {
    text-align: center; padding: 40px 24px; border-radius: var(--radius-lg);
    background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid var(--border-color); height: 100%;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky-blue); }
.feature-icon {
    width: 72px; height: 72px; border-radius: 20px; background: rgba(14,165,233,0.1);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    font-size: 28px; color: var(--sky-blue); transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--gradient-primary); color: #fff; transform: scale(1.05); }
.feature-card h4 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; }

/* ============================================================
   STATISTICS
   ============================================================ */
.section-stats {
    background: var(--gradient-hero); position: relative; padding: 60px 0;
    background-attachment: fixed;
}
.stats-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.stat-item { text-align: center; padding: 24px; }
.stat-number { font-size: clamp(36px, 5vw, 52px); font-weight: 800; color: #fff; font-family: var(--font-heading); line-height: 1; }
.stat-icon-small { font-size: 20px; color: var(--golden); margin: 8px 0; }
.stat-text { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; }

/* ============================================================
   OFFERS
   ============================================================ */
.section-offers { background: var(--bg-body); }
.offer-card {
    display: flex; align-items: center; gap: 20px; padding: 28px; border-radius: var(--radius-lg);
    background: var(--white); border: 1px dashed var(--sky-blue); transition: var(--transition); box-shadow: var(--shadow-sm);
}
.offer-card:hover { box-shadow: var(--shadow-md); border-style: solid; }
.offer-badge {
    flex-shrink: 0; width: 90px; height: 90px; border-radius: 50%; background: var(--gradient-gold);
    color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
    text-align: center; line-height: 1.2; font-family: var(--font-heading);
}
.offer-content { flex: 1; }
.offer-content h4 { font-size: 18px; margin-bottom: 4px; }
.offer-content p { color: var(--text-secondary); font-size: 14px; margin-bottom: 4px; }
.offer-validity { color: var(--accent-orange); font-size: 12px; font-weight: 600; }
.btn-offer {
    background: var(--gradient-primary); color: #fff; padding: 10px 24px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 14px; white-space: nowrap; transition: var(--transition);
}
.btn-offer:hover { box-shadow: var(--shadow-glow); color: #fff; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials { background: var(--bg-section); }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color); height: 100%; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote { color: var(--sky-blue); font-size: 28px; margin-bottom: 12px; opacity: 0.3; }
.testimonial-stars { margin-bottom: 14px; }
.testimonial-text { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
    width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-primary); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px;
}
.testimonial-author strong { display: block; font-size: 15px; }
.testimonial-author span { display: block; color: var(--text-muted); font-size: 13px; }
.testimonial-author small { display: block; font-size: 12px; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.section-blogs { background: var(--bg-body); }
.blog-card {
    border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
    box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%;
    border: 1px solid var(--border-color);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-image { position: relative; height: 200px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-placeholder { height: 200px; display: flex; align-items: center; justify-content: center; background: var(--gradient-hero); color: rgba(255,255,255,0.3); font-size: 40px; }
.blog-category { position: absolute; top: 12px; left: 12px; background: var(--sky-blue); color: #fff; padding: 4px 12px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; }
.blog-body { padding: 20px; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 10px; }
.blog-meta span { font-size: 12px; color: var(--text-muted); }
.blog-meta i { margin-right: 4px; }
.blog-body h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.4; }
.blog-body h3 a { color: var(--text-primary); }
.blog-body h3 a:hover { color: var(--sky-blue); }
.blog-body p { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.blog-read-more { color: var(--sky-blue); font-weight: 600; font-size: 14px; }
.blog-read-more:hover { color: var(--ocean-blue); }
.blog-read-more i { transition: var(--transition); }
.blog-card:hover .blog-read-more i { transform: translateX(4px); }

/* ============================================================
   FAQ
   ============================================================ */
.section-faq { background: var(--bg-section); }
.faq-item { border: 1px solid var(--border-color); border-radius: var(--radius-md) !important; margin-bottom: 12px; overflow: hidden; }
.faq-item .accordion-button { font-family: var(--font-primary); font-weight: 600; font-size: 15px; padding: 18px 24px; background: var(--white); color: var(--text-primary); }
.faq-item .accordion-button:not(.collapsed) { background: rgba(14,165,233,0.05); color: var(--sky-blue); }
.faq-item .accordion-button:focus { box-shadow: none; }
.faq-item .accordion-body { font-size: 14px; color: var(--text-secondary); line-height: 1.8; padding: 16px 24px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
    background: var(--gradient-hero); position: relative; padding: 70px 0;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.cta-title { font-size: clamp(28px, 3vw, 38px); color: #fff; margin-bottom: 12px; }
.cta-desc { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 500px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.btn-cta-primary { background: var(--gradient-gold); color: #fff; padding: 14px 28px; border-radius: var(--radius-full); font-weight: 600; transition: var(--transition); }
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,0.4); color: #fff; }
.btn-cta-whatsapp { background: #25d366; color: #fff; padding: 14px 28px; border-radius: var(--radius-full); font-weight: 600; transition: var(--transition); }
.btn-cta-whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.btn-cta-call { background: transparent; color: #fff; padding: 14px 28px; border-radius: var(--radius-full); font-weight: 600; border: 2px solid rgba(255,255,255,0.5); transition: var(--transition); }
.btn-cta-call:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--deep-blue); color: rgba(255,255,255,0.7); }
.footer-top { padding: 60px 0 40px; }
.footer-logo { height: 60px; width: auto; margin-bottom: 16px; filter: brightness(1.1); }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.footer-contact p { margin-bottom: 6px; font-size: 14px; }
.footer-contact i { width: 18px; color: var(--sky-blue); margin-right: 8px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--golden); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
    transition: var(--transition); font-size: 16px;
}
.footer-social a:hover { background: var(--social-color, var(--sky-blue)); color: #fff; transform: translateY(-3px); }
.footer-title { color: #fff; font-size: 18px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--sky-blue); display: inline-block; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.footer-links li a:hover { color: var(--golden); padding-left: 6px; }
.footer-links li a::before { content: '›'; margin-right: 8px; color: var(--sky-blue); }

.newsletter-form .form-control {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: #fff; border-radius: var(--radius-sm) 0 0 var(--radius-sm); padding: 12px 16px;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .form-control:focus { border-color: var(--sky-blue); box-shadow: none; background: rgba(255,255,255,0.12); }
.btn-newsletter {
    background: var(--gradient-primary); border: none; color: #fff; padding: 12px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0; transition: var(--transition);
}
.btn-newsletter:hover { background: var(--golden); color: #fff; }

.footer-policies { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-policies a { color: rgba(255,255,255,0.5); font-size: 12px; }
.footer-policies a:hover { color: var(--golden); }

.footer-bottom { background: rgba(0,0,0,0.2); padding: 16px 0; }
.footer-bottom p { margin: 0; font-size: 13px; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
    width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: var(--transition); position: relative;
}
.float-btn:hover { transform: scale(1.1); color: #fff; }
.whatsapp-btn { background: #25d366; }
.whatsapp-btn:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.call-btn { background: var(--sky-blue); }
.call-btn:hover { box-shadow: 0 6px 20px rgba(14,165,233,0.4); }
.float-label {
    position: absolute; right: 68px; background: var(--deep-blue); color: #fff; padding: 6px 14px;
    border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; white-space: nowrap;
    opacity: 0; visibility: hidden; transition: var(--transition); pointer-events: none;
}
.float-btn:hover .float-label { opacity: 1; visibility: visible; }

/* Back to Top */
#backToTop {
    position: fixed; bottom: 140px; right: 28px; width: 44px; height: 44px; border-radius: 50%;
    background: var(--ocean-blue); color: #fff; border: none; cursor: pointer; font-size: 16px;
    z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition);
    box-shadow: var(--shadow-md);
}
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--sky-blue); transform: translateY(-3px); }

/* ============================================================
   STAR RATING
   ============================================================ */
.star-rating { display: inline-flex; gap: 2px; }
.star-rating .fa-star, .star-rating .fa-star-half-alt { font-size: 14px; }

/* ============================================================
   RESPONSIVE UTILITIES & DEVICE BREAKPOINTS (320px to 2560px)
   ============================================================ */
body, html {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Table Overflow Containment */
.table-responsive, .table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

/* Card Grids for 320px - 2560px */
.pkg-grid, .destination-grid, .blog-grid, .hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Customer Login & Portal Cards Responsiveness */
.login-card, .customer-portal-card, .register-card {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    transition: var(--transition);
}

@media (min-width: 1440px) {
    .container { max-width: 1320px; }
}

@media (max-width: 1199.98px) {
    .mega-menu { width: 700px; }
}

@media (max-width: 991.98px) {
    .top-bar { display: none; }
    .main-header { top: 0; }
    .hero-slide { height: 70vh; min-height: 450px; }
    .hero-search-bar { position: relative; transform: none; margin-top: -30px; }
    .search-form-hero { border-radius: var(--radius-md); }
    .section-destinations { padding-top: 80px; }
    section { padding: 60px 0; }
    .cta-buttons { justify-content: flex-start; }
    .offer-card { flex-direction: column; text-align: center; }
    .floating-buttons { bottom: 16px; right: 16px; }
    .float-btn { width: 48px; height: 48px; font-size: 20px; }
    .float-label { display: none; }
    #backToTop { right: 20px; bottom: 120px; }
    .pkg-grid, .destination-grid, .blog-grid, .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide { height: 60vh; min-height: 400px; }
    .hero-title { font-size: 26px; }
    .hero-subtitle { font-size: 14px; }
    .btn-hero-primary, .btn-hero-outline { padding: 10px 20px; font-size: 13px; }
    .section-title { font-size: 24px; }
    .stat-number { font-size: 28px; }
    .pkg-grid, .destination-grid, .blog-grid, .hotel-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .table th, .table td {
        font-size: 13px;
        padding: 8px 10px;
        white-space: nowrap;
    }
    /* Touch Target Sizing (Min 44px) */
    button, .btn, input[type="submit"], input[type="button"], select {
        min-height: 44px;
    }
}

@media (max-width: 575.98px) {
    .login-card, .customer-portal-card, .register-card {
        padding: 24px 18px !important;
        margin: 12px auto !important;
        width: calc(100% - 24px) !important;
        border-radius: 14px !important;
    }
    .brand-logo { font-size: 20px !important; }
    .form-control-lg { font-size: 14px !important; padding: 10px 14px !important; }
    .page-banner { padding: 40px 0 !important; }
    .page-banner .banner-title { font-size: 22px !important; }
    .modal-dialog { margin: 8px !important; max-width: calc(100% - 16px) !important; }
    .modal-body { max-height: 75vh; overflow-y: auto; padding: 16px !important; }
}

@media (max-width: 375px) {
    .hero-title { font-size: 22px; }
    .section-title { font-size: 20px; }
    .btn { padding: 8px 14px; font-size: 12px; }
}

/* ============================================================
   PROMOTIONAL PACKAGE POPUP MODAL
   ============================================================ */
.promo-modal-backdrop {
    position: fixed; inset: 0; background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 99999; display: flex; align-items: center; justify-content: center;
    padding: 16px; opacity: 0; visibility: hidden; transition: all 0.35s ease-in-out;
}
.promo-modal-backdrop.show {
    opacity: 1; visibility: visible;
}
.promo-modal-card {
    background: #ffffff; border-radius: 20px; box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    max-width: 720px; width: 100%; position: relative; overflow: hidden;
    transform: scale(0.9) translateY(20px); transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255,255,255,0.8);
    max-height: 90vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.promo-modal-backdrop.show .promo-modal-card {
    transform: scale(1) translateY(0);
}
.promo-modal-close {
    position: absolute; top: 12px; right: 14px; z-index: 10;
    width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,0.6);
    color: #fff; border: none; font-size: 22px; display: flex; align-items: center;
    justify-content: center; cursor: pointer; transition: all 0.2s ease; line-height: 1;
}
.promo-modal-close:hover { background: #ef4444; color: #fff; transform: rotate(90deg); }
.promo-modal-header-tag {
    background: linear-gradient(135deg, #ef4444, #dc2626); color: #ffffff;
    font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 6px 16px; text-transform: uppercase;
}
.promo-modal-img-col { position: relative; min-height: 240px; background: #000; }
.promo-modal-img { width: 100%; height: 100%; object-fit: cover; }
.promo-modal-discount {
    position: absolute; top: 12px; left: 12px; background: #ef4444; color: #fff;
    font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 30px;
}
.promo-modal-content-col { padding: 24px; }
.promo-modal-title a { color: #0f172a; text-decoration: none; font-size: 19px; font-weight: 700; transition: color 0.2s; }
.promo-modal-title a:hover { color: #0ea5e9; }
@media (max-width: 767px) {
    .promo-modal-img-col { height: 180px; min-height: 180px; }
    .promo-modal-content-col { padding: 16px; }
    .promo-modal-title a { font-size: 16px; }
}

/* ============================================================
   PAGE BANNER & HEADINGS (HIGH CONTRAST & ACCESSIBILITY)
   ============================================================ */
.page-banner {
    position: relative;
    padding: 60px 0;
    background: var(--gradient-hero) !important;
    background-size: cover;
    background-position: center;
    color: #ffffff !important;
    overflow: hidden;
}
.page-banner .banner-overlay {
    position: absolute; inset: 0;
    background: rgba(12, 20, 69, 0.45);
    z-index: 1;
}
.page-banner .container,
.pkg-detail-banner .container {
    position: relative;
    z-index: 2;
}
.page-banner .banner-title,
.pkg-detail-banner .banner-title {
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 12px;
}
.page-banner .breadcrumb-nav .breadcrumb,
.pkg-detail-banner .breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 12px;
}
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a,
.pkg-detail-banner .breadcrumb-item,
.pkg-detail-banner .breadcrumb-item a {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}
.page-banner .breadcrumb-item a:hover,
.pkg-detail-banner .breadcrumb-item a:hover {
    color: #38bdf8 !important;
    opacity: 1;
}
.page-banner .breadcrumb-item.active,
.pkg-detail-banner .breadcrumb-item.active {
    color: #f59e0b !important;
    font-weight: 700;
}
.page-banner .breadcrumb-item + .breadcrumb-item::before,
.pkg-detail-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7) !important;
    content: "/";
    padding: 0 6px;
}
.page-banner .banner-meta,
.pkg-detail-banner .banner-meta {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.page-banner .banner-meta span,
.pkg-detail-banner .banner-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.page-banner .banner-meta i,
.pkg-detail-banner .banner-meta i {
    color: #38bdf8;
}

/* ============================================================
   COMPACT LINE SPACING FOR PACKAGE HIGHLIGHTS & CONTENT
   ============================================================ */
.pkg-content p,
.inclusion-list p,
.exclusion-list p {
    margin-bottom: 6px !important;
    line-height: 1.5;
}
.pkg-content ul,
.pkg-content ol {
    margin-bottom: 8px !important;
    padding-left: 20px;
}
.pkg-content ul li,
.pkg-content ol li {
    margin-bottom: 5px !important;
    line-height: 1.5;
}

