@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --card: #161616;
  --card2: #1c1c1c;
  --orange: #FF4500;
  --orange2: #FF6B00;
  --orange-glow: rgba(255,69,0,0.35);
  --orange-dim: rgba(255,69,0,0.1);
  --white: #ffffff;
  --off-white: #e8e8e8;
  --muted: #777777;
  --border: rgba(255,255,255,0.06);
  --border-orange: rgba(255,69,0,0.3);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 64px;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}
nav.scrolled {
  padding: 14px 64px;
  background: rgba(10,10,10,0.97);
  border-color: var(--border-orange);
  box-shadow: 0 0 40px rgba(255,69,0,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 38px; width: auto;
  filter: drop-shadow(0 0 10px rgba(255,69,0,0.3));
}
.nav-logo-fallback {
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  background: linear-gradient(135deg, #fff 40%, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex; align-items: center; gap: 40px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 26px;
  border: 1px solid var(--orange) !important;
  color: var(--orange) !important;
  border-radius: 3px; font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--orange) !important;
  color: #000 !important;
  box-shadow: 0 0 25px var(--orange-glow) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger — premium animated button */
.hamburger {
  display: none;
  position: relative;
  z-index: 1001;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s;
}
.hamburger:hover {
  border-color: var(--border-orange);
  background: var(--orange-dim);
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.3s;
}
/* X animation when menu is open */
.hamburger.active {
  border-color: var(--border-orange);
  background: var(--orange-dim);
  box-shadow: 0 0 18px var(--orange-dim);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0; width: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile full-screen overlay menu */
.mob-nav {
  position: fixed; inset: 0; z-index: 1040;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,69,0,0.14), transparent 55%),
    radial-gradient(circle at 10% 85%, rgba(255,69,0,0.08), transparent 50%),
    rgba(8,8,8,0.98);
  backdrop-filter: blur(24px);
  opacity: 0; visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  overflow-y: auto;
  padding: 100px 28px 50px;
}
.mob-nav.open {
  opacity: 1; visibility: visible; transform: scale(1);
}
.mob-nav .mob-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer; color: var(--white);
  transition: all 0.3s;
}
.mob-nav .mob-close:hover {
  border-color: var(--border-orange); background: var(--orange-dim); color: var(--orange);
  transform: rotate(90deg);
}
.mob-nav .mob-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 36px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.mob-nav.open .mob-tag { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.mob-nav .mob-tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.mob-links {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: 100%; max-width: 360px;
}
.mob-links a {
  display: flex; align-items: center; gap: 14px;
  width: 100%; justify-content: center;
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  padding: 14px 0;
  position: relative;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease, color 0.3s;
}
.mob-nav.open .mob-links a { opacity: 1; transform: translateY(0); }
.mob-nav.open .mob-links a:nth-child(1) { transition-delay: 0.12s; }
.mob-nav.open .mob-links a:nth-child(2) { transition-delay: 0.17s; }
.mob-nav.open .mob-links a:nth-child(3) { transition-delay: 0.22s; }
.mob-nav.open .mob-links a:nth-child(4) { transition-delay: 0.27s; }
.mob-nav.open .mob-links a:nth-child(5) { transition-delay: 0.32s; }
.mob-links a .mob-num {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  color: var(--orange); opacity: 0.7;
}
.mob-links a:hover, .mob-links a.active { color: var(--orange); }
.mob-links a.mob-cta {
  margin-top: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #000; border-radius: 8px; font-size: 1.05rem;
  padding: 15px 0; box-shadow: 0 0 30px var(--orange-glow);
}
.mob-links a.mob-cta:hover { color: #000; }

.mob-divider {
  width: 60px; height: 1px; background: var(--border-orange);
  margin: 32px 0 28px; opacity: 0;
  transition: opacity 0.45s ease 0.36s;
}
.mob-nav.open .mob-divider { opacity: 1; }

.mob-bottom {
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease; transition-delay: 0.4s;
}
.mob-nav.open .mob-bottom { opacity: 1; transform: translateY(0); }
.mob-bottom a {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; transition: all 0.3s;
}
.mob-bottom a:hover {
  border-color: var(--border-orange); color: var(--orange); background: var(--orange-dim);
  transform: translateY(-3px);
}
body.menu-locked { overflow: hidden; }

/* ── HERO BACKGROUND ELEMENTS ── */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(100px); opacity: 0.15;
}
.orb-orange {
  width: 700px; height: 700px; background: var(--orange);
  top: -200px; right: -200px;
  animation: orb-drift 18s ease-in-out infinite;
}
.orb-red {
  width: 400px; height: 400px; background: #cc2200;
  bottom: -150px; left: -100px;
  animation: orb-drift 24s ease-in-out infinite reverse;
}
@keyframes orb-drift {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(40px,-60px); }
}

