/* ============================================================
   BAYTIK CANADA — MAIN STYLESHEET
   Marine Blue + Worn Copper + Editorial Typography
   ============================================================ */

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

/* ── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --marine-900: #071B28;
  --marine-800: #0D2B3E;
  --marine-700: #1B4B6B;
  --marine-600: #2A6494;
  --marine-400: #4A8BB5;
  --marine-200: #A8C8E0;
  --marine-100: #E8F2F9;

  --copper-600: #8B5E3C;
  --copper-500: #C4956A;
  --copper-400: #D4A97A;
  --copper-300: #E4C4A0;
  --copper-100: #F5EDE0;

  --white: #FFFFFF;
  --off-white: #F9F5F0;
  --text-light: #F5EDE0;
  --text-muted: #8A9BA8;
  --text-dark: #1A2A35;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(7, 27, 40, 0.12);
  --shadow-md: 0 8px 32px rgba(7, 27, 40, 0.18);
  --shadow-lg: 0 24px 64px rgba(7, 27, 40, 0.28);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── GRAIN TEXTURE OVERLAY ─────────────────────────────── */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── TYPOGRAPHY ───────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
}

.body-lg { font-size: 1.125rem; line-height: 1.7; font-weight: 300; }
.body-md { font-size: 1rem; line-height: 1.7; font-weight: 300; }
.body-sm { font-size: 0.875rem; line-height: 1.6; font-weight: 300; }

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.copper { color: var(--copper-500); }
.copper-italic { color: var(--copper-500); font-style: italic; }
.text-light { color: var(--text-light); }
.text-muted-light { color: rgba(245, 237, 224, 0.6); }

/* ── LAYOUT ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ── NAVIGATION ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(7, 27, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem clamp(1.5rem, 5vw, 5rem);
  box-shadow: var(--shadow-md);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--copper-500); }

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

.nav-links a {
  color: rgba(245, 237, 224, 0.8);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--copper-500);
  color: var(--marine-900) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--copper-400) !important;
  transform: translateY(-1px);
}

.nav-lang {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-btn {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(245, 237, 224, 0.6);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 237, 224, 0.2);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}

.lang-btn.active, .lang-btn:hover {
  color: var(--text-light);
  border-color: var(--copper-500);
  background: rgba(196, 149, 106, 0.15);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: var(--transition);
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--marine-800);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(27, 75, 107, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196, 149, 106, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--marine-900) 0%, var(--marine-800) 40%, var(--marine-700) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 780px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--copper-500);
}

.hero h1 {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-sub {
  color: rgba(245, 237, 224, 0.7);
  max-width: 540px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-trust-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-divider {
  width: 1px;
  height: 2rem;
  background: rgba(245, 237, 224, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item .trust-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--copper-500);
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-copper {
  background: var(--copper-500);
  color: var(--marine-900);
}

.btn-copper:hover {
  background: var(--copper-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 149, 106, 0.3);
}

.btn-outline-light {
  border: 1px solid rgba(245, 237, 224, 0.35);
  color: var(--text-light);
}

.btn-outline-light:hover {
  border-color: var(--copper-500);
  color: var(--copper-400);
  background: rgba(196, 149, 106, 0.08);
}

.btn-outline-dark {
  border: 1px solid var(--marine-700);
  color: var(--marine-800);
}

.btn-outline-dark:hover {
  border-color: var(--copper-500);
  color: var(--copper-600);
  background: rgba(196, 149, 106, 0.06);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ── HOSPITAL TRUST STRIP ─────────────────────────────── */
.hospital-strip {
  background: var(--marine-900);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(196, 149, 106, 0.15);
}

.hospital-strip-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hospital-strip .label {
  color: rgba(245, 237, 224, 0.4);
  margin-right: 0.5rem;
  white-space: nowrap;
}

.hospital-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(245, 237, 224, 0.05);
  border: 1px solid rgba(245, 237, 224, 0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  color: rgba(245, 237, 224, 0.7);
  letter-spacing: 0.03em;
}

