/* ============ Tint Corner — Crystal White Premium Styles ============ */
:root {
  --bg: #ffffff;
  --bg-2: #f5f8fa;
  --bg-3: #eef2f6;
  --card: #ffffff;
  --line: #e3e9f0;
  --gold: #14b8cf;
  --gold-2: #2fd2e2;
  --gold-dark: #0b8299;
  --tc-teal: #2fd2e2;
  --tc-teal-2: #0c92aa;
  --tc-teal-text: #0b8299;
  --text: #141e28;
  --text-dim: #47576a;
  --green: #25d366;
  --teal: #2a8492;
  --radius: 18px;
  --shadow-soft: 0 10px 30px rgba(23, 34, 44, 0.08);
  --shadow-lift: 0 22px 44px rgba(23, 34, 44, 0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

:root {
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[dir="rtl"] {
  --font-body: "Tajawal", Tahoma, Arial, sans-serif;
  --font-head: "Tajawal", Tahoma, Arial, sans-serif;
}

h1, h2, h3, h4,
.btn,
.kicker,
.eyebrow,
.main-nav a,
.pkg-name,
.pkg-sub,
.pkg-header h3,
.pkg-price .amount,
.stat .num,
.hero-stat .v,
.flag-badge,
.brand-sub {
  font-family: var(--font-head);
}

img, svg { max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container { width: min(1160px, 92%); margin: 0 auto; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(23, 34, 44, 0.07);
  box-shadow: 0 8px 28px rgba(23, 34, 44, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(47, 210, 226, 0.85) 50%, transparent 100%);
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  flex-wrap: wrap;
}

.brand { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 1.4rem; font-weight: 800; letter-spacing: 0.4px; }

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  direction: ltr;
}

.logo-img text { direction: ltr; unicode-bidi: bidi-override; }

.brand .logo-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #14100a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(47, 210, 226, 0.35);
}

.brand .brand-name { display: flex; flex-direction: column; line-height: 1.15; }

.brand .brand-main span { color: var(--gold-dark); }

.brand .brand-sub {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.main-nav a {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-dim);
  transition: 0.2s;
}

.main-nav a:hover { color: var(--text); background: var(--bg-2); }

.main-nav a.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--tc-teal), var(--tc-teal-2));
  box-shadow: 0 4px 14px rgba(14, 159, 182, 0.4);
}

.nav-cta { display: none; }

.lang-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--tc-teal-2);
  border-radius: 10px;
  background: rgba(47, 210, 226, 0.1);
  color: var(--tc-teal-text);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
}

.lang-btn:hover { background: linear-gradient(135deg, var(--tc-teal), var(--tc-teal-2)); color: #fff; border-color: transparent; }

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

.menu-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--tc-teal-2);
  border-radius: 10px;
  background: rgba(47, 210, 226, 0.1);
  color: var(--tc-teal-text);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.menu-btn .menu-ico { font-size: 1.2rem; line-height: 1; }

.menu-btn:hover { background: linear-gradient(135deg, var(--tc-teal), var(--tc-teal-2)); color: #fff; border-color: transparent; }

/* ============ Buttons ============ */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease, filter 0.3s ease, background 0.3s ease, color 0.3s ease;
  font-family: var(--font-head);
  -webkit-tap-highlight-color: transparent;
}

/* premium shine sweep on hover */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s cubic-bezier(0.2, 0.8, 0.3, 1);
  pointer-events: none;
}

.btn:hover::after { left: 140%; }

.btn:active { transform: translateY(0) scale(0.98); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #06232a;
  box-shadow: 0 10px 28px rgba(20, 184, 207, 0.35), 0 3px 8px rgba(20, 184, 207, 0.22);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(20, 184, 207, 0.45), 0 5px 12px rgba(20, 184, 207, 0.3); }

