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

:root {
  --red:      #f7941d;
  --red-dark: #d97706;
  --navy:     #1a2358;
  --navy-mid: #1e2b6a;
  --blue:     #2575d0;
  --blue-lt:  #dbeafe;
  --gold:     #fbbf24;
  --white:    #ffffff;
  --off-white:#f8fafc;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);
  --radius:    12px;
  --radius-sm: 8px;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif; color: var(--gray-800); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: background var(--transition);
}
.site-header.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(12px); }

.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: 68px;
}

.logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 40px; width: auto; max-width: 140px;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 50px; width: auto; max-width: 160px;
  display: block; margin-bottom: 10px;
  object-fit: contain;
}

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  color: var(--navy); font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 6px;
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--red); background: rgba(247,148,29,.08); }

.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.currency-switcher {
  display: flex; align-items: center; gap: 6px;
}
.currency-label { font-size: 12px; color: var(--gray-600); white-space: nowrap; }
.currency-switcher select {
  background: var(--gray-100); border: 1.5px solid var(--gray-200);
  color: var(--navy); padding: 6px 10px; border-radius: 6px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background var(--transition);
}
.currency-switcher select:hover { background: var(--gray-200); }
.currency-switcher select option { background: var(--white); color: var(--navy); }

.btn-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 8px 14px; border-radius: 8px;
  transition: background var(--transition);
}
.btn-call:hover { background: var(--red-dark); }
.call-icon { font-size: 16px; }
.call-text { display: flex; flex-direction: column; line-height: 1.2; }
.call-text small { font-size: 10px; opacity: .8; }
.call-text strong { font-size: 13px; }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--navy); font-size: 22px; cursor: pointer;
  padding: 4px 8px;
}

/* MOBILE NAV */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: var(--navy-mid); flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white); padding: 14px 24px; font-size: 15px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,.08); }
.mobile-nav .mobile-call { color: var(--gold); font-weight: 700; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, #1a2358 0%, #1e2b6a 40%, #2575d0 70%, #1e2b6a 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(247,148,29,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(37,117,208,.25) 0%, transparent 60%);
}
/* Maple leaf watermark */
.hero-bg::after {
  content: '🍁';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 320px; opacity: .04; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,31,68,.6) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(247,148,29,.2); border: 1px solid rgba(247,148,29,.45);
  color: #fde68a; padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: var(--white);
  line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 560px; margin-bottom: 40px;
}

/* ===== SEARCH WIDGET ===== */
.search-widget {
  width: 100%; max-width: 1100px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  overflow: hidden;
}

.widget-tabs {
  display: flex; background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.wtab {
  flex: 1; padding: 14px 20px;
  background: none; border: none; border-bottom: 3px solid transparent;
  font-size: 15px; font-weight: 600; color: var(--gray-600);
  cursor: pointer; transition: all var(--transition);
}
.wtab.active {
  background: var(--white); color: var(--red);
  border-bottom-color: var(--red);
}
.wtab:hover:not(.active) { background: var(--gray-200); }

.tab-pane { display: none; padding: 24px; }
.tab-pane.active { display: block; }

.trip-type {
  display: flex; gap: 20px; margin-bottom: 16px;
}
.trip-type label {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--gray-600); cursor: pointer;
}
.trip-type input { accent-color: var(--red); }

.search-row {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end;
}
.sf {
  display: flex; flex-direction: column; gap: 4px;
  flex: 1; min-width: 140px;
}
.sf.wide { flex: 2; min-width: 220px; }
.sf label { font-size: 11px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: .5px; }
.sf input, .sf select {
  padding: 10px 12px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--gray-800);
  background: var(--white); transition: border-color var(--transition);
  height: 42px;
}
.sf input:focus, .sf select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,117,208,.15);
}

.swap-btn {
  background: var(--gray-100); border: 1.5px solid var(--gray-200);
  border-radius: 50%; width: 36px; height: 36px; flex-shrink: 0;
  font-size: 18px; cursor: pointer; align-self: flex-end; margin-bottom: 3px;
  transition: all var(--transition);
}
.swap-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.btn-search {
  background: var(--red); color: var(--white);
  border: none; padding: 0 24px; height: 42px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 700;
  cursor: pointer; white-space: nowrap; align-self: flex-end;
  transition: background var(--transition);
}
.btn-search:hover { background: var(--red-dark); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.trust-inner {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); flex: 1; min-width: 180px;
}
.ti { font-size: 22px; flex-shrink: 0; }
.trust-item strong { font-size: 13px; display: block; }
.trust-item small { font-size: 11px; color: rgba(255,255,255,.6); }

