/* ── Design tokens (matched to dr-houda-clinic.com) ── */
:root {
  --primary: #1e2a44;
  --primary-foreground: #faf8f5;
  --background: #faf8f5;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --muted: #525252;
  --text-body: #383838;
  --accent: #c8a97e;
  --accent-light: rgba(200, 169, 126, 0.12);
  --border: #e8dccb;
  --whatsapp: #25d366;
  --radius: 0.65rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-card: 0 8px 25px rgba(30, 42, 68, 0.04);
  --shadow-card-hover: 0 10px 35px rgba(30, 42, 68, 0.06);
  --shadow-nav: 0 8px 30px rgba(30, 42, 68, 0.05);
  --font-display: "Playfair Display", "Tajawal", serif;
  --font-body: "Tajawal", sans-serif;
  --container: 1280px;
  --header-h: 72px;
}

/* ── Reset & base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--foreground);
  background: var(--background);
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: 1.25rem; }

.section-title-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
}

.section-title-split .section-title-line {
  display: block;
  color: var(--primary);
  line-height: 1.35;
}

@media (min-width: 768px) {
  .section-title-split { gap: 0.875rem; }
}

.testimonials .section-title-split,
.testimonials .section-title-split .section-title-line {
  color: var(--primary-foreground);
}

.faq-header .section-title-split {
  align-items: center;
}

.faq-header .section-title-split .section-title-line {
  text-align: center;
}

.faq-header {
  text-align: center;
}

#faq-title {
  color: var(--primary);
  line-height: 1.35;
}

.body-text {
  color: var(--text-body);
  line-height: 1.75;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container { padding-inline: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 2rem; }
}

.section-padding {
  padding-top: 2.5rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 1.25rem;
  }
}

section.section-padding + section.section-padding {
  padding-top: 0.75rem;
}

@media (min-width: 768px) {
  section.section-padding + section.section-padding {
    padding-top: 1rem;
  }
}

@media (min-width: 1024px) {
  section.section-padding + section.section-padding {
    padding-top: 1.25rem;
  }
}

.section-padding-sm {
  padding-block: 2rem;
}

@media (min-width: 768px) {
  .section-padding-sm { padding-block: 3rem; }
}

@media (min-width: 1024px) {
  .section-padding-sm { padding-block: 4rem; }
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 2.5rem; }
}

.section-label {
  display: inline-block;
  font-size: clamp(1.125rem, 2.8vw, 1.5rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.section-desc {
  margin-top: 1rem;
}

/* ── Components ── */
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--accent-light);
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.badge-hero {
  display: block;
  width: fit-content;
  max-width: min(100%, 52rem);
  margin-inline: auto;
  margin-bottom: 2.5rem;
  padding: 0.875rem 1.75rem;
  font-size: clamp(1rem, 2.4vw, 1.3125rem);
  font-weight: 600;
  line-height: 1.65;
  text-align: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(200, 169, 126, 0.16), rgba(232, 220, 203, 0.35));
  border: 1px solid rgba(200, 169, 126, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(30, 42, 68, 0.06);
}

@media (min-width: 768px) {
  .badge-hero {
    margin-bottom: 2rem;
    padding: 1rem 2.25rem;
  }
}

.hero-visual {
  order: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-headline {
  width: 100%;
  max-width: 29rem;
  text-align: center;
}

.hero-headline-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
}

.hero-headline-main {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3.2vw, 1.875rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.hero-headline-sub {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2.4vw, 1.375rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.35;
}

.online-status {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0;
  background: none;
  border: none;
  color: #16a34a;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.online-status:hover {
  color: #22c55e;
}

.online-status-indicator {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.online-status-dot {
  position: absolute;
  inset: 0;
  background: #22c55e;
  border-radius: 50%;
  z-index: 2;
}

.online-status-dot::before,
.online-status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.45);
  animation: online-pulse 2s ease-out infinite;
}

.online-status-dot::after {
  animation-delay: 1s;
}

@keyframes online-pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.card {
  background: var(--card);
  border: 1px solid rgba(232, 220, 203, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(30, 42, 68, 0.15);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 220, 203, 0.6);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-nav);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.site-header .logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: start;
  line-height: 1;
}

.site-header .logo-title {
  font-family: var(--font-body);
  font-size: clamp(1.375rem, 3.2vw, 1.625rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: 0;
}

.site-header .logo-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1.6vw, 0.875rem);
  font-weight: 500;
  color: #5a5a5a;
  line-height: 1.35;
  margin-top: 0.125rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(209, 193, 16, 1);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-dot {
  color: var(--accent);
}

