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

:root {
  --navy:       #0A1F44;
  --navy-light: #122756;
  --navy-dark:  #060E1E;
  --red:        #C8102E;
  --red-hover:  #a50d25;
  --gold:       #B8962E;
  --gold-light: #D4AE3A;
  --white:      #FFFFFF;
  --off-white:  #F7F8FC;
  --grey-light: #EEF0F5;
  --grey:       #8A93A6;
  --text-dark:  #1A1A2E;
  --text-body:  #3D4560;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(10,31,68,0.08);
  --shadow-md: 0 6px 24px rgba(10,31,68,0.12);
  --shadow-lg: 0 16px 48px rgba(10,31,68,0.18);

  --radius:    8px;
  --radius-lg: 16px;
  --trans:     0.3s ease;
}

*, *::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-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title span { color: var(--red); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 27px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: all var(--trans);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: all var(--trans);
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,16,46,0.35); }

.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 2px solid var(--gold);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 28px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.82);
  transition: color var(--trans);
}
.topbar-item:hover { color: var(--gold); }
.topbar-item svg { color: var(--gold); flex-shrink: 0; }
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--white);
}
.topbar-phone svg { color: var(--gold); }

/* Language switcher */
.header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,31,68,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--trans);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(10,31,68,0.18); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  height: 56px;
  width: auto;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--trans);
  position: relative;
  letter-spacing: 0.02em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px);
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: transform var(--trans);
}
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-cta { margin-left: 12px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--grey-light);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 16px;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: all var(--trans);
}
.mobile-nav-link:hover { background: var(--off-white); border-left-color: var(--red); color: var(--red); }
.mobile-nav-cta { margin-top: 12px; }

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-image-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 1;
  filter: none;
}

.hero-bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(6, 14, 30, 0.97) 0%,
    rgba(10, 31, 68, 0.92) 35%,
    rgba(10, 31, 68, 0.55) 60%,
    rgba(10, 31, 68, 0.10) 100%
  );
}
.hero-img-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  border: 2px dashed rgba(255,255,255,0.2);
  padding: 40px 60px;
  border-radius: var(--radius);
  pointer-events: none;
}
/* Gold decorative lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 580px; }
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  max-width: 610px;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: normal;
  color: var(--white);
  margin-bottom: 24px;
  white-space: nowrap;
}
.hero h1 .accent { color: var(--red); font-style: italic; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-primary { background: var(--red); }
.hero-actions .btn-primary:hover { background: var(--red-hover); }
.hero-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.5); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }

/* Hero right — image card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-card .placeholder-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 30px;
}
.placeholder-box svg { width: 48px; height: 48px; opacity: 0.4; }
.placeholder-box span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: var(--radius);
}
/* gold badge */
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(184,150,46,0.4);
}

.trust-strip {
  background: var(--navy);
  padding: 28px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.trust-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.trust-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.services {
  padding: 100px 0;
  background: var(--off-white);
}
.services-head {
  text-align: center;
  margin-bottom: 60px;
}
.services-head .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--grey-light);
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,16,46,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--red);
  transition: all var(--trans);
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--trans);
}
.service-card:hover .service-link { gap: 10px; }

.stats {
  background: var(--navy);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: var(--font-head);
  font-size: 300px;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  color: var(--gold);
  margin-bottom: 12px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--grey);
  text-align: center;
  padding: 40px;
}
.about-img-placeholder svg { width: 52px; height: 52px; opacity: 0.4; }
.about-img-placeholder span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px dashed var(--grey-light);
  padding: 10px 20px;
  border-radius: var(--radius);
}
/* floating card */
.about-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
  border-left: 4px solid var(--gold);
}
.float-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.float-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.float-text span {
  font-size: 0.78rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* gold accent top-left */
.about-gold-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: 4px 0 0 0;
  pointer-events: none;
}

.about-content { }
.about-content .section-title { margin-bottom: 10px; }
.about-tagline {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--red);
  margin-bottom: 22px;
}
.about-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.about-feature svg { color: var(--red); flex-shrink: 0; }

