:root {
  --navy: #0f2240;
  --navy-light: #1a3560;
  --gold: #c89a3c;
  --gold-light: #e4b85a;
  --cream: #fdf8f0;
  --white: #ffffff;
  --text-dark: #1a2535;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --success: #1a7a4a;
}

.service-new-body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero-new {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #0e3060 100%);
  color: var(--white);
  padding: 80px 40px 90px;
  position: relative;
  overflow: hidden;
}
.hero-new::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(200,154,60,0.08);
}
.hero-new::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(200,154,60,0.05);
}
.hero-new-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.hero-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,154,60,0.15);
  border: 1px solid rgba(200,154,60,0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-new h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-new h1 em { font-style: normal; color: var(--gold-light); }
.hero-new-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin-bottom: 34px;
  font-weight: 300;
}
.hero-new-btns { display: flex; gap: 14px; flex-wrap: wrap; }
/* ── MODERN CLEAN BUTTONS ── */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-modern:active { transform: translateY(1px); }

/* WhatsApp Modern */
.btn-modern-wa {
  background: #25D366;
  color: white;
}

.btn-modern-wa:hover {
  background: #1ebe57;
  color: white;
}

/* Gold/Booking Modern */
.btn-modern-gold {
  background: var(--gold);
  color: white;
}

.btn-modern-gold:hover {
  background: var(--gold-light);
  color: white;
}

/* Outline Modern */
.btn-modern-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-modern-outline:hover {
  background: white;
  color: var(--navy);
}

/* White Modern */
.btn-modern-white {
  background: white;
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-modern-white:hover {
  background: var(--cream);
}

.btn-modern svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero-new-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-new-stat { border-left: 2px solid var(--gold); padding-left: 16px; }
.hero-new-stat strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--gold-light); }
.hero-new-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── BREADCRUMB ── */
.breadcrumb-new {
  background: var(--cream);
  padding: 12px 40px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumb-new a { color: var(--text-mid); text-decoration: none; }
.breadcrumb-new a:hover { color: var(--navy); }
.breadcrumb-new span { margin: 0 6px; }

/* ── SECTIONS ── */
.section-new { padding: 72px 40px; }
.container-new { max-width: 960px; margin: 0 auto; }
.section-new-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
h2.section-new-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-new-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 700px;
  margin-bottom: 48px;
  font-weight: 300;
}

/* ── WHO NEEDS ── */
.who-needs-new { background: var(--cream); }
.who-new-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.who-new-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.who-new-card:hover { box-shadow: 0 8px 32px rgba(15,34,64,0.1); transform: translateY(-3px); }
.who-new-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.who-new-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.who-new-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ── SERVICES ── */
.services-new-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-new-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  background: var(--white);
}
.service-new-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.service-new-card:hover { box-shadow: 0 12px 40px rgba(15,34,64,0.1); transform: translateY(-4px); }

/* Stacked Full-Width Cards */
.services-new-stacked {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-new-card-full {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  background: var(--white);
}
.service-new-card-full::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.service-new-card-full:hover { box-shadow: 0 12px 40px rgba(15,34,64,0.1); transform: translateY(-2px); }
.service-new-card-full h3 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.service-new-card-full p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.service-new-card-full p:last-child { margin-bottom: 0; }

.service-new-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 12px; }

.service-new-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-new-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ── RESIDENTIAL STATUS TABLE ── */
.status-new-section { background: var(--navy); color: var(--white); }
.status-new-section h2.section-new-title { color: var(--white); }
.status-new-section .section-new-lead { color: rgba(255,255,255,0.65); }
.status-new-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; }
.status-new-table th {
  background: rgba(200,154,60,0.2);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 20px;
  text-align: left;
}
.status-new-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.status-new-table tr:last-child td { border-bottom: none; }
.status-new-table tr:hover td { background: rgba(255,255,255,0.04); }
.badge-new {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-new-red { background: rgba(229,62,62,0.2); color: #fc8181; }
.badge-new-green { background: rgba(72,187,120,0.2); color: #68d391; }
.badge-new-yellow { background: rgba(236,201,75,0.2); color: #f6e05e; }

/* ── DTAA TABLE ── */
.dtaa-new-section { background: var(--cream); }
.country-new-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 28px;
}
.country-new-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.country-new-pill .flag { font-size: 1.1rem; }
.dtaa-new-note {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.dtaa-new-note strong { color: var(--navy); }

/* ── PROCESS ── */
.process-new-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-new-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.step-new {
  text-align: center;
  padding: 20px 16px;
  position: relative;
}
.step-new-num {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}
.step-new h3 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-new p { font-size: 0.82rem; color: var(--text-mid); }

/* ── DOCUMENTS ── */
.docs-new-section { background: var(--cream); }
.docs-new-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.doc-new-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.doc-new-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.doc-new-item p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.5; }
.doc-new-item strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 2px; }

/* ── PRICING ── */
.pricing-new-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-new-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(200,154,60,0.1);
  border-radius: 50%;
}
.pricing-new-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; }
.pricing-new-amount { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; color: var(--white); }
.pricing-new-amount sub { font-size: 1.2rem; vertical-align: middle; color: var(--gold-light); }
.pricing-new-period { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 24px; }
.pricing-new-features { list-style: none; text-align: left; margin-bottom: 32px; padding: 0; }
.pricing-new-features li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-new-features li::before { content: '✓'; color: var(--gold-light); font-weight: 700; }
.pricing-new-cta {
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
}
.pricing-new-cta:hover { background: var(--gold-light); }

/* ── FAQ ── */
.faq-new-section { background: var(--cream); }
.faq-new-list { max-width: 760px; margin: 0 auto; }
.faq-new-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-new-summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-new-summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
details[open] .faq-new-summary::after { content: '−'; }
.faq-new-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── CONTENT SECTIONS ── */
.content-new-section { background: var(--white); }
.content-new-section h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 16px; }
.content-new-section h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.content-new-section p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.75; }
.content-new-section ul { padding-left: 20px; margin-bottom: 14px; }
.content-new-section ul li { font-size: 0.93rem; color: var(--text-mid); margin-bottom: 8px; line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-new-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b5852a 100%);
  padding: 64px 40px;
  text-align: center;
}
.cta-new-banner h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.cta-new-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-new-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-new-btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.cta-new-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section-new { padding: 52px 20px; }
  .hero-new { padding: 56px 20px 64px; }
  .hero-new-stats { gap: 20px; }
  .process-new-steps::before { display: none; }
  .status-new-table { font-size: 0.78rem; }
  .status-new-table th, .status-new-table td { padding: 10px 12px; }
  .pricing-new-card { padding: 32px 24px; }
  .breadcrumb-new { padding: 10px 20px; }
}

@keyframes fadeUpNew {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-new-inner > * { animation: fadeUpNew 0.7s ease both; }
.hero-new-inner > *:nth-child(2) { animation-delay: 0.1s; }
.hero-new-inner > *:nth-child(3) { animation-delay: 0.2s; }
.hero-new-inner > *:nth-child(4) { animation-delay: 0.3s; }
.hero-new-inner > *:nth-child(5) { animation-delay: 0.4s; }
