/* ================================
   CSS VARIABLES
   ================================ */
:root {
  --navy: #10233f;
  --navy-2: #173256;
  --copper: #c58a3c;
  --sand: #f6f1ea;
  --sand-2: #fbf8f4;
  --text: #243244;
  --muted: #637286;
  --line: rgba(0,0,0,0.05);
  --white: #ffffff;
  --success: #0f766e;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
  --radius: 24px;
}

/* ================================
   RESET & BASE
   ================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sand-2); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--copper); }

::selection { background: var(--copper); color: #fff; }

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  background: #f8fafc;
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ================================
   TYPOGRAPHY & BADGES
   ================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(197, 138, 60, 0.12);
  color: #8a5c1d;
  border: 1px solid rgba(197, 138, 60, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 8px var(--copper);
}

/* ================================
   TOP BAR
   ================================ */
.topbar {
  background: var(--navy);
  color: #dbe6f4;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 14px;
  flex-wrap: wrap;
}
.topbar .mini { display: flex; gap: 16px; flex-wrap: wrap; }
.topbar .mini strong { color: #fff; }

/* ================================
   HEADER & NAVIGATION
   ================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 4px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(16,35,63,0.15);
  flex: 0 0 auto;
}

/* Brand-copy: always hidden */
.brand-copy { display: none; }
.brand-copy h1 { margin: 0; font-size: 17px; line-height: 1.3; }
.brand-copy p { margin: 1px 0 0; color: var(--muted); font-size: 13px; }

.brand-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.nav a {
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav a:hover,
.nav a.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(16,35,63,0.15);
}

/* ================================
   HAMBURGER
   ================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ================================
   HERO SECTION
   ================================ */
.hero {
  position: relative;
  padding: 72px 0 84px;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06) 0%, transparent 30%),
    linear-gradient(135deg, #1f3049 0%, #17263c 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  color: #fff;
}
.hero-media-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17, 35, 62, 0.82) 0%, rgba(14, 26, 42, 0.88) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08) 0%, transparent 28%);
}
.hero-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-media-slide.is-active { opacity: 1; }
.hero-media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.02);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  padding: 0;
  position: relative;
  background: transparent;
  box-shadow: none;
  border: none;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-copy::after { display: none; }
.hero-copy h1, .hero-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.24);
}
.hero-copy p {
  margin: 0;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  line-height: 1.85;
}
.hero-copy .hero-helper {
  margin-top: 12px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  max-width: 620px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.metric {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.metric:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}
.metric strong {
  display: block;
  color: #fff;
  font-size: 20px;
  margin-bottom: 4px;
}
.metric span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* ================================
   BUTTONS
   ================================ */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 14px;
  padding: 16px 32px;
  font-family: inherit;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.btn i {
  font-size: 16px;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 6px 16px rgba(16,35,63,0.15);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16,35,63,0.4);
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
}
.btn-outline {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ================================
   HERO CARD & FORM
   ================================ */
.hero-card {
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 28px 64px rgba(10, 16, 29, 0.24);
  background: rgba(255,255,255,0.06);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.hero-card--form-only {
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero-card img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-bottom: 1px solid rgba(16,35,63,0.08);
}
.hero-box {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5f0 100%);
}
.hero-card--form-only .hero-box {
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(10, 16, 29, 0.24);
}
.hero-box h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.25;
}

.hero-wa-form { display: grid; gap: 16px; }
.hero-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hero-field { display: grid; gap: 8px; }
.hero-field--full { grid-column: 1 / -1; }
.hero-field span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.hero-field input,
.hero-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hero-field input::placeholder,
.hero-field textarea::placeholder { color: #93a0b1; }
.hero-field input:focus,
.hero-field textarea:focus {
  outline: none;
  border-color: rgba(197, 138, 60, 0.65);
  box-shadow: 0 0 0 4px rgba(197, 138, 60, 0.12);
}
.hero-form-submit { width: 100%; }

.hero-box-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: var(--shadow);
}
.hero-box-note strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-box-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 600;
}

/* ================================
   LISTS (shared styles)
   ================================ */
.hero-list,
.bullets,
.faq-list,
.contact-list,
.related-list,
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-list li,
.bullets li,
.contact-list li,
.related-list li,
.checklist li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 14px;
  color: #3c4b5e;
}
.hero-list li::before,
.bullets li::before,
.contact-list li::before,
.related-list li::before,
.checklist li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), #e6b265);
  box-shadow: 0 2px 6px rgba(197, 138, 60, 0.3);
}