.why-us {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--grey-light);
}
.why-us-head { text-align: center; margin-bottom: 50px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--grey-light);
  transition: all var(--trans);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  transition: all var(--trans);
}
.why-card:hover .why-icon { background: var(--red); color: var(--white); }
.why-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.reviews {
  padding: 100px 0;
  background: var(--white);
}
.reviews-head { text-align: center; margin-bottom: 60px; }
.reviews-head .section-subtitle { margin: 0 auto; }

/* Google rating summary */
.google-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  border: 1px solid var(--grey-light);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.google-logo { display: flex; align-items: center; gap: 6px; font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.rating-score { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--navy); }
.stars { display: flex; gap: 3px; color: #F5A623; }
.rating-count { font-size: 0.82rem; color: var(--grey); }

/* Slider */
.reviews-slider-wrap { position: relative; }
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-3px); }
.review-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--red);
  opacity: 0.12;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}
.review-stars { display: flex; gap: 4px; color: #F5A623; margin-bottom: 14px; }
.review-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--grey-light);
  padding-top: 16px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-meta strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.review-meta span { font-size: 0.76rem; color: var(--grey); }
.google-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--grey);
}

/* Show more button area */
.reviews-cta {
  text-align: center;
  margin-top: 48px;
}
.reviews-page2 { display: none; }
.reviews-page2.visible { display: grid; }
#load-more-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  padding: 13px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
  font-family: var(--font-body);
}
#load-more-reviews:hover { background: var(--navy); color: var(--white); }

.certs {
  background: var(--off-white);
  padding: 50px 0;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}
.certs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.65;
  transition: opacity var(--trans);
  cursor: default;
}
.cert-item:hover { opacity: 1; }

@media (max-width: 768px) {
  .cert-item {
    opacity: 1;
  }
}
.cert-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px;
}
.cert-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
}

.languages {
  padding: 80px 0;
  background: var(--white);
}
.languages-head { text-align: center; margin-bottom: 48px; }
.lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.lang-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 30px;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--trans);
}
.lang-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.lang-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(200,16,46,0.08) 100%);
  pointer-events: none;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
}
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 16px;
  border-radius: 2px;
}

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.footer-logo-sub { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.footer-desc { font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--trans);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--trans);
}
.footer-links a::before { content: '›'; color: var(--red); font-size: 1.1rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.footer-contact-item svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--white); }
.footer-hours { }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--white); font-weight: 600; }
.hours-row .time { color: var(--gold); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--trans);
}
.footer-bottom-links a:hover { color: var(--white); }

#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200,16,46,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans);
  z-index: 999;
  border: none;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