/* Revolving rings */
.ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid transparent;
}
.ring-1 {
  width: 520px; height: 520px;
  border-top-color: rgba(255,69,0,0.25);
  border-right-color: rgba(255,69,0,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: spin 22s linear infinite;
}
.ring-2 {
  width: 750px; height: 750px;
  border-top-color: rgba(255,69,0,0.12);
  border-left-color: rgba(255,69,0,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: spin 35s linear infinite reverse;
}
.ring-3 {
  width: 980px; height: 980px;
  border-top-color: rgba(255,69,0,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: spin 50s linear infinite;
}
@keyframes spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Grid bg */
.grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* ── PAGE SECTIONS ── */
.page-section {
  min-height: 100vh; padding-top: 90px;
  position: relative; overflow: hidden;
}

/* ── COMMON SECTION STYLES ── */
.section-wrap { padding: 110px 64px; position: relative; }
.section-wrap.bg-surface { background: var(--surface); }
.section-wrap.bg-bg { background: var(--bg); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; display: block; width: 22px; height: 1px; background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 22px;
}
.title-accent {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.title-italic { font-style: italic; }

.section-sub {
  font-size: 1rem; color: var(--muted); line-height: 1.85; max-width: 500px;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #000; border: none; border-radius: 3px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.3s; cursor: pointer;
  box-shadow: 0 0 35px var(--orange-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px var(--orange-glow);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: transparent; color: var(--white);
  border: 1px solid var(--border); border-radius: 3px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--orange); color: var(--orange);
  box-shadow: 0 0 20px var(--orange-dim);
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ── HERO (INDEX) ── */
.hero-section {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 64px 80px;
}
.hero-left { position: relative; z-index: 2; max-width: 680px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  border: 1px solid var(--border-orange);
  border-radius: 30px; background: var(--orange-dim);
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 32px;
  animation: fade-up 0.7s ease both;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 8px var(--orange);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.03em;
  animation: fade-up 0.7s 0.1s ease both;
}
.hero-h1 .line-white { display: block; color: var(--white); }
.hero-h1 .line-orange {
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-h1 .line-italic {
  display: block; font-style: italic; color: var(--off-white);
  font-size: 0.85em;
}

.hero-p {
  font-size: 1.05rem; color: var(--muted); line-height: 1.85;
  max-width: 500px; margin: 28px 0 44px;
  animation: fade-up 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fade-up 0.7s 0.3s ease both;
}

/* Stats bar */
.hero-stats {
  display: flex; gap: 0; margin-top: 80px;
  position: relative; z-index: 2;
  animation: fade-up 0.7s 0.45s ease both;
}
.stat-box {
  padding: 28px 44px;
  border: 1px solid var(--border);
  background: rgba(22,22,22,0.7);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: border-color 0.3s;
}
.stat-box:first-child { border-radius: 6px 0 0 6px; }
.stat-box:last-child { border-radius: 0 6px 6px 0; border-left: none; }
.stat-box:not(:first-child):not(:last-child) { border-left: none; }
.stat-box:hover { border-color: var(--border-orange); }
.stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 6px; font-weight: 500;
}

/* Right large text watermark */
.hero-watermark {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800; color: transparent;
  -webkit-text-stroke: 1px rgba(255,69,0,0.07);
  letter-spacing: -0.05em; pointer-events: none;
  user-select: none; z-index: 1;
  animation: fade-up 1s 0.6s ease both;
}

/* ── MARQUEE ── */
.marquee-bar {
  padding: 18px 0; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.marquee-inner {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 14px;
  white-space: nowrap; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.marquee-item .m-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--orange);
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual-box {
  position: relative;
}
.about-main-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 60px 48px;
  text-align: center; position: relative; overflow: hidden;
  transition: all 0.4s;
}
.about-main-card:hover {
  border-color: var(--border-orange);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px var(--orange-dim);
  transform: translateY(-6px);
}
.about-main-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
/* inner orbit rings on card */
.card-ring {
  position: absolute; border-radius: 50%; border: 1px dashed rgba(255,69,0,0.12);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.card-ring-1 { width: 180px; height: 180px; animation: spin 14s linear infinite; }
.card-ring-2 { width: 260px; height: 260px; animation: spin 22s linear infinite reverse; }
.card-ring-3 { width: 340px; height: 340px; animation: spin 30s linear infinite; }

.about-glyph {
  font-family: var(--font-display); font-size: 5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--orange), transparent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 12px; position: relative; z-index: 1;
}
.about-city {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 6px; position: relative; z-index: 1;
}
.about-sub-city { font-size: 0.82rem; color: var(--muted); position: relative; z-index: 1; }

.about-badge {
  position: absolute; background: var(--card2);
  border: 1px solid var(--border-orange);
  border-radius: 10px; padding: 13px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 0 25px var(--orange-dim);
}
.badge-top { top: -16px; right: -16px; }
.badge-bot { bottom: -16px; left: -16px; }
.badge-icon { font-size: 1.3rem; }
.badge-info strong { display: block; font-size: 0.82rem; font-weight: 700; }
.badge-info span { font-size: 0.7rem; color: var(--muted); }

.about-body { color: var(--muted); line-height: 1.9; font-size: 0.95rem; margin-bottom: 36px; }
.about-body strong { color: var(--white); }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px; border: 1px solid var(--border);
  border-radius: 10px; background: var(--card);
  transition: all 0.3s;
}
.about-feat:hover {
  border-color: var(--border-orange);
  box-shadow: 0 0 20px var(--orange-dim);
}
.feat-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--orange-dim); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; border: 1px solid var(--border-orange);
}
.feat-text strong { font-size: 0.83rem; font-weight: 600; display: block; margin-bottom: 2px; }
.feat-text span { font-size: 0.73rem; color: var(--muted); }

/* ── SERVICES PAGE ── */
.services-header { text-align: center; margin-bottom: 72px; }
.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.svc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 38px 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s; transform-style: preserve-3d;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -10%, var(--orange-dim) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.4s;
}
.svc-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 50px var(--orange-dim);
}
.svc-card:hover::before { opacity: 1; }
.svc-card.pop {
  background: linear-gradient(135deg, rgba(255,69,0,0.09), rgba(255,69,0,0.03));
  border-color: var(--border-orange);
}
.svc-card.pop::after {
  content: 'Most Popular';
  position: absolute; top: 18px; right: 18px;
  background: var(--orange); color: #000;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.svc-num {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--orange); text-transform: uppercase; opacity: 0.7; margin-bottom: 18px;
}
.svc-icon {
  width: 54px; height: 54px;
  background: var(--orange-dim); border-radius: 12px;
  border: 1px solid var(--border-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 22px;
  transition: all 0.3s;
}
.svc-card:hover .svc-icon {
  background: var(--orange); box-shadow: 0 0 25px var(--orange-glow);
  transform: scale(1.1);
}
.svc-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.svc-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag {
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 0.68rem; color: var(--muted); font-weight: 500;
  transition: all 0.3s;
}
.svc-card:hover .svc-tag { border-color: var(--border-orange); color: var(--orange); }

/* ── REVIEWS PAGE ── */
.reviews-header { margin-bottom: 64px; }

.vid-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.vid-label::after { content:''; flex:1; height:1px; background: var(--border); }

.videos-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 80px;
}
.vid-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: all 0.4s;
}
.vid-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px var(--orange-dim);
}
.vid-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; background: #000;
}
.vid-wrap video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.vid-shield {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.vid-info { padding: 20px 22px 24px; }
.vid-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.vid-role { font-size: 0.76rem; color: var(--muted); margin-top: 3px; }
.vid-stars { color: #FFD700; font-size: 0.82rem; letter-spacing: 2px; margin-top: 10px; }

.written-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 26px;
  display: flex; align-items: center; gap: 14px;
}
.written-label::after { content:''; flex:1; height:1px; background: var(--border); }

.written-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 30px;
  position: relative; overflow: hidden;
  transition: all 0.4s;
}
.review-card::before {
  content: '"'; position: absolute; top: 12px; right: 22px;
  font-family: var(--font-display); font-size: 5rem; font-weight: 800;
  color: var(--orange); opacity: 0.07; line-height: 1;
}
.review-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 30px var(--orange-dim);
}
.r-stars { color: #FFD700; font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 14px; }
.r-text { font-size: 0.88rem; color: var(--muted); line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.r-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.r-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #000;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
}
.r-name { font-weight: 700; font-size: 0.86rem; }
.r-co { font-size: 0.73rem; color: var(--muted); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-intro { color: var(--muted); line-height: 1.9; font-size: 0.95rem; margin-bottom: 48px; }
.contact-intro strong { color: var(--white); }

.contact-items { display: flex; flex-direction: column; gap: 14px; }
.c-item {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--white);
  padding: 20px 22px; border: 1px solid var(--border);
  border-radius: 12px; background: var(--card);
  transition: all 0.3s;
}
.c-item:hover {
  border-color: var(--border-orange);
  background: var(--card2);
  box-shadow: 0 0 30px var(--orange-dim);
  transform: translateX(6px);
  color: var(--orange);
}
.c-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--orange-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border: 1px solid var(--border-orange);
  transition: all 0.3s;
}
.c-item:hover .c-icon { background: var(--orange); box-shadow: 0 0 15px var(--orange-glow); }
.c-lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; display: block; }
.c-val { font-weight: 600; font-size: 0.95rem; margin-top: 2px; }

