/* ============================================================
   ترميم وأصباغ وديكورات — التنسيقات الرئيسية
   HTML5 · CSS3 · RTL/LTR · Responsive 100%
   ============================================================ */

/* ---------- Color System (tokens) ---------- */
:root {
  /* ===== Golden Scale ===== */
  --gold-50:  #fdf7e7;
  --gold-100: #f9ecc6;
  --gold-200: #f2d18c;
  --gold-400: #d6ab4f;
  --gold-500: #c2923a;
  --gold-600: #a87a2c;
  --gold-700: #8a5d1f;
  --gold-800: #6b4716;

  /* ===== Navy Scale (deep ocean) ===== */
  --navy-600: #1e2f50;
  --navy-700: #15223c;
  --navy-800: #0d1829;
  --navy-900: #08101f;
  --navy-950: #050a14;

  /* ===== Slate / Text Scale ===== */
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e4eaf2;
  --slate-300: #dce4ef;
  --slate-400: #b5c1d3;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #2b3a4e;

  /* ===== Brand Aliases ===== */
  --gold: var(--gold-400);
  --gold-light: var(--gold-200);
  --gold-lightest: var(--gold-50);
  --gold-tint: var(--gold-100);
  --gold-dark: var(--gold-600);
  --gold-deep: var(--gold-700);
  --navy: var(--navy-800);
  --navy-2: var(--navy-700);
  --navy-3: var(--navy-600);
  --dark: var(--navy-900);
  --deepest: var(--navy-950);

  /* ===== Surfaces & Borders ===== */
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --bg-warm: #fbf6e9;
  --surface: #ffffff;
  --surface-soft: #f8fafd;
  --border-soft: rgba(13, 24, 41, .07);
  --border: rgba(13, 24, 41, .10);
  --border-gold-soft: rgba(214, 171, 79, .28);
  --border-gold: rgba(214, 171, 79, .45);

  /* ===== Text ===== */
  --text: #2c394b;
  --text-light: var(--slate-500);
  --on-dark: #e8eef7;
  --muted-dark: #b6c2d4;
  --label-dark: #c9d4e2;

  /* ===== Accent (fresh emerald) ===== */
  --emerald: #0e9f6e;
  --emerald-dark: #0a7d55;
  --emerald-tint: #e3f6ee;

  /* ===== Actions ===== */
  --white-soft: rgba(255, 255, 255, .10);
  --whatsapp: #22d362;
  --whatsapp-dark: #16b154;
  --danger: #e23e3e;

  /* ===== Effects ===== */
  --shadow: 0 10px 30px rgba(8, 16, 31, .10);
  --shadow-lg: 0 24px 60px rgba(8, 16, 31, .20);
  --shadow-gold: 0 10px 28px rgba(214, 171, 79, .34);
  --radius: 16px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --header-h: 76px;
}

/* ---------- Selection & Scrollbar (gold notes) ---------- */
::selection {
  background: var(--gold);
  color: #fff;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  border-radius: 20px;
  border: 2px solid var(--dark);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Cairo", "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  overflow-x: clip;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
}

body[dir="ltr"] {
  font-family: "Poppins", "Cairo", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- Helpers ---------- */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #eef1f8 100%);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  color: var(--gold-deep);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--bg-warm), var(--gold-tint));
  border: 1px solid var(--border-gold-soft);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--slate-600);
  font-size: 1.05rem;
}

/* ---------- Text Gradients (premium gold touches) ---------- */
.section-title,
.about-content h3,
.contact-form-box h3 {
  color: var(--navy);
}

.hero-title {
  color: #fff;
}