/* ================================
   SECTION LAYOUT (service sub-pages)
   ================================ */
.section { padding: 80px 0; }
.section:nth-of-type(even) { background: #ffffff; }

.section-head {
  margin-bottom: 32px;
  text-align: center;
}
.section-head h3 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.3;
  color: var(--navy);
}
.section-head p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
}

/* Card base styles */
.card,
.panel,
.related-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 32px;
}
.card:hover,
.panel:hover,
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ================================
   GRID SYSTEMS
   ================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

/* ================================
   IDENTITY BAND
   ================================ */
.identity-band {
  background: linear-gradient(135deg, var(--navy), #1a3a66);
  color: #e8eef8;
  position: relative;
  overflow: hidden;
}
.identity-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 100%);
}
.identity-band .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 60px 0;
  align-items: center;
  position: relative;
  z-index: 1;
}
.identity-band h3 {
  margin: 0 0 12px;
  font-size: 36px;
  color: #fff;
}
.identity-band p { margin: 0; color: #dbe6f4; font-size: 17px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.pillar:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.pillar strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
}

/* ================================
   CONTENT COMPONENTS
   ================================ */
.note-bar {
  background: #f3f7fb;
  border: 1px dashed rgba(22, 53, 93, 0.2);
  border-radius: 20px;
  padding: 20px 24px;
  color: #4b5b6e;
  font-size: 15px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.icon-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
  text-align: center;
}
.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.icon-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

