/* ==========================================================================
   Nagovss Tech Solutions — corporate + tech-forward theme
   ========================================================================== */

:root {
  --bg: #0a0e1a;
  --bg-alt: #0d1326;
  --panel: #101830;
  --panel-2: #131c38;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e7ebf7;
  --text-dim: #9aa5c0;
  --text-faint: #6b7593;
  --accent: #2fd0ff;
  --accent-2: #7c5cff;
  --accent-warm: #ffb340;
  --success: #33d69f;
  --danger: #ff6b6b;
  --gradient: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { color: var(--text-dim); margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background grid + glow */
.tech-grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(47, 208, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 208, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
body::before {
  content: '';
  position: fixed;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.25), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--gradient);
  color: #061018;
  box-shadow: 0 8px 30px -8px rgba(47, 208, 255, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(47, 208, 255, 0.65); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-outline { background: transparent; color: var(--accent); border-color: rgba(47, 208, 255, 0.4); }
.btn-outline:hover { background: rgba(47, 208, 255, 0.08); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------------- Top utility bar ---------------- */
.top-bar {
  background: #060911;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 24px; gap: 20px; }
.top-bar-left { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.top-bar-left a, .top-bar-left span { display: inline-flex; align-items: center; gap: 6px; color: var(--text-faint); }
.top-bar-left a:hover { color: var(--accent); }
.top-bar-left svg { width: 13px; height: 13px; color: var(--accent); opacity: 0.85; }
.gst-badge { color: var(--text-faint); letter-spacing: 0.03em; }
.gst-badge::before { content: ''; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 14, 26, 0.75);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: #fff; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gradient); color: #061018; font-weight: 700;
}
.brand-mark .dot { color: #061018; }
.brand-text em { font-style: normal; color: var(--text-dim); font-weight: 500; display: block; font-size: 0.62em; letter-spacing: 0.08em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--text-dim); font-weight: 500; font-size: 0.95rem; padding: 6px 2px; position: relative; transition: color 0.2s ease; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gradient); border-radius: 2px; }
.nav-cta { margin-left: 10px; }
.nav-toggle { display: none; background: none; border: none; color: #fff; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }

/* ---------------- Hero ---------------- */
.hero { padding: 90px 0 70px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(47, 208, 255, 0.08);
  border: 1px solid rgba(47, 208, 255, 0.25);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow svg { width: 14px; height: 14px; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 20px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: 1.08rem; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stats strong { display: block; font-family: var(--font-heading); font-size: 1.6rem; color: #fff; }
.hero-stats span { font-size: 0.85rem; color: var(--text-faint); }

.hero-visual { position: relative; height: 420px; }
.orbit-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: #061018; font-size: 1.4rem;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 30px 80px -20px rgba(47, 208, 255, 0.6);
  animation: pulse 4s ease-in-out infinite;
}
.orbit-card {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 108px; padding: 16px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  font-size: 0.78rem; color: var(--text-dim); text-align: center;
  animation: float 6s ease-in-out infinite;
}
.orbit-card svg { width: 22px; height: 22px; color: var(--accent); }
.card-1 { top: 4%; left: 6%; animation-delay: 0s; }
.card-2 { top: 8%; right: 2%; animation-delay: 1.2s; }
.card-3 { bottom: 12%; left: 0%; animation-delay: 2.1s; }
.card-4 { bottom: 4%; right: 10%; animation-delay: 0.6s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(47,208,255,0.35), 0 30px 80px -20px rgba(47,208,255,0.6); } 50% { box-shadow: 0 0 0 18px rgba(47,208,255,0), 0 30px 80px -20px rgba(47,208,255,0.6); } }

.logo-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.logo-strip p { text-align: center; margin: 0; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--text-faint); text-transform: uppercase; }

/* ---------------- Sections ---------------- */
.section { padding: 90px 0; }
.section-alt { background: linear-gradient(180deg, transparent, var(--bg-alt) 10%, var(--bg-alt) 90%, transparent); }
.section-head { max-width: 600px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-cta { text-align: center; margin-top: 40px; }

/* Services grid */
.services-grid, .services-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.service-card, .service-detail-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover, .service-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 208, 255, 0.35);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(47,208,255,0.15), rgba(124,92,255,0.15));
  border: 1px solid rgba(47,208,255,0.25);
  margin-bottom: 18px;
  color: var(--accent);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3, .service-detail-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p, .service-detail-card p { font-size: 0.92rem; margin-bottom: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 600; font-size: 0.88rem; margin-top: 14px; }
.service-link svg { width: 14px; height: 14px; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.portfolio-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease; }
.portfolio-card:hover { transform: translateY(-6px); border-color: rgba(47,208,255,0.3); }
.portfolio-thumb { position: relative; aspect-ratio: 16/10; background: var(--panel-2); overflow: hidden; }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-faint); }
.thumb-placeholder svg { width: 40px; height: 40px; }
.portfolio-tag { position: absolute; top: 14px; left: 14px; background: rgba(10,14,26,0.8); backdrop-filter: blur(6px); border: 1px solid var(--border-strong); color: var(--accent); font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.portfolio-body { padding: 22px; }
.portfolio-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.portfolio-client { color: var(--text-faint); font-size: 0.82rem; margin-bottom: 8px; }
.portfolio-body p { font-size: 0.9rem; margin-bottom: 4px; }

.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn { background: var(--panel); border: 1px solid var(--border); color: var(--text-dim); padding: 9px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 500; transition: all 0.2s ease; }
.filter-btn:hover { border-color: var(--border-strong); color: #fff; }
.filter-btn.active { background: var(--gradient); color: #061018; border-color: transparent; font-weight: 600; }

.empty-state { text-align: center; padding: 40px 0; color: var(--text-faint); }

/* Why section */
.why-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.why-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-size: 0.96rem; }
.why-list svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }
.why-panel { display: flex; flex-direction: column; gap: 16px; }
.why-stat { display: flex; align-items: center; gap: 16px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.why-stat svg { width: 30px; height: 30px; color: var(--accent); }
.why-stat strong { display: block; font-family: var(--font-heading); font-size: 1.3rem; color: #fff; }
.why-stat span { font-size: 0.82rem; color: var(--text-faint); }

/* CTA band */
.cta-band { padding: 0 0 90px; }
.cta-band-inner {
  background: linear-gradient(135deg, rgba(47,208,255,0.12), rgba(124,92,255,0.12));
  border: 1px solid rgba(47,208,255,0.25);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}
.cta-band-inner h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cta-band-inner p { max-width: 480px; margin: 0 auto 26px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 26px; align-items: start; }
.price-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; position: relative; }
.price-card-main { border-color: rgba(47,208,255,0.35); box-shadow: var(--shadow); }
.price-badge { position: absolute; top: -13px; left: 30px; background: var(--gradient); color: #061018; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.price-card h3 { font-size: 1.25rem; margin-bottom: 16px; }
.price-tag { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: #fff; display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.price-currency { font-size: 1.4rem; color: var(--accent); }
.price-period { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; color: var(--text-faint); }
.price-tag-sm { font-size: 1.6rem; margin-bottom: 8px; }
.price-sub { font-size: 0.95rem; margin-bottom: 22px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-dim); }
.price-features svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.price-side-col { display: flex; flex-direction: column; gap: 20px; }
.price-card-alt { padding: 24px; }
.price-card-alt h4 { display: flex; align-items: center; gap: 8px; font-size: 0.98rem; margin-bottom: 12px; }
.price-card-alt h4 svg { width: 18px; height: 18px; color: var(--accent); }
.price-card-alt p { font-size: 0.86rem; margin: 0; }
.digital-callout { background: linear-gradient(135deg, rgba(124,92,255,0.14), rgba(47,208,255,0.1)); border: 1px solid rgba(124,92,255,0.3); border-radius: var(--radius); padding: 22px; text-align: center; }
.digital-callout p { font-size: 0.88rem; margin-bottom: 14px; }
.pricing-note { text-align: center; color: var(--text-faint); font-size: 0.85rem; margin-top: 34px; }
.support-note {
  display: flex; align-items: center; gap: 14px;
  max-width: 620px; margin: 40px auto 0;
  background: rgba(51,214,159,0.08); border: 1px solid rgba(51,214,159,0.25);
  border-radius: var(--radius); padding: 16px 22px;
}
.support-note svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }
.support-note p { margin: 0; font-size: 0.88rem; color: var(--text-dim); }

/* Digital Products promo (homepage) */
.digital-promo-section { padding-top: 0; }
.digital-promo {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(124,92,255,0.12), rgba(47,208,255,0.08));
  border: 1px solid rgba(124,92,255,0.3);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.digital-promo-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.digital-promo-copy p { margin-bottom: 20px; }
.digital-promo-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.digital-promo-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-dim); }
.digital-promo-features svg { width: 17px; height: 17px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.digital-promo-products { display: flex; flex-direction: column; gap: 16px; }
.digital-product-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.digital-product-card:hover { transform: translateY(-4px); border-color: rgba(47,208,255,0.4); }
.digital-product-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent); background: rgba(47,208,255,0.1); border: 1px solid rgba(47,208,255,0.25); padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; }
.digital-product-card h4 { font-size: 1.02rem; margin-bottom: 4px; }
.digital-product-card p { font-size: 0.84rem; margin-bottom: 10px; }
.digital-product-price { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.digital-product-price .was { font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: var(--text-faint); text-decoration: line-through; margin-right: 6px; }
.digital-product-price .off { font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; color: var(--success); margin-left: 8px; }
.digital-product-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 0.82rem; font-weight: 600; }
.digital-product-cta svg { width: 13px; height: 13px; }

/* Top bar digital link */
.digital-link { color: var(--accent) !important; font-weight: 600; }
.digital-link svg { width: 12px; height: 12px; }

/* Scroll-reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.61s; }
.reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 0.68s; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.testimonial-stars { display: flex; gap: 4px; color: var(--accent-warm); }
.testimonial-stars svg { width: 15px; height: 15px; }
.testimonial-quote { font-size: 0.96rem; color: var(--text); margin: 0; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: #061018; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: #fff; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-faint); }

/* Stat counters */
.stat-counter-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; text-align: center; }
.stat-counter { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 16px; }
.stat-counter strong { display: block; font-family: var(--font-heading); font-size: 2.1rem; color: #fff; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-counter span { font-size: 0.82rem; color: var(--text-faint); }

/* FAQ accordion */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; color: #fff; font-family: var(--font-heading); font-size: 1rem; font-weight: 600; text-align: left; }
.faq-question svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 20px; }
.faq-answer-inner p { margin: 0; font-size: 0.92rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* Page hero (inner pages) */
.page-hero { padding: 70px 0 50px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 14px; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 1.02rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 50px; align-items: start; }
.about-values { display: grid; gap: 16px; }
.value-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.value-card svg { width: 26px; height: 26px; color: var(--accent); margin-bottom: 10px; }
.value-card h4 { margin-bottom: 6px; font-size: 1rem; }
.value-card p { font-size: 0.88rem; margin: 0; }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.process-step { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.step-no { font-family: var(--font-heading); font-size: 1.6rem; color: var(--accent); opacity: 0.6; }
.process-step h4 { margin: 10px 0 8px; }
.process-step p { font-size: 0.88rem; margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; }
.contact-info h2 { font-size: 1.5rem; }
.contact-list { margin: 22px 0 26px; display: flex; flex-direction: column; gap: 14px; }
.contact-form-wrap { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label { display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; color: var(--text-dim); font-weight: 500; }
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=password], input[type=file], select, textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
textarea { resize: vertical; }
.checkbox-row { flex-direction: row; align-items: center; gap: 10px; }
.checkbox-row input { width: 16px; height: 16px; }

.form-errors { background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.35); color: #ffb3b3; padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; }
.form-errors p { color: #ffb3b3; margin: 0; font-size: 0.88rem; }
.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 30px; }
.form-success svg { width: 40px; height: 40px; color: var(--success); }
.inline-success { flex-direction: row; justify-content: flex-start; text-align: left; background: rgba(51,214,159,0.1); border: 1px solid rgba(51,214,159,0.3); border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; }
.inline-success svg { width: 20px; height: 20px; }

/* ---------------- Footer ---------------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-alt); padding: 70px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 16px; color: #fff; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-dim); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-brand p { font-size: 0.9rem; margin: 14px 0 18px; max-width: 320px; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-strong); border-radius: 10px; font-size: 0.75rem; font-weight: 700; }
.social-row a:hover { border-color: var(--accent); color: var(--accent); }
.footer-contact { gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-dim); }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { margin: 0; font-size: 0.82rem; color: var(--text-faint); }

.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .hero-inner, .why-grid, .about-grid, .contact-grid, .pricing-grid, .digital-promo { grid-template-columns: 1fr; }
  .digital-promo { padding: 30px 24px; }
  .hero-visual { height: 320px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .top-bar-address { display: none; }
  .top-bar-inner { padding: 8px 20px; }
  .gst-badge { display: none; }
  .digital-link span, .digital-link { font-size: 0.78rem; }

  /* A compact website-style dropdown panel under the header —
     not a full-screen app drawer. */
  .main-nav {
    position: absolute;
    top: 100%; left: 16px; right: 16px;
    background: var(--panel);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .main-nav.open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 12px 14px; border-radius: 8px; }
  .main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,0.05); }
  .main-nav a.active::after { display: none; }
  .nav-cta { margin: 6px 4px 2px; justify-content: center; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
}
body.nav-open .icon-open { display: none; }
body.nav-open .icon-close { display: block; }

