/* ==========================================================================
   TravelSquare — styles.css
   Level 1 static website styles
   ==========================================================================

   Table of contents
   -----------------
   1.  CSS custom properties (design tokens)
   2.  Reset and base
   3.  Typography
   4.  Utility
   5.  Navigation
   6.  Alert bar (top of page)
   7.  Hero / slideshow
   8.  Buttons
   9.  Sections (shared layout)
   10. Enquiry form
   11. Why us / features
   12. Hajj & Umrah packages
   13. Travel alerts
   14. Advice cards
   15. Socials
   16. Contact
   17. Legal / policy tabs
   18. Footer
   19. Subpage hero, CTA strip, and homepage preview cards
   20. Responsive — 940 px
   21. Responsive — 768 px
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. CSS custom properties
   -------------------------------------------------------------------------- */
:root {
  --navy:       #4065ae;
  --navy-soft:  #2a4a8c;
  --navy-dark:  #0a1628;
  --blue-dark:  #2a4a8c;
  --blue-mid:   #4065ae;
  --gold:       #db883d;
  --gold-light: #f5d5b3;
  --gold-dark:  #b56820;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --panel:      #fffdf8;
  --text-dark:  #0f1f3d;
  --text-muted: #4a5568;
  --border:     #d1d9e6;
  --danger:     #7c1d1d;
  --shadow:     0 18px 50px rgba(10, 22, 40, 0.10);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}


/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}


/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
}


/* --------------------------------------------------------------------------
   4. Utility
   -------------------------------------------------------------------------- */
.anchor {
  scroll-margin-top: 90px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  min-height: 68px;
  border-bottom: 1px solid rgba(64, 101, 174, 0.18);
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  color: var(--white);
}

.logo-text span {
  display: block;
}

.logo-text .brand {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.logo-text .tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: #1e2d4e;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--blue-mid);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: #c47734 !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(30, 45, 78, 0.30);
  color: #1e2d4e;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}


/* --------------------------------------------------------------------------
   6. Alert bar
   -------------------------------------------------------------------------- */
.alerts-bar {
  margin-top: 68px;
  background: var(--danger);
  color: var(--white);
  padding: 10px 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alerts-bar .alert-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.alerts-bar p {
  font-size: 13px;
  line-height: 1.5;
}

.alerts-bar strong {
  color: #fecaca;
}

.alerts-bar a {
  color: #fecaca;
  text-decoration: underline;
}


/* --------------------------------------------------------------------------
   7. Hero / slideshow
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  overflow: hidden;
}

.slides {
  position: relative;
  min-height: calc(100vh - 108px);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.4s ease;
}

.slide.active {
  opacity: 1;
}

.slide-1 {
  background-image: url('../assets/images/hero-1.jpg');
  background-size: cover;
  background-position: center;
}

.slide-2 {
  background-image: url('../assets/images/hero-2.jpg');
  background-size: cover;
  background-position: center;
}

.slide-3 {
  background-image: url('../assets/images/hero-3.jpg');
  background-size: cover;
  background-position: center;
}

.slide-4 {
  background-image: url('../assets/images/hero-4.jpg');
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.65) 40%, rgba(10, 22, 40, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 8% 5rem;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(219, 136, 61, 0.18);
  border: 1px solid rgba(219, 136, 61, 0.45);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.slide-indicators {
  position: absolute;
  bottom: 2rem;
  left: 8%;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.indicator {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
  padding: 0;
}

.indicator.active {
  background: var(--gold);
  width: 48px;
}


/* --------------------------------------------------------------------------
   8. Buttons
   -------------------------------------------------------------------------- */
.btn-primary,
.btn-outline,
.btn-submit,
.social-link,
.pkg-cta {
  min-height: 44px;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: #c47734;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(219, 136, 61, 0.15);
}

.btn-submit {
  background: var(--blue-mid);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}


/* --------------------------------------------------------------------------
   9. Sections — shared layout
   -------------------------------------------------------------------------- */
section {
  padding: 5rem 8%;
}

.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}


/* --------------------------------------------------------------------------
   10. Enquiry form
   -------------------------------------------------------------------------- */
.inquiry-section {
  background: var(--off-white);
}

.form-wrapper {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow);
}