.hospital-pill::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper-500);
  opacity: 0.7;
}

/* ── GAP SECTION ──────────────────────────────────────── */
.gap-section {
  background: var(--off-white);
}

.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gap-col {
  padding: 3rem;
}

.gap-col-left {
  background: var(--marine-800);
  color: var(--text-light);
}

.gap-col-right {
  background: var(--marine-700);
  color: var(--text-light);
}

.gap-col-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245, 237, 224, 0.15);
}

.gap-col-header .label {
  color: var(--copper-400);
}

.gap-items { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.gap-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(245, 237, 224, 0.85);
}

.gap-item::before {
  content: '';
  display: block;
  min-width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--copper-500);
  opacity: 0.6;
}

.gap-item.yes::before { opacity: 1; background: #5AAD8A; }
.gap-item.no::before { opacity: 1; background: rgba(196, 149, 106, 0.4); }

/* ── TWO FUTURES ──────────────────────────────────────── */
.futures-section {
  background: var(--marine-900);
  position: relative;
  overflow: hidden;
}

.futures-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(27, 75, 107, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

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

.future-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.future-card-a,
.future-card-b {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(196, 149, 106, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.future-label {
  margin-bottom: 1.5rem;
}

.future-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.future-card-b .future-name { color: var(--copper-400); }

.future-desc { color: rgba(255, 255, 255, 0.88); font-size: 0.95rem; line-height: 1.7; }

.future-details { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin-top: 1.75rem; }

.future-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.future-detail-icon {
  min-width: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 2px;
}

.future-card-a .future-detail-icon {
  background: rgba(245, 237, 224, 0.08);
  color: rgba(245, 237, 224, 0.4);
}

.future-card-b .future-detail-icon {
  background: rgba(196, 149, 106, 0.2);
  color: var(--copper-500);
}

/* ── SERVICES SECTION ─────────────────────────────────── */
.services-section { background: var(--off-white); }

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(27, 75, 107, 0.1);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--copper-500);
}

.service-card.featured {
  background: var(--marine-800);
  border-color: var(--copper-500);
  color: var(--text-light);
}

.service-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--copper-500);
  color: var(--marine-900);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--marine-800);
}

.service-card.featured .service-name { color: var(--text-light); }

.service-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--copper-600);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.service-card.featured .service-price { color: var(--copper-400); }

.service-price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.service-card.featured .service-price-note { color: rgba(245, 237, 224, 0.5); }

.service-divider {
  height: 1px;
  background: rgba(27, 75, 107, 0.1);
  margin-bottom: 1.75rem;
}

.service-card.featured .service-divider { background: rgba(245, 237, 224, 0.15); }

.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.service-card.featured .service-feature { color: rgba(245, 237, 224, 0.85); }

.service-feature::before {
  content: '✓';
  min-width: 18px;
  height: 18px;
  background: rgba(196, 149, 106, 0.15);
  color: var(--copper-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.service-card.featured .service-feature::before {
  background: rgba(196, 149, 106, 0.2);
  color: var(--copper-400);
}

/* ── PROCESS SECTION ──────────────────────────────────── */
.process-section { background: var(--marine-800); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.process-step { position: relative; }

.process-step::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  width: calc(100% - 3rem);
  height: 1px;
  background: rgba(196, 149, 106, 0.25);
}

.process-step:last-child::after { display: none; }

.process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(196, 149, 106, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.process-step-timing {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-500);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.9rem;
  color: rgba(245, 237, 224, 0.6);
  line-height: 1.6;
}

/* ── QUOTE SECTION ────────────────────────────────────── */
.quote-section {
  background: var(--copper-500);
  padding: 5rem 0;
}

.quote-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--marine-900);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.quote-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--marine-800);
  letter-spacing: 0.04em;
}

