/* ============================================================
   EXTRA POINT COMPUTERS — Design System & Stylesheet
   extrapointcomputers.com
   ============================================================ */

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

/* ============================================================
   ██████╗  █████╗ ██████╗  █████╗ ███╗   ███╗███████╗████████╗███████╗██████╗
   ██╔══██╗██╔══██╗██╔══██╗██╔══██╗████╗ ████║██╔════╝╚══██╔══╝██╔════╝██╔══██╗
   ██████╔╝███████║██████╔╝███████║██╔████╔██║█████╗     ██║   █████╗  ██████╔╝
   ██╔═══╝ ██╔══██║██╔══██╗██╔══██║██║╚██╔╝██║██╔══╝     ██║   ██╔══╝  ██╔══██╗
   ██║     ██║  ██║██║  ██║██║  ██║██║ ╚═╝ ██║███████╗   ██║   ███████╗██║  ██║
   ╚═╝     ╚═╝  ╚═╝╚═╝  ╚═╝╚═╝  ╚═╝╚═╝     ╚═╝╚══════╝   ╚═╝   ╚══════╝╚═╝  ╚═╝

   SINGLE SOURCE OF TRUTH FOR ALL COLORS
   To change the entire site theme, only edit values in :root below.
   ============================================================ */

:root {

  /* ─── PRIMARY BRAND COLORS ────────────────────────────────
     These are the core colors. Change these to change everything.
  ─────────────────────────────────────────────────────────── */
  --color-primary:       #0B1F42;   /* Deep Navy  — hero, footer, dark sections  */
  --color-accent:        #1A56DB;   /* Corp. Blue — buttons, links, highlights   */
  --color-accent-dark:   #1544B8;   /* Darker Blue — hover/pressed state         */
  --color-accent-light:  #DBEAFE;   /* Light Blue — tinted backgrounds           */
  --color-secondary:     #0891B2;   /* Teal       — secondary highlights         */

  /* ─── BACKGROUND COLORS ──────────────────────────────────── */
  --color-bg:            #FFFFFF;   /* Main content background                   */
  --color-bg-alt:        #F8FAFF;   /* Alternate section background              */
  --color-bg-light:      #EFF6FF;   /* Light tinted sections                     */
  --color-navbar:        #FFFFFF;   /* Navbar background — always white          */

  /* ─── TEXT COLORS ────────────────────────────────────────── */
  --color-text-heading:  #0F172A;   /* Headings and strong text                  */
  --color-text-body:     #374151;   /* Main paragraph text                       */
  --color-text-muted:    #6B7280;   /* Secondary, captions, placeholders         */
  --color-text-inverse:  #F9FAFB;   /* Text on dark backgrounds                  */

  /* ─── UI COLORS ──────────────────────────────────────────── */
  --color-border:        #E5E7EB;   /* Subtle borders                            */
  --color-border-strong: #D1D5DB;   /* More visible borders on hover             */
  --color-card:          #FFFFFF;   /* Card surfaces                             */
  --color-success:       #16A34A;   /* Success / WhatsApp green                  */
  --color-orange:        #EA580C;   /* Warm orange — special badges              */

  /* ─── COMPUTED — DO NOT EDIT (derived from above) ────────── */
  --gradient-hero:   linear-gradient(160deg, var(--color-primary) 0%, #142F63 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  --gradient-footer: linear-gradient(180deg, #0B1F42 0%, #071530 100%);

  /* Shadow system — keyed to primary */
  --shadow-xs:     0 1px 3px rgba(11, 31, 66, 0.06);
  --shadow-sm:     0 2px 8px rgba(11, 31, 66, 0.08);
  --shadow-md:     0 6px 20px rgba(11, 31, 66, 0.10);
  --shadow-lg:     0 16px 48px rgba(11, 31, 66, 0.14);
  --shadow-accent: 0 4px 14px rgba(26, 86, 219, 0.30);

  /* ─── ALIAS COMPATIBILITY (used in HTML inline styles) ───── */
  --primary:       var(--color-primary);
  --accent:        var(--color-accent);
  --accent-dark:   var(--color-accent-dark);
  --accent-light:  var(--color-secondary);
  --white:         var(--color-bg);
  --off-white:     var(--color-bg-alt);
  --text-dark:     var(--color-text-heading);
  --text-body:     var(--color-text-body);
  --text-muted:    var(--color-text-muted);
  --border:        var(--color-border);
  --card-bg:       var(--color-card);
  --dark-section:  var(--color-primary);
  --cyan:          var(--color-secondary);

  /* ─── LAYOUT & TYPOGRAPHY ────────────────────────────────── */
  --section-padding: 88px 0;
  --container-max:   1240px;
  --container-pad:   0 24px;
  --font-heading:    'Poppins', sans-serif;
  --font-body:       'Inter', sans-serif;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --transition:      all 0.22s ease;
  --transition-slow: all 0.4s ease;
}

/* ── 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);
  color: var(--color-text-body);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding: var(--container-pad); }
.section { padding: var(--section-padding); }
.section-dark { background: var(--color-primary); color: var(--color-text-inverse); }
.section-alt { background: var(--color-bg-alt); }
.section-light { background: var(--color-bg-light); }
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-white  { color: var(--color-bg); }
.text-muted  { color: var(--color-text-muted); }

/* ── Section Headers ──────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-light);
  color: var(--color-accent);
  border: 1px solid var(--color-accent-light);
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag.tag-dark {
  background: rgba(255,255,255,0.08);
  color: #93C5FD;
  border-color: rgba(147, 197, 253, 0.3);
}
.section-tag.tag-cyan {
  background: rgba(8,145,178,0.08);
  color: var(--color-secondary);
  border-color: rgba(8,145,178,0.25);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-heading);
  margin-bottom: 14px;
}
.section-title .highlight {
  color: var(--color-accent);
}
.section-title.light { color: var(--color-text-inverse); }
.section-title.light .highlight { color: #93C5FD; }

.section-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.8;
}
.section-desc.light { color: rgba(255,255,255,0.62); }

.section-header { margin-bottom: 52px; }
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 12px 0 20px;
}
.divider.center { margin: 12px auto 20px; }
.divider.cyan { background: var(--color-secondary); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  border: 2px solid var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: #ffffff;
  color: var(--color-accent);
  border-color: #ffffff;
}

.btn-outline-accent {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-outline-accent:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-text-heading);
  border: 2px solid var(--color-border-strong);
}
.btn-outline-dark:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-whatsapp {
  background: #16A34A;
  color: #ffffff;
  border: 2px solid #16A34A;
}
.btn-whatsapp:hover {
  background: #15803D;
  border-color: #15803D;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.btn-call {
  background: var(--color-secondary);
  color: #ffffff;
  border: 2px solid var(--color-secondary);
}
.btn-call:hover {
  background: #0E7490;
  border-color: #0E7490;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-cyan {
  background: var(--color-secondary);
  color: #ffffff;
  border: 2px solid var(--color-secondary);
}
.btn-cyan:hover {
  background: #0E7490;
  border-color: #0E7490;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-lg { padding: 14px 36px; font-size: 0.95rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Navigation (WHITE navbar) ────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-navbar);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition-slow);
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(11, 31, 66, 0.10);
  border-bottom-color: var(--color-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }

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

.nav-links a {
  color: var(--color-text-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--color-accent); background: var(--color-bg-light); }
.nav-links a.active { color: var(--color-accent); font-weight: 600; background: var(--color-bg-light); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 9px 20px; font-size: 0.84rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-heading);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 999;
  padding: 24px 24px 40px;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  border-top: 1px solid var(--color-border);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  color: var(--color-text-heading);
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--color-accent); padding-left: 8px; }
.mobile-nav .mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.mobile-nav .mobile-cta .btn { justify-content: center; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 31, 66, 0.96) 0%,
    rgba(11, 31, 66, 0.80) 100%
  );
}

/* Subtle glow — toned down */
.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.18) 0%, transparent 70%);
  top: -80px;
  right: -80px;
}
.hero-glow-2 {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.12) 0%, transparent 70%);
  bottom: -40px;
  left: 8%;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 86, 219, 0.15);
  border: 1px solid rgba(26, 86, 219, 0.35);
  color: #93C5FD;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fade-up 0.6s ease both;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60A5FA;
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  animation: fade-up 0.6s ease 0.1s both;
}
.hero-title .brand-accent { color: #60A5FA; }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 14px;
  animation: fade-up 0.6s ease 0.2s both;
}

