@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e4cc7a;
  --gold-dark: #9e7e2e;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --black: #0b0b0b;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --black-border: #2a2a2a;
  --white: #f5f0e8;
  --white-dim: #c8c0b0;
  --white-muted: #8a8272;
  --serif: 'Playfair Display', Georgia, serif;
  --body: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Gold decorative elements ── */

.gold-star {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
}

/* ── Navigation ── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav-logo span {
  color: var(--white);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.65rem 1.75rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* ── Hero ── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgba(11, 11, 11, 0.65) 0%, rgba(11, 11, 11, 0.85) 100%), url('../images/kaaba.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.5rem 1.75rem;
  margin-bottom: 3rem;
  animation: fadeDown 1s ease 0.2s both;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 0.75rem;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 540px;
  margin-bottom: 3rem;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s ease 0.8s both;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-outline {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--black-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  margin-top: auto;
  padding-top: 3rem;
  animation: fadeUp 1s ease 1s both;
}

.hero-scroll span {
  font-family: var(--sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--white-muted);
  display: block;
  margin-bottom: 0.75rem;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

/* ── Stats ── */

.stats {
  padding: 5rem 0;
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-value {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--white-muted);
}

/* ── Section generic ── */

.section {
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--white-dim);
  font-weight: 300;
}

/* ── Journey / Cities ── */

.city-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--black-border);
}

.city-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.city-card.reverse {
  direction: rtl;
}

.city-card.reverse > * {
  direction: ltr;
}

.city-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  overflow: hidden;
  position: relative;
}

.city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.city-card:hover .city-image img {
  transform: scale(1.03);
}

.city-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black-card), var(--black-light));
  position: relative;
}

.city-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-glow), transparent 70%);
}

.city-image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.city-content h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.city-content h3 em {
  font-style: italic;
  color: var(--gold);
}

.city-subtitle {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.city-content p {
  color: var(--white-dim);
  margin-bottom: 1rem;
}

.city-features {
  list-style: none;
  margin-top: 1.5rem;
}

.city-features li {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--white-dim);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.city-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.55rem;
}

/* ── Rawdah ── */

.rawdah-section {
  background: linear-gradient(180deg, var(--black) 0%, rgba(201, 168, 76, 0.04) 50%, var(--black) 100%);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.rawdah-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.rawdah-content blockquote {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--gold);
  text-align: left;
}

.rawdah-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.rawdah-feature {
  padding: 1.5rem;
  border: 1px solid var(--black-border);
  background: var(--black-card);
}

.rawdah-feature h4 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.rawdah-feature p {
  font-size: 0.95rem;
  color: var(--white-dim);
}

/* ── Hotels ── */

.hotels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.hotel-card {
  border: 1px solid var(--black-border);
  background: var(--black-card);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.hotel-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.hotel-image {
  height: 260px;
  background: linear-gradient(135deg, var(--black-card), var(--black-light));
  position: relative;
  overflow: hidden;
}

.hotel-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-glow), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.03);
}

.hotel-body {
  padding: 2rem;
}

.hotel-location {
  font-family: var(--sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hotel-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.hotel-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.hotel-desc {
  color: var(--white-dim);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.hotel-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hotel-amenities li {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--black-border);
  color: var(--white-muted);
}

/* ── Airlines ── */

.airlines-section {
  background: linear-gradient(180deg, var(--black) 0%, rgba(201, 168, 76, 0.03) 50%, var(--black) 100%);
}

.airlines-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.airlines-text h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.airlines-text p {
  color: var(--white-dim);
  margin-bottom: 1rem;
}

.airlines-features {
  list-style: none;
  margin-top: 1.5rem;
}

.airlines-features li {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--white-dim);
  padding: 0.65rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.airlines-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.8rem;
}

.airlines-visual {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  position: relative;
  overflow: hidden;
}

.airlines-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.airlines-visual:hover img {
  transform: scale(1.04);
}

/* ── Dulles Hub ── */

.dulles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dulles-card {
  padding: 2rem;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  transition: border-color 0.3s ease;
}

.dulles-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.dulles-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.dulles-card h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.dulles-card p {
  color: var(--white-dim);
  font-size: 0.95rem;
}

.dulles-card ul {
  list-style: none;
  margin-top: 0.75rem;
}

.dulles-card li {
  font-size: 0.9rem;
  color: var(--white-dim);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.dulles-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ── Investment ── */

.investment-section {
  background: linear-gradient(180deg, var(--black) 0%, rgba(201, 168, 76, 0.04) 50%, var(--black) 100%);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.investment-content {
  max-width: 800px;
  margin: 0 auto;
}

.investment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.investment-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--black-border);
}

.investment-col ul {
  list-style: none;
}

.investment-col li {
  font-size: 0.95rem;
  color: var(--white-dim);
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.investment-col li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 0.7rem;
}

/* ── Registration Form ── */

.form-section {
  padding: 7rem 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-muted);
  margin-bottom: 0.5rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
}

input::placeholder, textarea::placeholder {
  color: var(--white-muted);
  opacity: 0.5;
}

select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

select option {
  background: var(--black-card);
  color: var(--white);
}

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

.form-submit {
  text-align: center;
  margin-top: 2.5rem;
}

.form-submit button {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1.15rem 3.5rem;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit button:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

/* ── Footer ── */

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--black-border);
  background: var(--black-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-brand h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-brand .tagline {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-muted);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--white-dim);
  font-size: 0.95rem;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact a {
  display: block;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
}

.footer-bottom p {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--white-muted);
  letter-spacing: 0.05em;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Animations ── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Policy Pages ── */

.policy-page {
  padding: 10rem 0 6rem;
}

.policy-content {
  max-width: 750px;
  margin: 0 auto;
}

.policy-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.policy-content h1 em {
  font-style: italic;
  color: var(--gold);
}

.policy-date {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-muted);
  margin-bottom: 3rem;
  display: block;
}

.policy-notice {
  border: 1px solid var(--gold);
  background: rgba(201, 168, 76, 0.05);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  border-radius: 4px;
  position: relative;
}

.policy-notice p {
  color: var(--white) !important;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0 !important;
}

.policy-content h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content p {
  color: var(--white-dim);
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.policy-content ul li {
  color: var(--white-dim);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.policy-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 0.6rem;
}

/* ── Responsive ── */

@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 11, 11, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

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

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .city-card,
  .city-card.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
  }

  .airlines-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dulles-grid {
    grid-template-columns: 1fr;
  }

  .investment-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rawdah-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 8rem 1.5rem 3rem;
    min-height: 90vh;
  }

  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
