/* =====================================================
   SAIKRUPA SERVICE — REDESIGNED PROFESSIONAL CSS
   Clean, Modern, No-Emoji Icons (Font Awesome)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
  /* Brand Colors - matching SKS logo */
  --clr-bg:        #0b0f1a;
  --clr-bg2:       #0e1320;
  --clr-surface:   #131929;
  --clr-surface2:  #18213a;
  --clr-border:    rgba(255, 255, 255, 0.07);
  --clr-border-act:rgba(200, 30, 30, 0.3);

  /* Primary Red (from logo) */
  --clr-red:       #c0392b;
  --clr-red-light: #e74c3c;
  --clr-red-dark:  #96281b;

  /* Secondary Blue (from logo) */
  --clr-blue:      #1a5fa8;
  --clr-blue-light:#2980b9;
  --clr-blue-dark: #154f8a;

  /* Accent Gold */
  --clr-gold:      #d4a017;
  --clr-gold-light:#e8b52a;

  /* Text */
  --clr-white:     #ffffff;
  --clr-text:      #dde4f0;
  --clr-text-muted:#8a9bbf;
  --clr-text-dim:  #4a5a7a;

  /* Gradients */
  --grad-brand:    linear-gradient(135deg, var(--clr-red) 0%, var(--clr-blue) 100%);
  --grad-red:      linear-gradient(135deg, #c0392b 0%, #96281b 100%);
  --grad-blue:     linear-gradient(135deg, #1a5fa8 0%, #154f8a 100%);
  --grad-card:     linear-gradient(160deg, rgba(19,25,41,0.95) 0%, rgba(24,33,58,0.95) 100%);
  --grad-hero:     linear-gradient(160deg, #0b0f1a 0%, #0f1928 50%, #0b1630 100%);

  /* Shadows */
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.3);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.4);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.5);
  --shadow-red:    0 8px 30px rgba(192, 57, 43, 0.2);
  --shadow-blue:   0 8px 30px rgba(26, 95, 168, 0.2);

  /* Typography */
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Transitions */
  --tr-fast:   0.2s ease;
  --tr-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--clr-white);
}

.text-red {
  color: var(--clr-red-light);
}

.text-blue {
  color: var(--clr-blue-light);
}

.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--clr-text-muted); }

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section      { padding: var(--sp-2xl) 0; }
.section-sm   { padding: var(--sp-xl) 0; }

/* =====================================================
   SECTION HEADER
   ===================================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-red-light);
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.25);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-sm);
}

.section-label i {
  font-size: 0.8rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.section-header p {
  color: var(--clr-text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.divider {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-brand);
  margin: 0.85rem auto;
}

.divider-left { margin: 0.85rem 0; }

/* =====================================================
   GRIDS
   ===================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem 0;
  transition: var(--tr-smooth);
}

.navbar.scrolled {
  background: rgba(11, 15, 26, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  padding: 0.7rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar-logo .brand-text {
  display: none;
}

.navbar-logo .brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--clr-white);
  letter-spacing: 0.01em;
}

.navbar-logo .brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-red-light);
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-nav a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-sm);
  transition: var(--tr-fast);
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav a i {
  font-size: 0.75rem;
}

.navbar-nav a:hover {
  color: var(--clr-white);
  background: rgba(255,255,255,0.05);
}

.navbar-nav a.active {
  color: var(--clr-red-light);
  background: rgba(192,57,43,0.08);
}

.navbar-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 2px;
  background: var(--clr-red-light);
  border-radius: 2px;
}

.navbar-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--r-sm);
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--tr-fast);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: rgba(11, 15, 26, 0.99);
  backdrop-filter: blur(20px);
  z-index: 1002;
  padding: 5rem 1.5rem 2rem;
  transition: var(--tr-smooth);
  border-left: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { right: 0; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-logo img {
  height: 36px;
  width: auto;
}

.mobile-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  color: var(--clr-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu nav a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--tr-fast);
}

.mobile-menu nav a i {
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
  color: var(--clr-red-light);
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  color: var(--clr-white);
  background: rgba(192, 57, 43, 0.1);
}

.mobile-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
}

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: var(--tr-smooth);
  backdrop-filter: blur(4px);
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--r-sm);
  border: none;
  transition: var(--tr-spring);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn i { font-size: 0.85rem; }

.btn-primary {
  background: var(--grad-red);
  color: var(--clr-white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(192, 57, 43, 0.35);
  filter: brightness(1.08);
}

.btn-blue {
  background: var(--grad-blue);
  color: var(--clr-white);
  box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 95, 168, 0.35);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.18);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.btn-ghost-red {
  background: rgba(192, 57, 43, 0.1);
  color: var(--clr-red-light);
  border: 1px solid rgba(192, 57, 43, 0.25);
}

.btn-ghost-red:hover {
  background: rgba(192, 57, 43, 0.18);
  transform: translateY(-2px);
}

.btn-sm { font-size: 0.8rem; padding: 0.55rem 1.2rem; }
.btn-lg { font-size: 0.95rem; padding: 0.9rem 2rem; }

/* =====================================================
   CARDS
   ===================================================== */