/* ==========================================================================
   Admin panel
   ========================================================================== */
.admin-body { background: var(--bg); }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px; flex-shrink: 0; background: var(--bg-alt);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 24px 18px;
  position: sticky; top: 0; height: 100vh;
}
.admin-brand { margin-bottom: 34px; padding-left: 6px; }
.admin-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 10px; color: var(--text-dim); font-size: 0.92rem; font-weight: 500; }
.admin-nav a svg { width: 18px; height: 18px; }
.admin-nav a:hover { background: rgba(255,255,255,0.04); color: #fff; }
.admin-nav a.active { background: rgba(47,208,255,0.1); color: var(--accent); }
.admin-sidebar-bottom { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--border); padding-top: 14px; }
.admin-sidebar-bottom a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; color: var(--text-dim); font-size: 0.88rem; }
.admin-sidebar-bottom a:hover { background: rgba(255,255,255,0.04); color: #fff; }
.admin-sidebar-bottom svg { width: 16px; height: 16px; }
.logout-link:hover { color: var(--danger) !important; }

.admin-main { flex: 1; min-width: 0; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; padding: 24px 36px; border-bottom: 1px solid var(--border); }
.admin-topbar h1 { font-size: 1.3rem; margin: 0; }
.admin-user { font-size: 0.85rem; color: var(--text-faint); background: var(--panel); padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border); }
.admin-content { padding: 32px 36px 60px; }