[dir="rtl"] .hero::before { left: auto; right: 0; background: linear-gradient(to bottom, var(--gold), transparent); }
[dir="rtl"] .about-float-card { left: -24px; right: auto; border-left: none; border-right: 4px solid var(--gold); }
[dir="rtl"] .about-gold-accent { left: auto; right: -16px; border-left: none; border-right: 4px solid var(--gold); border-top: 4px solid var(--gold); border-radius: 0 4px 0 0; }
[dir="rtl"] .footer-links a { flex-direction: row-reverse; }
[dir="rtl"] .footer-links a:hover { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .footer-links a::before { content: '‹'; }
[dir="rtl"] .nav-link::after { transform-origin: center; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 3.05rem); line-height: 1.1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-float-card { right: 0; bottom: -16px; }
  .reviews-slider { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-slider { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.1rem, 10vw, 3.05rem); line-height: 1.1; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-item:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .certs-inner { gap: 30px; }
  .lang-grid { gap: 8px; }
  .about-float-card { position: static; margin-top: 16px; }
  .about-gold-accent { display: none; }
}

/* SEO / Authority Hero Trust List */
.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: -14px 0 32px;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-trust-list li {
  position: relative;
  padding-left: 24px;
}

.hero-trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 640px) {
  .hero-trust-list {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq {
  padding: 90px 0;
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

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

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.call-float {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 90px; /* keeps it above back-to-top button */
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;

  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
}

.whatsapp-float img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .call-float {
    position: fixed;
    right: 16px;
    bottom: 146px;
    z-index: 999;

    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    background: var(--red);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(200,16,46,0.35);

    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  }

  .call-float:hover {
    background: var(--navy);
    box-shadow: 0 8px 24px rgba(10,31,68,0.28);
    transform: translateY(-3px) scale(1.05);
  }

  .call-float svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 82px;
  }

  .whatsapp-float img {
    width: 52px;
    height: 52px;
  }
}

html { scroll-padding-top: 92px; }
body.nav-open { overflow: hidden; }
.mobile-app-nav { display: none; }

@media (min-width: 769px) and (max-width: 1180px) {
  .container { width: min(100% - 48px, 1040px); }
  .header-inner { padding: 10px 24px; }
  .logo img { height: 52px; max-width: 190px; object-fit: contain; }
  .nav { gap: 2px; }
  .nav-link { font-size: 0.82rem; padding: 8px 9px; }
  .nav-cta { margin-left: 6px; padding: 12px 16px; font-size: 0.78rem; }
  .hero { min-height: 680px; }
  .hero-inner { min-height: 680px; align-items: center; }
  .hero-content { max-width: 640px; }
  .hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.1; max-width: 610px; letter-spacing: normal; }
  .hero-desc { font-size: 1.04rem; max-width: 620px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .why-grid, .lang-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-slider { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-banner-inner { gap: 28px; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 86px; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); background: var(--off-white); }
  .container { width: min(100% - 32px, 560px); }

  .topbar { padding: 8px 0; border-bottom-width: 1px; }
  .topbar-inner { justify-content: center; }
  .topbar-right { width: 100%; justify-content: space-between; gap: 10px; }
  .topbar-phone { font-size: 0.86rem; }
  
.header { top: 0; border-bottom: 1px solid rgba(10,31,68,0.08); }
  .header-inner { min-height: 70px; padding: 10px 16px; }
  .logo img { height: 50px; max-width: 182px; object-fit: contain; }
  .hamburger { width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid rgba(10,31,68,0.12); border-radius: 14px; background: var(--white); box-shadow: 0 8px 22px rgba(10,31,68,0.10); }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(88vw, 390px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: calc(22px + env(safe-area-inset-top)) 18px calc(98px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.98);
    border-left: 1px solid rgba(10,31,68,0.10);
    border-top: 0;
    box-shadow: -22px 0 55px rgba(6,14,30,0.20);
    transform: translateX(105%);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 1100;
    transition: transform 0.32s ease, opacity 0.32s ease;
  }
  .mobile-nav.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .mobile-nav-head { padding: 6px 4px 14px; border-bottom: 1px solid var(--grey-light); margin-bottom: 4px; }
  .mobile-nav-head span { display: block; font-family: var(--font-head); font-size: 1.45rem; color: var(--navy); font-weight: 700; }
  .mobile-nav-head small { display: block; margin-top: 3px; color: var(--text-body); font-size: 0.82rem; }
  .mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 13px 14px;
  border: none;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(10,31,68,0.06);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background: #fff7f8;
  color: var(--red);
}
  .mobile-nav-group { margin: 0; }
  .mobile-nav-summary { cursor: pointer; list-style: none; }
  .mobile-nav-summary::-webkit-details-marker { display: none; }
  .mobile-nav-summary::after { content: '+'; font-size: 1.2rem; color: var(--red); }
  .mobile-nav-group[open] .mobile-nav-summary::after { content: '–'; }
  .mobile-subnav { display: grid; gap: 8px; margin: 8px 0 4px 14px; padding-left: 12px; border-left: 1px solid var(--grey-light); }
  .mobile-subnav .mobile-nav-link { min-height: 42px; font-size: 0.88rem; box-shadow: none; background: var(--off-white); }
  .mobile-nav-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
  .mobile-action-btn { width: 100%; justify-content: center; padding: 13px 12px; font-size: 0.78rem; }

  .mobile-app-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 1050;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 9px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(10,31,68,0.12);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(6,14,30,0.18);
    backdrop-filter: blur(14px);
  }
  .mobile-app-nav-link { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; min-height: 54px; border-radius: 18px; color: var(--text-body); font-size: 0.72rem; font-weight: 700; }
  .mobile-app-nav-link svg { color: currentColor; }
  .mobile-app-nav-link.active { background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(10,31,68,0.20); }

  .hero { min-height: auto; padding: 72px 0 52px; align-items: flex-end; border-radius: 0; }
  .hero-bg { background: linear-gradient(180deg, rgba(6,14,30,0.30) 0%, rgba(10,31,68,0.82) 48%, rgba(10,31,68,0.94) 100%); }
  .hero-image-placeholder img { object-position: 62% center; opacity: 0.32; }
  .hero-image-placeholder::after { background: linear-gradient(180deg, rgba(6,14,30,0.32) 0%, rgba(10,31,68,0.82) 48%, rgba(10,31,68,0.94) 100%); }
  .hero-inner { min-height: auto; display: block; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 3.05rem); line-height: 1.1; margin-bottom: 18px; letter-spacing: normal; max-width: 100%; }
  .hero-desc { font-size: 1rem; line-height: 1.72; margin-bottom: 24px; max-width: 100%; }
  .hero-trust-list { margin: 0 0 26px; gap: 10px; font-size: 0.92rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { justify-content: center; width: 100%; padding: 14px 12px; font-size: 0.78rem; }

  section, .services, .stats, .about, .why-us, .languages, .reviews, .certs, .faq, .cta-banner { padding-top: 58px; padding-bottom: 58px; }
  .section-label { margin-bottom: 12px; }
  .section-title { font-size: clamp(1.8rem, 7.4vw, 2.45rem); line-height: 1.12; margin-bottom: 14px; }
  .section-subtitle { font-size: 0.98rem; line-height: 1.7; }

  .trust-strip { margin-top: 0; padding: 18px 0; background: var(--navy-dark); }
  .trust-strip-inner {
  overflow-x: auto;
  display: flex;
  gap: 12px;
  padding: 4px 0 8px;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trust-strip-inner::-webkit-scrollbar {
  display: none;
}
  .trust-item { min-width: 236px; border: 1px solid rgba(255,255,255,0.10); border-radius: 18px; padding: 18px; scroll-snap-align: start; background: rgba(255,255,255,0.04); }

.trust-arrow {
  display: none;
}

@media (max-width: 768px) {

  .trust-strip .container {
    position: relative;
  }

  .trust-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: rgba(10,31,68,0.92);
    color: #fff;

    font-size: 18px;
    font-weight: 700;

    z-index: 20;
    cursor: pointer;

    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  }

  .trust-prev {
    left: -4px;
  }

  .trust-next {
    right: -4px;
  }
}

  .service-card, .review-card, .why-card, .faq-item { border-radius: 22px; padding: 24px; box-shadow: 0 12px 32px rgba(10,31,68,0.08); }
  .services-grid, .why-grid, .reviews-slider, .faq-grid { gap: 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item { border: 1px solid rgba(255,255,255,0.10); border-radius: 20px; padding: 22px 14px; background: rgba(255,255,255,0.04); }
  .stat-num { font-size: 2rem; }

  .about-grid { gap: 30px; }
  .about-img-main { border-radius: 24px; min-height: 320px; }
  .about-float-card { position: static; margin-top: 14px; border-radius: 18px; }
  .about-features { grid-template-columns: 1fr; gap: 12px; }
  .lang-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .lang-item { min-height: 52px; border-radius: 16px; }

  .cta-banner { border-radius: 28px 28px 0 0; }
  .cta-banner-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .cta-banner-actions a { justify-content: center; }
  .footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  #back-to-top { right: 18px; bottom: calc(92px + env(safe-area-inset-bottom)); }
    .whatsapp-float { right: 18px; bottom: calc(154px + env(safe-area-inset-bottom)); }
  .call-float { right: 18px; bottom: calc(218px + env(safe-area-inset-bottom)); }
}

@media (max-width: 420px) {
  .container { width: min(100% - 24px, 560px); }
  .logo img { height: 46px; max-width: 164px; }
  .hero { padding-top: 58px; }
  .hero-actions { grid-template-columns: 1fr; }
  .mobile-nav-actions { grid-template-columns: 1fr; }
  .stats-grid, .lang-grid { grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
  main,
  section,
  .hero,
  .cta-banner {
    overflow-x: clip;
  }

  .hero h1,
  .section-title,
  .cta-banner h2 {
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

 .hero::after {
  content: '';
  position: absolute;
  inset: auto -28% -34% auto;
  width: 72vw;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184,150,46,0.26), rgba(200,16,46,0.10) 42%, transparent 68%);
  filter: blur(2px);
  opacity: .72;
  z-index: 1;
  pointer-events: none;
  animation: mobileGoldDrift 8s ease-in-out infinite alternate;
}

  .hero-content {
    position: relative;
    z-index: 3;
    animation: mobileHeroSettle .72s cubic-bezier(.2,.7,.2,1) both;
  }

  .hero-trust-list li,
  .section-subtitle,
  .review-text,
  .faq-item p,
  .about-feature span {
    overflow-wrap: break-word;
  }

  .btn-primary,
  .btn-red,
  .btn-outline {
    min-height: 48px;
    touch-action: manipulation;
  }

  .service-card,
  .why-card,
  .review-card,
  .faq-item,
  .stat-item,
  .lang-tag,
  .cert-item,
  .trust-item {
    position: relative;
    isolation: isolate;
  }

  .service-card,
  .why-card,
  .review-card,
  .faq-item,
  .stat-item {
    overflow: hidden;
  }

  .service-card::after,
  .why-card::after,
  .review-card::after,
  .faq-item::after,
  .stat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(135deg, rgba(184,150,46,.13), transparent 34%),
      radial-gradient(circle at 95% 8%, rgba(200,16,46,.12), transparent 30%);
    opacity: .72;
    pointer-events: none;
  }

  .service-card > *,
  .why-card > *,
  .review-card > *,
  .faq-item > *,
  .stat-item > * {
    position: relative;
    z-index: 1;
  }

  .service-card:active,
  .why-card:active,
  .review-card:active,
  .faq-item:active,
  .lang-tag:active,
  .hero-actions a:active,
  .cta-banner-actions a:active {
    transform: translateY(-2px) scale(.992);
  }

  .service-icon,
  .why-icon,
  .stat-icon,
  .cert-badge,
  .review-avatar {
    box-shadow: 0 12px 28px rgba(10,31,68,.14);
  }

  .trust-strip-inner,
  .reviews-slider {
    -webkit-overflow-scrolling: touch;
  }

  .trust-item::after {
  display: none;
}

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease !important;
  }
}

