/* ============================================================
   GODMANSJURISTEN — Shared Stylesheet
   Version: 3.0 | Mobile-first | WCAG AA | RTL-ready
   Design: Inspired by Mannheimer Swartling — serif elegance,
           petrol + cream palette, clean grotesque UI type
   ============================================================ */

/* --- RESET & BASE ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
[dir="rtl"] { font-family: var(--font-rtl), var(--font-body); }

/* --- DESIGN TOKENS ----------------------------------------- */
:root {
  /* Brand colors — Mannheimer Swartling inspired */
  --petrol:      #0F2C3F;     /* deep petrol/teal — hero bg */
  --petrol2:     #1A3D56;     /* slightly lighter petrol */
  --petrol-dark: #091E2C;     /* darkest shade */
  --cream:       #EEE7DD;     /* warm cream — section bg */
  --cream2:      #F5F0E8;     /* lighter cream */
  --sand:        #C8A96A;     /* warm sand/gold accent */
  --sand2:       #B8924C;     /* deeper sand */
  --green:       #1A6B47;     /* confirmation green */
  --green-bg:    #EDFAF3;
  --red:         #C0392B;
  --red-bg:      #FEF2F2;
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;     /* subtle warm white */
  --text:        #1A1A1A;     /* near-black */
  --text2:       #3D3D3D;
  --text3:       #757575;
  --text4:       #9E9E9E;
  --border:      #E0DAD2;     /* warm border */
  --border-light:#F0EBE3;
  --wa:          #25D366;
  --wa2:         #128C7E;

  /* Typography */
  --font-head:   'Cormorant Garamond', 'Georgia', serif;
  --font-ui:     'Inter', 'Helvetica Neue', 'Segoe UI', sans-serif;
  --font-body:   'DM Sans', 'Inter', 'Segoe UI', sans-serif;
  --font-rtl:    'Noto Naskh Arabic', 'Vazirmatn', 'Tahoma', sans-serif;

  /* Spacing */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;
  --sp-3xl: 128px;

  /* Radii */
  --r-xs:  4px;
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  20px;
  --r-xl:  50px;   /* pill */

  /* Shadows — very subtle, elegant */
  --sh-sm: 0 1px 8px rgba(15,44,63,.05);
  --sh:    0 2px 20px rgba(15,44,63,.08);
  --sh-md: 0 4px 32px rgba(15,44,63,.10);
  --sh-lg: 0 8px 48px rgba(15,44,63,.14);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --tr:   all 0.25s var(--ease);
}

/* --- LAYOUT HELPERS ---------------------------------------- */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 780px;  margin: 0 auto; padding: 0 32px; }
.section      { padding: var(--sp-3xl) 0; }
.section-md   { padding: var(--sp-2xl) 0; }
.section-sm   { padding: var(--sp-xl)  0; }
.tc           { text-align: center; }
[dir="rtl"] .tc { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }

/* --- TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
}
[dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3 {
  font-family: var(--font-rtl), var(--font-head);
  font-weight: 400;
}

.display { font-size: clamp(2.6rem, 6vw, 5rem);   font-weight: 400; color: var(--white); letter-spacing: -0.02em; line-height: 1.05; font-style: italic; }
.h1      { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 400; color: var(--petrol); letter-spacing: -0.02em; line-height: 1.1; }
.h2      { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--petrol); letter-spacing: -0.01em; }
.h3      { font-size: clamp(1.3rem, 2vw, 1.7rem);   font-weight: 500; color: var(--petrol); }
.h4      { font-size: clamp(1.1rem, 1.5vw, 1.2rem); font-weight: 600; font-family: var(--font-ui); }
.lead    { font-size: clamp(1.0rem, 1.5vw, 1.15rem); color: var(--text2); line-height: 1.8; }
.small   { font-size: 0.875rem; color: var(--text3); }
.xs      { font-size: 0.78rem;  color: var(--text3); }

.text-white  { color: var(--white) !important; }
.text-white2 { color: rgba(255,255,255,0.78); }
.text-white3 { color: rgba(255,255,255,0.55); }
.text-sand   { color: var(--sand); }
.text-petrol { color: var(--petrol); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }

/* --- BADGE / PILL ----------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  border-radius: var(--r-xl);
  font-family: var(--font-ui);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(200,169,106,.15);
  color: var(--sand2);
  border: 1px solid rgba(200,169,106,.3);
}
.badge-white {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.25);
}
.badge-cream {
  background: var(--cream);
  color: var(--petrol);
  border-color: var(--border);
}

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-xl);
  font-family: var(--font-ui);
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--tr);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
/* Primary — filled petrol */
.btn-primary {
  background: var(--petrol);
  color: var(--white);
  border-color: var(--petrol);
}
.btn-primary:hover {
  background: var(--petrol2);
  border-color: var(--petrol2);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}