.tip-num {
  color: rgba(255, 255, 255, .1);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .section-title {
    background-image: linear-gradient(110deg, var(--navy) 30%, var(--navy) 66%, var(--gold-dark) 135%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .about-content h3,
  .contact-form-box h3 {
    background-image: linear-gradient(105deg, var(--navy) 20%, var(--navy) 60%, var(--gold-dark) 130%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .hero-title {
    background-image: linear-gradient(120deg, #ffffff 38%, var(--gold-light) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .tip-num {
    background-image: linear-gradient(160deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: .95;
  }
}

/* ---------- Typography (balance & rhythm) ---------- */
.section-title,
.hero-title,
.about-content h3,
.contact-form-box h3,
.service-card h3,
.article-card h3,
.tip-card h3,
.coverage-card h3,
.faq-question {
  text-wrap: balance;
}

.section-title {
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-title {
  line-height: 1.28;
}

.hero-desc {
  color: var(--on-dark);
  line-height: 1.95;
}

.section-desc,
.about-content p,
.service-card p,
.article-card p,
.article-body p,
.coverage-card p,
.faq-answer p {
  line-height: 1.9;
  text-wrap: pretty;
}

.service-card p,
.article-card p,
.coverage-card p,
.about-content p {
  color: var(--slate-600);
}

.brand-sub {
  letter-spacing: .045em;
}

.nav-link {
  letter-spacing: .01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn i {
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) -20%, var(--gold) 45%, var(--gold-dark) 120%);
  color: #fff;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, .35) 50%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(160%);
  transition: transform .65s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(214, 171, 79, .48);
}

.btn-primary:hover::after {
  transform: translateX(-160%);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: var(--white-soft);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, .45);
}

.btn-sm {
  padding: 10px 22px;
  font-size: .9rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--label-dark);
  font-size: .85rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--label-dark);
  transition: var(--transition);
}

.topbar-item i {
  color: var(--gold);
}

.topbar-item:hover {
  color: var(--gold);
}

.topbar-call {
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  transition: var(--transition);
}

.topbar-call:hover {
  background: var(--gold-dark);
}

/* ---------- Header / Navbar ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--transition), background var(--transition);
}

.header.scrolled {
  box-shadow: 0 6px 24px rgba(13, 24, 41, .10);
  background: rgba(255, 255, 255, .92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-dark);
  background-image: linear-gradient(120deg, var(--gold) 12%, var(--gold-dark) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  font-size: .78rem;
  color: var(--gold-dark);
  font-weight: 700;
}

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 9px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  inset-inline-start: 9px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 18px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-links-btn {
  padding: 11px 20px;
  font-size: .9rem;
  gap: 8px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: .85rem;
  transition: var(--transition);
  background: linear-gradient(135deg, rgba(253, 243, 220, .6), rgba(251, 233, 191, .5));
}

.lang-toggle:hover {
  background: var(--gold);
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - (var(--header-h) + 40px));
  min-height: calc(100svh - (var(--header-h) + 40px));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 88% 0%, rgba(214, 171, 79, .20) 0%, rgba(214, 171, 79, 0) 55%),
    linear-gradient(100deg, rgba(8, 16, 31, .96) 0%, rgba(13, 24, 41, .82) 45%, rgba(30, 47, 80, .50) 100%);
}

body[dir="ltr"] .hero-overlay {
  background:
    radial-gradient(1100px 520px at 12% 0%, rgba(214, 171, 79, .20) 0%, rgba(214, 171, 79, 0) 55%),
    linear-gradient(260deg, rgba(8, 16, 31, .96) 0%, rgba(13, 24, 41, .82) 45%, rgba(30, 47, 80, .50) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 60px 0;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214, 171, 79, .16);
  border: 1px solid rgba(214, 171, 79, .42);
  color: var(--gold-light);
  font-weight: 700;
  font-size: .85rem;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--slate-300);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white-soft);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
}

.trust-item i {
  color: var(--emerald);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  bottom: -22px;
  inset-inline-end: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--radius);
  border: 3px solid rgba(255, 255, 255, .9);
  text-align: center;
  box-shadow: 0 14px 30px rgba(214, 171, 79, .5);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.about-experience strong {
  font-size: 2.1rem;
  font-weight: 900;
}

.about-experience span {
  font-size: .9rem;
  font-weight: 600;
}

.about-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--slate-600);
  margin-bottom: 14px;
}

.about-list {
  margin: 20px 0 26px;
  display: grid;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.about-list li:hover {
  color: var(--gold-dark);
}

.about-list li i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--emerald-tint);
  border: 1px solid rgba(14, 159, 110, .25);
  color: var(--emerald-dark);
  font-size: .8rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 220px at 50% -40px, rgba(214, 171, 79, .10), rgba(214, 171, 79, 0) 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(214, 171, 79, .35);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: var(--gold-deep);
  background: linear-gradient(135deg, var(--gold-lightest), var(--gold-tint));
  border: 1px solid rgba(214, 171, 79, .25);
  border-radius: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #fff;
  border-color: transparent;
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--shadow-gold);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card:hover h3 {
  color: var(--gold-dark);
}

.service-card p {
  color: var(--slate-600);
  font-size: .95rem;
}

/* ---------- Gallery (works showcase) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.09);
}

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(8, 16, 31, .35), rgba(8, 16, 31, .12));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover figcaption {
  opacity: 1;
}

.zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 6px 16px rgba(8, 16, 31, .3);
}

.zoom-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  transform: translateY(-2px);
}

/* ---------- Articles ---------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(214, 171, 79, .35);
}

.article-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--gold-deep);
  background: linear-gradient(135deg, var(--gold-lightest), var(--gold-tint));
  border: 1px solid rgba(214, 171, 79, .25);
  border-radius: 16px;
  margin-bottom: 16px;
}

.article-date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.article-date i {
  color: var(--gold);
}

.article-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-card:hover h3 {
  color: var(--gold-dark);
}

.article-card p {
  color: var(--slate-600);
  font-size: .92rem;
  flex: 1;
}

.article-body {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--slate-300);
}

.article-body p {
  margin-bottom: 12px;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-card.expanded .article-body {
  display: block;
}

.read-more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .92rem;
  transition: var(--transition);
}

.read-more::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: transform var(--transition);
}

body[dir="ltr"] .read-more::after {
  content: "\f060";
}

.read-more:hover {
  color: var(--gold);
}

.read-more:hover::after {
  transform: translateX(-4px);
}

body[dir="ltr"] .read-more:hover::after {
  transform: translateX(4px);
}

/* ---------- Tips ---------- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tip-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-3) 0%, var(--navy) 55%, var(--dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(214, 171, 79, .16);
  padding: 34px 24px 26px;
  transition: var(--transition);
  overflow: hidden;
}

.tip-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 171, 79, .22), rgba(214, 171, 79, 0) 70%);
  top: -60px;
  inset-inline-end: -60px;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(214, 171, 79, .42);
}

.tip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 8px;
  margin-bottom: 18px;
}

.tip-num {
  position: static;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  background-image: linear-gradient(160deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  margin: 0;
  font-size: 1.35rem;
  color: var(--gold);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(214, 171, 79, .28);
  border-radius: 12px;
  transition: var(--transition);
}

.tip-card:hover .tip-icon {
  color: var(--gold-light);
  background: rgba(214, 171, 79, .14);
  border-color: rgba(214, 171, 79, .5);
}

.tip-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.tip-card:hover h3 {
  color: var(--gold-light);
}

.tip-card p {
  color: var(--muted-dark);
  font-size: .9rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(214, 171, 79, .55);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  text-align: start;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-deep);
}

.faq-item.active .faq-question {
  color: var(--gold-deep);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lightest), var(--gold-tint));
  border: 1px solid rgba(214, 171, 79, .25);
  color: var(--gold-deep);
  font-size: .85rem;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  border-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--slate-600);
  font-size: .95rem;
}

/* ---------- Coverage ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.coverage-card {
  background: #fff;
  text-align: center;
  padding: 38px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}

.coverage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(214, 171, 79, .4);
}

.coverage-card.featured {
  border: 2px solid var(--gold);
  position: relative;
  box-shadow: var(--shadow-gold);
}

.coverage-card.featured::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  border-radius: 50%;
  font-size: .8rem;
  box-shadow: var(--shadow-gold);
}

.coverage-icon {
  font-size: 2.2rem;
  color: var(--emerald);
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 8px rgba(14, 159, 110, .22));
}

.coverage-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.coverage-card:hover h3 {
  color: var(--gold-dark);
}

.coverage-card p {
  color: var(--slate-600);
  margin-bottom: 20px;
  font-size: .95rem;
}

/* ---------- Contact ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.contact-card {
  background: linear-gradient(160deg, var(--navy-3) 0%, var(--navy) 55%, var(--dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(214, 171, 79, .16);
  padding: 34px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.contact-card i {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.contact-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(160deg, var(--navy-2) 0%, var(--dark) 100%);
  box-shadow: var(--shadow-lg);
  border-color: rgba(214, 171, 79, .45);
}

.contact-label {
  color: var(--muted-dark);
  font-size: .88rem;
}

.contact-card strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
}

.contact-form-box {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: calc(var(--radius) + 6px);
  padding: 42px 40px;
  box-shadow: var(--shadow);
}

.contact-form-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--surface-soft);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(214, 171, 79, .16);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------- Footer ---------- */
.footer {
  background:
    radial-gradient(900px 380px at 85% 0%, rgba(214, 171, 79, .10), rgba(214, 171, 79, 0) 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--deepest) 100%);
  color: var(--muted-dark);
  padding: 70px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: .9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--white-soft);
}

.footer-brand-col .brand-name {
  color: #fff;
}

.footer-brand-col p {
  margin-top: 16px;
  font-size: .92rem;
  line-height: 1.9;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.footer-col h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 1px 8px rgba(214, 171, 79, .5);
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col ul li a {
  color: var(--muted-dark);
  font-size: .92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(-4px);
}

body[dir="ltr"] .footer-col ul li a:hover {
  transform: translateX(4px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 5px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  font-size: .85rem;
}

/* ---------- Floating Actions ---------- */
.float-actions {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(13, 24, 41, .25);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--whatsapp);
  animation: pulseRing 2s infinite;
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  display: block;
}

.float-call {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold);
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 98, .55); }
  70% { box-shadow: 0 0 0 18px rgba(34, 211, 98, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 98, 0); }
}