/* ===== SECTION COMMON ===== */
.deals-section { padding: 80px 0; }
.deals-section.alt { background: var(--gray-50); }
.tours-section { padding: 80px 0; background: var(--navy); }
.tours-section .section-head h2 { color: var(--white); }
.tours-section .section-head p { color: rgba(255,255,255,.65); }
.tours-section .section-label { color: rgba(255,255,255,.6); }

.section-head { text-align: center; margin-bottom: 40px; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--red); margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.section-head p { font-size: 1rem; color: var(--gray-600); max-width: 540px; margin: 0 auto; }

/* ===== DEAL TABS ===== */
.deals-tabs, .tours-tabs {
  display: flex; gap: 8px; margin-bottom: 28px;
  flex-wrap: wrap;
}
.dtab, .ttab {
  padding: 9px 20px; border-radius: 100px;
  background: var(--gray-100); border: 1.5px solid var(--gray-200);
  font-size: 14px; font-weight: 600; color: var(--gray-600);
  cursor: pointer; transition: all var(--transition);
}
.dtab.active, .ttab.active {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.dtab:hover:not(.active), .ttab:hover:not(.active) { border-color: var(--red); color: var(--red); }

/* Tours tabs light version for dark bg */
.tours-section .ttab {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.8);
}
.tours-section .ttab.active { background: var(--red); border-color: var(--red); color: var(--white); }
.tours-section .ttab:hover:not(.active) { background: rgba(255,255,255,.2); color: var(--white); }

/* ===== FLIGHT DEAL CARDS ===== */
.deals-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-bottom: 32px;
}

.deal-card {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  padding: 22px 20px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 8px;
}
.deal-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
  border-color: var(--red);
}

.deal-badge {
  position: absolute; top: 0; right: 0;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 0 var(--radius) 0 var(--radius);
  text-transform: uppercase;
}
.deal-badge.new { background: var(--blue); }
.deal-badge.sale { background: var(--gold); color: var(--navy); }

.deal-route {
  display: flex; align-items: center; gap: 10px;
  margin-top: 4px;
}
.deal-route .city { font-size: 18px; font-weight: 700; color: var(--navy); }
.deal-route .arrow { font-size: 20px; color: var(--red); flex-shrink: 0; }

.deal-airline { font-size: 12px; color: var(--gray-600); }
.deal-date { font-size: 12px; color: var(--gray-400); font-weight: 500; }

.deal-price { margin-top: 4px; }
.price-main { font-size: 26px; font-weight: 800; color: var(--red); line-height: 1; }
.price-main .currency-sym { font-size: 14px; font-weight: 700; vertical-align: super; }
.price-note { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

.btn-deal {
  display: block; text-align: center;
  background: var(--navy); color: var(--white);
  padding: 10px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700;
  margin-top: auto; transition: background var(--transition);
}
.btn-deal:hover { background: var(--red); }

/* ===== HOTEL CARDS ===== */
.hotels-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.hotel-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.hotel-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--red); }