@media (max-width: 420px) {
  .hero-desc,
  .section-subtitle,
  .faq-item p,
  .review-text {
    line-height: 1.72;
  }

  .service-card,
  .review-card,
  .why-card,
  .faq-item {
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .hero::after,
  .hero-content {
    animation: none !important;
  }
}

@keyframes mobileHeroSettle {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes mobileGoldDrift {
  from { transform: translate3d(0,0,0) scale(.96); opacity: .50; }
  to { transform: translate3d(-10px,-12px,0) scale(1.06); opacity: .82; }
}


/* =========================================================
   SMALL-SCREEN FAQ, LANGUAGE MARQUEE + REVIEW SCROLLER
   Scope: small screens only. Mobile navigation styles untouched.
   ========================================================= */
.lang-marquee-mobile,
.mobile-review-dots {
  display: none;
}

@media (max-width: 768px) {
  /* FAQ cards should visually match the contact-page accordion surface on mobile. */
  .faq {
    background: var(--off-white);
  }

  .faq .services-head {
    text-align: center;
    margin-bottom: 34px;
  }

  .faq .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .faq-grid,
  .faq-grid.service-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .faq .faq-item,
  .faq-grid.service-faq-grid .faq-item {
    padding: 0 !important;
    border-radius: 12px !important;
    background: var(--white) !important;
    border: 1px solid rgba(10,31,68,0.08) !important;
    box-shadow: none !important;
    overflow: hidden;
    transform: none;
  }

  .faq .faq-item::before,
  .faq .faq-item::after,
  .faq-grid.service-faq-grid .faq-item::before,
  .faq-grid.service-faq-grid .faq-item::after {
    display: none !important;
  }

  .faq .faq-item h3,
  .faq-grid.service-faq-grid .faq-item h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin: 0 !important;
    padding: 20px 24px;
    font-family: var(--font-head);
    font-size: 0.98rem !important;
    font-weight: 700;
    line-height: 1.35;
    color: var(--navy);
    background: var(--white);
  }

  .faq .faq-item h3::after,
  .faq-grid.service-faq-grid .faq-item h3::after {
    content: '+';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    background: rgba(184,150,46,0.10);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(10,31,68,0.06);
  }

  .faq .faq-item p,
  .faq-grid.service-faq-grid .faq-item p {
    margin: 0;
    padding: 18px 24px 22px;
    border-top: 1px solid var(--grey-light);
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.75;
  }

  /* Two-line language marquee for mobile only. */
  .languages {
    overflow: hidden;
  }

  .languages .lang-grid {
    display: none;
  }

  .lang-marquee-mobile {
    display: grid;
    gap: 12px;
    margin-inline: calc(50% - 50vw);
    padding: 4px 0 8px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }

  .lang-marquee-row {
    overflow: hidden;
  }

  .lang-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 10px;
    will-change: transform;
  }

  .lang-marquee-row-left .lang-marquee-track {
    animation: langMarqueeLeft 25s linear infinite;
  }

  .lang-marquee-row-right .lang-marquee-track {
    animation: langMarqueeRight 27s linear infinite;
  }

  .lang-marquee-mobile .lang-tag {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(10,31,68,0.08);
  }

  /* Home reviews: horizontal, snap-scrolling cards with position dots. */
  .reviews-slider {
    display: flex !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .reviews-slider::-webkit-scrollbar {
    display: none;
  }

  .reviews-slider .review-card {
    flex: 0 0 min(86vw, 360px);
    min-width: min(86vw, 360px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .reviews-page2 {
    display: none !important;
  }

  .reviews-page2.visible {
    display: flex !important;
  }

  .mobile-review-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 22px;
  }

  .mobile-review-dot {
    width: 8px;
    height: 8px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(10,31,68,0.22);
    cursor: pointer;
    transition: width .22s ease, background .22s ease, transform .22s ease;
  }

  .mobile-review-dot.active {
    width: 26px;
    background: var(--red);
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .lang-marquee-track {
    animation: none !important;
  }
}

@keyframes langMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes langMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* =========================================================
   REQUESTED REFINEMENTS — FAQ ICON TOGGLE, CTA LINE, MOBILE FOOTER
   Scope: exact requested items only.
   ========================================================= */
.gold-line {
  display: none !important;
}

.faq-item.faq-toggle-ready h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  background: rgba(184,150,46,0.10);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(10,31,68,0.06);
  transition: background var(--trans), color var(--trans), transform var(--trans);
}

.faq-toggle-icon::before {
  content: '−';
}

.faq-item.is-collapsed .faq-toggle-icon::before {
  content: '+';
}

.faq-toggle-icon:hover,
.faq-toggle-icon:focus-visible {
  background: var(--gold);
  color: var(--white);
  outline: none;
  transform: scale(1.04);
}

.faq-item.is-collapsed p {
  display: none;
}

.faq .faq-item h3::after,
.faq-grid.service-faq-grid .faq-item h3::after,
#service-faq .faq-item h3::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 0 !important;
  }

  .footer-grid {
    gap: 28px;
    margin-bottom: 28px;
  }

  .footer-logo,
  .footer-socials,
  .footer-col h4,
  .footer-bottom,
  .footer-bottom-links {
    justify-content: center;
  }

  .footer-brand,
  .footer-col,
  .footer-bottom {
    text-align: center;
  }

  .footer-links a,
  .footer-contact-item {
    justify-content: center;
  }

  .footer-contact-item {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 16px 0 18px;
  }

  .footer-bottom-links {
    gap: 12px 18px;
  }
}