/* ---------- Back to Top ---------- */
.back-top {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 22px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(8, 16, 31, .95);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-figure {
  position: relative;
  max-width: 1000px;
  max-height: 85vh;
  text-align: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  object-fit: contain;
}

.lightbox-figure figcaption {
  color: #fff;
  margin-top: 14px;
  font-weight: 600;
  font-size: .95rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
  z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--dark);
}

.lightbox-close {
  top: 22px;
  inset-inline-end: 22px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev { inset-inline-start: 20px; }
.lightbox-next { inset-inline-end: 20px; }

/* ---------- Scroll Reveal (static, no movement) ---------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .nav {
    display: none;
  }
}

@media (max-width: 1024px) {
  .services-grid,
  .articles-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-visual img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-info {
    gap: 14px;
    font-size: .8rem;
  }

  .topbar-call {
    display: none;
  }

  .topbar-areas {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 90px 0 70px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-box {
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .services-grid,
  .articles-grid,
  .coverage-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-item {
    justify-content: center;
  }

  .brand-sub {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: 90%;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .section-desc {
    font-size: .95rem;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-logo {
    height: 42px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero-content {
    padding: 74px 0 56px;
  }

  .hero-title {
    font-size: clamp(1.55rem, 6.5vw, 2.1rem);
  }

  .hero-desc {
    font-size: .98rem;
  }

  .hero-badge {
    font-size: .78rem;
    padding: 6px 14px;
  }

  .about-visual img {
    height: 300px;
  }

  .about-experience {
    padding: 14px 18px;
    inset-inline-end: 12px;
  }

  .about-experience strong {
    font-size: 1.6rem;
  }

  .about-content h3 {
    font-size: 1.3rem;
  }

  .tip-card,
  .service-card,
  .article-card,
  .coverage-card {
    padding: 26px 20px;
  }

  .contact-form-box {
    padding: 26px 16px;
  }

  .contact-form-box h3 {
    font-size: 1.15rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 14px;
    font-size: 16px;
  }

  .btn {
    padding: 13px 22px;
    font-size: .95rem;
  }

  .quick-links-btn {
    padding: 10px 14px;
    font-size: .82rem;
    gap: 6px;
  }

  .float-actions {
    bottom: max(14px, env(safe-area-inset-bottom));
    inset-inline-end: 14px;
  }

  .back-top {
    bottom: max(14px, env(safe-area-inset-bottom));
    inset-inline-start: 14px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

@media (max-width: 360px) {
  .brand-text {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .quick-links-btn {
    padding: 9px 11px;
    font-size: .78rem;
  }

  .topbar-info {
    gap: 10px;
    font-size: .75rem;
  }

  .topbar-item i {
    display: none;
  }

  .hero-title {
    font-size: 1.4rem;
  }
}

/* ---------- Inner Pages (SEO landing) ---------- */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 70px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 88% 0%, rgba(214, 171, 79, .18) 0%, rgba(214, 171, 79, 0) 55%),
    linear-gradient(100deg, rgba(8, 16, 31, .96) 0%, rgba(13, 24, 41, .82) 45%, rgba(30, 47, 80, .50) 100%);
}