.spec-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 28px;
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.spec-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}
.spec-card p { margin: 0; color: #445366; }

/* ================================
   TIMELINE
   ================================ */
.timeline {
  display: grid;
  gap: 20px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--line);
  top: 0; bottom: 0; right: 50%;
  margin-right: -2px;
  border-radius: 4px;
}
.timeline .step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline .step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.step-no {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sand), #fdfbfa);
  color: var(--navy);
  font-weight: 700;
  font-size: 20px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.5), 0 4px 12px rgba(0,0,0,0.03);
}
.step h4 { margin: 0 0 8px; font-size: 20px; color: var(--navy); }
.step p { margin: 0; color: #4a5a6c; }

/* ================================
   GALLERY
   ================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.gallery-card figcaption {
  padding: 16px 20px;
  color: #4a5a6c;
  font-size: 15px;
  font-weight: 500;
}

/* ================================
   KEYWORDS
   ================================ */
.keyword-box {
  background: #fffaf3;
  border: 1px solid rgba(197, 138, 60, 0.2);
  border-radius: 24px;
  padding: 32px;
}
.keyword-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.keyword-chip {
  background: var(--white);
  border: 1px solid rgba(197, 138, 60, 0.3);
  color: #7a5b25;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.keyword-chip:hover {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 138, 60, 0.2);
}

/* ================================
   FAQ LIST (service sub-pages)
   ================================ */
.faq-list li {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.faq-list li:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.faq-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
  color: var(--navy);
}

/* ================================
   RELATED GRID (service sub-pages)
   ================================ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card h4 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--navy);
}
.related-card p { margin: 0 0 18px; color: #4b5b6e; }
.related-card a {
  display: inline-flex;
  color: var(--copper);
  font-weight: 700;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.related-card a:hover { color: var(--navy); }

/* ================================
   CTA PANEL (service sub-pages)
   ================================ */
.cta-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.cta-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #eaf1fb;
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.15);
  position: relative;
  overflow: hidden;
}
.cta-highlight::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-highlight h3 { margin: 0 0 16px; color: #fff; font-size: 34px; position: relative; z-index: 1; }
.cta-highlight p { margin: 0 0 28px; font-size: 17px; position: relative; z-index: 1; }
.cta-highlight .btn-primary {
  background: linear-gradient(135deg, var(--copper), #d99a46);
  border: none;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(197, 138, 60, 0.2);
}
.cta-highlight .btn-primary:hover {
  background: linear-gradient(135deg, #d99a46, var(--copper));
  box-shadow: 0 8px 24px rgba(197, 138, 60, 0.3);
}

.cta-side {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px;
}
.cta-side:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.contact-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin: 16px 0;
  background: linear-gradient(135deg, var(--navy), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  margin-top: 40px;
  background: var(--navy);
  color: #dbe6f4;
  border-top: 4px solid var(--copper);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
  flex-wrap: wrap;
}
.footer a { color: #fff; transition: opacity 0.3s ease; }
.footer a:hover { opacity: 0.8; }

/* ================================
   FLOATING CONTACT BUTTONS
   ================================ */
.floating-contact-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: grid;
  gap: 12px;
  z-index: 1000;
}
.call-float,
.whatsapp-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.call-float {
  background: linear-gradient(135deg, var(--copper) 0%, #d59a4c 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(197, 138, 60, 0.32);
}
.whatsapp-float {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.call-float:hover,
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
}
.call-float:hover {
  box-shadow: 0 12px 32px rgba(197, 138, 60, 0.42);
}
.whatsapp-float:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}
.call-float i,
.whatsapp-float i {
  font-size: 28px;
  line-height: 1;
}

/* ================================
   INDEX SERVICE PAGE COMPONENTS
   ================================ */
.service-main {
  background: linear-gradient(180deg, #fff 0%, #f7f4ef 100%);
}

.service-section { padding: 88px 0; }
.service-section--plain { background: transparent; }
.service-section--surface { background: #fff; }
.service-section--alt { background: linear-gradient(180deg, #fcfaf7 0%, #f5f1eb 100%); }
.service-section--areas {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #eef3fa;
}

.service-trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -38px;
  padding-bottom: 18px;
}
.service-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-trust-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(16, 35, 63, 0.08);
}
.service-trust-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}
.service-trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-heading {
  max-width: 760px;
  margin: 0 0 42px;
}
.service-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.service-heading--light h2,
.service-section--areas .service-heading h2 { color: #fff; }
.service-heading--light p { color: #eef3fa; }

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
}
.service-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.service-kicker--light { color: rgba(255, 255, 255, 0.82); }

.service-heading h2,
.service-copy h2,
.service-cta-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
}

.service-heading p,
.service-copy p,
.service-panel p,
.service-card p,
.service-note-card p,
.service-related-card p,
.service-area-card p,
.service-usage-card p,
.service-audience-card span,
.service-faq-content p {
  color: var(--muted);
  line-height: 1.9;
}

.service-lead {
  margin: 0 0 18px;
  color: #314255;
  font-size: 18px;
  line-height: 1.95;
}

.service-body { display: grid; gap: 14px; }
.service-body p,
.service-copy > p:last-of-type { margin: 0; }

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
}
.service-split--balanced { align-items: start; }

.service-visual {
  position: relative;
  display: grid;
  gap: 0;
  align-content: start;
}
.service-media-card {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 24px 54px rgba(16, 35, 63, 0.12);
  background: #fff;
}
.service-media-card img {
  width: 100%;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
  display: block;
}
.service-floating-card {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  margin: 18px auto 0;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 18px 42px rgba(16, 35, 63, 0.12);
}

.service-floating-card h3,
.service-card h3,
.service-material-card h3,
.service-panel h3,
.service-note-card h3,
.service-step h3,
.service-phase-card h3,
.service-area-card h3,
.service-related-card h3,
.service-usage-card h3,
.service-warning-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
}

.service-inline-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.service-inline-stat {
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.service-inline-stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}
.service-inline-stat strong {
  color: var(--navy);
  font-size: 17px;
}

/* Service grid layouts */
.service-card-grid,
.service-material-grid,
.service-gallery-grid,
.service-usage-grid,
.service-areas-grid,
.service-question-grid,
.service-related-grid,
.service-audience-grid {
  display: grid;
  gap: 24px;
}

.service-card-grid--3,
.service-question-grid,
.service-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-material-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.service-usage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-areas-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.service-audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Service card base */
.service-card,
.service-material-card,
.service-panel,
.service-phase-card,
.service-area-card,
.service-related-card,
.service-usage-card,
.service-warning-card,
.service-audience-card,
.service-question-card,
.service-note-card {
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(16, 35, 63, 0.06);
}

/* Service card hover */
.service-card,
.service-material-card,
.service-related-card,
.service-usage-card,
.service-warning-card,
.service-audience-card,
.service-question-card,
.service-area-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover,
.service-material-card:hover,
.service-related-card:hover,
.service-usage-card:hover,
.service-warning-card:hover,
.service-audience-card:hover,
.service-question-card:hover,
.service-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(16, 35, 63, 0.1);
  border-color: rgba(197, 138, 60, 0.24);
}

.service-card--highlight {
  background: linear-gradient(180deg, #fff 0%, #fbf8f3 100%);
}

/* Service lists */
.service-mini-list,
.service-list,
.service-area-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.service-mini-list li,
.service-list li,
.service-area-list li {
  position: relative;
  padding-right: 22px;
  color: #425366;
  line-height: 1.9;
}
.service-mini-list li + li,
.service-list li + li,
.service-area-list li + li { margin-top: 8px; }
.service-mini-list li::before,
.service-list li::before,
.service-area-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), #ddb16f);
}
.service-list--compact { margin-top: 10px; }
.service-list--compact li { line-height: 1.75; }

