/* ===== GI.LY Exchange — Base & Theme Variables ===== */
:root {
  /* Brand */
  --color-primary: #1e5a8e;
  --color-primary-dark: #164670;
  --color-accent: #d4a84b;
  --color-accent-dark: #b88c3a;
  --color-text: #1a1a1a;
  --color-text-muted: #555;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;

  /* Spacing (8px base) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;

  /* Typography */
  --font-arabic: "Tajawal", "Noto Sans Arabic", sans-serif;
  --text-xs: 0.875rem;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-hero: 2.5rem;
  --leading-tight: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Components — default (Theme B) */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --card-border: none;
  --btn-radius: 8px;
  --nav-hover: underline;
}

/* ========== Theme A — Refined / Luxury ========== */
.theme-a {
  --color-primary: #0f3d5c;
  --color-primary-dark: #0a2840;
  --color-accent: #c9a227;
  --color-accent-dark: #a6851f;
  --color-text: #1c1c1c;
  --color-text-muted: #4a4a4a;
  --color-bg: #fafbfc;
  --color-bg-alt: #f0f2f5;
  --font-arabic: "Tajawal", "Noto Sans Arabic", sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  --card-border: 1px solid rgba(15, 61, 92, 0.08);
  --btn-radius: 2px;
  --text-hero: 2.5rem;
  --leading-normal: 1.6;
  --leading-tight: 1.3;
}

/* ========== Theme B — Editorial / Confident ========== */
.theme-b {
  --color-primary: #1a5276;
  --color-primary-dark: #134060;
  --color-accent: #e8b923;
  --color-accent-dark: #c99b0f;
  --color-text: #111;
  --color-text-muted: #444;
  --color-bg: #fff;
  --color-bg-alt: #f8f9fb;
  --font-arabic: "Tajawal", "Noto Sans Arabic", sans-serif;
  --font-display: "Almarai", "Tajawal", sans-serif;
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --card-border: none;
  --btn-radius: 0;
  --text-hero: 3.25rem;
  --leading-normal: 1.7;
  --leading-tight: 1.25;
}

