/* ==========================================================================
   Harmeet Singh Kohli, Global Stylesheet
   Design system: dark base + warm saffron/gold accent.
   Bold personality (display headlines) + professional trust (clean body).
   Mobile-first. Shared across all pages.
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand colors */
  --color-bg:          #0f1420;   /* deep navy-charcoal base */
  --color-bg-alt:      #161d2e;   /* slightly lighter section bg */
  --color-surface:     #1d2638;   /* cards */
  --color-ink:         #f4f6fb;   /* primary text on dark */
  --color-ink-soft:    #aeb7cb;   /* secondary text */
  --color-line:        #2a3550;   /* borders */

  --color-accent:      #f5a623;   /* saffron/gold, CTAs, highlights */
  --color-accent-deep: #e08a0c;   /* hover */
  --color-accent-ink:  #1a1205;   /* text on accent buttons */
  --color-red:         #e23b50;   /* secondary warm accent */

  /* Typography */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing & layout */
  --container: 1140px;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 18px 50px rgba(0,0,0,.45);
  --shadow-sm: 0 6px 20px rgba(0,0,0,.30);

  --header-h:  72px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

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

h1, h2, h3 { line-height: 1.05; font-weight: 400; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

section { padding: 72px 0; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.section-intro {
  color: var(--color-ink-soft);
  max-width: 620px;
  margin-top: 14px;
}

.text-accent { color: var(--color-accent); }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s, box-shadow .2s;
  text-align: center;
  line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-ink);
  box-shadow: 0 8px 24px rgba(245,166,35,.32);
}
.btn-primary:hover { background: var(--color-accent-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line);
}
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }

.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- 4. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  background: rgba(15,20,32,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.site-header.scrolled {
  background: rgba(15,20,32,.96);
  border-bottom-color: var(--color-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.brand span {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  transition: color .2s;
}
.nav a:hover { color: var(--color-ink); }

.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--color-ink);
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
}
.hero::before { /* gradient wash, replace/overlay with stage photo */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 600px at 78% 12%, rgba(245,166,35,.16), transparent 60%),
    radial-gradient(900px 700px at 10% 90%, rgba(226,59,80,.12), transparent 55%),
    var(--color-bg);
  z-index: -2;
}
/* When you add a hero photo: set on .hero { background-image:url(...) } and
   keep this overlay for legibility */
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,20,32,.97) 0%, rgba(15,20,32,.92) 40%, rgba(15,20,32,.5) 66%, rgba(15,20,32,.12) 100%);
  z-index: -1;
}

.hero-inner { max-width: 720px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 8vw, 5.2rem);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.hero h1 .line-accent { color: var(--color-accent); display: block; }

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--color-ink-soft);
  margin-top: 22px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-langs {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-langs span {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 7px 15px;
  color: var(--color-ink-soft);
}

/* ---------- 6. Social Proof Bar ---------- */
.proof-bar {
  background: var(--color-bg-alt);
  border-block: 1px solid var(--color-line);
  padding: 22px 0;
}
.proof-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 34px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-ink-soft);
  font-weight: 600;
  font-size: .95rem;
}
.proof-item .star { color: var(--color-accent); }
.proof-sep { color: var(--color-line); }

/* ---------- 7. Generic grid / cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s var(--ease), border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--color-accent); }
.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 10px;
}
.card p { color: var(--color-ink-soft); }
.card .card-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(245,166,35,.12);
  color: var(--color-accent);
  margin-bottom: 18px;
  font-size: 1.4rem;
}

/* ---------- 8. Services ---------- */
.section-head { margin-bottom: 44px; }

.service-card { display: flex; flex-direction: column; }
.service-card .tag {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-accent); font-weight: 700; margin-bottom: 12px;
}
.service-card ul {
  list-style: none; padding: 0; margin: 14px 0 0;
  color: var(--color-ink-soft); font-size: .95rem;
}
.service-card ul li { padding: 6px 0 6px 22px; position: relative; }
.service-card ul li::before {
  content: "✓"; position: absolute; left: 0; color: var(--color-accent); font-weight: 700;
}

/* ---------- 9. Reviews ---------- */
.reviews { background: var(--color-bg-alt); }
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: var(--color-accent); letter-spacing: 2px; }
.review-card blockquote { font-size: 1.02rem; color: var(--color-ink); }
.review-meta { margin-top: auto; }
.review-meta strong { display: block; font-size: .98rem; }
.review-meta span {
  font-size: .8rem; color: var(--color-ink-soft);
  text-transform: uppercase; letter-spacing: .08em;
}
.review-badge {
  align-self: flex-start;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(245,166,35,.12); color: var(--color-accent);
  padding: 4px 10px; border-radius: 999px; font-weight: 700;
}

/* ---------- 10. Video ---------- */
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- 11. CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(245,166,35,.18), transparent 60%),
    var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 52px 40px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  text-transform: uppercase;
}
.cta-band p { color: var(--color-ink-soft); margin: 14px auto 28px; max-width: 520px; }