.hotel-img {
  height: 160px;
  background-size: cover; background-position: center;
}
/* Gradient placeholders for hotel images */
.hotel-img-1 { background: linear-gradient(135deg, #1a3a6b 0%, #2d6a4f 50%, #40916c 100%); background-image: linear-gradient(135deg, #1e3c72, #2a5298, #f4a261); }
.hotel-img-2 { background: linear-gradient(135deg, #373b44, #4286f4); }
.hotel-img-3 { background: linear-gradient(135deg, #614385, #516395); }
.hotel-img-4 { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.hotel-img-5 { background: linear-gradient(135deg, #ee0979, #ff6a00); }
.hotel-img-6 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.hotel-img-7 { background: linear-gradient(135deg, #7f00ff, #e100ff); }
.hotel-img-8 { background: linear-gradient(135deg, #00b4db, #0083b0); }

/* hotel images — local photos */
.hotel-img { background-size: cover; background-position: center; }
.hotel-img-1 { background-image: url('../img/hotel-banff.jpg'); }
.hotel-img-2 { background-image: url('../img/hotel-toronto.jpg'); }
.hotel-img-3 { background-image: url('../img/hotel-quebec.jpg'); }
.hotel-img-4 { background-image: url('../img/hotel-vancouver.jpg'); }
.hotel-img-5 { background-image: url('../img/hotel-nyc.jpg'); }
.hotel-img-6 { background-image: url('../img/hotel-vegas.jpg'); }
.hotel-img-7 { background-image: url('../img/hotel-orlando.jpg'); }
.hotel-img-8 { background-image: url('../img/hotel-miami.jpg'); }

.hotel-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hotel-stars { font-size: 12px; }
.hotel-name { font-size: 16px; font-weight: 700; color: var(--navy); }
.hotel-loc { font-size: 12px; color: var(--gray-600); }
.hotel-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.hotel-tags span {
  background: var(--blue-lt); color: var(--blue);
  font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 100px;
}
.hotel-price { font-size: 15px; color: var(--gray-600); margin-top: 4px; }
.hotel-price .currency-sym { font-size: 12px; vertical-align: super; }
.hotel-price .price-val { font-size: 22px; font-weight: 800; color: var(--red); }

/* ===== TOUR CARDS ===== */
.tours-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 32px;
}

.tour-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.tour-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.35); transform: translateY(-4px); }

.tour-img {
  height: 200px;
  background-size: cover; background-position: center;
}
.tour-banff   { background-image: url('../img/tour-banff.jpg'); }
.tour-niagara { background-image: url('../img/tour-niagara.jpg'); }
.tour-quebec  { background-image: url('../img/tour-quebec.jpg'); }
.tour-vancouver { background-image: url('../img/tour-vancouver.jpg'); }
.tour-nyc     { background-image: url('../img/tour-nyc.jpg'); }
.tour-vegas   { background-image: url('../img/tour-vegas.jpg'); }
.tour-orlando { background-image: url('../img/tour-orlando.jpg'); }
.tour-hawaii  { background-image: url('../img/tour-hawaii.jpg'); }

.tour-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tour-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(247,148,29,.12); color: var(--red-dark);
}
.tour-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); }
.tour-body p { font-size: 13px; color: var(--gray-600); }

.tour-includes { display: flex; flex-direction: column; gap: 3px; }
.tour-includes li { font-size: 12px; color: var(--gray-600); }

.tour-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: var(--gray-600); font-weight: 500;
  padding-top: 8px; border-top: 1px solid var(--gray-100);
}
.tour-meta span { display: flex; align-items: center; gap: 4px; }

.tour-price {
  font-size: 14px; color: var(--gray-600);
  padding: 10px 12px; background: var(--gray-50); border-radius: 8px;
  margin-top: auto;
}
.tour-price .currency-sym { font-size: 12px; vertical-align: super; }
.tour-price .price-val { font-size: 24px; font-weight: 800; color: var(--red); }

.btn-tour {
  display: block; text-align: center;
  background: var(--red); color: var(--white);
  padding: 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700;
  transition: background var(--transition);
}
.btn-tour:hover { background: var(--red-dark); }

/* ===== CTA ===== */
.deals-cta { text-align: center; margin-top: 8px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 700;
  transition: background var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-item { text-align: center; color: var(--white); }
.stat-num {
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 900;
  line-height: 1; color: var(--white);
}
.stat-suffix { display: inline; font-size: 1.8rem; font-weight: 700; }
.stat-label { font-size: 14px; opacity: .85; margin-top: 4px; font-weight: 500; }

/* ===== WHY US ===== */
.why-section { padding: 80px 0; background: var(--off-white); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white); padding: 28px 24px;
  border-radius: var(--radius); border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon { font-size: 36px; margin-bottom: 12px; }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.tcard {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
}
.tcard:hover { box-shadow: var(--shadow); border-color: var(--red); }
.tcard-stars { font-size: 14px; margin-bottom: 10px; }
.tcard p { font-size: 14px; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.tcard-author { display: flex; align-items: center; gap: 10px; }
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.tcard-author strong { font-size: 14px; color: var(--navy); display: block; }
.tcard-author small { font-size: 12px; color: var(--gray-400); }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 0; background: var(--gray-50); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.contact-left .section-label { text-align: left; display: block; margin-bottom: 8px; }
.contact-left h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.contact-left p { color: var(--gray-600); margin-bottom: 28px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.cd-item { display: flex; align-items: flex-start; gap: 12px; }
.cd-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cd-item strong { font-size: 13px; font-weight: 700; color: var(--navy); display: block; }
.cd-item a, .cd-item span { font-size: 14px; color: var(--gray-600); }
.cd-item a:hover { color: var(--red); }

.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 10px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--gray-800);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,117,208,.12);
}
.form-group textarea { resize: vertical; }

.btn-submit {
  width: 100%; padding: 14px;
  background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: background var(--transition);
}
.btn-submit:hover { background: var(--red-dark); }
.form-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 12px; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--navy);
  padding: 48px 0;
}
.newsletter-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.nl-text h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.nl-text p { font-size: 14px; color: rgba(255,255,255,.65); }
.nl-form { display: flex; gap: 10px; flex: 1; max-width: 440px; min-width: 260px; }
.nl-form input {
  flex: 1; padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1); color: var(--white);
  border-radius: var(--radius-sm); font-size: 14px;
}
.nl-form input::placeholder { color: rgba(255,255,255,.5); }
.nl-form input:focus { outline: none; border-color: var(--red); }
.nl-form button {
  padding: 12px 20px; background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: background var(--transition);
}
.nl-form button:hover { background: var(--red-dark); }

/* ===== FOOTER ===== */
.site-footer { background: var(--white); color: var(--gray-600); border-top: 2px solid var(--gray-100); }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding: 60px 24px 40px;
}
.footer-logo { margin-bottom: 12px; }
.footer-col p { font-size: 13px; line-height: 1.7; color: var(--gray-600); }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--navy);
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--red); color: var(--white); }

