﻿:root {
  --tc-red: #e31837;
  --tc-red-dark: #c41230;
  --tc-red-light: #ff4d6a;
  --tc-navy: #1a1a2e;
  --tc-text: #333333;
  --tc-muted: #666666;
  --tc-border: #e5e5e5;
  --tc-bg: #f5f5f5;
  --tc-white: #ffffff;
  --tc-gold: #f5a623;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 8px;
  --font: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--tc-text); margin: 0; line-height: 1.6; background: var(--tc-white); display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; width: 100%; }
a { color: var(--tc-red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--tc-red-dark); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; }

/* Topbar */
.tc-topbar { background: var(--tc-navy); color: #fff; font-size: 0.85rem; padding: 8px 0; }
.tc-topbar a, .tc-topbar-phone { color: #fff; }
.tc-topbar-phone i { color: var(--tc-gold); margin-right: 6px; }
.tc-topbar-links a { margin-left: 20px; color: rgba(255,255,255,0.85); }
.tc-topbar-links a:hover { color: #fff; }
.tc-lang { margin-left: 20px; color: rgba(255,255,255,0.85); cursor: pointer; }

/* Header */
.site-header { background: var(--tc-white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; overflow: visible; }
.site-header .navbar { padding: 8px 0 0; position: relative; margin-bottom: 0; }
.site-header .navbar > .container { padding-bottom: 8px; }
.navbar-brand { display: flex; align-items: center; gap: 10px; padding: 0; }
.site-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.site-logo { height: 52px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.footer-logo { height: 48px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.site-logo-sm { height: 40px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.site-header .nav-link { color: var(--tc-text) !important; font-weight: 500; font-size: 0.92rem; padding: 8px 14px !important; }
.site-header .nav-link:hover { color: var(--tc-red) !important; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login { color: var(--tc-text); font-size: 0.9rem; font-weight: 500; }
.nav-login i { margin-right: 4px; }
.btn-tc { background: var(--tc-red); color: #fff !important; border: none; border-radius: 6px; padding: 10px 22px; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; }
.btn-tc:hover { background: var(--tc-red-dark); color: #fff !important; }
.btn-tc-outline { background: transparent; border: 2px solid var(--tc-red); color: var(--tc-red); border-radius: 6px; padding: 8px 20px; font-weight: 600; }
.btn-tc-outline:hover { background: var(--tc-red); color: #fff !important; }
.navbar-toggler { border: none; font-size: 1.3rem; color: var(--tc-navy); }

/* Mega Menu */
.mega-menu-layout { display: grid; padding: 24px 0; gap: 0; }
.holidays-mega { grid-template-columns: 1fr 1fr 0.8fr; }
.forex-mega { grid-template-columns: 1fr 1fr 0.7fr; }
.mega-menu-col { padding: 0 24px; border-right: 1px solid var(--tc-border); }
.mega-menu-col:last-child { border-right: none; }
.mega-menu-heading { color: var(--tc-red); font-size: calc(1rem - 3px); font-weight: 700; margin: 0 0 14px; }
.mega-menu-list { list-style: none; margin: 0; padding: 0; }
.mega-menu-list li a { display: block; padding: 6px 0; font-size: calc(0.88rem - 3px); color: var(--tc-muted); }
.mega-menu-list li a:hover { color: var(--tc-red); padding-left: 6px; }
.mega-menu-grid-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.mega-menu-cta { display: inline-block; margin-top: 12px; font-weight: 600; font-size: calc(0.88rem - 3px); color: var(--tc-red); }
.mega-menu-promo p { font-size: calc(0.9rem - 3px); margin-bottom: 8px; }
.tc-dropdown { border: none; box-shadow: var(--shadow); border-radius: var(--radius); padding: 8px 0; }
.tc-dropdown .dropdown-item { font-size: 0.9rem; padding: 8px 20px; }
.tc-dropdown .dropdown-item:hover { background: #fff0f2; color: var(--tc-red); }

.mega-panels {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 1050;
  pointer-events: none;
}

.mega-panels::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.mega-panel {
  display: none;
  background: #fff;
  border-top: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  pointer-events: auto;
  margin: 0;
  padding: 0;
}

.mega-panel.active { display: block; }

.mega-trigger.active { color: var(--tc-red) !important; }

.site-header.mega-active .mega-panels { pointer-events: auto; }

.site-header.mega-active .navbar {
  border-bottom: 3px solid var(--tc-red);
  box-shadow: none;
}

@media (min-width: 992px) {
  .mega-menu-inline { display: none !important; }
}

@media (max-width: 991px) {
  .mega-panels { display: none !important; }
  .mega-menu-inline {
    display: none;
    background: var(--tc-bg);
    border-radius: var(--radius);
    margin: 4px 0 8px;
    padding: 8px 0;
  }
  .mega-nav-item.open .mega-menu-inline { display: block; }
  .mega-menu-layout, .holidays-mega, .forex-mega { grid-template-columns: 1fr; }
  .mega-menu-col { padding: 12px 16px; border-right: none; border-bottom: 1px solid var(--tc-border); }
  .mega-menu-grid-list { grid-template-columns: 1fr; }
  .nav-actions { margin-top: 12px; }
}

/* Hero Search */
.hero-search-section { background: linear-gradient(135deg, rgba(26,26,46,0.85), rgba(227,24,55,0.7)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=80') center/cover; padding: 60px 0 80px; color: #fff; }
.hero-search-section h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.hero-search-section p { opacity: 0.9; margin-bottom: 28px; }
.search-box { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); max-width: 700px; }
.search-tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.search-tab { background: var(--tc-bg); border: none; padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--tc-muted); cursor: pointer; }
.search-tab.active { background: var(--tc-red); color: #fff; }
.search-form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.search-form-row input, .search-form-row select { flex: 1; min-width: 180px; border: 1px solid var(--tc-border); border-radius: 6px; padding: 10px 14px; font-size: 0.95rem; height: auto; min-height: 46px; line-height: 1.5; }

/* Sections */
.tc-section { padding: 60px 0; }
.tc-section-alt { background: var(--tc-bg); }
.tc-section-title { text-align: center; margin-bottom: 36px; }
.tc-section-title h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--tc-navy); margin-bottom: 8px; }
.tc-section-title p { color: var(--tc-muted); max-width: 600px; margin: 0 auto; }

/* Destination tabs */
.dest-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 32px; }
.dest-tab { background: none; border: none; padding: 10px 28px; font-weight: 600; color: var(--tc-muted); border-bottom: 3px solid transparent; cursor: pointer; }
.dest-tab.active { color: var(--tc-red); border-bottom-color: var(--tc-red); }
.dest-panel { display: none; }
.dest-panel.active { display: block; }
.dest-carousel { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.dest-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; color: inherit; }
.dest-card:hover { transform: translateY(-4px); color: inherit; }
.dest-card-img { height: 160px; background-size: cover; background-position: center; }
.dest-card-body { padding: 14px 16px; }
.dest-card-body h3 { font-size: 1rem; margin-bottom: 4px; text-transform: capitalize; }
.dest-price { color: var(--tc-red); font-weight: 600; font-size: 0.88rem; }

/* Forex grid */
.forex-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.forex-card { background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: transform 0.2s; color: inherit; }
.forex-card:hover { transform: translateY(-4px); color: inherit; }
.forex-card i { font-size: 2rem; color: var(--tc-red); margin-bottom: 12px; }
.forex-card h4 { font-size: 0.95rem; margin: 0; }

/* Offers */
.offers-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.offer-tab { border: 1px solid var(--tc-border); background: #fff; padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.offer-tab.active { background: var(--tc-red); color: #fff; border-color: var(--tc-red); }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.offer-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-left: 4px solid var(--tc-red); }
.offer-card .badge-cat { background: #fff0f2; color: var(--tc-red); font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.offer-card h4 { margin: 10px 0 6px; font-size: 1rem; }
.offer-card p { color: var(--tc-muted); font-size: 0.88rem; margin-bottom: 8px; }
.offer-valid { font-size: 0.8rem; color: var(--tc-muted); }

/* Specials carousel */
.specials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.special-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.special-card-img { height: 180px; background-size: cover; background-position: center; position: relative; }
.special-card-tag { position: absolute; top: 12px; left: 12px; background: var(--tc-red); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.special-card-body { padding: 20px; }
.special-card-body h4 { font-size: 1.05rem; margin-bottom: 4px; }
.special-card-body .subtitle { color: var(--tc-muted); font-size: 0.88rem; }
.special-card-body .price { color: var(--tc-red); font-weight: 700; margin-top: 8px; }

/* Flight routes */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.route-card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.route-card h4 { color: var(--tc-navy); margin-bottom: 6px; }
.route-card p { color: var(--tc-muted); font-size: 0.85rem; margin: 0; }

/* Hotels */
.hotels-scroll { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.hotel-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; height: 200px; }
.hotel-card img { width: 100%; height: 100%; object-fit: cover; }
.hotel-card span { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; padding: 20px 14px 12px; font-weight: 600; }

/* Why section */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.why-card { text-align: center; padding: 28px 20px; }
.why-card i { font-size: 2.2rem; color: var(--tc-red); margin-bottom: 14px; }
.why-card h4 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: var(--tc-muted); font-size: 0.88rem; margin: 0; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item strong { display: block; font-size: 2.2rem; color: var(--tc-red); }
.stat-item span { font-size: 0.88rem; color: var(--tc-muted); }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-item { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.testimonial-item p { font-style: italic; font-size: 0.95rem; margin-bottom: 16px; }
.testimonial-item strong { display: block; color: var(--tc-navy); }
.testimonial-item span { font-size: 0.85rem; color: var(--tc-muted); }

/* FAQ */
.faq-list .card { border: 1px solid var(--tc-border); border-radius: var(--radius) !important; margin-bottom: 10px; overflow: hidden; }
.faq-list .card-header { background: #fff; border: none; padding: 0; }
.faq-list .btn-link { color: var(--tc-navy); font-weight: 600; text-decoration: none; padding: 16px 20px; display: block; width: 100%; text-align: left; font-size: 0.95rem; }
.faq-list .btn-link:hover { color: var(--tc-red); }
.faq-list .card-body { padding: 0 20px 16px; color: var(--tc-muted); font-size: 0.9rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.blog-item { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.blog-item img { width: 100%; height: 180px; object-fit: cover; }
.blog-item-body { padding: 20px; }
.blog-item time { color: var(--tc-red); font-size: 0.8rem; font-weight: 600; }
.blog-item h4 { margin: 8px 0; font-size: 1rem; }

/* Full-page inner layout */
.page-hero-full {
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.page-hero-full h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.page-hero-full p {
  opacity: 0.92;
  max-width: 640px;
  font-size: 1.05rem;
  margin: 0;
}

.page-breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.page-breadcrumb a { color: #fff; }
.page-breadcrumb a:hover { color: var(--tc-gold); }
.page-breadcrumb .sep { margin: 0 8px; opacity: 0.6; }
.page-breadcrumb .current { color: var(--tc-gold); font-weight: 600; }

.page-section {
  width: 100%;
  padding: 70px 0;
}

.page-section-alt { background: var(--tc-bg); }

.page-section-title {
  margin-bottom: 36px;
}

.page-section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--tc-navy);
  margin-bottom: 8px;
}

.page-section-title p {
  color: var(--tc-muted);
  margin: 0;
  max-width: 640px;
}

.page-section-title.center { text-align: center; }
.page-section-title.center p { margin: 0 auto; }

.page-intro-band {
  background: #fff;
  border-bottom: 1px solid var(--tc-border);
  padding: 32px 0;
}

.page-intro-band p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--tc-muted);
  max-width: 900px;
}

.page-cta-band {
  width: 100%;
  background: linear-gradient(135deg, var(--tc-navy), var(--tc-red));
  color: #fff;
  padding: 56px 0;
}

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.page-cta-inner h3 { color: #fff; margin-bottom: 8px; font-size: 1.5rem; }
.page-cta-inner p { margin: 0; opacity: 0.9; }
.page-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-cta-actions .btn-tc-outline.text-white:hover { color: var(--tc-navy) !important; background: #fff; }

.page-stats-band {
  background: var(--tc-navy);
  color: #fff;
  padding: 48px 0;
  width: 100%;
}

.page-stats-band .stat-item strong { color: var(--tc-gold); }
.page-stats-band .stat-item span { color: rgba(255,255,255,0.8); }

.page-hero { background: linear-gradient(135deg, var(--tc-navy), var(--tc-red)); color: #fff; padding: 50px 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 8px; }
.page-hero p { opacity: 0.9; max-width: 600px; margin: 0 auto; }
.page-content { padding: 50px 0; width: 100%; }
.content-card { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); margin-bottom: 28px; border: 1px solid var(--tc-border); }
.content-card h3 { color: var(--tc-navy); margin-bottom: 16px; font-size: 1.3rem; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.feature-box { background: var(--tc-bg); border-radius: var(--radius); padding: 28px 24px; text-align: center; border: 1px solid var(--tc-border); transition: transform 0.2s, box-shadow 0.2s; }
.feature-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-box i { font-size: 2rem; color: var(--tc-red); margin-bottom: 12px; }
.feature-box h4 { font-size: 1rem; margin-bottom: 8px; color: var(--tc-navy); }
.feature-box p { font-size: 0.88rem; color: var(--tc-muted); margin: 0; }

.info-banner {
  background: linear-gradient(90deg, #fff0f2, #fff);
  border-left: 4px solid var(--tc-red);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.info-banner p { margin: 0; color: var(--tc-text); }

.alert-success-custom {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 28px;
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* Forex page rates */
.rates-table { width: 100%; border-collapse: collapse; }
.rates-table th, .rates-table td { padding: 12px 16px; border-bottom: 1px solid var(--tc-border); text-align: left; }
.rates-table th { background: var(--tc-bg); font-weight: 600; }

/* Forms */
.form-row-custom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 20px;
}

.form-control {
  display: block;
  width: 100%;
  border: 1px solid var(--tc-border);
  border-radius: 6px;
  padding: 10px 14px;
  height: auto;
  min-height: 46px;
  line-height: 1.5;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--tc-text);
  background-color: #fff;
  box-sizing: border-box;
}

select.form-control {
  padding-right: 2.25rem;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: menulist;
}

textarea.form-control {
  min-height: 120px;
  height: auto;
  resize: vertical;
}

input[type="date"].form-control,
input[type="number"].form-control,
input[type="email"].form-control,
input[type="tel"].form-control,
input[type="text"].form-control {
  min-height: 46px;
}

.form-control:focus { border-color: var(--tc-red); box-shadow: 0 0 0 3px rgba(227,24,55,0.1); outline: none; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--tc-navy); }

/* Footer */
.site-footer { background: var(--tc-navy); color: rgba(255,255,255,0.8); }
.footer-newsletter { background: var(--tc-red); padding: 40px 0; color: #fff; }
.footer-newsletter h4 { color: #fff; margin-bottom: 6px; }
.newsletter-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 480px; }
.footer-newsletter-form input { flex: 1; border: none; border-radius: 6px; padding: 12px 16px; }
.footer-main { padding: 50px 0 30px; }
.footer-brand { display: inline-block; }
.footer-brand .site-logo-link { line-height: 0; }
.site-footer h5 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-links a:hover { color: #fff; }
.footer-links.two-col { columns: 2; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 10px; font-size: 0.88rem; display: flex; gap: 10px; }
.footer-contact i { color: var(--tc-gold); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-social a { display: inline-flex; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; align-items: center; justify-content: center; color: #fff; margin-right: 8px; }
.footer-social a:hover { background: var(--tc-red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; font-size: 0.85rem; }

/* Floating actions */
.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 48px; height: 48px; background: var(--tc-red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(227,24,55,0.4); transition: transform 0.2s; }
.float-btn:hover { transform: scale(1.1); color: #fff; }

/* App banner */
.app-banner { background: linear-gradient(135deg, var(--tc-navy), #2d2d4a); color: #fff; border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.app-banner h3 { color: #fff; margin-bottom: 6px; }

/* Package detail */
.package-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.package-detail-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.package-detail-tag { background: var(--tc-red); color: #fff; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 20px; }
.package-detail-duration { color: var(--tc-muted); font-size: 0.92rem; }
.package-detail-desc { color: var(--tc-muted); line-height: 1.75; margin: 0; font-size: 1.02rem; }
.package-detail-list { list-style: none; padding: 0; margin: 0; }
.package-detail-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; color: var(--tc-text); line-height: 1.5; }
.package-detail-list li i { color: var(--tc-red); margin-top: 4px; flex-shrink: 0; }
.package-detail-list-sm li { font-size: 0.92rem; padding: 6px 0; }
.package-booking-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--tc-border); position: sticky; top: 90px; }
.package-booking-img { height: 180px; background-size: cover; background-position: center; }
.package-booking-body { padding: 24px; }
.package-booking-body h4 { color: var(--tc-navy); font-size: 1.1rem; margin-bottom: 16px; line-height: 1.35; }
.package-booking-price { margin-bottom: 20px; }
.package-booking-price .label { display: block; font-size: 0.82rem; color: var(--tc-muted); text-transform: uppercase; letter-spacing: 0.03em; }
.package-booking-price .amount { display: block; font-size: 1.75rem; font-weight: 700; color: var(--tc-red); line-height: 1.2; }
.package-booking-price .note { font-size: 0.82rem; color: var(--tc-muted); }
.package-booking-features { list-style: none; padding: 16px 0 0; margin: 16px 0 0; border-top: 1px solid var(--tc-border); }
.package-booking-features li { font-size: 0.88rem; color: var(--tc-muted); padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.package-booking-features i { color: var(--tc-red); width: 16px; }

@media (max-width: 768px) {
  .site-logo { height: 44px; max-width: 180px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .search-form-row { flex-direction: column; }
  .newsletter-row { flex-direction: column; }
  .footer-newsletter-form { max-width: 100%; flex-direction: column; }
  .page-hero-full { min-height: 240px; padding: 36px 0; }
  .page-section { padding: 48px 0; }
  .page-cta-inner { flex-direction: column; text-align: center; }
  .page-cta-actions { justify-content: center; width: 100%; }
  .content-card { padding: 24px; }
  .package-detail-layout { grid-template-columns: 1fr; }
  .package-booking-card { position: static; }
}

/* Search results */
.search-category-select { flex: 0 0 160px; min-width: 140px; height: auto; min-height: 46px; }
.search-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.search-result-card { display: block; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: inherit; transition: transform 0.2s; }
.search-result-card:hover { transform: translateY(-4px); color: inherit; }
.search-result-img { height: 160px; background-size: cover; background-position: center; }
.search-result-body { padding: 18px; }
.search-result-cat { display: inline-block; background: var(--tc-bg); color: var(--tc-red); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; margin-bottom: 8px; text-transform: uppercase; }
.search-result-body h3 { font-size: 1.05rem; color: var(--tc-navy); margin-bottom: 8px; }
.search-result-body p { color: var(--tc-muted); font-size: 0.88rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search-empty { text-align: center; padding: 60px 20px; background: var(--tc-bg); border-radius: var(--radius); }
.search-empty i { font-size: 2.5rem; color: var(--tc-muted); margin-bottom: 16px; }
.search-empty h3 { color: var(--tc-navy); margin-bottom: 8px; }
.search-empty p { color: var(--tc-muted); max-width: 480px; margin: 0 auto; }

/* Company profile */
.company-profile-text { white-space: pre-line; color: var(--tc-text); line-height: 1.8; margin: 0; }
.company-contact-card h3 { color: var(--tc-navy); font-size: 1.2rem; margin-bottom: 20px; }
.company-contact-list { list-style: none; padding: 0; margin: 0; }
.company-contact-list li { display: flex; gap: 14px; margin-bottom: 18px; }
.company-contact-list i { color: var(--tc-red); font-size: 1.1rem; margin-top: 4px; width: 18px; }
.company-contact-list strong { display: block; color: var(--tc-navy); font-size: 0.85rem; margin-bottom: 2px; }
.company-contact-list a, .company-contact-list span { color: var(--tc-muted); font-size: 0.95rem; }
.company-contact-list a:hover { color: var(--tc-red); }