.card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  transition: var(--tr-smooth);
}

.card:hover {
  border-color: rgba(192, 57, 43, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.card-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-red-light);
  margin-bottom: var(--sp-md);
  transition: var(--tr-smooth);
  flex-shrink: 0;
}

.card-icon-wrap.blue {
  background: rgba(26, 95, 168, 0.1);
  border-color: rgba(26, 95, 168, 0.2);
  color: var(--clr-blue-light);
}

.card-icon-wrap.gold {
  background: rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.2);
  color: var(--clr-gold-light);
}

.card:hover .card-icon-wrap {
  background: rgba(192, 57, 43, 0.18);
  transform: scale(1.05);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* Glass */
.glass {
  background: rgba(19, 25, 41, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
}

/* =====================================================
   PAGE HEADER (inner pages)
   ===================================================== */
.page-header {
  padding: 9rem 0 4rem;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192, 57, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 57, 43, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Red stripe accent on top */
.page-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
}

.page-header-inner {
  position: relative; z-index: 2;
}

.page-header h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.page-header p {
  color: var(--clr-text-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--clr-text-dim);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--clr-red-light);
  transition: var(--tr-fast);
}

.breadcrumb a:hover { color: var(--clr-white); }
.breadcrumb i { font-size: 0.65rem; }

/* =====================================================
   HERO (home page)
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding-top: 5rem;
}

/* Grid lines */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Red top border */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  z-index: 2;
}

/* Subtle orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(192, 57, 43, 0.12);
  top: -150px; right: -100px;
  animation: driftOrb 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(26, 95, 168, 0.1);
  bottom: -100px; left: -50px;
  animation: driftOrb 15s ease-in-out infinite reverse;
}

@keyframes driftOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: var(--clr-red-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
  width: 6px; height: 6px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.4);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
}

.hero-stat {}

.hero-stat .num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

/* =====================================================
   STATS BAND
   ===================================================== */
.stats-band {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--clr-border);
}

