@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
  /* Brand Colors */
  --primary: #0A3A8A;
  --primary-dark: #062A63;
  --primary-light: #2563EB;

  /* Luxury Gold */
  --accent: #D4AF37;
  --accent-light: #E9C96B;
  --accent-dark: #B89224;

  /* Neutrals */
  --dark: #0F172A;
  --dark-2: #1E293B;

  --text: #334155;
  --text-light: #64748B;

  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-soft: #F1F5F9;

  --border: #E2E8F0;

  /* Effects */
  --shadow: 0 10px 30px rgba(10,58,138,0.12);
  --shadow-hover: 0 20px 50px rgba(10,58,138,0.18);

  --radius: 18px;
  --radius-sm: 10px;

  /* Premium Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    #062A63 0%,
    #0A3A8A 50%,
    #2563EB 100%
  );

  --gradient-gold: linear-gradient(
    135deg,
    #B89224 0%,
    #D4AF37 50%,
    #E9C96B 100%
  );

  --gradient-dark: linear-gradient(
    135deg,
    #0F172A 0%,
    #1E293B 100%
  );
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; }

/* ====== NAVBAR ====== */
.navbar-brand img { height: 46px; transition: all 0.3s ease; }
.navbar { background: rgba(255,255,255,0.96) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); padding: 14px 0; position: sticky; top: 0; z-index: 9999; }
.navbar-nav .nav-link { position: relative; font-weight: 600; color: var(--dark) !important; padding: 10px 16px !important; border-radius: 10px; transition: all 0.3s ease; font-size: 0.95rem; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary) !important; background: rgba(10,58,138,0.06); }
.navbar-nav .nav-link::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: all 0.3s ease; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-call { background: linear-gradient(135deg, #B89224 0%, #D4AF37 50%, #E9C96B 100%); color: #111 !important; border-radius: 30px; padding: 10px 22px !important; font-weight: 700; box-shadow: 0 8px 20px rgba(212,175,55,0.25); transition: all 0.3s ease; }
.navbar-call:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,175,55,0.35); color: #111 !important; }
.top-bar { background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--white); padding: 10px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.top-bar a { color: var(--accent); font-weight: 700; transition: all 0.3s ease; }
.top-bar a:hover { color: var(--accent-light); }
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ====== HERO ====== */
.hero { background: linear-gradient(135deg, #06152E 0%, var(--primary-dark) 45%, var(--primary) 75%, var(--primary-light) 100%); min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('../images/photo-1436491865332-7a61a109cc05.jpg') center/cover; opacity: 0.12; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 40%); }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4.8rem); font-weight: 700; color: var(--white); line-height: 1.1; letter-spacing: 0.5px; }
.hero h1 span { color: var(--accent); }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.12rem; margin: 18px 0 0; max-width: 650px; line-height: 1.8; }
.hero-badge { display: inline-block; background: linear-gradient(135deg, #B89224 0%, #D4AF37 50%, #E9C96B 100%); color: #111; border-radius: 30px; padding: 8px 20px; font-size: 0.82rem; font-weight: 700; margin-bottom: 18px; letter-spacing: 1px; text-transform: uppercase; box-shadow: 0 8px 20px rgba(212,175,55,0.25); }
.hero .btn-primary-cta { background: linear-gradient(135deg, #B89224 0%, #D4AF37 50%, #E9C96B 100%); color: #111; font-weight: 700; border: none; border-radius: 12px; padding: 14px 30px; box-shadow: 0 10px 25px rgba(212,175,55,0.25); transition: all 0.3s ease; }
.hero .btn-primary-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(212,175,55,0.35); color: #111; }
/* ====== SEARCH BOX ====== */
.search-box { background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 24px; box-shadow: 0 25px 60px rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.3); padding: 30px 30px 24px; margin-top: 32px; position: relative; z-index: 3; }
.search-tabs .nav-link { color: var(--text); font-weight: 600; border: none; border-bottom: 3px solid transparent; border-radius: 0; padding: 12px 22px; font-size: 0.95rem; transition: all 0.3s ease; }
.search-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--accent); background: none; }
.search-tabs .nav-link:hover { color: var(--primary); }
.search-tabs .nav-link i { margin-right: 8px; }
.search-form .form-label { font-size: 0.75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.search-form .form-control, .search-form .form-select { border: 1.5px solid var(--border); border-radius: 12px; padding: 12px 16px; font-size: 0.95rem; font-family: 'Manrope', sans-serif; transition: all 0.3s ease; background: #fff; }
.search-form .form-control:focus, .search-form .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(10,58,138,0.12); }
.trip-type-pills .form-check-label { font-size: 0.86rem; font-weight: 600; cursor: pointer; }
.btn-search { background: linear-gradient(135deg, #B89224 0%, #D4AF37 50%, #E9C96B 100%); color: #111; font-weight: 700; font-size: 1rem; border: none; border-radius: 12px; padding: 14px 38px; transition: all 0.3s ease; letter-spacing: 0.5px; box-shadow: 0 10px 25px rgba(212,175,55,0.25); }
.btn-search:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(212,175,55,0.35); color: #111; }
.btn-primary-cta { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--white); font-weight: 700; border: none; border-radius: 12px; padding: 13px 32px; transition: all 0.3s ease; }
.btn-primary-cta:hover { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(10,58,138,0.25); }

/* ====== RATINGS STRIP ====== */
.ratings-strip { background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); padding: 22px 0; border-bottom: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.rating-item { text-align: center; transition: all 0.3s ease; }
.rating-item:hover { transform: translateY(-3px); }
.rating-item .score { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.rating-item .label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }
.rating-item .stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; margin-top: 4px; }
.rating-divider { width: 1px; background: linear-gradient(to bottom, transparent, var(--border), transparent); height: 50px; align-self: center; opacity: 0.8; }

/* ====== SECTIONS ====== */
.section-header { text-align: center; margin-bottom: 50px; position: relative; }
.section-label { display: inline-block; background: linear-gradient(135deg, rgba(11,61,145,0.10), rgba(212,175,55,0.08)); color: var(--primary); border-radius: 30px; padding: 6px 20px; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.05); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; color: var(--dark); line-height: 1.2; }
.section-title span { color: var(--accent); position: relative; }
.section-title span::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: linear-gradient(90deg, #D4AF37, #E9C96B); border-radius: 2px; }
.section-sub { color: var(--text-light); margin-top: 10px; font-size: 0.98rem; max-width: 650px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ====== DEAL CARDS ====== */
.deal-card { background: var(--white); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; transition: all 0.3s ease; border: 1px solid var(--border); cursor: pointer; position: relative; }
.deal-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #D4AF37, #E9C96B); }
.deal-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-8px); border-color: var(--accent); }
.deal-card .card-img { height: 180px; object-fit: cover; width: 100%; transition: transform 0.5s ease; }
.deal-card:hover .card-img { transform: scale(1.05); }
.deal-card .airline-logo { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; background: var(--bg-light); border: 1px solid var(--border); }
.deal-price { font-size: 1.6rem; font-weight: 800; color: var(--accent); letter-spacing: 0.5px; }
.deal-price span { font-size: 0.8rem; font-weight: 500; color: var(--text-light); }
.deal-tag { display: inline-block; background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(233,201,107,0.15)); color: var(--accent); border-radius: 20px; padding: 3px 10px; font-size: 0.72rem; font-weight: 700; }
.deal-route { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.deal-route .route-arrow { color: var(--accent); margin: 0 8px; }
.deal-date { font-size: 0.78rem; color: var(--text-light); }

/* ====== FEATURE CARDS ====== */
.feature-card { background: rgba(255,255,255,0.95); border-radius: 22px; padding: 30px 24px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.3s ease; text-align: center; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #D4AF37, #E9C96B); }
.feature-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-8px); }
.feature-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.6rem; transition: all 0.3s ease; }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.fi-blue { background: rgba(10,58,138,0.12); color: var(--primary); }
.fi-orange { background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(233,201,107,0.18)); color: var(--accent); }
.fi-green { background: rgba(16,185,129,0.12); color: var(--success); }
.fi-gold { background: linear-gradient(135deg, rgba(212,175,55,0.20), rgba(233,201,107,0.20)); color: #B89224; }

/* ====== HOTEL & CRUISE CARDS ====== */
.h-card { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; border: 1px solid var(--border); background: rgba(255,255,255,0.95); position: relative; }
.h-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #D4AF37, #E9C96B); }
.h-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.h-card img { height: 220px; object-fit: cover; width: 100%; transition: transform 0.5s ease; }
.h-card:hover img { transform: scale(1.05); }
.stars-row { color: var(--accent); font-size: 0.9rem; letter-spacing: 1px; }
.price-tag { font-weight: 800; font-size: 1.4rem; color: var(--primary); letter-spacing: 0.3px; }
.price-tag small { font-size: 0.75rem; color: var(--text-light); font-weight: 400; }
.badge-deal { background: linear-gradient(135deg, #D4AF37, #E9C96B); color: #111; font-size: 0.72rem; font-weight: 700; border-radius: 20px; padding: 4px 10px; box-shadow: 0 6px 15px rgba(212,175,55,0.25); }

/* ====== DEALS SECTION ====== */
.deals-grid .deal-promo { border-radius: 22px; overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow); transition: all 0.3s ease; border: 1px solid var(--border); }
.deals-grid .deal-promo::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #D4AF37, #E9C96B); z-index: 2; }
.deal-promo:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.deal-promo img { height: 220px; object-fit: cover; width: 100%; transition: transform 0.5s ease; }
.deal-promo:hover img { transform: scale(1.08); }
.deal-promo-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); padding: 22px 18px 16px; color: var(--white); }
.deal-promo-overlay h6 { font-weight: 700; margin: 0; font-size: 1rem; letter-spacing: 0.3px; }
.deal-promo-overlay p { font-size: 0.8rem; margin: 6px 0 0; opacity: 0.9; }

