/* Vihaan Media — theme colours pulled from the brand poster:
   deep navy background, gold headline accent, teal section accent,
   plus the logo's blue/pink/orange gradient used sparingly. */
:root {
  --navy: #0a1230;
  --navy-light: #121c45;
  --gold: #f2a93b;
  --teal: #0e7c74;
  --teal-dark: #0a5b55;
  --pink: #e8397f;
  --ink: #1c2333;
  --muted: #5a6478;
  --bg-alt: #f4f6f9;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 18, 48, 0.08);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.header-top { border-bottom: 1px solid rgba(255,255,255,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.brand { display: inline-flex; align-items: center; }
.logo-img {
  height: 56px;
  width: auto;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  font-size: 0.95rem;
}
.primary-nav a { color: rgba(255,255,255,0.88); transition: color 0.2s; }
.primary-nav a:hover, .primary-nav a:focus { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: #ffbf5c; color: var(--navy) !important; }

.hero {
  padding: 56px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 12px;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 18px;
}
.hero-text h1 .accent { color: var(--gold); }

.hero-lead {
  max-width: 640px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 26px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--gold), #e88a2c);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(242, 169, 59, 0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.audience-strip {
  list-style: none;
  margin: 10px 0 0;
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
}
.audience-strip li { display: flex; align-items: center; gap: 10px; }
.audience-icon { font-size: 1.3rem; }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--teal-dark);
  margin: 0 0 46px;
}
.section-title span { position: relative; padding-bottom: 16px; }
.section-title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}
.section-title-left span { display: inline-block; }
.section-title-left { text-align: left; }
.section-title-left span::after { left: 0; transform: none; }

/* Services */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,18,48,0.05);
}
.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  margin-bottom: 18px;
}
.card h3 { margin: 0 0 10px; font-size: 1.15rem; color: var(--navy); }
.card p { margin: 0; color: var(--muted); }

/* Focus grid */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.focus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
}
.focus-card h3 { margin: 14px 0 8px; font-size: 1.05rem; color: var(--navy); }
.focus-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.focus-icon { font-size: 1.8rem; }

.focus-teal { border-top-color: var(--teal); }
.focus-navy { border-top-color: var(--navy); }
.focus-purple { border-top-color: #5b3fa0; }
.focus-gold { border-top-color: var(--gold); }
.focus-rust { border-top-color: #c0562b; }

/* Why us */
.why-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.check-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 500;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-panel {
  background: linear-gradient(150deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.why-logo { max-width: 260px; border-radius: 10px; }

/* Tagline strip */
.tagline-strip {
  background: linear-gradient(120deg, var(--navy), var(--teal-dark));
  color: var(--white);
  padding: 46px 0;
}
.tagline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}
.tagline-item p { margin: 10px 0 0; color: rgba(255,255,255,0.85); }
.tagline-item strong { color: var(--gold); }
.tagline-icon { font-size: 1.8rem; }

/* Contact */
.contact-section { background: var(--bg-alt); }
.contact-lead {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: -26px auto 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,18,48,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(10,18,48,0.14);
}
.contact-icon { font-size: 1.8rem; margin-bottom: 6px; }
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}
.contact-value { font-weight: 700; color: var(--navy); font-size: 1.02rem; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 42px 0 26px;
  text-align: center;
}
.footer-logo { height: 46px; margin: 0 auto 14px; border-radius: 8px; }
.footer-tagline { font-weight: 600; color: var(--white); margin: 0 0 14px; }
.footer-contact { margin: 0 0 18px; font-size: 0.95rem; }
.footer-contact a { font-weight: 600; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .sep { margin: 0 12px; opacity: 0.4; }
.footer-copy { font-size: 0.82rem; opacity: 0.6; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-panel { order: -1; padding: 20px; }
  .why-logo { max-width: 200px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 20px 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .primary-nav.open { max-height: 320px; }
  .primary-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { margin-top: 10px; text-align: center; }
  .header-top { position: relative; }
  .footer-contact { display: flex; flex-direction: column; gap: 8px; }
  .footer-contact .sep { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .hero { padding: 40px 16px 32px; }
  .btn { width: 100%; text-align: center; }
  .hero-actions { flex-direction: column; }
}
