/* =========================================================
   BHARAT COMPUTER SALES AND SERVICES — CORE STYLESHEET
   Structure:
   1. Design Tokens (CSS Variables)
   2. Reset & Base
   3. Utilities & Layout
   4. Header / Navigation
   5. Buttons & Chips
   6. Hero
   7. Status Ticker (signature element)
   8. Section Headings / Eyebrows
   9. About Preview / Services / Why Choose Us
   10. Gallery
   11. Testimonials / FAQ
   12. Contact
   13. Privacy Policy
   14. Footer
   15. Back To Top / Lightbox / Dark Mode
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette (fixed by brief) */
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --secondary: #0EA5E9;
  --accent: #F59E0B;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --dark: #111827;

  /* Derived tints/shades for depth */
  --primary-50: #EFF4FF;
  --primary-100: #DCE8FF;
  --ink-600: #374151;
  --ink-500: #6B7280;
  --ink-300: #D1D5DB;
  --border: #E5E9F0;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-dark: linear-gradient(160deg, #0B1220 0%, #111827 55%, #0F1B33 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #FBBF24 100%);

  /* Typography */
  --font-body: 'Poppins', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 12px 32px rgba(17, 24, 39, 0.10);
  --shadow-lg: 0 24px 60px rgba(17, 24, 39, 0.16);
  --shadow-brand: 0 16px 40px rgba(37, 99, 235, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s;
  --t-med: 0.4s;

  /* Layout */
  --container: 1200px;
  --header-h: 78px;
}

/* Dark mode overrides */
body.dark-mode {
  --bg: #0B1220;
  --white: #111827;
  --dark: #F8FAFC;
  --ink-600: #CBD5E1;
  --ink-500: #94A3B8;
  --ink-300: #334155;
  --border: #1F2937;
  --primary-50: #0F1B33;
  --primary-100: #14213D;
}

/* ---------- 2. RESET & BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease);
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 { font-weight: 700; color: var(--dark); line-height: 1.2; }

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { color: var(--ink-600); }

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 3. UTILITIES & LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-bg-alt { background: var(--white); }

.grid { display: grid; gap: 28px; }

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

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mono-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- 4. HEADER / NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(248, 250, 252, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

body.dark-mode .site-header {
  background: rgba(11, 18, 32, 0.78);
  border-bottom-color: rgba(255,255,255,0.06);
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand);
  flex-shrink: 0;
}

.brand-mark svg { width: 24px; height: 24px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .b1 { font-weight: 700; font-size: 1.02rem; color: var(--dark); letter-spacing: -0.01em; }
.brand-text .b2 {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-600);
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-links a:hover { color: var(--primary); background: var(--primary-50); }

.nav-links a.active { color: var(--primary); background: var(--primary-50); font-weight: 600; }

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

.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-600);
  transition: transform var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.theme-toggle:hover { transform: rotate(20deg); border-color: var(--primary); color: var(--primary); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-sun { display: none; }
body.dark-mode .theme-toggle .icon-moon { display: none; }
body.dark-mode .theme-toggle .icon-sun { display: block; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. BUTTONS & CHIPS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.94rem;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(37,99,235,0.36); }

.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--dark);
  border: 1px solid var(--border);
}
body.dark-mode .btn-ghost { background: rgba(255,255,255,0.04); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

.btn-block { width: 100%; justify-content: center; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-600);
  box-shadow: var(--shadow-sm);
}

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 96px;
  background: var(--gradient-dark);
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(37,99,235,0.35), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(14,165,233,0.30), transparent 50%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #93C5FD;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.blink-cursor {
  display: inline-block;
  width: 8px; height: 16px;
  background: var(--accent);
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent-word { color: var(--secondary); }

.hero-sub {
  color: #B7C3D9;
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: #8896AD;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual { position: relative; height: 460px; }

.hero-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-card.card-main { width: 78%; height: 340px; top: 20px; left: 8%; }
.hero-card.card-float {
  width: 46%; height: 200px; bottom: -10px; right: 0;
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }

.floating-badge {
  position: absolute;
  top: 24px; right: 4%;
  background: rgba(255,255,255,0.94);
  color: var(--dark);
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.floating-badge .fb-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-badge .fb-icon svg { width: 18px; height: 18px; color: var(--white); }
.floating-badge .fb-num { font-weight: 700; font-size: 0.95rem; }
.floating-badge .fb-lbl { font-size: 0.72rem; color: var(--ink-500); }

/* ---------- 7. STATUS TICKER (signature element) ---------- */
.status-ticker {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}
body.dark-mode .status-ticker { background: #070B14; }

.ticker-track {
  display: flex;
  width: max-content;
  animation: scrollTicker 28s linear infinite;
}
.status-ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #9CA9C2;
  padding: 14px 32px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

@keyframes scrollTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 8. SECTION HEADINGS ---------- */
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head .mono-tag { justify-content: center; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.02rem; }

/* ---------- 9. ABOUT PREVIEW / SERVICES / WHY CHOOSE US ---------- */
.about-preview { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }

.ap-visual { position: relative; }
.ap-visual img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  height: 420px;
  width: 100%;
  object-fit: cover;
}
.ap-since {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.ap-since .yr { font-family: var(--font-mono); font-weight: 700; font-size: 1.6rem; color: var(--primary); }
.ap-since .yr-lbl { font-size: 0.72rem; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; }

.ap-content h2 { margin-bottom: 18px; }
.ap-content p { margin-bottom: 16px; }
.ap-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.ap-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--ink-600); font-weight: 500; }
.ap-list li svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

