/* ==========================================================
   Smart Service Trips — Global Stylesheet
   ========================================================== */

:root {
  --bg: #fdfbf7;
  --ink: #1a1a1a;
  --muted: #5e5e5e;
  --line: #e6e1d6;
  --accent: #c8452d;       /* terracotta */
  --accent-dark: #a8371f;
  --gold: #b88746;
  --deep: #0f2a3c;         /* deep navy */
  --cream: #f4ede0;
  --shadow: 0 10px 40px rgba(15, 42, 60, 0.08);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--deep);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--muted); }

a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-dark); }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; color: var(--muted); }
li { margin-bottom: 0.4rem; }

/* =======================
   Top Disclosure Bar
   ======================= */
.disclosure-bar {
  background: var(--deep);
  color: #f0e8d8;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.disclosure-bar strong { color: #fff; }

/* =======================
   Header / Navigation
   ======================= */
header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
}
nav a {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}
nav a:hover { color: var(--accent); }

.call-btn {
  background: var(--accent);
  color: #fff !important;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(200, 69, 45, 0.25);
  transition: all 0.2s ease;
}
.call-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--deep);
  cursor: pointer;
}

/* =======================
   Hero
   ======================= */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15,42,60,0.78), rgba(15,42,60,0.55)),
    url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: #fff;
  padding: 90px 24px 70px;
  min-height: 540px;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 { color: #fff; margin-bottom: 18px; }
.hero-text p {
  color: #e8e3d4;
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 26px;
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.trust-pill {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 0.82rem;
  color: #f0e8d8;
}
/* =======================
 + *odal Pop - UP
   ======================= */
/* Modal Overlay */
/*.modal-overlay {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100vh;  🔥 important */

/*  background: rgba(0,0,0,0.7);*/

/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/

/*  z-index: 999999;*/

/*  opacity: 0;*/
/*  visibility: hidden;*/
/*  transition: 0.3s;*/
/*}*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

/* Active State */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.modal-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  width: 320px;
  transform: translateY(30px);
  transition: 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

/* Icon */
.modal-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #0E4D92, #00BFA6);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}

/* Button */
.modal-btn {
  margin-top: 15px;
  padding: 10px 25px;
  border: none;
  background: linear-gradient(to right, #0E4D92, #00BFA6);
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.multi-city-wrapper {
  grid-column: span 2;
  margin-top: 10px;
}

.multi-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  margin-bottom: 10px;
  align-items: end;
  animation: fadeIn 0.3s ease;
}

.remove-btn {
  height: 42px;
  border: none;
  background: #ff4d4d;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.remove-btn:hover {
  background: #e60000;
}

.add-flight-btn {
  margin-top: 10px;
  padding: 10px;
  border: 1px dashed #0E4D92;
  background: transparent;
  color: #0E4D92;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.add-flight-btn:hover {
  background: rgba(14,77,146,0.1);
}

@keyframes fadeIn {
  from {opacity:0; transform:translateY(10px);}
  to {opacity:1; transform:translateY(0);}
}
#multiCityFields {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}
/* =======================
   Flight Query Form
   ======================= */
.flight-form {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.flight-form h3 {
  text-align: center;
  color: var(--deep);
  font-size: 1.3rem;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}

.trip-tabs { display: flex; gap: 6px; margin-bottom: 18px; }
.trip-tab {
  flex: 1;
  padding: 9px 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.trip-tab.active {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 5px;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}

.submit-btn {
  grid-column: 1 / -1;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
  font-family: inherit;
}
.submit-btn:hover { background: var(--accent-dark); }

.form-note {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

/* =======================
   Section Layout
   ======================= */
section { padding: 70px 24px; }
.container { max-width: 1240px; margin: 0 auto; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

/* =======================
   Deal Cards
   ======================= */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.deal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.deal-image {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.deal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.deal-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.deal-route {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.deal-tag {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.deal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.deal-from {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.deal-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent);
}
.deal-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

/* =======================
   Exclusive Deals Banner
   ======================= */
.exclusive-banner {
  background: linear-gradient(135deg, var(--deep) 0%, #1a3f57 100%);
  color: #fff;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.exclusive-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(200,69,45,0.15), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(184,135,70,0.1), transparent 50%);
}
.exclusive-banner > * { position: relative; z-index: 2; }

.exclusive-banner h2 { color: #fff; }
.exclusive-banner p { color: #d8d3c4; max-width: 600px; margin: 12px auto 24px; }

.big-call-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 15px 34px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  box-shadow: 0 6px 22px rgba(200,69,45,0.3);
}
.big-call-btn:hover { background: var(--accent-dark); }

/* =======================
   Why Choose / Feature Grid
   ======================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 30px;
}
.feature {
  text-align: center;
  padding: 20px;
}
.feature-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.feature h4 { color: var(--deep); margin-bottom: 8px; }
.feature p { font-size: 0.92rem; }

/* =======================
   Content Pages (About, Policy, etc.)
   ======================= */
.page-header {
  background: linear-gradient(135deg, var(--deep), #1a3f57);
  color: #fff;
  text-align: center;
  padding: 70px 24px 50px;
}
.page-header h1 { color: #fff; margin-bottom: 10px; }
.page-header p { color: #d8d3c4; max-width: 620px; margin: 0 auto; }

.content-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 24px;
}
.content-wrap h2 {
  margin-top: 36px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream);
}
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h3 { margin-top: 24px; color: var(--deep); }
.content-wrap p { color: #333; line-height: 1.75; }
.content-wrap ul li, .content-wrap ol li { color: #333; }

.updated-date {
  background: var(--cream);
  padding: 12px 18px;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.info-box {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: 20px 22px;
  margin: 24px 0;
  border-radius: var(--radius);
}
.info-box h4 { color: var(--accent); }
.info-box p:last-child { margin-bottom: 0; }

/* =======================
   Footer
   ======================= */
footer {
  background: #0a1e2d;
  color: #b0b8c0;
  padding: 54px 24px 20px;
  font-size: 0.9rem;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #b0b8c0; }
.footer-col a:hover { color: #fff; }
.footer-col p { color: #b0b8c0; font-size: 0.9rem; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--accent); }

.footer-disclaimer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: #8a939c;
  line-height: 1.7;
}
.footer-disclaimer p { color: #8a939c; margin-bottom: 10px; font-size: 0.78rem; }

.footer-bottom {
  text-align: center;
  padding-top: 18px;
  color: #8a939c;
  font-size: 0.8rem;
}

/* =======================
   Responsive
   ======================= */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  nav ul { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 60px 20px 50px; min-height: auto; }
  section { padding: 50px 20px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .trip-tabs { flex-wrap: wrap; }
  .nav-container { padding: 14px 18px; }
  .logo { font-size: 1.3rem; }
}