/* ========== Theme C — Bold / Modern ========== */
.theme-c {
  --color-primary: #1e5a8e;
  --color-primary-dark: #164670;
  --color-accent: #d4a84b;
  --color-accent-dark: #b88c3a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --card-shadow: 0 8px 32px rgba(30, 90, 142, 0.12);
  --card-border: none;
  --btn-radius: 8px;
  --text-hero: 3rem;
  --leading-normal: 1.65;
}
.theme-c .section-title { border-bottom-color: var(--color-accent); }

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-arabic);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background: var(--color-bg);
  direction: rtl;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-sm);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--space-md); }
}
.section {
  padding-block: var(--space-xl);
}
.section--alt {
  background: var(--color-bg-alt);
  position: relative;
}
/* Theme A — section alt: very subtle warm tint */
.theme-a .section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(201, 162, 39, 0.02) 0%, transparent 100%);
  pointer-events: none;
}
/* Theme B — section alt: sharp geometric accent */
.theme-b .section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, transparent 0%, rgba(26, 82, 118, 0.03) 50%, transparent 100%);
  pointer-events: none;
}
/* Theme C — section alt: radial depth */
.theme-c .section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(30, 90, 142, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 168, 75, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.section-title {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}
.theme-a .section-title {
  border-bottom-width: 2px;
  border-bottom-color: var(--color-accent);
  letter-spacing: 0.02em;
}
.theme-b .section-title {
  border-bottom-width: 4px;
  border-bottom-color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  margin: 0 0 var(--space-sm);
  font-weight: 700;
  line-height: var(--leading-tight);
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
.theme-b h1, .theme-b h2, .theme-b h3 { font-family: var(--font-display); }
.theme-b h1 { font-weight: 800; }
.theme-b h2, .theme-b h3 { font-weight: 700; }
p {
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
p:last-child { margin-bottom: 0; }
.text-muted { color: var(--color-text-muted); }
.text-intro { font-size: var(--text-lg); line-height: var(--leading-relaxed); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.theme-a .site-header { border-bottom-color: rgba(15, 61, 92, 0.1); }
.theme-b .site-header { border-bottom: 2px solid var(--color-primary); background: #fff; }
.theme-c .site-header { border-bottom-color: rgba(0,0,0,0.08); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-sm);
  gap: var(--space-md);
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-link:hover { text-decoration: none; }
.logo-link img {
  height: 48px;
  width: auto;
}
@media (min-width: 768px) {
  .logo-link img { height: 56px; }
}

/* Nav */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text);
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  outline: none;
}
@media (min-width: 768px) {
  .nav-toggle { display: none; }
}
.nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: var(--space-sm);
}
.nav.is-open { display: block; }
@media (min-width: 768px) {
  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    border: none;
    padding: 0;
  }
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 768px) {
  .nav-list { flex-direction: row; gap: var(--space-xs); }
}
.nav-list a {
  display: block;
  padding: var(--space-sm);
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-list a:hover {
  color: var(--color-primary);
  text-decoration: none;
  background: var(--color-bg-alt);
}
@media (min-width: 768px) {
  .nav-list a {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
  }
  .theme-a .nav-list a:hover { background: rgba(15, 61, 92, 0.06); color: var(--color-primary); }
  .theme-b .nav-list a:hover { background: rgba(26, 82, 118, 0.08); color: var(--color-primary); }
  .theme-c .nav-list a:hover { background: rgba(30, 90, 142, 0.08); }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-block: var(--space-2xl);
  text-align: center;
  overflow: hidden;
}
/* Theme A — Refined: light, generous space, subtle accent line */
.theme-a .hero {
  background: var(--color-bg);
  color: var(--color-text);
}
.theme-a .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}
.theme-a .hero .text-muted { color: var(--color-text-muted); }
.theme-a .hero h1 { color: var(--color-primary); font-weight: 700; }
/* Theme B — Editorial: bold block, high contrast */
.theme-b .hero {
  background: var(--color-primary);
  color: #fff;
}
.theme-b .hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.theme-b .hero .text-intro,
.theme-b .hero p { color: rgba(255,255,255,0.92); }
.theme-b .hero .text-muted { color: rgba(255,255,255,0.8); }
/* Theme C — Bold: gradient */
.theme-c .hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}
/* Optional: add .hero.has-bg and set --hero-bg in HTML or use inline style for background-image */
.theme-c .hero.has-bg {
  background: linear-gradient(135deg, rgba(30, 90, 142, 0.92) 0%, rgba(22, 70, 112, 0.94) 100%),
    var(--hero-bg, linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%));
  background-size: cover;
  background-position: center;
}
.theme-c .hero.has-bg { background-color: var(--color-primary); }
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.hero.has-bg .hero__overlay {
  background: linear-gradient(135deg, rgba(30, 90, 142, 0.88) 0%, rgba(22, 70, 112, 0.9) 100%);
}
.theme-b .hero.has-bg .hero__overlay {
  background: linear-gradient(135deg, rgba(26, 82, 118, 0.9) 0%, rgba(19, 64, 96, 0.92) 100%);
}
.hero .container { position: relative; z-index: 2; max-width: 720px; }
.theme-c .hero .container { max-width: 800px; }
.theme-c .hero h1,
.theme-c .hero .text-intro,
.theme-c .hero p { color: inherit; }
.theme-c .hero .text-muted { color: rgba(255,255,255,0.85); }
/* Hero with side image (desktop) */
.hero__inner {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  text-align: right;
}
.hero--centered .hero__inner {
  display: block;
  text-align: center;
}
.hero--centered .container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--centered .hero__content {
  max-width: 760px;
  margin-inline: auto;
}
.hero--centered .hero__visual {
  display: none !important;
}
@media (min-width: 992px) {
  .hero__inner { grid-template-columns: 1fr auto; text-align: right; }
  .hero__inner .hero__content { max-width: 560px; justify-self: end; }
  .hero__visual { max-width: 380px; justify-self: start; }
  .hero--centered .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero--centered .hero__content { justify-self: center; }
}
.hero__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
@media (max-width: 991px) {
  .hero__visual { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-arabic);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  text-decoration: none;
  transform: scale(1.02);
}
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--secondary:hover {
  background: rgba(30, 90, 142, 0.06);
  text-decoration: none;
  transform: scale(1.02);
}
.theme-c .btn--accent {
  background: var(--color-accent);
  color: var(--color-text);
}
.theme-c .btn--accent:hover {
  background: var(--color-accent-dark);
  color: #fff;
  text-decoration: none;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--color-bg);
  border: var(--card-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.theme-a .card:hover { box-shadow: 0 4px 16px rgba(15, 61, 92, 0.08); }
.theme-a .card { border-inline-start: 3px solid transparent; }
.theme-a .card:nth-child(1) { border-inline-start-color: var(--color-accent); }
.theme-a .card:nth-child(2) { border-inline-start-color: var(--color-primary); }
.theme-a .card:nth-child(3) { border-inline-start-color: var(--color-accent); }
.theme-a .card:nth-child(4) { border-inline-start-color: var(--color-primary); }
.theme-b .card {
  border-right: 4px solid var(--color-primary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.theme-b .card:hover { box-shadow: 0 12px 40px rgba(26, 82, 118, 0.15); }
.theme-b .card:nth-child(2) { border-right-color: var(--color-accent); }
.theme-b .card:nth-child(4) { border-right-color: var(--color-accent); }
.theme-c .card {
  border-right: 4px solid var(--color-accent);
}
.theme-c .card:nth-child(2) { border-right-color: var(--color-primary); }
.theme-c .card:nth-child(3) { border-right-color: var(--color-accent); }
.theme-c .card:nth-child(4) { border-right-color: var(--color-primary); }
/* Card icon / image strip (frontend-design: visual hierarchy) */
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}
.card__icon svg { width: 28px; height: 28px; }
.theme-a .card__icon { background: rgba(15, 61, 92, 0.06); color: var(--color-primary); }
.theme-a .card:nth-child(2) .card__icon { color: var(--color-accent-dark); }
.theme-a .card:nth-child(4) .card__icon { color: var(--color-accent-dark); }
.theme-b .card:nth-child(1) .card__icon { background: rgba(26, 82, 118, 0.15); color: var(--color-primary); }
.theme-b .card:nth-child(2) .card__icon { background: rgba(232, 185, 35, 0.2); color: var(--color-accent-dark); }
.theme-b .card:nth-child(3) .card__icon { background: rgba(26, 82, 118, 0.15); color: var(--color-primary); }
.theme-b .card:nth-child(4) .card__icon { background: rgba(232, 185, 35, 0.2); color: var(--color-accent-dark); }
.theme-c .card:nth-child(1) .card__icon { background: rgba(30, 90, 142, 0.12); color: var(--color-primary); }
.theme-c .card:nth-child(2) .card__icon { background: rgba(212, 168, 75, 0.2); color: var(--color-accent-dark); }
.theme-c .card:nth-child(3) .card__icon { background: rgba(30, 90, 142, 0.12); color: var(--color-primary); }
.theme-c .card:nth-child(4) .card__icon { background: rgba(212, 168, 75, 0.2); color: var(--color-accent-dark); }
.card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) var(--space-md);
  margin-inline: calc(-1 * var(--space-lg));
}
.card:has(.card__img) { padding-top: 0; }