.services-grid { grid-template-columns: repeat(4, 1fr); }

.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px 26px;
  border: 1px solid var(--border);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-fast);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background var(--t-med);
}
.service-icon svg { width: 26px; height: 26px; color: var(--primary); transition: color var(--t-med); }
.service-card:hover .service-icon { background: rgba(255,255,255,0.16); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { margin-bottom: 8px; transition: color var(--t-med); font-size: 1.06rem; }
.service-card:hover h3 { color: var(--white); }
.service-card p { font-size: 0.88rem; transition: color var(--t-med); }
.service-card:hover p { color: rgba(255,255,255,0.86); }

.why-grid { grid-template-columns: repeat(4, 1fr); }
.why-card {
  text-align: center;
  padding: 34px 22px;
  border-radius: var(--r-md);
}
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand);
}
.why-icon svg { width: 28px; height: 28px; color: var(--white); }
.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.86rem; }

.cta-band {
  background: var(--gradient-brand);
  border-radius: var(--r-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band .btn-ghost { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.3); }
.cta-band .btn-ghost:hover { background: var(--white); color: var(--primary); }

/* ---------- 10. GALLERY ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-600);
  transition: all var(--t-fast);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--gradient-brand); color: var(--white); border-color: transparent; box-shadow: var(--shadow-brand); }

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-med) var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.85) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--t-med);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.92rem; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(11, 18, 32, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 900px; width: 100%; text-align: center; }
.lightbox-content img { border-radius: var(--r-md); max-height: 76vh; margin: 0 auto; box-shadow: var(--shadow-lg); }
.lightbox-caption { color: var(--white); margin-top: 16px; font-size: 0.92rem; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 28px; right: 28px; }
.lightbox-nav.prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 28px; top: 50%; transform: translateY(-50%); }

/* ---------- 11. TESTIMONIALS / FAQ ---------- */
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px;
  border: 1px solid var(--border);
}
.stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.94rem; margin-bottom: 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.tp-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.tp-name { font-weight: 600; font-size: 0.9rem; }
.tp-role { font-size: 0.78rem; color: var(--ink-500); }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.96rem;
  text-align: left;
}
.faq-question .faq-plus { transition: transform var(--t-fast); font-size: 1.3rem; color: var(--primary); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--t-med) var(--ease); }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; }

/* ---------- 12. CONTACT ---------- */
.contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 34px;
}
body.dark-mode .contact-info-card { background: #0F1B33; }
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row .ci-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .ci-icon svg { width: 20px; height: 20px; color: var(--secondary); }
.contact-row .ci-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: #8896AD; margin-bottom: 4px; }
.contact-row .ci-value { font-size: 0.94rem; font-weight: 500; }
.contact-row .ci-value a:hover { color: var(--secondary); }

.hours-table { margin-top: 10px; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.88rem; }
.hours-row .day { color: #B7C3D9; }
.hours-row .time { font-weight: 600; color: var(--white); font-family: var(--font-mono); font-size: 0.82rem; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-600);
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.92rem;
  color: var(--dark);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-50);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.76rem; color: #DC2626; margin-top: 6px; min-height: 14px; }
.form-status { text-align: center; padding: 14px; border-radius: var(--r-sm); margin-top: 12px; font-size: 0.9rem; font-weight: 500; display: none; }
.form-status.show { display: block; }
.form-status.success { background: #ECFDF5; color: #047857; }
.form-status.error { background: #FEF2F2; color: #DC2626; }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-top: 28px;
  height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- 13. PRIVACY POLICY ---------- */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 { margin: 40px 0 16px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li { color: var(--ink-600); margin-bottom: 12px; font-size: 0.96rem; }
.policy-content ul { padding-left: 22px; list-style: disc; margin-bottom: 16px; }
.policy-updated {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.76rem;
  color: var(--ink-500); background: var(--white);
  padding: 8px 16px; border-radius: var(--r-pill);
  border: 1px solid var(--border); margin-bottom: 30px;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 64px;
  background: var(--gradient-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.35), transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: #B7C3D9; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.82rem; color: #8896AD; margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--secondary); }

/* ---------- 14. FOOTER ---------- */
.site-footer {
  background: var(--dark);
  color: #B7C3D9;
  padding: 72px 0 0;
}
body.dark-mode .site-footer { background: #070B14; }
.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-text .b1 { color: var(--white); }
.footer-brand p { color: #8896AD; margin: 16px 0 20px; font-size: 0.9rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.footer-social a:hover { background: var(--gradient-brand); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 0.94rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.88rem; color: #8896AD; transition: color var(--t-fast); }
.footer-col ul li a:hover { color: var(--secondary); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.82rem; color: #8896AD; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a:hover { color: var(--secondary); }

/* ---------- 15. BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand);
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all var(--t-fast) var(--ease);
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top svg { width: 20px; height: 20px; }