.stat-item {
  text-align: center;
  padding: 2.2rem 1rem;
  border-right: 1px solid var(--clr-border);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number .unit {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* =====================================================
   ICON FEATURE CARDS
   ===================================================== */
.feature-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  transition: var(--tr-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transition: var(--tr-smooth);
  transform-origin: left;
}

.feature-card:hover {
  border-color: rgba(192, 57, 43, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card .fc-icon {
  width: 56px; height: 56px;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.18);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--clr-red-light);
  margin-bottom: 1.25rem;
  transition: var(--tr-smooth);
}

.feature-card:hover .fc-icon {
  background: rgba(192, 57, 43, 0.15);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

/* =====================================================
   CLIENT LOGO STRIP
   ===================================================== */
.clients-strip {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 2.5rem 0;
}

.clients-strip-title {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: 1.5rem;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.client-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(19, 25, 41, 0.8);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: var(--tr-fast);
  white-space: nowrap;
}

.client-chip i {
  font-size: 0.8rem;
  color: var(--clr-red-light);
}

.client-chip:hover {
  border-color: rgba(192, 57, 43, 0.25);
  color: var(--clr-text);
  transform: translateY(-2px);
}

/* =====================================================
   WHY US SECTION
   ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.75rem 1rem;
  background: rgba(19, 25, 41, 0.6);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  transition: var(--tr-fast);
}

.check-item:hover {
  border-color: rgba(192, 57, 43, 0.2);
  background: rgba(192, 57, 43, 0.04);
}

.check-item .ci-icon {
  width: 32px; height: 32px;
  background: rgba(192, 57, 43, 0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-red-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.check-item .ci-text {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  padding-top: 4px;
}

.check-item .ci-text strong {
  color: var(--clr-white);
  font-weight: 600;
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

/* =====================================================
   VISUAL BOX (why section right)
   ===================================================== */
.visual-box {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.visual-box-top {
  background: rgba(192, 57, 43, 0.06);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.visual-box-top .vb-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.visual-box-top h4 {
  font-size: 1rem;
  font-weight: 700;
}

.visual-box-top p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.visual-box-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--clr-border);
}

.vb-stat {
  background: var(--grad-card);
  padding: 1.5rem;
  text-align: center;
}

.vb-stat .n {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.vb-stat .n.red { color: var(--clr-red-light); }
.vb-stat .n.blue { color: var(--clr-blue-light); }
.vb-stat .n.gold { color: var(--clr-gold-light); }
.vb-stat .n.green { color: #2ecc71; }

.vb-stat p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.visual-box-footer {
  padding: var(--sp-md);
  border-top: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.vb-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.vb-footer-item i {
  color: var(--clr-red-light);
  font-size: 0.85rem;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--clr-text-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-xl) 0 var(--sp-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--clr-border);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand-logo span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-white);
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-contact-chips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  transition: var(--tr-fast);
}

.footer-chip i {
  font-size: 0.75rem;
  color: var(--clr-red-light);
  width: 14px;
  flex-shrink: 0;
}

.footer-chip:hover { color: var(--clr-text); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--tr-fast);
}

.footer-col ul li a i {
  font-size: 0.65rem;
  color: var(--clr-text-dim);
}

.footer-col ul li a:hover { color: var(--clr-red-light); }
.footer-col ul li a:hover i { color: var(--clr-red-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}

/* =====================================================
   TAGS
   ===================================================== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}

.tag i { font-size: 0.65rem; }

.tag-red {
  background: rgba(192, 57, 43, 0.12);
  color: var(--clr-red-light);
  border: 1px solid rgba(192, 57, 43, 0.22);
}

.tag-blue {
  background: rgba(26, 95, 168, 0.12);
  color: var(--clr-blue-light);
  border: 1px solid rgba(26, 95, 168, 0.22);
}

.tag-gold {
  background: rgba(212, 160, 23, 0.12);
  color: var(--clr-gold-light);
  border: 1px solid rgba(212, 160, 23, 0.22);
}

.tag-green {
  background: rgba(46, 204, 113, 0.12);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.22);
}

/* =====================================================
   TIMELINE
   ===================================================== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-red) 0%, var(--clr-blue) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-dot {
  position: absolute;
  left: -2.35rem;
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--clr-red);
  border: 2px solid var(--clr-bg);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.2);
}

.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-red-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.timeline-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--sp-sm) var(--sp-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  transition: var(--tr-smooth);
  text-decoration: none;
  color: inherit;
}

.contact-info-item:hover {
  border-color: rgba(192, 57, 43, 0.25);
  background: var(--clr-surface2);
  transform: translateX(4px);
}

.ci-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-red-light);
  flex-shrink: 0;
}

.ci-info h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.ci-info p, .ci-info a {
  font-size: 0.9rem;
  color: var(--clr-text);
  font-weight: 500;
  line-height: 1.4;
}

.ci-info a:hover { color: var(--clr-red-light); }

/* Form */
.form-group { margin-bottom: 1.2rem; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  margin-bottom: 0.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(19, 25, 41, 0.9);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--tr-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--clr-text-dim); }

.form-input:focus {
  border-color: rgba(192, 57, 43, 0.5);
  background: rgba(192, 57, 43, 0.04);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-input.textarea {
  min-height: 130px;
  resize: vertical;
}

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a9bbf' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: rgba(19, 25, 41, 0.9);
  padding-right: 36px;
  cursor: pointer;
}

select.form-input option {
  background-color: #131929;
  color: #dde4f0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 10px 14px;
}

select.form-input option:hover,
select.form-input option:focus,
select.form-input option:checked {
  background-color: #c0392b;
  color: #ffffff;
}

/* =====================================================
   GALLERY
   ===================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--sp-lg);
  justify-content: center;
}

.filter-btn {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--clr-border);
  background: transparent;
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: var(--tr-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-btn i { font-size: 0.75rem; }

.filter-btn:hover,
.filter-btn.active {
  background: var(--grad-red);
  border-color: transparent;
  color: var(--clr-white);
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: var(--tr-smooth);
}

.gallery-item:hover {
  border-color: rgba(192, 57, 43, 0.3);
  box-shadow: var(--shadow-red);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,15,26,0.92) 0%, transparent 55%);
  opacity: 0;
  transition: var(--tr-smooth);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.gallery-caption p  { font-size: 0.72rem; color: var(--clr-red-light); font-weight: 600; }

.gallery-zoom {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 34px; height: 34px;
  background: rgba(192, 57, 43, 0.85);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: white;
  opacity: 0;
  transition: var(--tr-smooth);
}

.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--tr-smooth);
  backdrop-filter: blur(10px);
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr-fast);
}

.lightbox-close:hover { background: rgba(192, 57, 43, 0.4); }

/* =====================================================
   CLIENT CARDS (clients page)
   ===================================================== */
.client-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  transition: var(--tr-smooth);
}

.client-card:hover {
  border-color: rgba(192, 57, 43, 0.25);
  box-shadow: var(--shadow-red);
  transform: translateY(-4px);
}

.client-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: var(--sp-sm);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--clr-border);
}