/* =========================================================
   Premium Client Logos Section
   Add after .stats styles or near the About section styles
   ========================================================= */
.client-logos {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(200,16,46,0.24), transparent 32%),
    radial-gradient(circle at 84% 78%, rgba(184,150,46,0.22), transparent 34%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 48%, #071832 100%);
  border-top: 1px solid rgba(212,174,58,0.24);
  border-bottom: 1px solid rgba(212,174,58,0.18);
}

.client-logos::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
  pointer-events: none;
}

.client-logos::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(920px, 80vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.9;
}

.client-logos-orb {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.38;
  pointer-events: none;
}

.client-logos-orb-red {
  top: -70px;
  right: 7%;
  background: rgba(200,16,46,0.55);
}

.client-logos-orb-gold {
  bottom: -90px;
  left: 4%;
  background: rgba(184,150,46,0.48);
}

.client-logos-panel {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
  box-shadow: 0 28px 90px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}

.client-logos-panel::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%);
  pointer-events: none;
}

.client-logos-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.client-logos-title {
  max-width: 760px;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.client-logos-head p {
  max-width: 720px;
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.client-logos-badge {
  min-width: 192px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,174,58,0.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  text-align: left;
}

.client-logos-badge span {
  display: block;
  color: rgba(255,255,255,0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.client-logos-badge strong {
  display: block;
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 1.28rem;
  line-height: 1.1;
}

.client-logo-stage {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 14px 0;
  border-radius: 24px;
  background: rgba(6,14,30,0.34);
  border: 1px solid rgba(255,255,255,0.08);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.client-logo-stage.is-paused .client-logo-track,
.client-logo-stage:hover .client-logo-track,
.client-logo-stage:focus-within .client-logo-track {
  animation-play-state: paused;
}

.client-logo-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding: 4px 18px;
  will-change: transform;
}

.client-logo-stage.is-ready .client-logo-track {
  animation: clientLogoMarquee 38s linear infinite;
}

.client-logo-card {
  width: 176px;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 24px 26px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(212,174,58,0.76);
  box-shadow: 0 22px 58px rgba(0,0,0,0.28), 0 0 0 1px rgba(212,174,58,0.10);
  transform: translateY(-4px) scale(1.015);
  transition: none;
}

.client-logo-card:hover {
  transform: translateY(-4px) scale(1.015);
  background: var(--white);
  border-color: rgba(212,174,58,0.76);
  box-shadow: 0 22px 58px rgba(0,0,0,0.28), 0 0 0 1px rgba(212,174,58,0.10);
}

.client-logo-card img {
  max-width: 128px;
  max-height: 58px;
  object-fit: contain;
  opacity: 1;
  filter: grayscale(0) saturate(1) contrast(1);
  transform: scale(1.04);
  transition: none;
}

.client-logo-card:hover img {
  opacity: 1;
  filter: grayscale(0) saturate(1) contrast(1);
  transform: scale(1.04);
}
.client-logo-card.logo-wide {
  width: 220px;
}

.client-logo-card.logo-wide img {
  max-width: 168px;
  max-height: 58px;
}

.client-logo-card.logo-square img {
  max-width: 86px;
  max-height: 72px;
}

.client-logo-card.logo-jaguar img {
  max-width: 176px;
  max-height: 70px;
}

.client-logos-note {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: rgba(255,255,255,0.48);
  font-size: 0.82rem;
  text-align: center;
}

@keyframes clientLogoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

[dir="rtl"] .client-logos-badge { text-align: right; }
[dir="rtl"] .client-logo-stage.is-ready .client-logo-track { animation-name: clientLogoMarqueeRtl; }

@keyframes clientLogoMarqueeRtl {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 900px) {
  .client-logos { padding: 72px 0; }
  .client-logos-head { grid-template-columns: 1fr; align-items: start; }
  .client-logos-badge { width: fit-content; }
}

/* Desktop featured logo sizes */
.client-logo-card.logo-featured img {
  max-width: 112px;
  max-height: 86px;
  transform: scale(1.12);
}

.client-logo-card.logo-featured:hover img {
  transform: scale(1.12);
}

.client-logo-card.logo-adgm img {
  max-width: 190px;
  max-height: 76px;
  transform: scale(1.1);
}

.client-logo-card.logo-adgm:hover img {
  transform: scale(1.1);
}

/* Mobile client logo layout */
@media (max-width: 768px) {
  .client-logos {
    padding: 54px 0;
  }

  .client-logos-panel {
    border-radius: 24px;
    padding: 24px 14px;
  }

  .client-logos-title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .client-logos-head p {
    font-size: 0.94rem;
  }

  .client-logo-stage {
    overflow: hidden;
    padding: 10px 0;
    border-radius: 20px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    scroll-snap-type: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .client-logo-stage::-webkit-scrollbar {
    display: none;
  }

  .client-logo-stage.is-ready .client-logo-track {
    animation: clientLogoMarquee 24s linear infinite;
  }

  .client-logo-track {
    gap: 12px;
    padding: 4px 12px;
  }

  .client-logo-card,
  .client-logo-card.logo-wide {
    width: 128px;
    min-height: 82px;
    padding: 14px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-2px) scale(1.01);
  }

  .client-logo-card:hover,
  .client-logo-card.logo-wide:hover {
    transform: translateY(-2px) scale(1.01);
  }

  .client-logo-card img,
  .client-logo-card.logo-wide img,
  .client-logo-card.logo-square img,
  .client-logo-card.logo-featured img,
  .client-logo-card.logo-adgm img,
  .client-logo-card.logo-jaguar img {
    width: 92px;
    height: 46px;
    max-width: 92px;
    max-height: 46px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    transform: none;
  }

  .client-logo-card:hover img,
  .client-logo-card.logo-wide:hover img,
  .client-logo-card.logo-square:hover img,
  .client-logo-card.logo-featured:hover img,
  .client-logo-card.logo-adgm:hover img,
  .client-logo-card.logo-jaguar:hover img {
    transform: none;
  }
}

@media (max-width: 420px) {
  .client-logos-panel {
    padding: 22px 12px;
  }

  .client-logos-badge {
    width: 100%;
  }

  .client-logo-stage.is-ready .client-logo-track {
    animation-duration: 22s;
  }

  .client-logo-track {
    gap: 10px;
    padding: 4px 10px;
  }

  .client-logo-card,
  .client-logo-card.logo-wide {
    width: 116px;
    min-height: 76px;
    padding: 12px 14px;
    border-radius: 15px;
  }

  .client-logo-card img,
  .client-logo-card.logo-wide img,
  .client-logo-card.logo-square img,
  .client-logo-card.logo-featured img,
  .client-logo-card.logo-adgm img,
  .client-logo-card.logo-jaguar img {
    width: 82px;
    height: 40px;
    max-width: 82px;
    max-height: 40px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    transform: none;
  }

  .client-logo-card:hover img,
  .client-logo-card.logo-wide:hover img,
  .client-logo-card.logo-square:hover img,
  .client-logo-card.logo-featured:hover img,
  .client-logo-card.logo-adgm:hover img,
  .client-logo-card.logo-jaguar:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-stage.is-ready .client-logo-track {
    animation: none;
  }
}