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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #12355B;
  --royal:  #2A6FDB;
  --orange: #F28C28;
  --green:  #34A853;
  --white:  #FFFFFF;
  --grey:   #F5F7FA;
  --text:   #2E2E2E;
  --muted:  #6B7280;
  --border: #E5E7EB;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--grey { background: var(--grey); }
.text-center { text-align: center; }

.section-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #d97c20; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(242,140,40,0.35); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #0e2a47; transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(18, 53, 91, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { color: var(--orange); }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-cta { margin-left: 16px; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img { object-position: center 60%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18,53,91,0.85) 0%, rgba(18,53,91,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 68px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,140,40,0.2);
  border: 1px solid rgba(242,140,40,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  color: #FDB96A;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  color: white;
  max-width: 700px;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
}
.hero-stat-label { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--royal);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--grey);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.service-card:hover .service-icon { background: #EEF4FF; }
.service-card h3 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── TOUR CARDS ── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.tour-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.25s;
  border: 1px solid var(--border);
}
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tour-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.tour-card-img img { transition: transform 0.4s; }
.tour-card:hover .tour-card-img img { transform: scale(1.04); }
.tour-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; gap: 8px;
}
.badge {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.badge-uk { background: var(--navy); color: white; }
.badge-europe { background: #1a3a6b; color: white; }
.badge-day { background: var(--orange); color: white; }
.badge-multi { background: var(--green); color: white; }
.badge-seats { background: rgba(0,0,0,0.55); color: white; backdrop-filter: blur(4px); }
.tour-card-body { padding: 24px; }
.tour-card-body h3 { font-size: 18px; margin-bottom: 8px; }
.tour-card-body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.55; }
.tour-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.tour-meta span { display: flex; align-items: center; gap: 5px; }
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tour-price { font-family: 'Poppins', sans-serif; }
.tour-price-from { font-size: 12px; color: var(--muted); }
.tour-price-amount { font-size: 24px; font-weight: 700; color: var(--navy); }
.tour-price-per { font-size: 12px; color: var(--muted); }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.why-item { text-align: center; }
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(42,111,219,0.25);
}
.why-item h3 { font-size: 18px; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
}
.stars { color: #FBBF24; font-size: 16px; margin-bottom: 16px; }
.testimonial-card p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--grey);
}
.testimonial-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; }
.testimonial-loc { font-size: 13px; color: var(--muted); }

/* ── PHOTO STRIP ── */
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-strip-grid .photo:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.photo { overflow: hidden; }
.photo img { transition: transform 0.4s; }
.photo:hover img { transform: scale(1.05); }
.photo-strip-footer {
  text-align: center;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
}
.photo-strip-footer a { color: var(--royal); font-weight: 500; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: var(--orange);
  opacity: 0.07;
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: var(--royal);
  opacity: 0.1;
  border-radius: 50%;
}
.cta-banner h2 { color: white; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 520px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER ── */
.footer { background: #0d2540; padding: 60px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 13px; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── TOURS PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 { color: white; font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 18px; }

.filter-bar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.filter-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 140px; }
.filter-group label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group select, .filter-group input {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--grey);
  outline: none;
}
.filter-group select:focus, .filter-group input:focus { border-color: var(--royal); background: white; }
.filter-divider { width: 1px; height: 48px; background: var(--border); }

/* ── TOUR DETAIL ── */
.tour-detail-hero {
  height: 480px;
  position: relative;
  overflow: hidden;
}
.tour-detail-hero .hero-overlay {
  background: linear-gradient(to top, rgba(18,53,91,0.7) 0%, transparent 60%);
}
.tour-detail-header {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.tour-detail-title { color: white; font-size: clamp(28px, 4vw, 48px); }

.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.tour-thumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
.tour-thumb {
  width: 80px; height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s;
  flex-shrink: 0;
  border: 2px solid transparent;
}
.tour-thumb.active { opacity: 1; border-color: var(--orange); }
.tour-thumb:hover { opacity: 1; }

.detail-section { margin-bottom: 40px; }
.detail-section h2 { font-size: 22px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--grey); }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.included-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.included-item .tick { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.included-item .cross { color: #EF4444; font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ── BOOKING BOX ── */
.booking-box {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: sticky;
  top: 88px;
  overflow: hidden;
}
.booking-box-header {
  background: var(--navy);
  padding: 24px;
  color: white;
}
.booking-box-header h3 { font-size: 20px; color: white; margin-bottom: 4px; }
.booking-box-header p { color: rgba(255,255,255,0.65); font-size: 14px; }
.booking-box-body { padding: 24px; }
.booking-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.booking-price-from { font-size: 14px; color: var(--muted); }
.booking-price-amount { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 700; color: var(--navy); }
.booking-price-per { font-size: 14px; color: var(--muted); }
.booking-deposit {
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #92400E;
  margin-bottom: 20px;
}
.booking-field { margin-bottom: 16px; }
.booking-field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.booking-field select, .booking-field input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--grey);
  outline: none;
}
.booking-field select:focus, .booking-field input:focus { border-color: var(--royal); background: white; }
.booking-dates { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.date-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.date-option.selected { border-color: var(--navy); background: #EEF4FF; }
.date-option input[type="radio"] { accent-color: var(--navy); width: 16px; height: 16px; }
.date-option-info { flex: 1; }
.date-option-date { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--navy); }
.date-option-seats { font-size: 12px; color: var(--muted); }
.date-option-price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); font-size: 15px; }
.booking-total {
  background: var(--grey);
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
}
.booking-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--muted);
}
.booking-total-row.total {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  margin-bottom: 0;
}
.booking-policy { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ── CONTACT PAGE ── */
.enquiry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.enquiry-tab {
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.enquiry-tab.active {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}
.enquiry-tab:hover:not(.active) { border-color: var(--navy); color: var(--navy); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h2 { font-size: 24px; margin-bottom: 8px; }
.contact-form > p { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--grey);
  outline: none;
  transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--royal); background: white; }
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  color: white;
  position: sticky;
  top: 88px;
}
.contact-info-card h3 { color: white; margin-bottom: 24px; font-size: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 13px; color: rgba(255,255,255,0.5); font-family: 'Poppins', sans-serif; margin-bottom: 4px; }
.contact-info-item p { font-size: 15px; color: rgba(255,255,255,0.9); }
.hours-table { font-size: 13px; color: rgba(255,255,255,0.7); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.hours-row { display: flex; justify-content: space-between; margin-bottom: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .tours-grid { grid-template-columns: 1fr; }
  .photo-strip-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3, 160px); }
  .photo-strip-grid .photo:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tour-detail-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .included-grid { grid-template-columns: 1fr; }
}