/* ===== Dedicated Service Sections ===== */
.service-section {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.service-media {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
}
.service-media img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.service-media--cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.service-media--cards img:first-child {
  max-height: 90px;
  justify-self: center;
}
.service-media--cards img:last-child {
  max-height: 120px;
  justify-self: center;
}
.service-content h3 {
  margin-bottom: var(--space-sm);
}
.service-content .btn {
  margin-top: var(--space-sm);
}
@media (min-width: 900px) {
  .service-section {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-xl);
  }
  .service-section--reverse .service-media {
    order: 2;
  }
  .service-section--reverse .service-content {
    order: 1;
  }
}

/* ===== Lists ===== */
.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-check li {
  position: relative;
  padding-inline-start: 1.5em;
  margin-bottom: var(--space-xs);
}
.list-check li::before {
  content: "✔";
  position: absolute;
  right: 0;
  color: var(--color-accent);
  font-weight: bold;
}
.list-bullet {
  margin: 0 0 var(--space-sm);
  padding-inline-start: 1.5em;
}
.list-bullet li { margin-bottom: var(--space-xs); }
.list-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.list-values li {
  background: var(--color-bg-alt);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-text);
  color: #fff;
  padding-block: var(--space-xl);
  margin-top: var(--space-2xl);
}
.site-footer a { color: rgba(255,255,255,0.9); }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; direction: rtl; }
}
.footer-grid > .footer-contact { direction: rtl; text-align: left; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: var(--space-xs); }
.footer-contact p { margin: 0 0 var(--space-xs); color: #fff; }
/* Numbers and email in RTL: force LTR so digits display correctly */
.footer-contact [dir="ltr"],
.site-footer .dir-ltr { direction: ltr; unicode-bidi: embed; }
.footer-copyright {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.8);
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  font-family: var(--font-arabic);
  font-size: var(--text-sm);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 90, 142, 0.15);
}
.form-actions { margin-top: var(--space-lg); }
.form-message {
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  display: none;
}
.form-message.is-visible { display: block; }
.form-message--success { background: #d1fae5; color: #065f46; }
.form-message--error { background: #fee2e2; color: #991b1b; }

/* ===== FAQ Accordion ===== */
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-question {
  width: 100%;
  padding: var(--space-md);
  text-align: right;
  font-family: var(--font-arabic);
  font-size: var(--text-base);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  color: var(--color-text);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--color-bg-alt); }
.faq-question:focus-visible { outline: 2px solid var(--color-accent); outline-offset: -2px; }
.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  padding-inline-start: var(--space-md);
  padding-inline-end: var(--space-md);
}