/* Service note card (dark) */
.service-note-card {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  box-shadow: 0 26px 48px rgba(16, 35, 63, 0.22);
}
.service-note-card h3,
.service-note-card p,
.service-note-card .service-kicker { color: #fff; }

.service-note-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.service-note-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
}

/* Service material card */
.service-material-card { position: relative; overflow: hidden; }
.service-material-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 88px;
  height: 4px;
  background: var(--copper);
  border-radius: 0 0 0 999px;
}

.service-material-tag,
.service-area-badge,
.service-phase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(197, 138, 60, 0.12);
  color: #8c5e22;
  font-size: 13px;
  font-weight: 700;
}

/* Service timeline */
.service-timeline {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
.service-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.service-step-number {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.service-step p,
.service-phase-card p,
.service-card p,
.service-material-card p,
.service-warning-card p,
.service-usage-card p,
.service-question-card,
.service-audience-card span,
.service-related-card p,
.service-area-card p { margin: 0; }

.service-phase-card { background: #fff; }
.service-phase-badge { margin-bottom: 14px; }

/* Service gallery */
.service-gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: var(--shadow);
}
.service-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-gallery-card figcaption {
  padding: 16px 18px 18px;
  color: #415267;
  font-size: 14px;
  line-height: 1.8;
}

.service-usage-card h3,
.service-question-card,
.service-audience-card strong { font-size: 18px; }

.service-panel--soft { background: #fff; }

.service-dual-stack { display: grid; gap: 18px; }

.service-audience-card {
  display: grid;
  gap: 10px;
  align-content: start;
}
.service-audience-card strong {
  display: block;
  color: var(--navy);
  line-height: 1.4;
}
.service-audience-card span {
  display: block;
}

.service-area-card { background: rgba(255, 255, 255, 0.98); }
.service-area-card--featured {
  transform: translateY(-10px);
  box-shadow: 0 24px 46px rgba(8, 16, 32, 0.24);
}
.service-area-card--featured:hover { transform: translateY(-14px); }
.service-area-list li { color: #314255; }

.service-question-card {
  display: flex;
  align-items: flex-start;
  min-height: 120px;
  color: var(--navy);
  line-height: 1.75;
}

/* Service FAQ */
.service-faq-list {
  max-width: 920px;
  margin: 0 auto;
}
.service-faq-item {
  background: #fff;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.service-faq-item + .service-faq-item { margin-top: 14px; }
.service-faq-item summary {
  position: relative;
  padding: 22px 28px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.service-faq-item summary::-webkit-details-marker { display: none; }
.service-faq-item summary::after {
  content: "+";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--copper);
  font-size: 28px;
  font-weight: 400;
}
.service-faq-item[open] summary::after { content: "−"; }
.service-faq-content { padding: 0 28px 22px; }
.service-faq-content p { margin: 0; }

.service-related-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--copper);
  font-weight: 700;
}

/* Service CTA section */
.service-cta-section { padding: 0 0 88px; }
.service-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: center;
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  box-shadow: 0 30px 60px rgba(16, 35, 63, 0.22);
}
.service-cta-card h2,
.service-cta-card p { color: #fff; }
.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.service-cta-card .btn-outline { background: rgba(255, 255, 255, 0.08); }

/* ================================
   RESPONSIVE — TABLET (max-width: 1200px)
   ================================ */
@media (max-width: 1200px) {
  .service-gallery-grid,
  .service-areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* ================================
   RESPONSIVE — TABLET (max-width: 1080px)
   ================================ */
@media (max-width: 1080px) {
  .hero-grid,
  .identity-band .container,
  .gallery,
  .related-grid,
  .pillars,
  .icon-grid,
  .cta-panel { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
}

/* ================================
   RESPONSIVE — DESKTOP HERO (min-width: 781px)
   ================================ */
@media (min-width: 781px) {
  .hero {
    padding: 24px 0 28px;
    min-height: 0;
    height: calc(100svh - 102px);
    max-height: calc(100svh - 102px);
    align-items: center;
  }
  .hero-grid { height: 100%; align-items: center; }
  .hero-copy h1,
  .hero-copy h2 { font-size: clamp(34px, 4.6vw, 56px); }
  .hero-copy p { font-size: 1.02rem; line-height: 1.72; }
  .hero-copy .hero-helper { font-size: 14px; }
  .hero-card { max-height: 100%; }
  .hero-card img { max-height: 250px; }
  .hero-box { padding: 22px; }
  .hero-box h2 { font-size: 24px; margin-bottom: 14px; }
  .hero-box-note { margin-top: 12px; padding: 14px 16px; }
  .hero-chips { gap: 8px; }
  .hero-chip { min-height: 34px; padding: 0 12px; font-size: 12px; }

  /* Header: hide brand, center nav */
  .header .brand { display: none; }
  .header .container { justify-content: center; }
}

/* ================================
   RESPONSIVE — TABLET SERVICE (max-width: 992px)
   ================================ */
@media (max-width: 992px) {
  .timeline::after { right: 32px; }

  .service-section { padding: 74px 0; }
  .service-split,
  .service-cta-card { grid-template-columns: 1fr; }
  .service-card-grid--3,
  .service-material-grid,
  .service-question-grid,
  .service-related-grid,
  .service-usage-grid,
  .service-audience-grid,
  .service-trust-grid,
  .service-gallery-grid,
  .service-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-inline-stats { grid-template-columns: 1fr; }
  .service-area-card--featured { transform: none; }
}

/* ================================
   RESPONSIVE — MOBILE (max-width: 780px)
   ================================ */
@media (max-width: 780px) {
  /* Grid layouts collapse to single column */
  .hero-grid,
  .identity-band .container,
  .grid-2,
  .grid-4,
  .gallery,
  .related-grid,
  .pillars,
  .icon-grid,
  .cta-panel,
  .footer .container { grid-template-columns: 1fr; display: grid; }

  /* Spacing reductions */
  .section { padding: 40px 0; }
  .hero-box,
  .card,
  .panel,
  .cta-side,
  .cta-highlight,
  .related-card { padding: 24px; }

  /* Nav stays as flex row, not grid */
  .nav { justify-content: flex-start; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-copy h2, .hero-copy h1 { font-size: 32px; }
  .section-head h3 { font-size: 28px; }

  /* ---- Mobile navigation drawer ---- */
  .hamburger {
    display: flex;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header .container {
    display: flex;
    position: relative;
  }
  .header .brand { display: flex; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .nav.open {
    display: flex;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .nav a {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
  }

  /* ---- Hero mobile ---- */
  .hero { padding: 44px 0 58px; min-height: auto; }
  .hero-copy { text-align: right; }
  .hero-copy .hero-helper { font-size: 14px; }
  .hero .cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero .btn {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
  }
  .hero-chips { gap: 8px; }
  .hero-chip { min-height: 34px; font-size: 12px; padding: 0 12px; }
  .hero-card img { max-height: 260px; }
  .hero-box { padding: 22px; }
  .hero-box h2 { font-size: 24px; }
  .hero-form-grid { grid-template-columns: 1fr; }

  /* ---- Service page mobile ---- */
  .service-trust-strip { margin-top: -24px; }
  .service-section { padding: 56px 0; }
  .service-card-grid--3,
  .service-material-grid,
  .service-question-grid,
  .service-related-grid,
  .service-usage-grid,
  .service-audience-grid,
  .service-trust-grid,
  .service-gallery-grid,
  .service-areas-grid { grid-template-columns: 1fr; }
  .service-media-card img { aspect-ratio: 4 / 3; }
  .service-floating-card {
    width: 100%;
    margin: 14px 0 0;
    padding: 20px;
  }
  .service-step {
    grid-template-columns: 56px 1fr;
    padding: 20px;
  }
  .service-step-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 18px;
  }
  .service-card,
  .service-material-card,
  .service-panel,
  .service-phase-card,
  .service-area-card,
  .service-related-card,
  .service-usage-card,
  .service-warning-card,
  .service-audience-card,
  .service-question-card,
  .service-note-card,
  .service-cta-card { padding: 22px; }
  .service-heading h2,
  .service-copy h2,
  .service-cta-card h2 { font-size: 30px; }
}

@media (max-width: 560px) {
  .service-floating-card {
    width: 100%;
    margin-top: 12px;
  }
}

/* ================================
   RESPONSIVE — SMALL MOBILE (max-width: 420px)
   ================================ */
@media (max-width: 420px) {
  .hero .cta-row { grid-template-columns: 1fr; }
}