/* Outline — border only */
.btn-outline {
  background: transparent;
  color: var(--petrol);
  border-color: var(--petrol);
}
.btn-outline:hover {
  background: var(--petrol);
  color: var(--white);
  transform: translateY(-1px);
}
/* White outline (on dark bg) */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
/* Sand/accent */
.btn-sand {
  background: var(--sand);
  color: var(--white);
  border-color: var(--sand);
}
.btn-sand:hover {
  background: var(--sand2);
  border-color: var(--sand2);
  transform: translateY(-1px);
}
/* WhatsApp */
.btn-wa {
  background: var(--wa);
  color: var(--white);
  border-color: var(--wa);
}
.btn-wa:hover { background: var(--wa2); border-color: var(--wa2); transform: translateY(-1px); }

/* --- NAVIGATION ------------------------------------------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 40px;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-nav.scrolled {
  background: rgba(9, 30, 44, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--white);
}
.nav-logo span { font-style: italic; font-weight: 400; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.82rem; font-weight: 400;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
/* Language switcher */
.lang-wrap { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: none; border: none; cursor: pointer;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--white); }
.lang-drop {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--petrol-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  min-width: 120px;
  overflow: hidden;
}
.lang-drop.open { display: block; }
.lang-drop a {
  display: block; padding: 10px 16px;
  font-family: var(--font-ui); font-size: 0.82rem;
  color: rgba(255,255,255,.8);
  transition: background 0.15s;
}
.lang-drop a:hover { background: rgba(255,255,255,.07); color: var(--white); }
/* Mobile hamburger */
.ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.ham span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--tr); }
/* Mobile nav overlay */
.mob-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--petrol-dark);
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: var(--font-head); font-size: 2rem; font-weight: 400; font-style: italic;
  color: var(--white); text-align: center;
}
.mob-nav .mob-cta { margin-top: 16px; }

/* --- SKIP LINK -------------------------------------------- */
.skip-link {
  position: absolute; top: -50px; left: 16px;
  background: var(--petrol); color: var(--white);
  padding: 8px 16px; border-radius: var(--r-sm); font-size: 0.85rem;
  transition: top 0.2s;
  z-index: 9999;
}
.skip-link:focus { top: 16px; }

/* --- HERO ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  background: var(--petrol);
  overflow: hidden;
  padding-bottom: var(--sp-2xl);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--petrol-dark) 0%, var(--petrol) 50%, var(--petrol2) 100%);
  opacity: 0.92;
}
/* Subtle pattern layer */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 40%, rgba(200,169,106,.08) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(255,255,255,.04) 0%, transparent 50%);
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  padding-top: 160px;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(1.0rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; margin-bottom: 56px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,.7);
}
.hero-trust-item::before {
  content: '';
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23C8A96A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
/* Hero side form card */
.hero-form-card {
  display: none; /* shown on large screens via media query */
}

/* --- TRUST STRIP ------------------------------------------ */
.trust-strip {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 500;
  color: var(--petrol);
}
.trust-icon { font-size: 1.1rem; }

/* --- PROBLEM SECTION -------------------------------------- */
.problem-section { background: var(--white); }
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px;
}
.compare-col { padding: 40px; border-radius: var(--r); }
.compare-col.without {
  background: var(--off-white);
  border: 1px solid var(--border-light);
}
.compare-col.with {
  background: var(--petrol);
  color: var(--white);
}
.compare-col h3 {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.compare-col.without h3 { color: var(--text3); }
.compare-col.with h3 { color: var(--sand); }
.compare-list { display: flex; flex-direction: column; gap: 14px; }
.compare-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; line-height: 1.55;
}
.compare-list li .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.compare-col.with .compare-list li { color: rgba(255,255,255,.88); }