/* ---------- 12. Footer ---------- */
.site-footer {
  background: #0b0f18;
  border-top: 1px solid var(--color-line);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.site-footer .brand strong { font-size: 1.5rem; }
.footer-col h4 {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-ink-soft); margin-bottom: 16px; font-weight: 700;
}
.footer-col a {
  display: block; color: var(--color-ink-soft);
  padding: 6px 0; font-size: .95rem; transition: color .2s;
}
.footer-col a:hover { color: var(--color-accent); }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--color-line); border-radius: 50%;
  transition: border-color .2s, color .2s;
}
.footer-socials a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid var(--color-line);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: var(--color-ink-soft); font-size: .85rem;
}

/* ---------- 13. Floating callback button ---------- */
.float-cta {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(245,166,35,.4);
  animation: floatPulse 2.6s ease-in-out infinite;
}
@keyframes floatPulse {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-5px); }
}

/* ---------- 14. Callback Modal ---------- */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(6,9,15,.75);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  width: 100%; max-width: 460px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  animation: modalIn .25s var(--ease);
}
@keyframes modalIn { from { opacity:0; transform: translateY(16px) scale(.98);} to {opacity:1;transform:none;} }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-bg-alt); border: 1px solid var(--color-line);
  color: var(--color-ink); cursor: pointer; font-size: 1.1rem;
}
.modal-close:hover { color: var(--color-accent); }
.modal-card h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.8rem; letter-spacing: .02em;
}
.modal-card .modal-sub { color: var(--color-ink-soft); font-size: .95rem; margin: 8px 0 22px; }

/* ---------- 15. Forms ---------- */
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: .85rem; font-weight: 600;
  margin-bottom: 7px; color: var(--color-ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  font-family: inherit; font-size: 1rem;
  padding: 13px 14px;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-accent);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: .8rem; color: var(--color-ink-soft); margin-top: 12px; text-align: center; }

.form-status { font-size: .95rem; margin-top: 14px; text-align: center; min-height: 1.2em; }
.form-status.success { color: #46d39a; }
.form-status.error   { color: var(--color-red); }

/* ---------- 16. Utilities & Animations ---------- */
.reveal { opacity: 1; transform: none; }  /* visible by default — never hidden if JS fails */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- 17. Responsive ---------- */
@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-line);
    padding: 12px 20px 22px;
    transform: translateY(-120%);
    transition: transform .3s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 13px 4px; border-bottom: 1px solid var(--color-line); }
  .nav-cta { margin: 14px 0 0; }
  .nav-toggle { display: flex; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  section { padding: 56px 0; }
  .hero { min-height: auto; }
  .cta-band { padding: 40px 24px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .float-cta { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   18. IMAGES  (added, hero photos, gallery, portrait, media blocks)
   ========================================================================== */
.hero.has-bg { background-size: cover; background-position: center 32%; }
.hero.has-bg::before { display: none; }

img.media {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.media-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.portrait-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}
.portrait-frame img { width: 100%; display: block; aspect-ratio: 9/11; object-fit: cover; }

.poster img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.g-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  position: relative;
  aspect-ratio: 1/1;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.g-item:hover img { transform: scale(1.07); }

@media (max-width: 860px) {
  .media-2col { grid-template-columns: 1fr; gap: 26px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   19. FIXES — button text contrast in nav/footer + floating-button clearance
   ========================================================================== */
/* Keep primary buttons dark-on-gold and ghost buttons light, even when they
   sit inside .nav / .footer-col where the generic `a` color rule would win */
.nav a.btn-primary,  .footer-col a.btn-primary,
.nav a.btn-primary:hover, .footer-col a.btn-primary:hover { color: var(--color-accent-ink); }
.nav a.btn-ghost,    .footer-col a.btn-ghost,
.nav a.btn-ghost:hover,  .footer-col a.btn-ghost:hover  { color: var(--color-ink); }

/* Extra bottom padding so the fixed "Request a Callback" button never covers
   the footer credit line (Online World Solutions) when scrolled to the bottom */
.site-footer { padding-bottom: 112px; }
@media (max-width: 480px) { .site-footer { padding-bottom: 128px; } }

/* ==========================================================================
   20. SPLIT HERO (text left, photo right) + VIDEO CLIPS GRID
   ========================================================================== */
.hero--split .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero--split .hero-inner { max-width: 620px; }

.hero-figure { position: relative; }
.hero-figure::before {           /* warm accent glow behind the photo */
  content: ""; position: absolute; inset: -8% -6% -8% 6%; z-index: 0;
  background: radial-gradient(60% 55% at 62% 32%, rgba(245,166,35,.20), transparent 70%);
  filter: blur(8px);
}
.hero-figure img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

/* Video clips grid — text sits above, never over the videos */
.clips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.clip {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--color-line); box-shadow: var(--shadow-sm);
  background: #000;
}
.clip iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 860px) {
  .hero--split .container { grid-template-columns: 1fr; gap: 28px; }
  .hero--split .hero-inner { max-width: none; }
  .hero-figure { max-width: 400px; margin-inline: auto; }
}
@media (max-width: 700px) { .clips-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Section 21, Reel wall (self-hosted vertical stage clips)
   ========================================================================== */
.reel-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin-inline: auto;
}
.reel {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.reel:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--color-accent); }
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--color-ink);
  background: rgba(15, 20, 32, .72);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  transition: opacity .25s ease;
}
.reel.is-playing .reel-tag { opacity: 0; }
.reel.is-unmuted .reel-tag { display: none; }
@media (max-width: 700px) {
  .reel-wall { grid-template-columns: 1fr; max-width: 340px; gap: 20px; }
}
