/* =========================================================
   Singh Cable Network — Site stylesheet
   ========================================================= */

:root {
  --maroon-deep: #2B0707;
  --maroon: #3A0C0C;
  --red: #E11B22;
  --red-dark: #B5141A;
  --cream: #F4EFE3;
  --cream-2: #FBF8F1;
  --ink: #1A1410;
  --muted: #6B5E55;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-2);
  line-height: 1.6;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }
input, textarea, button { font-family: inherit; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }

.container { max-width: 1180px; margin: 0 auto; padding-left: 22px; padding-right: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .15s ease, box-shadow .15s ease, transform .15s ease;
}
.btn-red { background: var(--red); color: #fff; font-size: 16px; padding: 14px 28px; box-shadow: 0 8px 22px rgba(225,27,34,.34); }
.btn-red:hover { background: var(--red-dark); }
.btn-sm { font-size: 14px; padding: 9px 18px; box-shadow: 0 4px 12px rgba(225,27,34,.3); }
.btn-light { background: #fff; color: var(--maroon-deep); font-size: 16px; font-weight: 700; padding: 14px 26px; border-radius: 10px; }
.btn-ghost { background: transparent; color: var(--cream); font-size: 16px; padding: 14px 24px; border-radius: 10px; border: 1px solid rgba(244,239,227,.3); }
.btn-dark { background: var(--maroon-deep); color: var(--cream); font-size: 15px; padding: 12px 24px; border-radius: 10px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--maroon-deep);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img { height: 46px; width: auto; }
.nav-desktop { display: flex; align-items: center; gap: 26px; }
.nav-desktop a { color: var(--cream); font-size: 15px; font-weight: 500; }
.nav-desktop a:hover { color: #fff; }
.nav-desktop a.active { color: var(--red); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 7px; color: var(--cream); font-size: 14px; font-weight: 600; }
.header-phone svg { stroke: var(--red); }
.header-group { display: flex; align-items: center; gap: 30px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 1px solid rgba(244,239,227,.3);
  border-radius: 9px;
  padding: 9px 11px;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--cream); border-radius: 2px; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--maroon-deep);
  display: flex;
  flex-direction: column;
  padding: 22px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-top span { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--cream); }
.mobile-close { background: transparent; border: 1px solid rgba(244,239,227,.3); border-radius: 9px; padding: 8px 12px; color: var(--cream); font-size: 18px; cursor: pointer; }
.mobile-nav { display: flex; flex-direction: column; gap: 6px; margin-top: 42px; }
.mobile-nav a { color: var(--cream); font-size: 22px; font-weight: 600; padding: 16px 4px; border-bottom: 1px solid rgba(244,239,227,.12); }
.mobile-call { margin-top: auto; background: var(--red); color: #fff; font-size: 17px; font-weight: 600; padding: 15px; border-radius: 10px; text-align: center; }

/* ---------- Sections ---------- */
.section { padding-top: 74px; padding-bottom: 74px; }
.section-dark { background: var(--maroon-deep); color: var(--cream); }
.eyebrow { color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto; }
.section-head h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(28px,4vw,40px); margin: 12px 0 0; }
.section-dark .section-head h2 { color: var(--cream-2); }

/* ---------- Hero ---------- */
.hero { background: var(--maroon-deep); color: var(--cream); overflow: hidden; }
.hero-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 48px; padding-top: 70px; padding-bottom: 80px; }
.hero-text { flex: 1 1 360px; min-width: 300px; }
.pill {
  display: inline-block;
  background: rgba(225,27,34,.16);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(225,27,34,.4);
}
.hero h1 { font-family: var(--serif); font-weight: 800; font-size: clamp(34px,5vw,54px); line-height: 1.1; margin: 22px 0 0; color: var(--cream-2); }
.hero p { font-size: 18px; color: rgba(244,239,227,.82); margin: 22px 0 0; max-width: 520px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art { flex: 1 1 320px; min-width: 280px; display: flex; justify-content: center; }
.hero-art svg { max-width: 100%; height: auto; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--maroon-deep); color: var(--cream); }
.page-hero .container { padding-top: 62px; padding-bottom: 48px; }
.page-hero h1 { font-family: var(--serif); font-weight: 800; font-size: clamp(32px,5vw,50px); line-height: 1.12; margin: 14px 0 0; color: var(--cream-2); max-width: 760px; }
.page-hero p { font-size: 18px; color: rgba(244,239,227,.8); margin: 18px 0 0; max-width: 600px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.mt-46 { margin-top: 46px; }

.card {
  background: #fff;
  border: 1px solid #efe7da;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(43,7,7,.04);
  transition: box-shadow .18s ease, border-color .18s ease;
}
.card:hover { box-shadow: 0 14px 32px rgba(43,7,7,.1); border-color: var(--red); }
.card h3 { font-size: 19px; font-weight: 700; margin: 18px 0 6px; color: var(--ink); }
.card p { font-size: 15px; color: var(--muted); margin: 0; }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: #FBF1F1;
  display: flex; align-items: center; justify-content: center;
}
.icon-badge svg { stroke: var(--red); }