/* --- SERVICES / CASE SELECTOR ----------------------------- */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 48px;
}
.case-card {
  background: var(--white);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer;
  transition: var(--tr);
  border: none;
}
.case-card:hover {
  background: var(--petrol);
}
.case-card:hover .case-title,
.case-card:hover .case-desc,
.case-card:hover .case-price { color: rgba(255,255,255,.9); }
.case-card:hover .case-icon { color: var(--sand); }
.case-icon {
  font-size: 1.5rem; color: var(--sand2);
  transition: color 0.25s;
}
.case-title {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 500;
  color: var(--petrol);
  transition: color 0.25s;
}
.case-desc {
  font-size: 0.88rem; line-height: 1.6;
  color: var(--text3); flex: 1;
  transition: color 0.25s;
}
.case-price {
  font-family: var(--font-ui); font-size: 0.8rem; font-weight: 600;
  color: var(--sand2); letter-spacing: 0.02em;
  transition: color 0.25s;
}

/* --- PRICING -------------------------------------------- */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px;
}
.price-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: var(--tr);
  background: var(--white);
}
.price-card:hover {
  border-color: var(--petrol);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.price-card.featured {
  background: var(--petrol);
  border-color: var(--petrol);
  color: var(--white);
}
.price-card-label {
  font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text3);
}
.price-card.featured .price-card-label { color: var(--sand); }
.price-card h3 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 400;
}
.price-card.featured h3 { color: var(--white); }
.price-amount {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 500;
  line-height: 1; letter-spacing: -0.03em; color: var(--petrol);
}
.price-card.featured .price-amount { color: var(--sand); }
.price-unit { font-family: var(--font-ui); font-size: 0.85rem; color: var(--text3); margin-top: 4px; }
.price-card.featured .price-unit { color: rgba(255,255,255,.6); }
.price-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; line-height: 1.5;
}
.price-features li::before { content: '–'; color: var(--sand); font-weight: 700; flex-shrink: 0; }
.price-card.featured .price-features li { color: rgba(255,255,255,.85); }
.price-card.featured .price-features li::before { color: var(--sand); }
.price-badge {
  display: inline-block; padding: 4px 12px;
  background: rgba(200,169,106,.2); color: var(--sand);
  border-radius: var(--r-xl); font-family: var(--font-ui);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
}

/* --- HOW IT WORKS ----------------------------------------- */
.process-section { background: var(--cream); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
  margin-top: 56px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 28px; left: 12%; right: 12%;
  height: 1px; background: var(--border);
}
.step {
  display: flex; flex-direction: column; gap: 16px;
  text-align: center; align-items: center;
  position: relative;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 500;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--petrol); z-index: 1;
}
.step-title {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 500;
  color: var(--petrol);
}
.step-desc { font-size: 0.88rem; color: var(--text3); line-height: 1.6; }

/* --- TESTIMONIALS ----------------------------------------- */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-stars { color: var(--sand); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 400; font-style: italic;
  line-height: 1.65; color: var(--petrol); flex: 1;
}
.testimonial-author { font-family: var(--font-ui); font-size: 0.82rem; color: var(--text3); }
.testimonial-author strong { color: var(--petrol); font-weight: 600; display: block; margin-bottom: 2px; }