/* Google Form CTA box */
.gform-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 52px 48px;
  position: relative; overflow: hidden; text-align: center;
}
.gform-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
/* Revolving ring inside contact box */
.gform-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px dashed rgba(255,69,0,0.1);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.gform-ring-1 { width: 250px; height: 250px; animation: spin 18s linear infinite; }
.gform-ring-2 { width: 380px; height: 380px; animation: spin 28s linear infinite reverse; }

.gform-icon { font-size: 3.5rem; margin-bottom: 20px; position: relative; z-index: 1; }
.gform-title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.gform-sub {
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 36px; position: relative; z-index: 1;
}
.gform-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #000; border: none; border-radius: 4px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.3s; cursor: pointer;
  box-shadow: 0 0 40px var(--orange-glow);
  position: relative; z-index: 1;
}
.gform-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 70px var(--orange-glow);
}

.social-row { display: flex; gap: 12px; margin-top: 36px; }
.soc-btn {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; color: var(--muted);
  transition: all 0.3s;
}
.soc-btn:hover {
  background: var(--orange-dim); border-color: var(--border-orange);
  color: var(--orange); transform: translateY(-3px);
  box-shadow: 0 0 15px var(--orange-dim);
}

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 64px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 56px;
}
.foot-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 16px;
}
.foot-logo img { height: 32px; }
.foot-logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  background: linear-gradient(135deg, #fff, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.foot-tagline { font-size: 0.84rem; color: var(--muted); line-height: 1.7; max-width: 210px; }
.foot-col-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { text-decoration: none; color: var(--muted); font-size: 0.86rem; transition: color 0.3s; }
.foot-col a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.foot-copy { font-size: 0.77rem; color: var(--muted); }
.foot-copy span { color: var(--orange); }
.foot-soc { display: flex; gap: 10px; }
.foot-soc-btn {
  width: 34px; height: 34px; border-radius: 7px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; text-decoration: none; color: var(--muted);
  transition: all 0.3s;
}
.foot-soc-btn:hover { background: var(--orange); color: #000; box-shadow: 0 0 15px var(--orange-glow); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; }
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.5rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: all 0.3s;
  animation: wa-pulse 3s ease infinite;
}
.wa-btn:hover { transform: scale(1.15); box-shadow: 0 8px 40px rgba(37,211,102,0.65); }
@keyframes wa-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
.wa-tip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 14px;
  font-size: 0.78rem; white-space: nowrap; color: var(--white);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ── RESPONSIVE GRID UTILITIES ── */
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-2-col-tight { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding: 18px 32px; }
  .hero-section { padding: 110px 32px 70px; }
  .section-wrap { padding: 90px 32px; }
  footer { padding: 60px 32px 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-watermark { display: none; }
  .grid-2-col { grid-template-columns: 1fr; gap: 44px; }
  .grid-3-col { grid-template-columns: repeat(2, 1fr); }
  .grid-4-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav, nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo svg { width: 110px; height: 32px; }
  .hero-section { padding: 100px 20px 60px; }
  .section-wrap { padding: 70px 20px; }
  footer { padding: 50px 20px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .videos-row { grid-template-columns: 1fr; }
  .written-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-box { border-radius: 0; border-left: 1px solid var(--border) !important; }
  .stat-box:first-child { border-radius: 6px 6px 0 0; }
  .stat-box:last-child { border-radius: 0 0 6px 6px; border-top: none; }
  .ring-1, .ring-2, .ring-3 { display: none; }
  .grid-2-col-tight { grid-template-columns: 1fr; gap: 12px; }
  .grid-3-col { grid-template-columns: 1fr; }
  .grid-4-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  nav, nav.scrolled { padding: 12px 16px; }
  .nav-logo svg { width: 96px; height: 28px; }
  .hamburger { width: 40px; height: 40px; }
  .hero-section { padding: 90px 16px 50px; }
  .section-wrap { padding: 56px 16px; }
  footer { padding: 44px 16px 22px; }
  .mob-nav { padding: 88px 20px 40px; }
  .mob-links a { font-size: 1.4rem; }
  .gform-box { padding: 36px 22px; }
  .contact-box, .about-main-card { padding: 36px 24px; }
  .grid-4-col { grid-template-columns: 1fr; }
}