body[dir="ltr"] .page-hero .hero-overlay {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(214, 171, 79, .18) 0%, rgba(214, 171, 79, 0) 55%),
    linear-gradient(260deg, rgba(8, 16, 31, .96) 0%, rgba(13, 24, 41, .82) 45%, rgba(30, 47, 80, .50) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--slate-300);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .88rem;
  color: var(--muted-dark);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: var(--gold);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.intro-col {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.intro-col h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.intro-col h2 i {
  color: var(--gold-dark);
}

.intro-col p {
  color: var(--slate-600);
  font-size: .97rem;
  line-height: 1.9;
}

.rich-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rich-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  transition: var(--transition);
}

.rich-list li:hover {
  border-color: rgba(214, 171, 79, .4);
  color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.rich-list li i {
  color: var(--emerald);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 28px 26px 40px;
}

.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 14px;
  top: 24px;
  font-size: 1.5rem;
  font-weight: 900;
  background-image: linear-gradient(160deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .9;
}

.step-card h2 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p {
  color: var(--slate-600);
  font-size: .95rem;
  line-height: 1.85;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
}

.link-row .btn {
  white-space: normal;
}

.area-links,
.service-links {
  display: grid;
  gap: 12px;
}

.area-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 800;
  color: var(--navy);
  transition: var(--transition);
}

.area-link:hover {
  border-color: rgba(214, 171, 79, .4);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: var(--gold-dark);
}

.area-link small {
  color: var(--slate-500);
  font-weight: 600;
  font-size: .82rem;
}

.faq-mini {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .intro-grid,
  .rich-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 300px;
    padding: 56px 0;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}