.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-bottom: 28px; }
.admin-stat-card { display: flex; align-items: center; gap: 16px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.admin-stat-card svg { width: 30px; height: 30px; color: var(--accent); flex-shrink: 0; }
.admin-stat-card strong { display: block; font-family: var(--font-heading); font-size: 1.5rem; color: #fff; }
.admin-stat-card span { font-size: 0.82rem; color: var(--text-faint); }
.admin-stat-card.highlight { border-color: rgba(255,179,64,0.35); }
.admin-stat-card.highlight svg { color: var(--accent-warm); }

.admin-actions-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }

.admin-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.admin-panel { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.admin-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.admin-panel-head h3 { font-size: 1rem; margin: 0; }
.admin-panel-head a { font-size: 0.82rem; color: var(--accent); font-weight: 600; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); padding: 10px 12px; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 13px 12px; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-dim); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table a { color: #fff; font-weight: 500; }
.admin-table tr.row-unread td { color: #fff; }
.admin-table tr.row-unread { background: rgba(47,208,255,0.04); }
.tag { display: inline-block; font-size: 0.75rem; background: rgba(47,208,255,0.1); color: var(--accent); padding: 3px 10px; border-radius: 999px; border: 1px solid rgba(47,208,255,0.25); }
.msg-cell { max-width: 260px; }
.table-actions { display: flex; gap: 10px; align-items: center; }
.table-actions form { display: inline; }
.table-actions a, .table-actions button { display: inline-flex; padding: 6px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-dim); }
.table-actions a:hover { color: var(--accent); border-color: var(--accent); }
.table-actions svg { width: 15px; height: 15px; }
.icon-btn-danger:hover { color: var(--danger) !important; border-color: var(--danger) !important; }

.form-panel { max-width: 720px; }
.form-panel.narrow { max-width: 460px; }
.admin-form { display: flex; flex-direction: column; gap: 18px; }
.form-actions { display: flex; gap: 12px; margin-top: 6px; }
.current-image { display: flex; align-items: center; gap: 14px; margin-top: -6px; }
.current-image img { width: 90px; height: 60px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border-strong); }
.current-image span { font-size: 0.82rem; color: var(--text-faint); }

.login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-wrap { width: 100%; max-width: 420px; padding: 24px; }
.login-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; text-align: center; box-shadow: var(--shadow); }
.login-card .admin-brand { justify-content: center; margin-bottom: 26px; }
.login-card h1 { font-size: 1.4rem; margin-bottom: 6px; }
.login-sub { font-size: 0.88rem; margin-bottom: 24px; }
.login-card .admin-form { text-align: left; }
.login-hint { margin-top: 20px; font-size: 0.78rem; color: var(--text-faint); }
.login-hint code { background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 5px; color: var(--accent); }

@media (max-width: 900px) {
  .admin-panels { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .admin-sidebar { position: fixed; z-index: 200; transform: translateX(-100%); transition: transform 0.25s ease; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { padding: 24px 18px 60px; }
  .admin-topbar { padding: 18px; }
}