.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 13px; color: var(--gray-600); transition: color var(--transition); }
.footer-col li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 20px 24px; text-align: center;
  background: var(--gray-50);
}
.footer-bottom p { font-size: 12px; color: var(--gray-400); margin-bottom: 4px; }
.footer-disclaimer { opacity: .8; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 100px; right: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  border: 2px solid rgba(255,255,255,.2);
  font-size: 18px; cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--red); border-color: var(--red); }

/* ===== FLOATING CALL BUTTON ===== */
.floating-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 12px 18px; border-radius: 100px;
  box-shadow: 0 6px 24px rgba(247,148,29,.5);
  transition: all var(--transition);
}
.floating-call:hover { background: var(--red-dark); transform: scale(1.04); }
.fc-icon { font-size: 20px; animation: ring 2s ease-in-out infinite; }
@keyframes ring {
  0%,100% { transform: rotate(0); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0); }
}
.fc-text { font-size: 11px; line-height: 1.3; }
.fc-text strong { font-size: 13px; display: block; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: 16px;
  padding: 40px 32px; max-width: 400px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
  animation: modalIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-icon { font-size: 52px; margin-bottom: 16px; }
.modal-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.modal-box p { color: var(--gray-600); margin-bottom: 24px; }
.modal-box a { color: var(--red); font-weight: 700; }

/* ===== CURRENCY HIGHLIGHT ===== */
.price-val { transition: opacity .2s; }
.price-val.updating { opacity: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { gap: 32px; }
}

@media (max-width: 768px) {
  /* Header — show only logo + phone icon + hamburger */
  .main-nav { display: none; }
  .currency-switcher { display: none; }
  .call-text { display: none; }
  .btn-call {
    padding: 8px 12px;
    gap: 0;
    min-width: 42px;
    justify-content: center;
  }
  .call-icon { font-size: 20px; }
  .nav-toggle { display: block; }

  /* Hero */
  .hero { min-height: auto; padding: 90px 0 36px; overflow: hidden; }
  .hero-bg { overflow: hidden; }
  .hero-bg::after { font-size: 100px; right: -20px; opacity: .3; }
  .hero-content h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hero-content p { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Search widget */
  .search-widget { padding: 20px 16px; border-radius: 12px; }
  .search-row { flex-direction: column; gap: 10px; }
  .sf, .sf.wide { min-width: 100%; }
  .swap-btn { display: none; }
  .search-btn { width: 100%; justify-content: center; }

  /* Trust bar — horizontal scroll */
  .trust-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .trust-inner { gap: 10px; flex-wrap: nowrap; padding: 12px 16px; width: max-content; min-width: 100%; }
  .trust-item { min-width: 150px; flex-shrink: 0; }

  /* Sections */
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: clamp(1.3rem, 5vw, 1.6rem); }

  /* Grids — 1 column on mobile */
  .deals-grid, .hotels-grid, .tours-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .newsletter-wrap { flex-direction: column; align-items: flex-start; }
  .newsletter-wrap input { width: 100%; }

  /* Floating call */
  .floating-call .fc-text { display: none; }
  .floating-call { padding: 14px; border-radius: 50%; }
  .fc-icon { font-size: 22px; }

  /* Inner pages */
  .about-grid { grid-template-columns: 1fr; }
  .about-grid img { height: 200px; }
  .about-grid[style*="rtl"] { direction: ltr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 60px 0 40px; }
  .page-content { padding: 40px 0 60px; }
}

@media (max-width: 480px) {
  /* Container padding */
  .container { padding: 0 16px; }

  /* Header tighter */
  .header-inner { padding: 0 16px; }

  /* Cards 1 column */
  .deals-grid, .hotels-grid, .tours-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Widget tabs stack */
  .widget-tabs { flex-direction: column; gap: 0; }
  .wtab { border-bottom: none; border-left: 3px solid transparent; text-align: left; padding: 12px 16px; }
  .wtab.active { border-left-color: var(--red); border-bottom: none; }

  /* Section spacing */
  .section-padded, .deals-section, .hotels-section, .tours-section,
  .why-section, .testimonials-section { padding: 48px 0; }

  /* Stats */
  .stat-num { font-size: 2rem; }

  /* Newsletter */
  .newsletter-section { padding: 40px 0; }
  .newsletter-wrap input, .newsletter-wrap button { width: 100%; }

  /* Footer */
  .footer-inner { padding: 40px 0 20px; }
  .footer-bottom p { font-size: 12px; text-align: center; }
  .footer-disclaimer { text-align: center; }

  /* Inner page tweaks */
  .contact-page-grid { gap: 32px; }
  .policy-section h2 { font-size: 1.05rem; }
  .page-hero h1 { font-size: 1.5rem; }
}

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: var(--white);
  margin-top: 68px;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { font-size: 16px; opacity: .85; max-width: 560px; margin: 0 auto; }
.page-hero .breadcrumb { font-size: 13px; opacity: .7; margin-bottom: 16px; }
.page-hero .breadcrumb a { color: var(--white); text-decoration: underline; }

.page-content { padding: 60px 0 80px; }
.page-content .container { max-width: 860px; }

.policy-section { margin-bottom: 40px; }
.policy-section h2 {
  font-size: 1.25rem; font-weight: 800; color: var(--navy);
  border-left: 4px solid var(--red); padding-left: 14px;
  margin-bottom: 14px;
}
.policy-section p, .policy-section li {
  font-size: 15px; color: var(--gray-600); line-height: 1.75;
}
.policy-section ul, .policy-section ol { padding-left: 20px; margin-top: 8px; }
.policy-section li { margin-bottom: 6px; }
.policy-section a { color: var(--blue); }

.policy-meta {
  background: var(--off-white); border-radius: var(--radius);
  padding: 18px 24px; font-size: 13px; color: var(--gray-600);
  margin-bottom: 40px; border: 1px solid var(--gray-200);
}

/* About page */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 60px;
}
.about-grid img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 320px; }
.about-text h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.about-text p { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 12px; }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow); }
.value-icon { font-size: 36px; margin-bottom: 12px; }
.value-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* Contact page */
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-info-block h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.ci-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.ci-text strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.ci-text span, .ci-text a { font-size: 15px; color: var(--gray-600); }
.ci-text a { color: var(--blue); }

@media (max-width: 768px) {
  .about-grid, .contact-page-grid, .values-grid { grid-template-columns: 1fr; }
  .about-grid img { height: 220px; }
}