/* --- WHY US ----------------------------------------------- */
.whyus-section { background: var(--petrol); }
.whyus-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r); overflow: hidden;
  margin-top: 48px;
}
.why-item {
  background: var(--petrol);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.25s;
}
.why-item:hover { background: var(--petrol2); }
.why-icon { font-size: 1.6rem; }
.why-title {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 500;
  color: var(--white);
}
.why-desc { font-size: 0.9rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* --- FAQ ------------------------------------------------- */
.faq-section { background: var(--white); }
.faq-list { margin-top: 48px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; gap: 16px;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 500;
  color: var(--petrol); line-height: 1.35;
  transition: color 0.2s;
}
[dir="rtl"] .faq-q { text-align: right; flex-direction: row-reverse; }
.faq-q:hover { color: var(--sand2); }
.faq-q .faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--petrol); flex-shrink: 0;
  transition: var(--tr);
}
.faq-item.open .faq-q .faq-icon {
  background: var(--petrol); color: var(--white); border-color: var(--petrol);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 0 24px; }
.faq-a p {
  font-size: 0.95rem; line-height: 1.75; color: var(--text2);
  max-width: 780px;
}

/* --- LANGUAGE SECTION ------------------------------------- */
.lang-section { background: var(--cream); }
.lang-cards {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  background: var(--border);
  border-radius: var(--r); overflow: hidden;
  margin-top: 48px;
}
.lang-card {
  background: var(--white);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.lang-card-flag { font-size: 1.8rem; }
.lang-card-name {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 500; font-style: italic;
  color: var(--petrol);
}
.lang-card-desc { font-size: 0.85rem; color: var(--text3); line-height: 1.6; }
.lang-card-link {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600;
  color: var(--sand2); letter-spacing: 0.04em;
}
.lang-card-link:hover { color: var(--petrol); }
[dir="rtl"] .lang-card-link { flex-direction: row-reverse; }

/* --- CONTACT SECTION -------------------------------------- */
.contact-section { background: var(--petrol); }
.contact-section .h2 { color: var(--white); }
.contact-section .lead { color: rgba(255,255,255,.72); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; margin-top: 56px;
}
.contact-methods { display: flex; flex-direction: column; gap: 32px; }
.contact-method {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  transition: background 0.25s;
}
.contact-method:hover { background: rgba(255,255,255,.1); }
.contact-method-icon {
  font-size: 1.4rem; flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(200,169,106,.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-method-title {
  font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 6px;
}
.contact-method-val {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 500;
  color: var(--white);
}
.contact-method-sub { font-size: 0.82rem; color: rgba(255,255,255,.55); margin-top: 4px; }
/* Contact form */
.form-box { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font-ui); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.35); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--sand);
}
.form-select { color: var(--white); }
.form-select option { background: var(--petrol-dark); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,.45); }
.form-note a { color: var(--sand); }

/* --- SEO TEXT SECTION ------------------------------------- */
.seo-section { background: var(--off-white); }
.seo-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.seo-col h3 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 500;
  color: var(--petrol); margin-bottom: 14px;
}
.seo-col p { font-size: 0.88rem; color: var(--text3); line-height: 1.75; }

/* --- CTA BANNER ------------------------------------------- */
.cta-banner {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 48px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h3 { font-family: var(--font-head); font-size: 1.6rem; color: var(--petrol); }
.cta-banner p  { font-size: 0.9rem; color: var(--text3); margin-top: 6px; }
.cta-banner-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* --- SERVICE PAGE ----------------------------------------- */
.svc-hero {
  background: var(--petrol);
  padding: calc(72px + var(--sp-xl)) 0 var(--sp-xl);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-ui); font-size: 0.78rem;
  color: rgba(255,255,255,.55); margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .4; }
