/* Global Roots Migration — Site Styles */

:root {
  --color-primary: #1B4B66;
  --color-primary-dark: #123245;
  --color-navy: #1B2430;
  --color-gold: #D9A544;
  --color-gold-dark: #B98624;
  --color-cream: #ECE9E2;
  --color-white: #FFFFFF;
  --color-text: #24313C;
  --color-text-light: #5B6B74;
  --color-border: #DCD7CC;

  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --radius: 10px;
  --shadow: 0 4px 20px rgba(27, 36, 48, 0.08);
  --shadow-hover: 0 10px 30px rgba(27, 36, 48, 0.14);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2.1rem; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--color-text-light); }
a { color: var(--color-primary); text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
.section-alt { background: var(--color-cream); }
.section-dark { background: var(--color-navy); color: #C9D3D8; }
.section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-dark p { color: #B7C2C9; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.8em;
  padding: 6px 16px;
  border: 1px solid rgba(217,165,68,0.4);
  border-radius: 999px;
}

.section-head { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
.section-head p { font-size: 1.05rem; }
.section-head h2 { position: relative; padding-bottom: 18px; }
.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
}
.section-dark .section-head h2::after { background: linear-gradient(90deg, var(--color-gold), #4A8AAE); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
  box-shadow: 0 6px 16px rgba(217, 165, 68, 0.35);
}
.btn-primary:hover { background: var(--color-gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn-secondary {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-secondary:hover { background: var(--color-white); color: var(--color-navy); }
.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }
.btn-block { display: block; width: 100%; text-align: center; }

/* Top bar */
.top-bar { background: var(--color-navy); }
.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  font-size: 0.98rem;
  color: #B7C2C9;
}
.top-bar-social { display: flex; align-items: center; gap: 16px; }
.top-bar-social a { color: #B7C2C9; display: flex; }
.top-bar-social a:hover { color: var(--color-gold); }
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #B7C2C9;
  text-decoration: none;
  white-space: nowrap;
}
a.top-bar-item:hover { color: var(--color-white); }
.top-bar-marn { font-weight: 600; color: var(--color-white); }
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
  padding: 9px 18px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}
.top-bar-phone:hover { background: var(--color-gold-dark); }
.top-bar-social svg { width: 19px; height: 19px; }
.top-bar-item svg, .top-bar-phone svg { width: 18px; height: 18px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 132px;
}
.logo img { height: 104px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav > a, .nav-dropdown-toggle {
  color: var(--color-navy);
  position: relative;
  padding: 8px 0;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.main-nav > a:hover, .nav-dropdown-toggle:hover { color: var(--color-primary); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--color-text);
  font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--color-cream); color: var(--color-primary); }
.nav-cta { margin-left: 4px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-navy);
  margin-left: auto;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1.5px, transparent 0) 0 0/28px 28px,
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  padding: 118px 0 130px;
  text-align: center;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 60px;
  background: var(--color-white);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 100%);
}
.hero .eyebrow { color: var(--color-gold); border-color: rgba(217,165,68,0.55); }
.hero h1 { color: var(--color-white); max-width: 820px; margin: 0 auto 0.6em; font-size: 3.1rem; }
.hero .subhead { color: #D6DEE2; max-width: 680px; margin: 0 auto 2.2em; font-size: 1.15rem; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.page-hero {
  position: relative;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1.5px, transparent 0) 0 0/28px 28px,
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 0.5em; }
.page-hero p { color: #D6DEE2; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* Trust strip */
.trust-strip { background: var(--color-white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.trust-card .icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-cream);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.4rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.trust-card:hover .icon {
  background: var(--color-gold);
  color: var(--color-navy);
}
.trust-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.trust-card p { font-size: 0.92rem; margin: 0; }

/* Card grids */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card .card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 0.5em; }
.card a.card-link { font-weight: 600; color: var(--color-primary); }
.card a.card-link:hover { color: var(--color-gold-dark); }

/* Destinations */
.destination-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.destination-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.destination-card .flag { font-size: 2.2rem; margin-bottom: 10px; }
.destination-card h3 { font-size: 1rem; margin-bottom: 0.5em; }
.destination-card p { font-size: 0.88rem; margin: 0; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .step-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--color-gold);
  margin-bottom: 10px;
  display: block;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.94rem; }

/* Why choose us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-item { text-align: center; padding: 10px; }
.why-item h3 { font-size: 1.1rem; }

/* Testimonial */
.testimonial {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-navy);
  margin: 0 0 1em;
  font-style: italic;
}
.testimonial cite {
  color: var(--color-text-light);
  font-style: normal;
  font-weight: 600;
}

/* CTA band */
.cta-band {
  background: var(--color-gold);
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: var(--color-navy); }
.cta-band p { color: #4A3C1E; margin-bottom: 1.8em; }

/* FAQ accordion */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .chevron { transition: transform 0.2s ease; color: var(--color-gold-dark); flex-shrink: 0; }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding-bottom: 20px; margin: 0; }
.faq-cta { text-align: center; margin-top: 40px; }

/* Contact info cards */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-info-grid .trust-card p a { color: inherit; }
.contact-info-grid .trust-card p a:hover { color: var(--color-primary); }

/* Forms */
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--color-text);
  background: var(--color-white);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27,75,102,0.12);
}
.form-note { font-size: 0.85rem; color: var(--color-text-light); margin-top: 10px; }
.form-success {
  display: none;
  background: #E9F4EE;
  border: 1px solid #BFE3CC;
  color: #226644;
  padding: 16px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}
.contact-side .info-block { margin-bottom: 28px; }
.contact-side h3 { font-size: 1rem; margin-bottom: 0.5em; }
.contact-side p { margin: 0; }
.map-placeholder {
  background: var(--color-cream);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: #A9B6BE;
  padding: 60px 0 28px;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--color-gold), var(--color-primary)) 1;
}
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-logo { height: 68px; margin-bottom: 14px; }
.footer-brand p { color: #A9B6BE; font-size: 0.92rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; align-content: flex-start; justify-content: flex-end; }
.footer-nav a { color: #D6DEE2; font-weight: 500; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--color-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 0.82rem;
  color: #7C8A93;
}
.footer-bottom p { color: #7C8A93; margin: 0 0 6px; }
.footer-bottom a { color: #A9B6BE; }
.footer-bottom a:hover { color: var(--color-gold); }

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }

/* Responsive */
@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .top-bar-address { display: none; }
}

@media (max-width: 760px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  section { padding: 56px 0; }
  .top-bar { display: none; }
  .header-inner { height: 84px; }
  .logo img { height: 60px; }
  .hero { padding: 72px 0 90px; }
  .hero h1 { font-size: 2.1rem; }
  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    margin-top: 8px;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-cta { width: 100%; }
  .nav-toggle { display: block; }
  .card-grid, .trust-grid, .destination-grid, .steps-grid, .contact-info-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