.form-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-light);
  margin: 2rem 0 1.2rem;
}

.form-section-title:first-child {
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

input,
select,
textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-mid);
  background: var(--white);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 4px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: auto;
  padding: 0;
}

.radio-option span {
  font-size: 14px;
  color: var(--text-dark);
}

.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 1rem;
  background: #fef4ec;
  border: 1px solid #f0b07a;
  border-radius: 10px;
  margin-top: 1.4rem;
}

.checkbox-line input[type="checkbox"] {
  width: auto;
  min-width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 0.25rem;
  padding: 0;
}

.checkbox-line label {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #5a3010;
  font-weight: 500;
}

.checkbox-line a {
  color: var(--blue-mid);
  font-weight: 600;
}

.form-submit {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
}

/* Inline form feedback states */
.form-error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  color: #7f1d1d;
  font-size: 14px;
  line-height: 1.65;
  margin-top: 1rem;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.success-msg .tick {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-msg h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.success-msg p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* --------------------------------------------------------------------------
   11. Why us / features grid
   -------------------------------------------------------------------------- */
.why-us {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--off-white);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.08);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* --------------------------------------------------------------------------
   12. Hajj & Umrah packages
   -------------------------------------------------------------------------- */
.hajj-section {
  background: var(--navy);
  color: var(--white);
}

.hajj-section .section-label {
  color: var(--gold);
}

.hajj-section .section-title {
  color: var(--white);
}

.hajj-section .section-sub {
  color: rgba(255, 255, 255, 0.72);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.packages-grid.hajj-single {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
}

.hajj-enquiry-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0 0 1rem;
}


.package-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(219, 136, 61, 0.30);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s;
}

.package-card:hover {
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: var(--gold);
}

.pkg-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding: 1.5rem;
  position: relative;
}

.package-card.featured .pkg-header {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.pkg-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 700;
}

.pkg-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
}

.pkg-duration {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.pkg-body {
  padding: 1.5rem;
}

.pkg-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pkg-price span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
}

.pkg-features {
  margin-bottom: 1.5rem;
}

.pkg-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pkg-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  padding: 11px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.pkg-cta:hover {
  background: #c47734;
}

.hajj-info {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(219, 136, 61, 0.25);
}

.hajj-info h3 {
  color: var(--gold);
  font-size: 1.12rem;
  margin-bottom: 1rem;
}

.hajj-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.hajj-info-item h4 {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.hajj-info-item p {
  font-size: 0.94rem;
  color: var(--white);
  line-height: 1.6;
}


/* --------------------------------------------------------------------------
   13. Travel alerts section
   -------------------------------------------------------------------------- */
.alerts-section {
  background: var(--off-white);
}

.alerts-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.alert-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  border: 1px solid;
}

.alert-card.warning {
  background: #fffbeb;
  border-color: #fcd34d;
}

.alert-card.info {
  background: #eff6ff;
  border-color: #93c5fd;
}

.alert-card.neutral {
  background: var(--white);
  border-color: var(--border);
}

.alert-icon2 {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-content h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}

.alert-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* --------------------------------------------------------------------------
   14. Advice cards
   -------------------------------------------------------------------------- */
.advice-section {
  background: var(--white);
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.advice-card {
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.advice-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.advice-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.advice-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* --------------------------------------------------------------------------
   15. Socials
   -------------------------------------------------------------------------- */
.socials-section {
  background: linear-gradient(135deg, var(--off-white), var(--white));
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.social-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.06);
}

.social-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.social-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--blue-mid);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.social-link:hover {
  background: var(--blue-dark);
}


/* --------------------------------------------------------------------------
   16. Contact
   -------------------------------------------------------------------------- */