/* dark cards */
.card-dark {
  background: var(--maroon);
  border: 1px solid rgba(244,239,227,.1);
  border-radius: 16px;
  padding: 30px;
}
.card-dark h3 { font-size: 19px; font-weight: 700; margin: 18px 0 6px; color: var(--cream-2); }
.card-dark p { font-size: 15px; color: rgba(244,239,227,.75); margin: 0; }
.icon-badge-dark {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(225,27,34,.18);
  display: flex; align-items: center; justify-content: center;
}
.icon-badge-dark svg { stroke: var(--red); }

/* ---------- Info quote ---------- */
.info { max-width: 900px; margin: 0 auto; text-align: center; padding-top: 74px; padding-bottom: 74px; }
.info svg { margin-bottom: 18px; }
.info p { font-family: var(--serif); font-size: clamp(22px,3vw,30px); line-height: 1.5; color: var(--ink); margin: 0; font-weight: 500; }

/* ---------- CTA band ---------- */
.cta-wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px 80px; }
.cta-band {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border-radius: 24px;
  padding: 54px 40px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(43,7,7,.22);
}
.cta-band h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(26px,4vw,38px); color: var(--cream-2); margin: 0; }
.cta-band p { font-size: 17px; color: rgba(244,239,227,.8); margin: 14px 0 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- About ---------- */
.about-story { display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; padding-top: 70px; padding-bottom: 70px; }
.about-story-text { flex: 1 1 380px; min-width: 300px; }
.about-story-text h2 { font-family: var(--serif); font-weight: 700; font-size: 30px; color: var(--ink); margin: 0 0 18px; }
.about-story-text p { font-size: 17px; color: #473d35; margin: 0 0 16px; }
.about-story-text p:last-child { margin-bottom: 0; }
.fact-card {
  flex: 1 1 280px; min-width: 260px;
  background: #fff;
  border: 1px solid #efe7da;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(43,7,7,.06);
}
.fact-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid #f0e9dd; }
.fact-row:last-child { border-bottom: none; }
.fact-row .label { color: var(--muted); font-size: 15px; }
.fact-row .value { font-weight: 700; color: var(--ink); }
.fact-row .value.small { font-size: 13px; }

.team-heading { font-family: var(--serif); font-weight: 700; font-size: 30px; color: var(--ink); margin: 0 0 24px; }
.team-card { background: #fff; border: 1px solid #efe7da; border-radius: 16px; padding: 28px; display: flex; align-items: center; gap: 20px; }
.avatar {
  width: 66px; height: 66px; flex: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 24px;
}
.avatar.maroon { background: var(--maroon-deep); color: var(--cream); }
.avatar.red { background: var(--red); color: #fff; }
.team-card h3 { font-size: 19px; font-weight: 700; margin: 0; color: var(--ink); }
.team-card p { font-size: 15px; color: var(--muted); margin: 4px 0 0; }

.values { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.value { text-align: center; padding: 24px; }
.value .icon-badge { margin: 0 auto; width: 54px; height: 54px; border-radius: 14px; }
.value h3 { font-size: 17px; font-weight: 700; margin: 16px 0 4px; color: var(--ink); }
.value p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Services list ---------- */
.svc-list { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; padding-top: 64px; padding-bottom: 30px; }
.svc-row {
  background: #fff;
  border: 1px solid #efe7da;
  border-radius: 18px;
  padding: 32px;
  display: flex; flex-wrap: wrap; gap: 26px; align-items: flex-start;
}
.svc-icon { width: 58px; height: 58px; flex: none; border-radius: 14px; background: #FBF1F1; display: flex; align-items: center; justify-content: center; }
.svc-icon svg { stroke: var(--red); }
.svc-body { flex: 1 1 320px; }
.svc-body h2 { font-family: var(--serif); font-size: 24px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.svc-body p { font-size: 16px; color: #473d35; margin: 0; }
.svc-note-wrap { max-width: 1080px; margin: 0 auto; padding: 20px 22px 84px; }
.svc-note { background: #FBF1F1; border: 1px solid #f3dada; border-radius: 18px; padding: 36px; text-align: center; }
.svc-note p { font-size: 17px; color: #473d35; margin: 0 auto 22px; max-width: 640px; }

/* ---------- Contact ---------- */
.contact-grid { display: flex; flex-wrap: wrap; gap: 34px; align-items: flex-start; padding-top: 56px; padding-bottom: 84px; }
.contact-info {
  flex: 1 1 360px; min-width: 300px;
  background: var(--maroon-deep); color: var(--cream);
  border-radius: 20px; padding: 38px;
  box-shadow: 0 14px 36px rgba(43,7,7,.18);
}
.contact-info h2 { font-family: var(--serif); font-size: 24px; font-weight: 700; margin: 0 0 24px; color: var(--cream-2); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-mini-icon {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px; background: rgba(225,27,34,.18);
  display: flex; align-items: center; justify-content: center;
}
.contact-mini-icon svg { stroke: var(--red); }
.contact-line p { font-size: 15px; color: rgba(244,239,227,.85); margin: 0; line-height: 1.55; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-method { display: flex; gap: 14px; align-items: center; color: var(--cream); }
.contact-method .meta { display: block; font-size: 12px; color: rgba(244,239,227,.6); }
.contact-method .val { font-size: 16px; font-weight: 600; }
.contact-meta-row { border-top: 1px solid rgba(244,239,227,.14); padding-top: 18px; display: flex; flex-wrap: wrap; gap: 24px; }
.contact-meta-row .meta { display: block; font-size: 12px; color: rgba(244,239,227,.6); }
.contact-meta-row .val { font-size: 15px; font-weight: 600; }
.maps-btn { margin-top: 22px; display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--red); color: #fff; font-size: 15px; font-weight: 600; padding: 13px; border-radius: 11px; }
.maps-btn:hover { background: var(--red-dark); }
.maps-btn svg { stroke: #fff; }

.contact-form-card {
  flex: 1 1 380px; min-width: 300px;
  background: #fff;
  border: 1px solid #efe7da;
  border-radius: 20px;
  padding: 38px;
  box-shadow: 0 8px 24px rgba(43,7,7,.06);
}
.contact-form-card h2 { font-family: var(--serif); font-size: 24px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.form-intro { font-size: 15px; color: var(--muted); margin: 0 0 24px; }
.field-label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field-label .optional { color: var(--muted); font-weight: 400; }
.field {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #ddd2c4;
  border-radius: 10px;
  font-size: 15px;
  background: var(--cream-2);
}
.field-gap { margin-bottom: 18px; }
textarea.field { resize: vertical; }
.field-error { color: var(--red-dark); font-size: 13px; margin: 4px 0 12px; }
.send-error { color: var(--red-dark); font-size: 14px; margin: 0 0 14px; background: #FBF1F1; border: 1px solid #f3dada; border-radius: 9px; padding: 11px 13px; }
button.btn-red[disabled] { opacity: .6; cursor: default; }

.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 30px 0; }
.success-circle { width: 64px; height: 64px; border-radius: 50%; background: #E9F7EE; display: flex; align-items: center; justify-content: center; }
.success-circle svg { stroke: #1F8A5B; }
.form-success h2 { font-family: var(--serif); font-size: 24px; font-weight: 700; margin: 20px 0 8px; color: var(--ink); }
.form-success p { font-size: 16px; color: var(--muted); margin: 0 0 24px; max-width: 320px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--maroon-deep); color: var(--cream); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); padding-top: 60px; padding-bottom: 30px; }
.footer-brand { grid-column: 1 / -1; max-width: 380px; }
.footer-brand img { height: 54px; width: auto; }
.footer-brand p { font-size: 14px; color: rgba(244,239,227,.7); margin: 18px 0 10px; max-width: 340px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin: 0 0 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-links span { color: rgba(244,239,227,.82); font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 14px; color: rgba(244,239,227,.7); margin: 0 0 12px; line-height: 1.55; }
.footer-contact .gstin { color: rgba(244,239,227,.55); font-size: 13px; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(244,239,227,.12); }
.footer-bottom .container { padding-top: 20px; padding-bottom: 20px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(244,239,227,.6); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 879px) {
  .nav-desktop, .header-group { display: none; }
  .hamburger { display: flex; }
}