.hero-services-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fade-up 0.6s ease 0.3s both;
}
.hero-services-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 500;
}
.hero-services-strip span .icon { color: #60A5FA; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fade-up 0.6s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
  animation: fade-up 0.6s ease 0.5s both;
}
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.hero-stat .number span { color: #60A5FA; }
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-right-img { position: relative; z-index: 2; }
.hero-right-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}
.hero-floating-card.card-1 { bottom: -18px; left: -18px; }
.hero-floating-card.card-2 { top: 20px; right: -18px; }
.hero-floating-card i { font-size: 1.2rem; }
.hero-floating-card .fc-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-heading);
}
.hero-floating-card .fc-text span { font-size: 0.72rem; color: var(--color-text-muted); }

/* ── Cards — Service ──────────────────────────────────────── */
.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: var(--transition);
  border: 1px solid var(--color-accent-light);
}
.service-card:hover .icon-wrap {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 8px;
}
.service-card p { font-size: 0.87rem; color: var(--color-text-muted); line-height: 1.7; }

/* ── Cards — Product ──────────────────────────────────────── */
.product-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.product-card .card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
  background: var(--color-bg-alt);
}
.product-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .card-img img { transform: scale(1.04); }
.product-card .card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 6px;
}
.product-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.65;
}
.product-card .brands { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.product-card .brand-tag {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ── Feature Cards — "Why Us" section ────────────────────── */
.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(96, 165, 250, 0.3);
}
.feature-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
}
.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.feature-card p { font-size: 0.83rem; color: rgba(255,255,255,0.52); line-height: 1.6; }