.quote-role {
  font-size: 0.8rem;
  color: rgba(7, 27, 40, 0.6);
  margin-top: 0.25rem;
}

/* ── CTA SECTION ──────────────────────────────────────── */
.cta-section {
  background: var(--marine-900);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(27, 75, 107, 0.4) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 { margin-bottom: 1.5rem; }
.cta-inner p { margin-bottom: 3rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-meta {
  font-size: 0.8rem;
  color: rgba(245, 237, 224, 0.4);
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--marine-900);
  border-top: 1px solid rgba(245, 237, 224, 0.08);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-light);
}

.footer-logo span { color: var(--copper-500); }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(245, 237, 224, 0.5);
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.footer-links a:hover { color: var(--copper-400); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
}

.footer-contact a {
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.6);
  transition: var(--transition);
}

.footer-contact a:hover { color: var(--copper-400); }

/* ── FLOATING WHATSAPP ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg { width: 20px; height: 20px; fill: currentColor; }

/* ── CHATBOT WIDGET ───────────────────────────────────── */
.chatbot-toggle {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--marine-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid rgba(196, 149, 106, 0.3);
}

.chatbot-toggle:hover {
  background: var(--marine-600);
  transform: scale(1.05);
  border-color: var(--copper-500);
}

.chatbot-toggle svg { width: 22px; height: 22px; fill: var(--copper-400); }

.chatbot-panel {
  position: fixed;
  bottom: 6.5rem;
  left: 2rem;
  width: 360px;
  max-height: 520px;
  background: var(--marine-800);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196, 149, 106, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 90;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.chatbot-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chatbot-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(245, 237, 224, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  background: var(--copper-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--marine-900);
  font-weight: 500;
}

.chatbot-header-text h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.chatbot-header-text p {
  font-size: 0.75rem;
  color: rgba(245, 237, 224, 0.5);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.5;
}

.chat-msg-bot {
  background: rgba(245, 237, 224, 0.07);
  color: rgba(245, 237, 224, 0.9);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg-user {
  background: var(--copper-500);
  color: var(--marine-900);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 0.75rem 1rem;
  background: rgba(245, 237, 224, 0.07);
  border-radius: var(--radius-md);
  border-bottom-left-radius: 4px;
  width: fit-content;
  align-self: flex-start;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  background: rgba(245, 237, 224, 0.5);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chatbot-input-area {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(245, 237, 224, 0.08);
  display: flex;
  gap: 0.5rem;
}

.chatbot-input {
  flex: 1;
  background: rgba(245, 237, 224, 0.06);
  border: 1px solid rgba(245, 237, 224, 0.12);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-light);
  outline: none;
  transition: var(--transition);
}

.chatbot-input::placeholder { color: rgba(245, 237, 224, 0.35); }
.chatbot-input:focus { border-color: var(--copper-500); }

.chatbot-send {
  width: 36px;
  height: 36px;
  background: var(--copper-500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  align-self: center;
}

.chatbot-send:hover { background: var(--copper-400); }
.chatbot-send svg { width: 16px; height: 16px; fill: var(--marine-900); }

/* ── SCROLL ANIMATIONS ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── SECTION HEADER ───────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--copper-500);
}

/* ── ARABIC RTL SUPPORT ───────────────────────────────── */
[lang="ar"], .ar {
  direction: rtl;
  font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--marine-900);
    padding: 6rem 2rem 3rem;
    gap: 2rem;
    z-index: 99;
    align-items: flex-start;
  }
  .nav-links a { font-size: 1.25rem; }
  .nav-toggle { display: flex; z-index: 100; }

  .gap-grid { grid-template-columns: 1fr; }
  .futures-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-contact { text-align: center; }

  .chatbot-panel { left: 1rem; right: 1rem; width: auto; }
  .whatsapp-float { right: 1rem; bottom: 1rem; }
  .chatbot-toggle { left: 1rem; bottom: 5.5rem; }

  .hero-trust-inner { gap: 1rem; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
}