.logo-light .logo-text {
  color: var(--primary-foreground);
}

.logo-light .logo-dot {
  color: var(--accent);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-list {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.nav-list a {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  color: var(--foreground);
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--accent);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1200px) {
  .nav-list { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

@media (min-width: 1200px) and (max-width: 1279px) {
  .header-cta {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }

  .site-header .logo-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .nav-list { gap: 1rem; }
  .nav-list a { font-size: 0.875rem; }
}

@media (max-width: 1199px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    inset-inline: 0;
    flex: none;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 0.8125rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    line-height: 1.5;
    white-space: normal;
  }

  .nav-list li:first-child a {
    padding-top: 0.25rem;
  }

  .nav-list li:last-child a {
    border-bottom: none;
    padding-bottom: 0.25rem;
  }
}

/* ── Hero ── */
.hero {
  padding-top: calc(var(--header-h) + 2rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-desc {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.hero-desc + .hero-desc {
  margin-bottom: 1.75rem;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1rem;
  margin-bottom: 2rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.feat-icon {
  color: var(--accent);
  font-size: 0.8125rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-actions { margin-top: 1.5rem; }
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-body);
  font-weight: 500;
}

.hero-image-wrap {
  position: relative;
  width: min(100%, 24rem);
}

@media (min-width: 640px) {
  .hero-image-wrap {
    width: min(100%, 26rem);
  }
}

.hero-photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--border);
  box-shadow:
    0 24px 64px rgba(30, 42, 68, 0.14),
    0 0 0 1px rgba(232, 220, 203, 0.9);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}

.hero-card-float {
  position: absolute;
  bottom: 1.25rem;
  inset-inline-start: -0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  max-width: calc(100% - 1.5rem);
}

@media (min-width: 640px) {
  .hero-card-float {
    inset-inline-start: -1.25rem;
    padding: 1.125rem 1.375rem;
  }
}

.float-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.float-value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
}

/* ── Trust ── */
.trust-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.trust-card {
  padding: 2.25rem 2rem;
}

.trust-grid-4 .trust-card {
  text-align: center;
}

.trust-grid-4 .trust-card .card-icon {
  margin-inline: auto;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(30, 42, 68, 0.08);
  color: var(--primary);
  border-radius: var(--radius-lg);
}

.trust-card .body-text + .body-text {
  margin-top: 1rem;
}

.trust-grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .trust-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .trust-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-icon-emoji {
  font-size: 1.75rem;
  background: var(--accent-light);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.trust-card h3 {
  margin-bottom: 0.625rem;
}

/* ── Services ── */
.services {
  background: linear-gradient(180deg, var(--background) 0%, rgba(232, 220, 203, 0.25) 100%);
}

.services-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .services-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

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

.stat-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-card h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.services-panel {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 80px rgba(30, 42, 68, 0.16);
}

@media (min-width: 768px) {
  .services-panel { padding: 2.5rem 2rem; }
}

.service-item {
  display: flex;
  gap: 1.25rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:first-child {
  padding-top: 0;
}

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.service-item h3 {
  color: var(--primary-foreground);
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.service-item .body-text {
  color: rgba(250, 248, 245, 0.7);
  font-size: 0.9375rem;
}

/* ── About ── */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-visual {
  position: relative;
}

.about-image-placeholder svg {
  width: 100%;
  border-radius: var(--radius-xl);
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  inset-inline-start: 1.5rem;
  padding: 1rem 1.25rem;
}

.about-lead {
  margin: 1.25rem 0 2rem;
}

.about-features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.about-feature {
  padding: 1.5rem;
}

.about-feature h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

/* ── Blog ── */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, rgba(30, 42, 68, 0.08), rgba(200, 169, 126, 0.2));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.blog-thumb-2 {
  background: linear-gradient(135deg, rgba(200, 169, 126, 0.25), rgba(30, 42, 68, 0.1));
}

.blog-thumb-3 {
  background: linear-gradient(135deg, rgba(30, 42, 68, 0.12), rgba(232, 220, 203, 0.6));
}

.blog-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-body time {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.blog-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

.blog-body h3 a:hover {
  color: var(--accent);
}

.blog-body .body-text {
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.blog-link:hover {
  color: var(--accent);
}

/* Blog card — full clickable area */
.blog-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover .blog-link {
  color: var(--accent);
}

.blog-body h2 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  line-height: 1.4;
  color: var(--primary);
}

/* Blog teaser (homepage) */
.blog-teaser {
  background: linear-gradient(180deg, rgba(232, 220, 203, 0.35) 0%, var(--background) 100%);
  border-top: 1px solid var(--border);
}

.blog-teaser-header {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.blog-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.blog-teaser-subtitle {
  font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.7;
}

.blog-teaser-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Blog listing page */
.blog-page-hero {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 0;
  text-align: center;
}

.blog-page-hero .container {
  max-width: 44rem;
}

.blog-listing {
  padding-top: 2rem;
}

/* Article pages */
.article-page {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
}

.article-wrap {
  max-width: 44rem;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.article-breadcrumb a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
}

.article-breadcrumb a:hover {
  color: var(--accent);
}

.article-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.article-header time {
  display: block;
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin: 1rem 0 0.75rem;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.article-byline {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul {
  margin-bottom: 1.25rem;
  padding-inline-start: 1.5rem;
  list-style: disc;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.article-content li:last-child {
  margin-bottom: 0;
}

.article-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.article-content a:hover {
  color: var(--accent);
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Active nav link */
.nav-list a.nav-active {
  color: var(--accent);
  font-weight: 600;
}

/* ── FAQ ── */
.faq {
  background: linear-gradient(180deg, rgba(232, 220, 203, 0.2) 0%, var(--background) 100%);
}

section.faq.section-padding,
#faq.section-padding {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  section.faq.section-padding,
  #faq.section-padding {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  section.faq.section-padding,
  #faq.section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.faq-layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .faq-layout {
    gap: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.faq-header {
  margin-bottom: 0;
  padding-top: 0.5rem;
  padding-inline: 0.5rem;
}

@media (min-width: 768px) {
  .faq-header {
    padding-top: 0.75rem;
    padding-inline: 0;
  }
}

.faq-header .section-label {
  margin-bottom: 0.875rem;
  line-height: 1.55;
  padding-inline: 0.25rem;
}

.faq-header h2 {
  margin-bottom: 0;
  padding-inline: 0.25rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-inline: 0.25rem;
}

@media (min-width: 640px) {
  .faq-list {
    padding-inline: 0;
  }
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  padding-block: 1.25rem;
  padding-inline: 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .faq-item summary {
    padding-block: 1.375rem;
    padding-inline: 1.75rem;
    font-size: 1.0625rem;
    gap: 1rem;
  }
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 50%;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding-block: 0 1.375rem;
  padding-inline: 1.5rem;
}

@media (min-width: 640px) {
  .faq-answer {
    padding-block: 0 1.625rem;
    padding-inline: 1.75rem;
  }
}

.faq-answer .body-text {
  padding: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.faq-answer .body-text:last-child {
  padding-bottom: 0;
}

.faq-item .body-text {
  padding: 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--primary);
  color: rgba(250, 248, 245, 0.85);
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
    gap: 2.5rem;
  }
}

.footer-desc {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.65);
  max-width: 20rem;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.site-footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer nav a {
  font-size: 0.9375rem;
  color: rgba(250, 248, 245, 0.7);
  transition: color 0.2s;
}

.site-footer nav a:hover {
  color: var(--accent);
}

.footer-note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(250, 248, 245, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
  }
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(250, 248, 245, 0.5);
}

.footer-bottom nav {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom nav a {
  font-size: 0.8125rem;
  color: rgba(250, 248, 245, 0.5);
  transition: color 0.2s;
}

.footer-bottom nav a:hover {
  color: var(--accent);
}

/* ── Services cards ── */
.services-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card .service-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.service-card h3 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.service-card .body-text + .body-text {
  margin-top: 0.75rem;
}

/* ── Products tabs ── */
.products {
  background: linear-gradient(180deg, var(--background) 0%, rgba(232, 220, 203, 0.2) 100%);
}

.tabs {
  max-width: 52rem;
  margin-inline: auto;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.tab-btn {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover {
  color: var(--primary);
  border-color: var(--accent);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(30, 42, 68, 0.15);
}

.tab-panel {
  padding: 2.5rem 2rem;
  animation: fadeIn 0.35s ease;
}

.tab-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

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

/* ── Cities grid ── */
.cities-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
}

.city-card {
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.city-card-link {
  display: block;
  height: 100%;
  padding: 1.75rem 1.5rem;
  color: inherit;
  text-decoration: none;
}

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

.city-card-link:hover h3 {
  color: var(--accent);
}

.city-card h3 {
  font-size: 1.0625rem;
  color: var(--primary);
  margin-bottom: 0.625rem;
  transition: color 0.2s ease;
}

.city-card .body-text {
  margin: 0;
}

.coverage-note {
  text-align: center;
  max-width: 36rem;
  margin: 1.5rem auto 0;
  font-size: 1.0625rem;
}

/* ── Guides ── */
.guides {
  background: linear-gradient(180deg, rgba(232, 220, 203, 0.15) 0%, var(--background) 100%);
}

.guides-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .guides-grid { grid-template-columns: repeat(3, 1fr); }
}

.guide-card {
  padding: 2.25rem 2rem;
}

.guide-card h3 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--primary);
  color: var(--primary-foreground);
  overflow: hidden;
}

section.testimonials.section-padding,
#testimonials.section-padding {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  section.testimonials.section-padding,
  #testimonials.section-padding {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 1024px) {
  section.testimonials.section-padding,
  #testimonials.section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.testimonials-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .testimonials-inner {
    gap: 2.25rem;
  }
}

.testimonials .section-header {
  margin-bottom: 0;
  padding-top: 0.5rem;
  padding-inline: 0.5rem;
}

@media (min-width: 768px) {
  .testimonials .section-header {
    padding-top: 0.75rem;
    padding-inline: 0;
  }
}

.testimonials .section-label {
  color: var(--accent);
  margin-bottom: 0.875rem;
  line-height: 1.55;
  padding-inline: 0.25rem;
}

.testimonials h2 {
  color: var(--primary-foreground);
  text-align: center;
  line-height: 1.4;
  padding-inline: 0.25rem;
}

.testimonials-carousel {
  padding-inline: 0.25rem;
  padding-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .testimonials-carousel {
    padding-inline: 0;
    padding-bottom: 0;
  }
}

.testimonials-viewport {
  position: relative;
  max-width: 48rem;
  margin-inline: auto;
}

.testimonial-card {
  margin: 0;
  padding-block: 1.75rem;
  padding-inline: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  pointer-events: none;
}

.testimonial-card:not(.is-active) {
  position: absolute;
  top: 0;
  inset-inline: 0;
  width: 100%;
}

.testimonial-card.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 480px) {
  .testimonial-card {
    padding-block: 2rem;
    padding-inline: 1.75rem;
  }
}

@media (min-width: 768px) {
  .testimonial-card {
    padding-block: 2.5rem;
    padding-inline: 2.25rem;
  }
}

.testimonial-card:hover {
  box-shadow: none;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin: 0 0 1.125rem;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 479px) {
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}

.testimonial-author {
  font-style: normal;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--primary-foreground);
  line-height: 1.45;
}

.testimonial-stars {
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 1;
  flex-shrink: 0;
}

.testimonial-text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgba(250, 248, 245, 0.88);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card {
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}

/* ── Message panel ── */
.message-panel {
  max-width: 52rem;
  margin-inline: auto;
  padding: 2rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .message-panel { padding: 2.5rem 2.25rem; }
}

.message-panel h2 {
  margin-bottom: 1.5rem;
}

.message-text {
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

.message-panel .btn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-self: center;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.55;
  padding-inline: 1.5rem;
}

/* ── Contact ── */
.contact-table-wrap {
  max-width: 40rem;
  margin-inline: auto;
  overflow: hidden;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table th,
.contact-table td {
  padding: 1.25rem 1.5rem;
  text-align: start;
  border-bottom: 1px solid var(--border);
}

.contact-table th {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(232, 220, 203, 0.25);
  width: 35%;
}

.contact-table td {
  font-size: 1rem;
  color: var(--foreground);
}

.contact-table td a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-table td a:hover {
  color: var(--primary);
}

.contact-table tr:last-child th,
.contact-table tr:last-child td {
  border-bottom: none;
}

.contact-cta {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 1.0625rem;
}

/* ── FAQ answer wrapper ── */

/* ── Footer extras ── */
.footer-disclaimer,
.footer-credit {
  margin-top: 1rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.45);
}

.footer-subheading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(250, 248, 245, 0.55);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-subheading:first-of-type {
  margin-top: 0.75rem;
}

.footer-gulf ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer-gulf li {
  font-size: 0.9375rem;
  color: rgba(250, 248, 245, 0.7);
}

.site-footer nav ul li:not(:has(a)) {
  font-size: 0.9375rem;
  color: rgba(250, 248, 245, 0.7);
}

/* ── Accessibility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Hero title sizing for long headline ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-start: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.55);
}

/* ── City landing pages ── */
.city-landing {
  padding-top: calc(var(--header-h) + 1rem);
}

.city-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.city-breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.city-breadcrumb a:hover {
  color: var(--accent);
}

.city-hero {
  padding-bottom: 2rem;
}

.city-hero-inner {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.city-hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent-light);
  border: 1px solid rgba(200, 169, 126, 0.35);
  border-radius: 999px;
}

.city-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 4.5vw, 2.375rem);
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.city-hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.85;
  color: var(--text-body);
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.city-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.city-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.city-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.city-section {
  padding-block: 2.5rem;
}

@media (min-width: 768px) {
  .city-section {
    padding-block: 3rem;
  }
}

.city-section-alt {
  background: linear-gradient(180deg, rgba(232, 220, 203, 0.25) 0%, var(--background) 100%);
}

.city-section-header {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.city-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.city-section-header p {
  color: var(--text-body);
  line-height: 1.75;
}

.city-why-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .city-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.city-why-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.city-why-card h3 {
  font-size: 1.0625rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

.city-areas-list {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .city-areas-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.city-areas-list li {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  list-style: none;
}

.city-steps {
  display: grid;
  gap: 1.25rem;
  max-width: 52rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .city-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.city-step {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.city-step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--accent-light);
  border-radius: 50%;
}

.city-step h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.375rem;
}

.city-step p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-body);
}

.city-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .city-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-stat {
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.city-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  color: var(--accent);
  margin-bottom: 0.375rem;
}

.city-stat span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
}

.city-features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .city-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .city-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-feature-card {
  padding: 1.5rem 1.25rem;
}

.city-feature-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.625rem;
}