/* ── Industry Card ────────────────────────────────────────── */
.industry-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.industry-card .icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.industry-card h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

/* ── Client Cards ─────────────────────────────────────────── */
.client-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.client-card .client-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--color-accent);
  border: 1px solid var(--color-accent-light);
}
.client-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.4;
}
.client-card .industry-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
}

/* ── Stats Banner ─────────────────────────────────────────── */
.stats-section {
  background: var(--color-accent);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  display: block;
}
.stat-item .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-weight: 500;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Abstract_futuristic_technology_background_featuring_glowing.jpg') center/cover;
  opacity: 0.06;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-inner h2 span { color: #93C5FD; }
.cta-inner p {
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-heading);
  background: var(--color-bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  padding: 88px 0 64px;
  margin-top: 72px;
  background: var(--color-primary);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Abstract_futuristic_technology_background_featuring_glowing.jpg') center/cover;
  opacity: 0.07;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.60);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: #93C5FD; }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: #93C5FD; font-weight: 600; }

/* ── Contact Info ─────────────────────────────────────────── */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.contact-card .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  border: 1px solid var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}
.contact-card p, .contact-card a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-heading);
}
.contact-card a:hover { color: var(--color-accent); }

/* ── Map Container ────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.map-container iframe { display: block; width: 100%; height: 400px; border: none; }

/* ── About Page Styles ────────────────────────────────────── */
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.value-item .vnum {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-accent-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}
.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 4px;
}
.value-item p { font-size: 0.88rem; color: var(--color-text-muted); }

/* ── Services Detail ──────────────────────────────────────── */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.svc-detail-img img { width: 100%; height: 300px; object-fit: cover; }

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-body);
  margin-bottom: 10px;
}
.benefits-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── WhatsApp Floating Button ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.45);
  transition: var(--transition);
  animation: float-in 0.5s ease 1s both;
}
.whatsapp-float:hover {
  transform: scale(1.10);
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.55);
  color: #ffffff;
}
.whatsapp-float .pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(22, 163, 74, 0.35);
  animation: wa-pulse 2.2s ease-in-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes float-in {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.60);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { height: 44px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.8; max-width: 280px; }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: #ffffff; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item i {
  color: #60A5FA;
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-bottom .footer-links { display: flex; gap: 20px; }
.footer-bottom .footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom .footer-links a:hover { color: rgba(255,255,255,0.65); }

/* ── Scroll Reveal Animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive — Tablet ──────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-detail { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Responsive — Mobile ──────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; gap: 18px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .form-card { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { justify-content: center; }
  .page-hero { padding: 60px 0 48px; margin-top: 72px; }
  .whatsapp-float { bottom: 20px; right: 18px; width: 50px; height: 50px; font-size: 1.3rem; }
}

/* ── Responsive — Small ───────────────────────────────────── */
@media (max-width: 480px) {
  .hero-services-strip span { font-size: 0.74rem; }
  .stat-item .number { font-size: 2rem; }
}

/* ── Scrollbar & Selection ────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 3px; }
::selection { background: rgba(26, 86, 219, 0.15); }