/* ====== CTA BANNER ====== */
.cta-banner { background: linear-gradient(135deg, #06152E 0%, var(--primary-dark) 40%, var(--primary) 70%, var(--primary-light) 100%); border-radius: 24px; padding: 55px 45px; color: var(--white); position: relative; overflow: hidden; box-shadow: var(--shadow-hover); }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 45%); }
.cta-banner::after { content: '✈'; position: absolute; right: -30px; top: -30px; font-size: 180px; opacity: 0.05; transform: rotate(-15deg); }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: 0.5px; }
.cta-banner p { opacity: 0.88; font-size: 1.05rem; max-width: 650px; line-height: 1.7; }
.cta-banner .btn { margin-top: 10px; }

/* ====== NEWSLETTER ====== */
.newsletter { background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%); padding: 20px 0; }
.newsletter-box { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-radius: 24px; padding: 45px; box-shadow: var(--shadow); text-align: center; border: 1px solid var(--border); position: relative; overflow: hidden; }
.newsletter-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #D4AF37, #E9C96B); }
.newsletter-icon { width: 78px; height: 78px; background: linear-gradient(135deg, rgba(11,61,145,0.10), rgba(212,175,55,0.12)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.9rem; color: var(--primary); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.newsletter-box input { border: 1.5px solid var(--border); border-radius: 14px; padding: 13px 18px; font-family: 'Manrope', sans-serif; font-size: 0.95rem; transition: all 0.3s ease; background: #fff; }
.newsletter-box input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(10,58,138,0.12); outline: none; }
.newsletter-box button { margin-top: 10px; }

/* ====== FOOTER ====== */
footer { background: linear-gradient(180deg, #0B1220 0%, #111827 100%); color: rgba(255,255,255,0.75); position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(212,175,55,0.10), transparent 45%); }
footer .footer-top { padding: 70px 0 45px; position: relative; z-index: 2; }
footer h6 { color: var(--white); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; position: relative; }
footer h6::after { content: ''; display: block; width: 40px; height: 2px; margin-top: 8px; background: linear-gradient(90deg, #D4AF37, #E9C96B); }
footer a { color: rgba(255,255,255,0.65); font-size: 0.85rem; display: block; margin-bottom: 8px; transition: all 0.3s ease; }
footer a:hover { color: var(--accent); transform: translateX(4px); }
footer .footer-brand p { font-size: 0.85rem; line-height: 1.8; opacity: 0.75; }
.footer-bottom { background: rgba(0,0,0,0.35); padding: 18px 0; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); }

 footer::before{pointer-events:none;}
.footer-bottom{position:relative;z-index:999;}
.footer-bottom a{position:relative;z-index:1000;cursor:pointer;}
    
.social-links a { display: inline-flex; width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.3s ease; margin-right: 8px; font-size: 0.9rem; }
.social-links a:hover { background: linear-gradient(135deg, #D4AF37, #E9C96B); color: #111; transform: translateY(-3px); }



/* ====== CRUISE PAGE ====== */
.cruise-hero { background: linear-gradient(135deg, #06152E 0%, var(--primary-dark) 45%, var(--primary) 70%, var(--primary-light) 100%); position: relative; overflow: hidden; min-height: 78vh; display: flex; align-items: center; }
.cruise-hero::before { content: ''; position: absolute; inset: 0; background: url('../images/cruise/photo-1548574505-5e239809ee19.jpg') center/cover; opacity: 0.15; }
.cruise-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(212,175,55,0.15), transparent 45%); }
.cruise-line-card { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; border: 1px solid var(--border); background: rgba(255,255,255,0.95); position: relative; }
.cruise-line-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #D4AF37, #E9C96B); }
.cruise-line-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.cruise-line-card img { height: 200px; object-fit: cover; width: 100%; transition: transform 0.5s ease; }
.cruise-line-card:hover img { transform: scale(1.05); }
.cruise-badge { background: linear-gradient(135deg, #0B3D91, #2563EB); color: var(--white); border-radius: 30px; padding: 5px 16px; font-size: 0.75rem; font-weight: 700; display: inline-block; box-shadow: 0 6px 18px rgba(11,61,145,0.25); }
/* ====== PAGE HERO (inner pages) ====== */
.page-hero { background: linear-gradient(135deg, #06152E 0%, var(--primary-dark) 40%, var(--primary) 75%, var(--primary-light) 100%); padding: 80px 0 55px; color: var(--white); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover; opacity: 0.12; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(212,175,55,0.15), transparent 45%); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; position: relative; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 700; letter-spacing: 0.5px; }
.page-hero p { position: relative; opacity: 0.88; font-size: 1.1rem; max-width: 700px; margin: 10px auto 0; line-height: 1.7; }
.breadcrumb { background: none; padding: 0; font-size: 0.85rem; position: relative; margin-bottom: 10px; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.breadcrumb-item a { color: var(--accent); font-weight: 600; }
.breadcrumb-item.active { color: rgba(255,255,255,0.75); }

/* ====== FILTER SIDEBAR ====== */
.filter-box { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); position: relative; overflow: visible; margin-bottom: 16px; }
.filter-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #D4AF37, #E9C96B); }
.filter-box h6 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; color: var(--dark); border-bottom: 1px solid var(--border); padding-bottom: 8px; position: relative; }
.filter-box h6::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 40px; height: 2px; background: var(--accent); }
.form-check { margin-bottom: 8px; }
.form-check-input { cursor: pointer; accent-color: var(--primary) !important; }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.form-check-input:focus { box-shadow: 0 0 0 0.15rem rgba(12,93,186,0.25); border-color: var(--primary); }
.form-check-label { font-size: 13px; color: var(--text); cursor: pointer; }
.price-range input[type=range],
.form-range { width: 100%; height: 6px; background: var(--border); border-radius: 10px; accent-color: var(--primary); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; background: var(--primary); border-radius: 50%; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
input[type=range]::-moz-range-thumb { width: 16px; height: 16px; background: var(--primary); border-radius: 50%; cursor: pointer; }
#priceVal { font-weight: 700; color: var(--primary); }
.airline-filter, .time-filter { transform: scale(1.05); }
.price-text { color: var(--primary); font-weight: 600; }

/* ===== FILTER SIDEBAR PREMIUM ===== */

.filter-box{
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.filter-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;
    background: linear-gradient(90deg,#D4AF37,#E9C96B);
}

.filter-box h6{
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    position: relative;
}

.filter-box h6::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-1px;
    width:40px;
    height:2px;
    background: var(--accent);
}

/* Checkbox Row */
.form-check{
    margin-bottom: 10px;
}

.form-check-input{
    cursor:pointer;
    accent-color: var(--primary) !important;
    border: 1px solid var(--border);
    width:18px;
    height:18px;
}

.form-check-input:checked{
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus{
    border-color: var(--primary);
    box-shadow: 0 0 0 0.18rem rgba(10,58,138,0.15);
}

.form-check-label{
    font-size: 13px;
    color: var(--text);
    cursor:pointer;
    font-weight: 500;
    transition: .25s;
}

.form-check:hover .form-check-label{
    color: var(--primary);
}

/* Airline & Time */
.airline-filter,
.time-filter{
    transform: scale(1.05);
}

/* Price Range */
.price-range{
    padding-top: 5px;
}

.price-range input[type=range],
.form-range{
    width:100%;
    height:6px;
    border-radius:10px;
    background: var(--border);
    accent-color: var(--accent);
    outline:none;
}

/* Chrome */
.form-range::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:18px;
    height:18px;
    border-radius:50%;
    background: linear-gradient(135deg,#D4AF37,#E9C96B);
    border:2px solid #fff;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(212,175,55,.35);
}

/* Firefox */
.form-range::-moz-range-thumb{
    width:18px;
    height:18px;
    border-radius:50%;
    background: linear-gradient(135deg,#D4AF37,#E9C96B);
    border:none;
    cursor:pointer;
}

#priceVal{
    color: var(--accent);
    font-weight: 800;
    font-size: 14px;
}

.price-text{
    color: var(--primary);
    font-weight: 700;
}

/* Left Price Text */
.small.text-muted{
    color: var(--text-light) !important;
    font-weight: 500;
}
/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 70px 0; }
  .search-box { padding: 24px 18px; }
  .cta-banner { padding: 40px 28px; }
  .navbar { padding: 12px 0; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 2.2rem; line-height: 1.2; }
  .hero p { font-size: 1rem; }
  .search-tabs .nav-link { padding: 8px 14px; font-size: 0.85rem; }
  .deal-card .card-img { height: 150px; }
   footer .footer-top { padding: 40px 0 28px; }
  .rating-divider { display: none; }
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 575px) {
  .hero { padding: 50px 0; text-align: center; }
  .cta-banner { padding: 28px 20px; }
  .cta-banner::after { display: none; }
  .search-box { padding: 18px 14px; }
  .btn-search, .btn-primary-cta { width: 100%; }
  .navbar-brand img { height: 40px; }
}

/* ====== UTILS ====== */
.bg-primary-soft { background: linear-gradient(135deg, rgba(10,58,138,0.06), rgba(212,175,55,0.04)); }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.fw-800 { font-weight: 800; }
.rounded-xl { border-radius: 22px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 55px 0; }
.shadow-soft { box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.shadow-hover-lg { box-shadow: 0 18px 50px rgba(0,0,0,0.12); }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SEARCH FOM FLIGHT  */

.airport-item { display: flex; gap: 12px; padding: 14px 16px; cursor: pointer; border-bottom: 1px solid rgba(0,0,0,0.06); transition: all 0.25s ease; position: relative; }
.airport-item:hover { background: linear-gradient(135deg, rgba(10,58,138,0.06), rgba(212,175,55,0.04)); }
.airport-item .code { font-weight: 800; font-size: 14px; color: var(--primary); min-width: 55px; letter-spacing: 0.5px; }
.airport-item .name { font-size: 14px; font-weight: 600; color: var(--dark); }
.airport-item .meta { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.traveller-wrapper { position: relative; }
.traveller_block { position: absolute; top: 100%; left: 0; width: 340px; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); padding: 14px; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.18); border: 1px solid var(--border); z-index: 99999; display: none; }
.traveller_block::before { content: ''; position: absolute; top: -3px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #D4AF37, #E9C96B); }

/* row */
.counter-row{
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.counter{
    flex: 1;
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 14px;
    text-align: center;
    background: rgba(255,255,255,0.9);
    transition: all 0.2s ease;
}

.counter:hover{
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.counter button{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 700;
}

.counter button:hover{
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* cabin */
.cabinClass{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.cabinClass li{
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: rgba(255,255,255,0.8);
}

.cabinClass li:hover{
    border-color: var(--primary);
    color: var(--primary);
}

.cabinClass li.selected{
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(11,61,145,0.25);
}

/* child age */
#child_age_box{
    margin-top: 10px;
}

.child-age-row select{
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    font-size: 13px;
    transition: all 0.2s ease;
}

.child-age-row select:focus{
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,61,145,0.12);
    outline: none;
}

/* button */
#traveller_done{
    width: 100%;
    margin-top: 12px;
    padding: 11px;
    border: none;
    background: linear-gradient(135deg, var(--accent), #E6C75A);
    color: #111;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

#traveller_done:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.25);
}

/* IMPORTANT FIX */
.search-box,
.container,
.hero{
    overflow: visible !important;
}