/* DUBAI BOUND — Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --red: #A3242B;
  --red-hover: #8B1E24;
  --red-light: #FDF2F2;
  --green: #1B6B45;
  --green-light: #F0F9F4;
  --black: #1A1D26;
  --text: #1A1D26;
  --text-secondary: #5C6370;
  --text-tertiary: #8A8F99;
  --bg: #FFFFFF;
  --bg-alt: #F7F7F5;
  --bg-warm: #FAFAF8;
  --border: #E5E5E3;
  --border-light: #F0F0EE;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--red); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--text); text-decoration: none; letter-spacing: -0.3px;
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 0; align-items: center; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  text-decoration: none; color: var(--text-secondary); font-size: 14px; font-weight: 500;
  transition: color 0.2s; padding: 20px 1rem; display: flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover { color: var(--text); }
.nav-links > li > a.active { color: var(--text); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 0.5rem 0; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: all 0.2s;
}
.nav-links > li:hover > .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 0.6rem 1.25rem; font-size: 13px; font-weight: 500;
  color: var(--text-secondary); text-decoration: none; transition: all 0.15s;
}
.dropdown-menu a:hover { color: var(--text); background: var(--bg-alt); }
.dropdown-section {
  padding: 0.5rem 1.25rem 0.25rem; font-size: 11px; font-weight: 600;
  color: var(--text-tertiary); letter-spacing: 0.08em; text-transform: uppercase;
}
.dropdown-divider { height: 1px; background: var(--border-light); margin: 0.4rem 0; }

.nav-cta {
  background: var(--red) !important; color: #fff !important; padding: 8px 20px !important;
  border-radius: 6px; font-size: 13px !important; margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--red-hover) !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; transition: 0.2s; }

/* Mobile nav */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg); padding: 1.5rem; z-index: 99; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.75rem 0; font-size: 16px; font-weight: 500;
  color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border-light);
}
.mobile-menu .mobile-section {
  padding: 1rem 0 0.25rem; font-size: 11px; font-weight: 600;
  color: var(--text-tertiary); letter-spacing: 0.08em; text-transform: uppercase;
  border: none;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; padding: 14px 28px;
  border-radius: 6px; font-size: 15px; font-weight: 500;
  text-decoration: none; transition: background 0.2s; border: none; cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--red-hover); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text); padding: 14px 28px;
  border-radius: 6px; font-size: 15px; font-weight: 500;
  text-decoration: none; border: 1px solid var(--border);
  transition: all 0.2s; cursor: pointer; font-family: var(--sans);
}
.btn-secondary:hover { border-color: var(--text-secondary); background: var(--bg-alt); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--text); padding: 14px 28px;
  border-radius: 6px; font-size: 15px; font-weight: 500;
  text-decoration: none; transition: background 0.2s; border: none; cursor: pointer;
  font-family: var(--sans);
}
.btn-white:hover { background: #F0F0EE; }
.btn-arrow { font-size: 16px; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow,
.btn-white:hover .btn-arrow { transform: translateX(2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── LAYOUT ── */
.section { padding: 100px 2rem; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-alt { background: var(--bg-alt); }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600; line-height: 1.2; max-width: 600px;
  margin-bottom: 1.25rem; letter-spacing: -0.3px;
}
.section-sub {
  font-size: 17px; color: var(--text-secondary); max-width: 560px;
  line-height: 1.7; margin-bottom: 3rem;
}

/* ── HERO ── */
.hero { padding: 160px 2rem 100px; max-width: 1140px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 13px; font-weight: 500; color: var(--green);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 52px);
  font-weight: 600; line-height: 1.15; color: var(--text);
  max-width: 680px; margin-bottom: 1.5rem; letter-spacing: -0.5px;
}
.hero p {
  font-size: 18px; color: var(--text-secondary); max-width: 560px;
  line-height: 1.7; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page header (for inner pages) */
.page-header {
  padding: 140px 2rem 60px; background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}
.page-header-inner { max-width: 1140px; margin: 0 auto; }
.page-header .breadcrumb {
  font-size: 13px; color: var(--text-tertiary); margin-bottom: 1.25rem;
}
.page-header .breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.page-header .breadcrumb a:hover { color: var(--text); }
.page-header .breadcrumb span { margin: 0 0.5rem; color: var(--text-tertiary); }
.page-header h1 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 44px);
  font-weight: 600; line-height: 1.15; max-width: 680px; letter-spacing: -0.3px;
}
.page-header p {
  font-size: 17px; color: var(--text-secondary); max-width: 560px;
  line-height: 1.7; margin-top: 1rem;
}

/* ── PAIN GRID ── */
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.pain-item { background: var(--bg); padding: 1.75rem; }
.pain-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 1rem;
  background: var(--red-light); color: var(--red);
}
.pain-item h3 { font-size: 15px; font-weight: 600; margin-bottom: 0.5rem; }
.pain-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── TRACKS ── */
.tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.track {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 2.5rem; background: var(--bg);
}
.track-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 12px;
  border-radius: 100px; margin-bottom: 1.5rem;
}
.track-badge.company { background: var(--green-light); color: var(--green); }
.track-badge.independent { background: var(--red-light); color: var(--red); }
.track h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 0.75rem;
}
.track > p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.5rem; }
.track-list { list-style: none; }
.track-list li {
  font-size: 14px; color: var(--text-secondary); padding: 0.5rem 0;
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 10px;
}
.track-list li:last-child { border-bottom: 1px solid var(--border-light); }
.track-check { color: var(--green); font-weight: 600; font-size: 14px; flex-shrink: 0; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 2.5rem 2rem; position: relative; background: var(--bg);
  display: flex; flex-direction: column;
}
.service-card.featured { border: 2px solid var(--red); }
.service-featured-badge {
  position: absolute; top: -12px; left: 2rem;
  background: var(--red); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 14px; border-radius: 100px;
}
.service-price { font-family: var(--serif); font-size: 32px; font-weight: 600; margin-bottom: 0.25rem; }
.service-price-note { font-size: 13px; color: var(--text-tertiary); margin-bottom: 1.5rem; }
.service-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 0.5rem; }
.service-card > p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; }
.service-features { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.service-features li {
  font-size: 14px; color: var(--text-secondary); padding: 0.4rem 0;
  display: flex; align-items: flex-start; gap: 10px;
}

/* ── GUIDES GRID ── */
.guides-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem;
}
.guide-card {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 1.75rem; text-decoration: none; color: inherit;
  transition: all 0.2s; display: block; background: var(--bg);
}
.guide-card:hover { border-color: var(--text-secondary); transform: translateY(-2px); }
.guide-category {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--green); margin-bottom: 0.75rem;
}
.guide-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.35; }
.guide-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
.guide-arrow {
  margin-top: 1rem; font-size: 13px; font-weight: 500; color: var(--red);
  display: flex; align-items: center; gap: 4px;
}