.btn-outline { background: #fff; color: var(--text); border: 1.5px solid #d5dde5; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-3px); }

.btn-whatsapp {
  background: linear-gradient(135deg, #29d96c, #1fb457);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35), 0 3px 8px rgba(37, 211, 102, 0.22);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(37, 211, 102, 0.45), 0 5px 12px rgba(37, 211, 102, 0.3); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 80px 0 70px;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(47, 210, 226, 0.14), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 100%, rgba(42, 132, 146, 0.1), transparent 60%),
    linear-gradient(180deg, #fbfcfe, var(--bg));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23,34,44,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(23,34,44,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(12, 146, 170, 0.45);
  border-radius: 999px;
  background: rgba(47, 210, 226, 0.12);
  color: var(--tc-teal-text);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--tc-teal-2), var(--tc-teal), var(--tc-teal-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.sub { max-width: 560px; margin-bottom: 32px; color: var(--text-dim); font-size: 1.12rem; }

.trust-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; }

.trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: 0.95rem; font-weight: 600; }

.trust-item .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(47, 210, 226, 0.18);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900;
}

/* ---- Car demo ---- */
.car-demo {
  background: linear-gradient(180deg, #f2f6fa, #e8eef4);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-lift);
}

.car-demo .demo-title { text-align: center; font-weight: 700; color: var(--text-dim); font-size: 0.92rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }

.car-svg { width: 100%; height: auto; display: block; }

.car-glass { transition: fill 0.45s ease; }

.shade-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }

.shade-chip {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  background: #fff;
  border: 1.5px solid #d5dde5;
  border-radius: 12px;
  color: var(--text);
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
  min-width: 74px;
}

.shade-chip small { color: var(--text-dim); font-weight: 500; font-size: 0.72rem; }

.shade-chip .sw { width: 30px; height: 14px; border-radius: 5px; border: 1px solid rgba(23, 34, 44, 0.18); }

.shade-chip:hover { border-color: var(--gold); transform: translateY(-2px); }

.shade-chip.active { border-color: var(--gold); background: rgba(47, 210, 226, 0.12); box-shadow: 0 6px 16px rgba(47, 210, 226, 0.25); }

/* ---- Dark hero (home) ---- */
.hero-dark .hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.hero-dark .hero-copy { max-width: 780px; }

.hero-dark p.sub { margin-inline: auto; }

.hero-dark .btn-row, .hero-dark .hero-stats { justify-content: center; }

.service-block.single { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; text-align: center; }

.service-block.single .check-list { display: table; margin-inline: auto; text-align: start; }

.hero-dark {
  padding: 90px 0 150px;
  background:
    radial-gradient(ellipse 800px 480px at 82% 20%, rgba(47, 210, 226, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 8% 90%, rgba(42, 132, 146, 0.18), transparent 60%),
    linear-gradient(135deg, #0e1a26, #16283a);
  color: #fff;
}

.hero-dark::before {
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
}

.hero-dark h1 { color: #fff; }

.hero-dark h1 span {
  background: linear-gradient(120deg, var(--tc-teal), #7fe9f5, var(--tc-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-dark p.sub { color: #aebdcb; }

.hero-dark .kicker {
  border-color: rgba(47, 210, 226, 0.5);
  background: rgba(47, 210, 226, 0.12);
  color: var(--tc-teal);
}

.hero-dark .btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero-dark .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-usp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: -8px 0 30px;
}

.hero-usp span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(47, 210, 226, 0.1);
  border: 1px solid rgba(47, 210, 226, 0.3);
  color: #d3eef4;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-stats { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px 20px;
  backdrop-filter: blur(6px);
}

.hero-stat .v { display: block; font-weight: 900; font-size: 1.35rem; color: var(--tc-teal); line-height: 1.15; }

.hero-stat .l { font-size: 0.8rem; color: #aebdcb; font-weight: 600; }

.hero-visual { position: relative; padding: 10px 6px 0; }

.hero-visual .car-svg { filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.45)); }

.float-badge {
  position: absolute;
  z-index: 2;
  background: #ffffff;
  color: var(--text);
  border-radius: 14px;
  padding: 10px 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  animation: floaty 4.5s ease-in-out infinite;
}

.float-badge .v { display: block; font-weight: 900; font-size: 1.15rem; color: var(--gold-dark); line-height: 1.15; }

.float-badge .l { font-size: 0.72rem; color: var(--text-dim); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }

.fb1 { top: 4%; inset-inline-start: 0; }

.fb2 { top: 26%; inset-inline-end: 0; animation-delay: 2.2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .float-badge { animation: none; }
}

.hero-dark .shade-chip {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-dark .shade-chip small { color: #aebdcb; }

.hero-dark .shade-chip:hover { border-color: var(--gold); }

.hero-dark .shade-chip.active { border-color: var(--gold); background: rgba(47, 210, 226, 0.16); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); }

.demo-hint {
  text-align: center;
  margin-top: 14px;
  color: #aebdcb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-curve { position: absolute; bottom: -1px; left: 0; width: 100%; height: 72px; display: block; }

@media (max-width: 960px) {
  .hero-dark { padding: 60px 0 120px; }
  .fb1 { top: -2%; }
  .fb2 { top: 12%; }
}

/* ============ Stats band ============ */
.stats-band { border-block: 1px solid var(--line); background: var(--bg-2); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 38px 0; }

.stat { text-align: center; }

.stat .num { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 900; color: var(--tc-teal-text); line-height: 1.1; }

.stat .lbl { color: var(--text-dim); font-size: 0.95rem; font-weight: 600; margin-top: 4px; }

/* ============ Sections ============ */
.section { padding: 90px 0; position: relative; }

.section.alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.section-head { text-align: center; margin-bottom: 56px; }

.eyebrow { display: inline-block; color: var(--tc-teal-text); font-weight: 800; letter-spacing: 3px; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 12px; }

.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 900; margin-bottom: 14px; letter-spacing: -0.4px; }

.section-head h2 span { color: var(--tc-teal-text); }

.section-head p { color: var(--text-dim); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ============ Cards ============ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 24px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: 0.3s;
}

.card:hover { transform: translateY(-6px); border-color: rgba(47, 210, 226, 0.6); box-shadow: var(--shadow-lift); }

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

.card .icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(47, 210, 226, 0.12);
  border: 1px solid rgba(47, 210, 226, 0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.card .icon-wrap svg { width: 30px; height: 30px; }

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

.card p { color: var(--text-dim); font-size: 0.98rem; }

/* ============ Big service cards ============ */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 36px;
  transition: 0.3s;
  box-shadow: var(--shadow-soft);
}

.svc-card:hover { transform: translateY(-6px); border-color: rgba(47, 210, 226, 0.6); box-shadow: var(--shadow-lift); }

.svc-card .icon-wrap {
  width: 68px; height: 68px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(245,179,1,0.2), rgba(245,179,1,0.06));
  border: 1px solid rgba(47, 210, 226, 0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}

.svc-card .icon-wrap svg { width: 36px; height: 36px; }

.svc-card h3 { font-size: 1.45rem; font-weight: 800; margin-bottom: 12px; }

.svc-card > p { color: var(--text-dim); margin-bottom: 20px; }

.check-list { list-style: none; margin-bottom: 26px; }

.check-list li { padding: 7px 0; display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 0.98rem; }

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(47, 210, 226, 0.16);
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 4px;
}

/* ============ Service detail blocks ============ */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; margin-bottom: 70px; }

.service-block:last-child { margin-bottom: 0; }

.service-visual {
  border-radius: 22px;
  padding: 34px 26px;
  background: linear-gradient(180deg, #f2f6fa, #e8eef4);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}

.service-info h3 { font-size: 1.7rem; font-weight: 900; margin-bottom: 14px; }

.service-info h3 span { color: var(--gold-dark); }

.service-info > p { color: var(--text-dim); margin-bottom: 18px; }

/* ============ Steps ============ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: 0.3s;
  box-shadow: var(--shadow-soft);
}

.step:hover { transform: translateY(-6px); border-color: rgba(47, 210, 226, 0.6); box-shadow: var(--shadow-lift); }

.step .num-badge {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #14100a;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(47, 210, 226, 0.4);
}

.step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }

.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ============ Packages (white panel, teal accents) ============ */
.packages-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 54px 48px;
  color: #243038;
  box-shadow: var(--shadow-lift);
}

.pkg-header { display: flex; align-items: center; gap: 20px; margin-bottom: 48px; }

.pkg-header h3 { letter-spacing: 5px; font-weight: 800; color: #16242c; font-size: 1.05rem; white-space: nowrap; }

.pkg-header .line { flex: 1; height: 1px; background: #d5e2e2; }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }

.pkg-offset {
  position: absolute;
  inset-block: -26px 26px;
  inset-inline-start: calc((100% - 56px) / 3);
  width: calc((100% - 56px) / 3 + 56px);
  background: #dcecec;
  border-radius: 6px;
  z-index: 0;
}

.pkg-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #e2ebeb;
  border-radius: 14px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.pkg-card.flagship { border: 2px solid var(--teal); }

.flag-badge {
  position: absolute;
  top: -14px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #eafafa;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 7px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

body[dir="rtl"] .flag-badge { transform: translateX(50%); }

.pkg-top { text-align: center; padding: 36px 20px 28px; border-bottom: 1px solid #e8f0f0; }

.pkg-card.flagship .pkg-top {
  background: #1d2b35;
  border-radius: 10px 10px 0 0;
  border-bottom: none;
  color: #fff;
  padding-top: 42px;
}

.pkg-name { font-size: 1.5rem; font-weight: 800; letter-spacing: 4px; color: #16242c; }

.pkg-card.flagship .pkg-name { color: #fff; }

.pkg-sub { color: var(--teal); letter-spacing: 4px; font-size: 0.8rem; font-weight: 700; margin: 4px 0 20px; }

.pkg-card.flagship .pkg-sub { color: #7fd0d8; }

.pkg-price { line-height: 1; }

.pkg-price .cur { font-size: 1.05rem; font-weight: 700; color: #5b6b74; }

.pkg-card.flagship .pkg-price .cur { color: #b9c6cd; }

.pkg-price .amount { font-size: 3.1rem; font-weight: 900; color: #22303a; letter-spacing: -1px; }

.pkg-card.flagship .pkg-price .amount { color: #fff; }

.pkg-per { font-size: 0.88rem; color: #7b8a92; margin-top: 8px; }

.pkg-card.flagship .pkg-per { color: #b9c6cd; }

.pkg-feats { list-style: none; padding: 28px 28px 0; display: flex; flex-direction: column; gap: 17px; flex: 1; }

.pkg-feats li { display: flex; gap: 12px; align-items: flex-start; color: #3a4a53; font-size: 0.98rem; line-height: 1.45; }

.pkg-feats b { color: #16242c; }

.tick {
  flex-shrink: 0;
  width: 23px; height: 23px;
  border-radius: 50%;
  background: #d7eef0;
  color: #1d7683;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  margin-top: 2px;
}

.pkg-btn-wrap {
  padding: 28px 28px 0;
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.pkg-btn {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.pkg-btn:hover { transform: translateY(-2px); }

.pkg-cta { text-align: center; margin-top: 44px; position: relative; z-index: 1; }

.pkg-note { color: #7b8a92; font-size: 0.9rem; margin-top: 14px; }

/* ============ Plan cards (modern pricing) ============ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 30px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.plan-card.featured {
  background: linear-gradient(165deg, #17293b, #0d1824);
  border: none;
  color: #fff;
  box-shadow: 0 34px 64px rgba(13, 24, 38, 0.5);
  transform: scale(1.04);
  z-index: 1;
}

.plan-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(ellipse 300px 160px at 80% 0%, rgba(47, 210, 226, 0.22), transparent 70%);
  pointer-events: none;
}

.plan-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.plan-badge {
  position: absolute;
  top: 20px;
  inset-inline-end: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #14100a;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.4px;
  padding: 6px 13px;
  border-radius: 999px;
  z-index: 2;
}

.plan-name { font-size: 1.55rem; font-weight: 800; margin-bottom: 8px; }

.plan-desc { color: var(--text-dim); font-size: 0.96rem; margin-bottom: 24px; min-height: 46px; }

.featured .plan-desc { color: #aebdcb; }

.plan-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 26px; }

.plan-price .cur { font-size: 1.05rem; font-weight: 700; color: var(--text-dim); }

.featured .plan-price .cur { color: #9fb3c4; }

.plan-price .amt {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
}

.plan-price .per { font-size: 1rem; color: var(--text-dim); font-weight: 600; }

.featured .plan-price .per { color: #9fb3c4; }

.plan-feats {
  list-style: none;
  margin: 2px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.plan-feats li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

.plan-feats .tick {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(47, 210, 226, 0.16);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 900;
  margin-top: 1px;
}

.plan-feats b { font-weight: 700; }

.featured .plan-feats li { color: #dbe6ef; }

.featured .plan-feats .tick { background: rgba(47, 210, 226, 0.2); color: #37e0ef; }

.plan-cta {
  width: 100%;
  margin-top: auto;
  background: #fff;
  color: var(--gold-dark);
  border: 1.6px solid var(--gold);
  padding: 14px;
  border-radius: 12px;
  font-size: 1.02rem;
}

.plan-cta:hover { background: var(--gold); color: #14100a; transform: translateY(-2px); }

.featured .plan-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #14100a;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(47, 210, 226, 0.3);
}

.featured .plan-cta:hover { filter: brightness(1.06); background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #14100a; }

.plan-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.55;
}

.featured .plan-note { border-top-color: rgba(255, 255, 255, 0.14); color: #9fb3c4; }

@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }
}

/* ============ Shade row (services page) ============ */
.shade-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; margin-top: 34px; }

.shade { border-radius: 14px; padding: 20px 10px; text-align: center; font-weight: 800; border: 1px solid var(--line); font-size: 1.1rem; }

.shade small { display: block; font-weight: 500; opacity: 0.8; margin-top: 4px; font-size: 0.8rem; }

/* ============ Testimonials ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.testi {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: 0.3s;
  box-shadow: var(--shadow-soft);
}

.testi:hover { transform: translateY(-5px); border-color: rgba(47, 210, 226, 0.6); box-shadow: var(--shadow-lift); }

.testi .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 14px; }

.testi p.quote { color: var(--text); font-size: 1rem; margin-bottom: 20px; }

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

.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #14100a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}

.testi .who strong { display: block; font-size: 0.98rem; }

.testi .who small { color: var(--text-dim); }

/* ============ Gallery ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: 0.3s;
  box-shadow: var(--shadow-soft);
}

.gallery-item:hover { transform: translateY(-6px); border-color: rgba(47, 210, 226, 0.6); box-shadow: var(--shadow-lift); }

.gallery-item .ph { height: 360px; display: block; }

.gallery-item .ph svg { width: 100%; height: 100%; display: block; }

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

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

.gallery-item .cap { padding: 18px 20px; font-weight: 700; font-size: 1rem; }

.gallery-item .cap small { display: block; color: var(--text-dim); font-weight: 400; margin-top: 3px; }

/* ============ Contact ============ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: start; }

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px 34px;
  box-shadow: var(--shadow-lift);
}

.form-card h3 { margin-bottom: 24px; font-size: 1.35rem; font-weight: 800; }

.field { margin-bottom: 18px; }

.field label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #d5dde5;
  background: #fbfcfe;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: 0.2s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(47, 210, 226, 0.22);
}

.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 20px;
  transition: 0.3s;
  box-shadow: var(--shadow-soft);
}

.info-card:hover { border-color: rgba(47, 210, 226, 0.6); }

.info-card h4 { color: var(--gold-dark); margin-bottom: 8px; font-size: 1.05rem; font-weight: 800; }

.info-card p { color: var(--text-dim); }

.info-card a.big-link { color: var(--text); font-weight: 800; font-size: 1.2rem; }

.info-card a.big-link:hover { color: var(--gold-dark); }

.map-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  height: 420px;
}

.map-card iframe { width: 100%; height: 100%; display: block; border: 0; }

@media (max-width: 820px) {
  .map-card { height: 300px; }
}

/* ---- Contact single column ---- */
.contact-single { max-width: 560px; margin: 0 auto; }

/* ---- Contact info table ---- */
.contact-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-table { width: 100%; border-collapse: collapse; }

.contact-table th, .contact-table td {
  text-align: start;
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.contact-table tr:last-child th, .contact-table tr:last-child td { border-bottom: none; }

.contact-table th {
  width: 44%;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.contact-table td { color: var(--text); font-weight: 600; font-size: 0.96rem; }

.contact-table td a { color: var(--gold-dark); font-weight: 700; }

.contact-table td a:hover { text-decoration: underline; }

/* ---- Location card (tap to open in Maps) ---- */
.location-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  background: linear-gradient(135deg, #eafbfd, #d3f3f9);
  border: 1px solid rgba(47, 210, 226, 0.4);
  border-radius: 16px;
  padding: 16px 20px;
  transition: 0.2s;
}

.location-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); border-color: var(--gold); }

.location-card .loc-pin { font-size: 1.55rem; line-height: 1; }

.location-card .loc-text { flex: 1; }

.location-card .loc-text strong { display: block; font-size: 1.08rem; color: var(--text); }

.location-card .loc-text small { color: var(--text-dim); font-size: 0.88rem; }

.location-card .loc-arrow { color: var(--gold-dark); font-size: 1.35rem; font-weight: 900; }

/* ---- Get Directions button ---- */
.get-directions {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(135deg, #14b8cf, #0e9fb6);
  color: #14100a;
  box-shadow: 0 10px 24px rgba(47, 210, 226, 0.35);
}

.get-directions:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 14px 30px rgba(47, 210, 226, 0.45); }

/* ============ CTA band ============ */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, #0b8299, var(--gold) 40%, var(--gold-2));
  color: #14100a;
  text-align: center;
  padding: 70px 0;
  overflow: hidden;
}

.cta-band h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 900; margin-bottom: 12px; letter-spacing: -0.4px; }

.cta-band p { margin-bottom: 28px; font-weight: 600; font-size: 1.08rem; }

.cta-band .btn-whatsapp { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }

/* ============ Footer ============ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 56px 0 32px; }

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 36px; margin-bottom: 36px; }

.site-footer h4 { color: var(--gold-dark); margin-bottom: 14px; font-size: 1.05rem; letter-spacing: 0.5px; }

.site-footer p, .site-footer a, .site-footer li { color: var(--text-dim); }

.site-footer a:hover { color: var(--gold-dark); }

.site-footer ul { list-style: none; }

.site-footer li { padding: 5px 0; }

.copyright { text-align: center; color: var(--text-dim); font-size: 0.9rem; border-top: 1px solid var(--line); padding-top: 24px; }

/* ============ Floating WhatsApp ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #29d96c, #1fb457);
  color: #fff;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(23, 34, 44, 0.3);
  transition: 0.2s;
}

.wa-float:hover { transform: scale(1.06); }

/* ============ Page hero (subpages) ============ */
.page-hero { padding: 64px 0 56px; text-align: center; }

.page-hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 900; margin-bottom: 14px; }

.page-hero h1 span { color: var(--tc-teal-text); }

.page-hero p.sub { max-width: 620px; margin: 0 auto; color: var(--text-dim); font-size: 1.1rem; }

/* ============ Reveal animations ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); will-change: opacity, transform; }

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

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid, .steps-grid, .testi-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-offset { display: none; }
  .packages-panel { padding: 40px 26px; }
  .service-block, .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { justify-content: center; }
  .section { padding: 64px 0; }
}

/* ---- Phones ---- */
@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; column-gap: 8px; row-gap: 0; padding: 8px 0; align-items: center; }

  .brand { order: 1; margin-inline-end: auto; min-width: 0; flex-shrink: 1; }

  .logo-img { height: 50px; max-width: 100%; }

  .header-actions { order: 2; gap: 6px; flex-shrink: 0; }

  .menu-btn { display: inline-flex; }

  .menu-btn .menu-ico { font-size: 1.05rem; }

  .lang-btn, .menu-btn { padding: 8px 11px; font-size: 0.88rem; }

  .main-nav {
    position: absolute;
    top: calc(100% + 6px);
    inset-inline: 14px;
    z-index: 120;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 26px 54px rgba(23, 34, 44, 0.32);
    padding: 6px 20px 20px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: max-height 0.34s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .main-nav.open {
    max-height: 480px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a:not(.nav-cta) {
    padding: 16px 4px;
    text-align: start;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    background: none;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:not(.nav-cta):last-child { border-bottom: none; }

  .main-nav a:not(.nav-cta).active {
    color: var(--tc-teal-text);
    background: none;
    box-shadow: none;
  }

  .nav-cta {
    display: block;
    margin-top: 16px;
    padding: 15px;
    text-align: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #0e9fb6);
    color: #14100a;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 10px 24px rgba(47, 210, 226, 0.4);
  }

  .nav-cta:active { transform: scale(0.98); }

  .hero-dark { padding: 44px 0 104px; }

  .kicker { font-size: 0.7rem; letter-spacing: 1.2px; padding: 7px 14px; }

  .hero p.sub { font-size: 1rem; }

  .btn-row { width: 100%; flex-direction: column; gap: 12px; }

  .btn-row .btn { width: 100%; }

  .hero-stats { width: 100%; gap: 10px; margin-top: 28px; }

  .hero-stat { flex: 1; min-width: 0; padding: 10px 6px; text-align: center; }

  .hero-stat .v { font-size: 1.15rem; }

  .hero-stat .l { font-size: 0.7rem; }

  .hero-curve { height: 44px; }

  .section { padding: 52px 0; }

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

  .svc-card { padding: 30px 24px; }

  .packages-panel { padding: 32px 18px; border-radius: 20px; }

  .pkg-header h3 { letter-spacing: 3px; font-size: 0.95rem; }

  .form-card { padding: 28px 22px; }

  .wa-float { padding: 11px 16px; font-size: 0.95rem; bottom: 16px; inset-inline-end: 16px; }

  .site-footer { text-align: center; }

  .cta-band { padding: 52px 0; }
}

/* ---- Very small phones: keep header on one line ---- */
@media (max-width: 400px) {
  .logo-img { height: 42px; }
  .lang-btn, .menu-btn { padding: 7px 9px; font-size: 0.8rem; }
  .menu-btn { gap: 5px; }
  .header-actions { gap: 5px; }
}