.city-feature-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-body);
}

.city-cta-banner {
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-xl);
  max-width: 52rem;
  margin-inline: auto;
}

.city-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--accent);
}

.city-cta-banner p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250, 248, 245, 0.88);
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-inline: auto;
}

.city-faq-list {
  max-width: 52rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.city-emirates-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .city-emirates-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-emirate-link {
  display: block;
  padding: 1rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.city-emirate-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.city-emirate-link.is-current {
  background: var(--accent-light);
  border-color: rgba(200, 169, 126, 0.45);
  color: var(--primary);
  pointer-events: none;
}

.city-products-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .city-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .city-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-product-card {
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.city-product-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.city-product-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
}

.city-steps-cta {
  text-align: center;
  margin-top: 2rem;
}

.city-features-spaced {
  margin-top: 2rem;
}

/* ── Desktop / laptop only (1024px+) — mobile untouched ── */
@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }

  h1:not(.hero-headline-title) {
    font-size: clamp(2.25rem, 3.2vw, 3.25rem);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(1.625rem, 2.2vw, 2.125rem);
    line-height: 1.25;
  }

  h3 {
    font-size: 1.3125rem;
  }

  .section-padding {
    padding-top: 2.75rem;
    padding-bottom: 1rem;
  }

  section.section-padding + section.section-padding {
    padding-top: 0.875rem;
  }

  section.faq.section-padding,
  #faq.section-padding,
  section.testimonials.section-padding,
  #testimonials.section-padding {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .section-padding-sm {
    padding-block: 3rem;
  }

  .section-header {
    margin-bottom: 2rem;
    max-width: 40rem;
  }

  .section-desc {
    max-width: 42rem;
    margin-inline: auto;
  }

  .hero {
    padding-top: calc(var(--header-h) + 0.5rem);
    padding-bottom: 0.5rem;
  }

  .hero.section-padding {
    padding-top: calc(var(--header-h) + 0.5rem);
    padding-bottom: 0.5rem;
  }

  .hero .container {
    max-width: 1180px;
  }

  .hero .badge-hero {
    margin-bottom: 0.75rem;
    max-width: 100%;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .hero-grid {
    display: grid;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    grid-template-columns: minmax(0, 520px) minmax(0, 420px);
    column-gap: 1.25rem;
    align-items: center;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 520px;
    width: 100%;
  }

  .hero-visual {
    display: block;
    grid-column: 2;
    grid-row: 1;
    order: 0;
    align-self: center;
  }

  .hero-headline {
    max-width: none;
    width: 100%;
    text-align: start;
    margin-bottom: 0;
  }

  .hero .hero-headline-title {
    font-size: unset;
    line-height: 1.2;
    align-items: flex-start;
  }

  .hero-headline-title {
    align-items: flex-start;
  }

  .hero-headline-main {
    font-size: clamp(2rem, 2.4vw, 2.5rem);
    line-height: 1.2;
  }

  .hero-headline-sub {
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    line-height: 1.35;
  }

  .hero-desc {
    max-width: 520px;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .hero-desc + .hero-desc {
    margin-bottom: 0;
  }

  .hero-image-wrap {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-photo {
    aspect-ratio: 4 / 5;
    max-height: 420px;
  }

  .hero-photo img {
    width: 100%;
    height: 100%;
    max-width: 420px;
    max-height: 420px;
    object-fit: cover;
    object-position: center 8%;
  }

  .hero-card-float {
    bottom: 1rem;
    padding: 0.75rem 1rem;
  }

  .hero-actions {
    margin-top: 0.875rem;
    margin-bottom: 0;
    width: 100%;
    max-width: min(100%, 940px);
    margin-inline: auto;
    align-items: center;
    text-align: center;
    gap: 0.375rem;
  }

  .hero-actions .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .trust-grid-4 .trust-card {
    padding: 2rem 1.75rem;
  }

  .trust-card .body-text {
    max-width: 52ch;
    margin-inline: auto;
  }

  .services-cards {
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.75rem;
  }

  .service-card .body-text {
    max-width: none;
    line-height: 1.72;
  }

  .tabs {
    max-width: 54rem;
  }

  .tab-panel {
    padding: 2.25rem 2rem;
  }

  .tab-panel .body-text {
    max-width: 62ch;
    line-height: 1.78;
  }

  .cities-grid {
    gap: 1.125rem;
  }

  .city-card-link {
    padding: 1.5rem 1.25rem;
  }

  .guides-grid {
    gap: 1.375rem;
  }

  .guide-card {
    padding: 2rem 1.75rem;
  }

  .guide-card .body-text {
    max-width: none;
    line-height: 1.72;
  }

  .testimonials-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .testimonials .section-header {
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    max-width: 40rem;
    text-align: center;
  }

  .testimonials .section-label {
    display: block;
    text-align: center;
  }

  .testimonials h2 {
    text-align: center;
  }

  .testimonials-carousel {
    width: 100%;
    max-width: 48rem;
    margin-inline: auto;
  }

  .testimonials-viewport {
    max-width: 48rem;
    margin-inline: auto;
  }

  .faq-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .faq-header {
    width: 100%;
    max-width: 40rem;
    margin-bottom: 0;
    padding: 0;
    text-align: center;
  }

  .faq-header .section-label {
    display: block;
    text-align: center;
  }

  .faq-header h2 {
    text-align: center;
  }

  .faq-header .section-title-split {
    align-items: center;
  }

  .faq-list {
    width: 100%;
    max-width: 48rem;
    margin-inline: auto;
  }

  .message-panel {
    padding: 2.25rem 2.5rem;
  }

  .blog-teaser-header {
    margin-bottom: 2rem;
  }

  .blog-teaser-cta {
    margin-top: 2rem;
  }

  .blog-page-hero .container {
    max-width: 40rem;
  }

  .article-wrap {
    max-width: 46rem;
  }

  .article-content p,
  .article-content li {
    max-width: 65ch;
    line-height: 1.78;
  }

  .city-hero-inner {
    max-width: 46rem;
  }

  .city-section {
    padding-block: 2.5rem;
  }

  .city-section-header {
    margin-bottom: 1.75rem;
    max-width: 40rem;
  }

  .city-hero-lead {
    max-width: 42rem;
    line-height: 1.78;
  }
}

@media (min-width: 1280px) {
  .container {
    padding-inline: clamp(2rem, 4vw, 4rem);
  }

  .site-header .logo-title {
    font-size: 1.75rem;
  }

  .site-header .logo-subtitle {
    font-size: 0.9375rem;
  }

  .nav-list {
    gap: 1.125rem;
  }

  .nav-list a {
    font-size: 0.875rem;
  }

  .header-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    flex-shrink: 0;
  }

  .header-inner {
    gap: 1.25rem;
  }

  .trust-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .trust-grid-4 .trust-card {
    padding: 1.75rem 1.375rem;
  }

  .trust-grid-4 .trust-card h3 {
    font-size: 1.0625rem;
  }

  .trust-grid-4 .trust-card .body-text {
    font-size: 0.9375rem;
    line-height: 1.68;
  }

  .tabs {
    max-width: 56rem;
  }

  .blog-teaser-title {
    font-size: clamp(2.5rem, 3.5vw, 3.25rem);
  }
}