/* ── ARTICLE LAYOUT ── */
.article-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 4rem;
  max-width: 1140px; margin: 0 auto; padding: 3rem 2rem 5rem;
}
.article-content { min-width: 0; }
.article-content h2 {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  margin: 2.5rem 0 1rem; line-height: 1.25;
}
.article-content h3 {
  font-size: 18px; font-weight: 600; margin: 2rem 0 0.75rem;
}
.article-content p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.75;
  margin-bottom: 1.25rem;
}
.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.25rem; color: var(--text-secondary);
}
.article-content li { margin-bottom: 0.5rem; line-height: 1.65; font-size: 15px; }
.article-content strong { color: var(--text); font-weight: 600; }

/* Callout box */
.callout {
  background: var(--bg-alt); border-left: 3px solid var(--red);
  padding: 1.25rem 1.5rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0;
}
.callout p { font-size: 14px; margin: 0; color: var(--text-secondary); }
.callout strong { color: var(--text); }

/* Info box */
.info-box {
  background: var(--green-light); border: 1px solid #C8E6D6;
  padding: 1.25rem 1.5rem; border-radius: 8px; margin: 1.5rem 0;
}
.info-box p { font-size: 14px; margin: 0; color: var(--green); }

/* Sidebar */
.article-sidebar { position: sticky; top: 90px; align-self: start; }
.sidebar-toc {
  border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem;
}
.sidebar-toc h4 {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-tertiary); margin-bottom: 1rem;
}
.sidebar-toc a {
  display: block; font-size: 13px; color: var(--text-secondary);
  text-decoration: none; padding: 0.4rem 0; border-bottom: 1px solid var(--border-light);
  transition: color 0.15s;
}
.sidebar-toc a:last-child { border-bottom: none; }
.sidebar-toc a:hover { color: var(--text); }