.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-label {
  color: var(--gold);
}

.contact-section .divider {
  background: var(--gold);
}

.contact-section .section-sub {
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-value {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.6;
}

.contact-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value a:hover {
  color: var(--gold);
}


/* --------------------------------------------------------------------------
   17. Legal / policy tabs
   -------------------------------------------------------------------------- */
.legal-section {
  background: var(--off-white);
}

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.legal-body {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
}

.legal-body h3 {
  font-size: 1.08rem;
  color: var(--navy);
  margin: 1.8rem 0 0.6rem;
}

.legal-body h3:first-of-type {
  margin-top: 0;
}

.legal-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.legal-body ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 4px;
}

.legal-notice {
  background: #fef9ec;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 13px;
  color: #78350f;
  line-height: 1.7;
}

.legal-effective {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.legal-draft-banner {
  background: #fff7ed;
  border: 2px solid #f97316;
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 13px;
  color: #7c2d12;
  line-height: 1.65;
  font-weight: 500;
}

/* Standalone legal pages (legal/terms.html etc.) — same typography as homepage policies */
.legal-static-page {
  background: var(--off-white);
  min-height: 100vh;
}

.legal-static-header {
  background: var(--navy);
  padding: 1rem 8%;
}

.legal-back-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.legal-back-link:hover {
  text-decoration: underline;
}

.legal-static-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(68px + 2.5rem) 8% 3rem;
}

.legal-static-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 4vw, 2rem);
  color: var(--navy);
  margin: 0 0 1.5rem;
}

.legal-static-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 13px;
  margin-bottom: 2rem;
  font-family: var(--font-sans);
}

.legal-static-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.legal-static-nav a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.legal-static-nav a[aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}

.legal-static-foot {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-sans);
}


/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
footer {
  background: #060e1c;
  color: rgba(255, 255, 255, 0.58);
  padding: 2rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 13px;
  line-height: 1.7;
}

footer strong {
  color: var(--white);
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


/* --------------------------------------------------------------------------
   19. Subpage hero, CTA strip, and homepage preview cards
   -------------------------------------------------------------------------- */

/* Subpage hero banner (used on about, hajj-umrah, travel-advice, socials, contact pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  padding: 6rem 8% 3.5rem;
  text-align: center;
}

.page-hero .section-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero h1 .gold {
  color: var(--gold);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* CTA strip — enquire now banner at the bottom of each subpage */
.cta-strip {
  background: var(--navy);
  padding: 3.5rem 8%;
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 0.75rem;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Homepage preview cards section */
.preview-section {
  background: var(--off-white);
  padding: 4rem 8%;
  text-align: center;
}

.preview-section .section-label {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.preview-section h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.preview-section > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}

.preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.preview-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(10, 22, 40, 0.10);
}

.preview-card .preview-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.preview-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.preview-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* Slogan line inside the page hero, below the h1 */
.page-hero .hero-slogan {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white);
  opacity: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

/* Section alternate background for visual rhythm */
.section-alt {
  background: var(--off-white);
}


/* --------------------------------------------------------------------------
   20. Responsive — 940 px
   -------------------------------------------------------------------------- */
@media (max-width: 940px) {
  nav {
    padding: 0 1.25rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(64, 101, 174, 0.18);
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.08);
    padding: 0.75rem 1.25rem 1.25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.4rem;
  }

  .alerts-bar {
    padding: 10px 1.25rem;
  }
}


/* --------------------------------------------------------------------------
   21. Responsive — 768 px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 6%;
  }

  .hero-content {
    padding: 3rem 6% 4.5rem;
  }

  .form-wrapper {
    padding: 1.5rem;
  }

  .legal-body {
    padding: 1.25rem;
  }

  .legal-static-inner {
    padding: 1.75rem 6% 2.5rem;
  }

  .slide-indicators {
    left: 6%;
  }

  .form-submit {
    justify-content: stretch;
  }

  .btn-submit {
    width: 100%;
  }
}