.svc-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 64px;
  align-items: start;
}
.svc-main { padding: var(--sp-2xl) 0; }
.svc-main h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--petrol); margin: 40px 0 16px; }
.svc-main p  { font-size: 0.95rem; color: var(--text2); line-height: 1.8; margin-bottom: 16px; }
.svc-main ul { margin: 16px 0; }
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--text2); line-height: 1.55;
}
.checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.warn-box {
  background: #FEF3CD; border-left: 3px solid #F59E0B;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 20px 24px; margin: 24px 0;
}
.warn-box h4 { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 700; color: #92400E; margin-bottom: 12px; }
.warn-box li { font-size: 0.9rem; color: #78350F; margin-bottom: 8px; padding-left: 16px; position: relative; }
.warn-box li::before { content: '!'; position: absolute; left: 0; font-weight: 700; }
/* Sidebar */
.svc-sidebar { position: sticky; top: 92px; }
.sidebar-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 28px 24px; margin-bottom: 16px;
}
.sidebar-card h4 {
  font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 16px;
}
.sidebar-price {
  font-family: var(--font-head); font-size: 2rem; font-weight: 500;
  color: var(--petrol); margin-bottom: 4px;
}
.sidebar-price-note { font-size: 0.82rem; color: var(--text3); }
.related-list { display: flex; flex-direction: column; gap: 8px; }
.related-list a {
  font-family: var(--font-ui); font-size: 0.88rem; color: var(--petrol);
  display: flex; align-items: center; gap: 8px; padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.related-list a:hover { color: var(--sand2); }

/* --- FLOATING WHATSAPP BUTTON ----------------------------- */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--wa);
  color: var(--white);
  border-radius: var(--r-xl);
  font-family: var(--font-ui); font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: var(--tr);
  text-decoration: none;
}
.wa-fab:hover {
  background: var(--wa2); transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(37,211,102,.45);
}
.wa-fab-icon { font-size: 1.2rem; }
[dir="rtl"] .wa-fab { right: auto; left: 28px; }

/* --- COOKIE BANNER ---------------------------------------- */
#cookie-banner {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--petrol-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 32px;
  align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
#cookie-banner p {
  font-family: var(--font-ui); font-size: 0.82rem; color: rgba(255,255,255,.7);
}
#cookie-banner a { color: var(--sand); text-decoration: underline; }
#cookie-accept {
  padding: 9px 22px; border-radius: var(--r-xl);
  background: var(--sand); color: var(--white);
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600;
  border: none; cursor: pointer; transition: var(--tr); flex-shrink: 0;
}
#cookie-accept:hover { background: var(--sand2); }

/* --- FOOTER ---------------------------------------------- */
.site-footer {
  background: var(--petrol-dark);
  padding: var(--sp-2xl) 0 var(--sp-lg);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 500; font-style: italic;
  color: var(--white); margin-bottom: 14px; display: block;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,.65);
  margin-bottom: 10px; line-height: 1.5; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-offices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.footer-office { font-size: 0.8rem; color: rgba(255,255,255,.5); line-height: 1.5; }
.footer-office strong { color: rgba(255,255,255,.75); font-weight: 600; display: block; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: var(--sp-lg);
}
.footer-bottom p { font-family: var(--font-ui); font-size: 0.78rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-family: var(--font-ui); font-size: 0.78rem; color: rgba(255,255,255,.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }
[dir="rtl"] .footer-grid { direction: rtl; }

/* --- SCROLL REVEAL ---------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* --- DIVIDER --------------------------------------------- */
.divider {
  width: 48px; height: 1px; background: var(--sand);
  margin: 20px 0;
}
.divider-center { margin: 20px auto; }

/* --- UTILITY --------------------------------------------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .lang-cards { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .compare-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .seo-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --sp-3xl: 80px;
    --sp-2xl: 60px;
    --sp-xl:  44px;
  }
  .container { padding: 0 20px; }
  .site-nav { padding: 0 20px; height: 64px; background: var(--petrol-dark); }
  .nav-links { display: none; }
  .ham { display: flex; }
  .lang-wrap { display: none; }
  .hero { min-height: 90vh; padding-bottom: var(--sp-xl); }
  .hero-inner { padding: 0 20px; padding-top: 100px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 12px 20px; }
  .trust-items { justify-content: center; gap: 10px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .lang-cards { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .seo-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-offices { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .cta-banner-btns { width: 100%; }
  .wa-fab-text { display: none; }
  .wa-fab { padding: 14px; border-radius: 50%; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-form-card { display: none !important; }
  [dir="rtl"] .wa-fab { right: auto; left: 28px; }
  .pricing-grid { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .compare-col { padding: 28px 20px; }
  .price-card { padding: 28px 24px; }
}