.sidebar-cta {
  margin-top: 1.5rem; background: var(--text); border-radius: 10px;
  padding: 1.5rem; color: #fff;
}
.sidebar-cta h4 { font-size: 15px; font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 1rem; line-height: 1.5; }
.sidebar-cta .btn-white { font-size: 13px; padding: 10px 18px; width: 100%; justify-content: center; }

/* Area cards (for where-to-live) */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.area-card {
  border: 1px solid var(--border); border-radius: 10px; padding: 2rem;
  text-decoration: none; color: inherit; transition: all 0.2s; display: block; background: var(--bg);
}
.area-card:hover { border-color: var(--text-secondary); transform: translateY(-2px); }
.area-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 0.5rem; }
.area-card .area-type {
  font-size: 12px; font-weight: 600; color: var(--text-tertiary);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem;
}
.area-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.area-stats { display: flex; gap: 1.5rem; }
.area-stat span { display: block; }
.area-stat span:first-child { font-size: 11px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.06em; }
.area-stat span:last-child { font-size: 14px; font-weight: 600; margin-top: 2px; }

/* ── PACK CTA ── */
.pack-section {
  background: var(--text); color: #fff; border-radius: 12px;
  padding: 3.5rem;
}
.pack-content .section-label { color: rgba(255,255,255,0.5); }
.pack-content h2 {
  font-family: var(--serif); font-size: 32px; font-weight: 600;
  line-height: 1.2; margin-bottom: 1rem; color: #fff;
}
.pack-content p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.65; margin-bottom: 2rem; }
.pack-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 2rem; }
.pack-price-amount { font-family: var(--serif); font-size: 48px; font-weight: 600; color: #fff; }
.pack-price-note { font-size: 14px; color: rgba(255,255,255,0.5); }
.pack-features { list-style: none; margin-bottom: 2rem; }
.pack-features li {
  font-size: 14px; color: rgba(255,255,255,0.7); padding: 0.35rem 0;
  display: flex; align-items: center; gap: 10px;
}
.pack-features .track-check { color: #5EBD8A; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 1rem; }
.contact-info p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 8px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-secondary); flex-shrink: 0;
}
.contact-detail-text span { display: block; font-size: 12px; color: var(--text-tertiary); }
.contact-detail-text a, .contact-detail-text p {
  font-size: 14px; font-weight: 500; color: var(--text); text-decoration: none; margin: 0;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 4px; display: block; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 6px; font-family: var(--sans); font-size: 14px;
  color: var(--text); background: var(--bg); transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--text-secondary);
}
.contact-form textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 3rem 2rem; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand p { font-size: 13px; color: var(--text-tertiary); line-height: 1.6; margin-top: 0.75rem; max-width: 280px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-tertiary); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text-secondary);
  text-decoration: none; padding: 0.3rem 0; transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1140px; margin: 2rem auto 0; padding: 1.5rem 0 0;
  border-top: 1px solid var(--border-light);
  display: flex; justify-content: space-between; font-size: 13px; color: var(--text-tertiary);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-tertiary); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 120px 1.5rem 60px; }
  .tracks { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .area-grid { grid-template-columns: 1fr; }
}