/* ===== Contact ===== */
.contact-block {
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}
.contact-block h3 { margin-top: 0; }
.contact-block a { font-weight: 500; }

/* ===== Steps ===== */
.steps-list {
  list-style: none;
  margin: 0 0 var(--space-xl);
  padding: 0;
  counter-reset: step;
}
.steps-list li {
  position: relative;
  padding-inline-start: 3rem;
  margin-bottom: var(--space-sm);
  counter-increment: step;
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

/* ===== Animations ===== */
.animate-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.7s ease forwards;
}
.animate-hero .text-intro { animation-delay: 0.1s; }
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-hero { opacity: 1; transform: none; }
  .animate-on-scroll { opacity: 1; transform: none; }
}

/* ===== Theme A hero buttons: primary blue, secondary outline ===== */
.theme-a .hero .btn--primary {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid transparent;
}
.theme-a .hero .btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: transparent;
}
.theme-a .hero .btn--secondary {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  background: transparent;
}
.theme-a .hero .btn--secondary:hover {
  background: rgba(15, 61, 92, 0.06);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
/* ===== Theme B hero buttons: accent yellow primary, white outline secondary ===== */
.theme-b .hero .btn--primary {
  background: var(--color-accent);
  color: var(--color-text);
  border: 2px solid transparent;
}
.theme-b .hero .btn--primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
  border-color: transparent;
}
.theme-b .hero .btn--secondary {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.9);
  background: transparent;
}
.theme-b .hero .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}
/* ===== Theme C hero: reservation button gold, secondary white ===== */
.theme-c .hero .btn--primary {
  background: var(--color-accent);
  color: var(--color-text);
  border: 2px solid transparent;
}
.theme-c .hero .btn--primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
  border-color: transparent;
}
.theme-c .hero .btn--secondary {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
}
.theme-c .hero .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}
/* Service card CTA (e.g. services page) — keep primary blue with white text */
.theme-c .card .btn--primary {
  color: #fff;
  border: 2px solid transparent;
  background: var(--color-primary);
}
.theme-c .card .btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: transparent;
}