.client-icon-box {
  width: 52px; height: 52px;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.18);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-red-light);
  flex-shrink: 0;
}

.client-card-meta h3 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.client-card-meta .ct { font-size: 0.78rem; color: var(--clr-red-light); font-weight: 600; }

.client-work-list { display: flex; flex-direction: column; gap: 0.45rem; }

.client-work-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.client-work-list li i {
  color: var(--clr-red-light);
  font-size: 0.65rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: var(--tr-fast);
}

.faq-item:hover { border-color: rgba(192, 57, 43, 0.2); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  color: var(--clr-text);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--tr-fast);
}

.faq-question:hover { color: var(--clr-white); background: rgba(192,57,43,0.04); }

.faq-toggle {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: rgba(192, 57, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--clr-red-light);
  flex-shrink: 0;
  transition: var(--tr-smooth);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 250px; }
.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: rgba(192, 57, 43, 0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(192, 57, 43, 0.5); }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.anim-1 { animation: fadeUp 0.65s ease forwards; }
.anim-2 { animation: fadeUp 0.65s 0.15s ease both; }
.anim-3 { animation: fadeUp 0.65s 0.3s ease both; }
.anim-4 { animation: fadeUp 0.65s 0.45s ease both; }
.anim-5 { animation: fadeUp 0.65s 0.6s ease both; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: var(--sp-xl) 0; }
  .section-sm { padding: var(--sp-lg) 0; }
  .hero-content { padding: 2.5rem 0; }
  .hero-stats { gap: 1.25rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--clr-border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-md); }
  .navbar-logo .brand-text { display: none; }
  .navbar-logo img { height: 40px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .filter-bar { gap: 0.4rem; }
  .filter-btn { font-size: 0.75rem; padding: 0.45rem 0.9rem; }
  .hero-title { font-size: 2.2rem; }
  .check-item { flex-direction: row; align-items: flex-start; }
  .visual-box-stats { grid-template-columns: 1fr 1fr; }
}
