/* ==========================================================
   Abasyn IT Solution - Official Enterprise Stylesheet
   Color Palette Inspired by Brand Logo:
   - Deep Navy Blue (#051056 / #020b2d)
   - Royal Electric Blue (#0048ff / #0059ff)
   - Radiant Sky Accent (#00d2ff)
   ========================================================== */

:root {
  --primary-navy: #051056;
  --primary-navy-dark: #020822;
  --primary-navy-light: #0d1e7c;
  --brand-blue: #0048ff;
  --brand-blue-hover: #0036c2;
  --brand-cyan: #00d2ff;
  --brand-cyan-glow: rgba(0, 210, 255, 0.25);
  --brand-gradient: linear-gradient(135deg, #051056 0%, #0048ff 60%, #00b4d8 100%);
  --brand-gradient-alt: linear-gradient(135deg, #0048ff 0%, #00c6ff 100%);
  --dark-bg: #070d24;
  --dark-card: #0d163a;
  --light-bg: #f8fafc;
  --light-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --border-light: #e2e8f0;
  --border-glow: rgba(0, 72, 255, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(5, 16, 86, 0.08), 0 8px 10px -6px rgba(5, 16, 86, 0.05);
  --shadow-lg: 0 20px 35px -10px rgba(5, 16, 86, 0.16);
  --shadow-blue: 0 10px 30px rgba(0, 72, 255, 0.35);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

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

/* Typography Helpers */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-brand { color: var(--brand-blue); }
.text-cyan { color: var(--brand-cyan); }
.text-white { color: #ffffff; }
.font-bold { font-weight: 700; }

/* Section Header Component */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(0, 72, 255, 0.08);
  color: var(--brand-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border: 1px solid var(--border-glow);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-cyan);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title.light {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 72, 255, 0.45);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-navy);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-navy);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.08rem;
}

/* ==========================================================
   TOP BAR & NAVIGATION
   ========================================================== */
.top-bar {
  background: var(--primary-navy-dark);
  color: #cbd5e1;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-item i {
  color: var(--brand-cyan);
}

.top-info-item a:hover {
  color: #ffffff;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-badge {
  background: rgba(0, 210, 255, 0.15);
  color: var(--brand-cyan);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Main Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(5, 16, 86, 0.04);
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

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

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

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary-navy);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--brand-blue);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 1.6rem;
  color: var(--primary-navy);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

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

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 16, 86, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-close {
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-navy);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background: rgba(0, 72, 255, 0.08);
  color: var(--brand-blue);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at top right, #0048ff 0%, #051056 45%, #020822 100%);
  color: #ffffff;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.hero-badge-wrap {
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--brand-cyan);
  font-weight: 600;
}

.hero-badge i {
  color: #00d2ff;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.hero-title span {
  background: linear-gradient(120deg, #ffffff 40%, var(--brand-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 34px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.hero-feat-item i {
  color: var(--brand-cyan);
}

/* Hero Visual Graphic / Card */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  background: rgba(13, 22, 58, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.3);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-card-brand .dot-live {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.hero-service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.hero-service-item:hover {
  background: rgba(0, 72, 255, 0.25);
  border-color: rgba(0, 210, 255, 0.5);
  transform: translateX(4px);
}

.hero-service-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-service-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
}

.hero-floating-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  color: var(--primary-navy);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatSlow 4s ease-in-out infinite;
}

.hero-floating-stat i {
  font-size: 1.8rem;
  color: var(--brand-blue);
}

.hero-floating-stat strong {
  font-size: 1.25rem;
  display: block;
  line-height: 1.1;
}

.hero-floating-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================
   PAGE BANNER (INNER PAGES)
   ========================================================== */
.page-banner {
  background: radial-gradient(circle at top right, #0048ff 0%, #051056 50%, #020822 100%);
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
  position: relative;
}

.page-banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-banner-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 20px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--brand-cyan);
}

.breadcrumb span {
  color: #ffffff;
}

/* ==========================================================
   STATS COUNTER SECTION
   ========================================================== */
.stats-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  margin-top: -40px;
  z-index: 10;
}

.stats-card-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-light);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.stat-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================
   SERVICES GRID & CARDS
   ========================================================== */
.services-section {
  padding: 90px 0;
  background-color: var(--light-bg);
}

.services-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 72, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 72, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand-blue);
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card-features {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-feature-item i {
  color: #10b981;
  font-size: 0.8rem;
}

.service-card-action {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.learn-more-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.learn-more-link:hover {
  gap: 10px;
}

/* ==========================================================
   WHY CHOOSE US / VALUE PROPOSITIONS
   ========================================================== */
.why-us-section {
  padding: 90px 0;
  background: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.why-us-content .section-title {
  text-align: left;
}

.why-us-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feat-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-feat-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-sm);
  background: rgba(0, 72, 255, 0.08);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-feat-box h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.why-feat-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.why-us-card-showcase {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 72, 255, 0.3);
  position: relative;
}

.saddar-location-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.saddar-location-badge h5 {
  color: var(--brand-cyan);
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================
   SLA & AMC DEDICATED SECTION
   ========================================================== */
.sla-highlight-section {
  padding: 90px 0;
  background: radial-gradient(circle at center, #071542 0%, #03081e 100%);
  color: #ffffff;
}

.sla-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.sla-tier-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.sla-tier-card.featured {
  background: rgba(0, 72, 255, 0.16);
  border: 2px solid var(--brand-blue);
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(0, 72, 255, 0.25);
}

.sla-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-cyan);
  color: var(--primary-navy-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.sla-tier-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.sla-tier-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.sla-tier-features {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sla-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.sla-feature-item i {
  color: var(--brand-cyan);
}

/* ==========================================================
   QUOTE CALCULATOR / INTERACTIVE BUILDER
   ========================================================== */
.quote-section {
  padding: 90px 0;
  background: var(--light-bg);
}

.quote-calculator-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.quote-form-group {
  margin-bottom: 22px;
}

.quote-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.quote-input,
.quote-select,
.quote-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #ffffff;
}

.quote-input:focus,
.quote-select:focus,
.quote-textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 72, 255, 0.12);
}

.services-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.custom-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  background: #f8fafc;
}

.custom-checkbox-item:hover {
  background: #ffffff;
  border-color: var(--brand-blue);
}

.custom-checkbox-item input[type="checkbox"] {
  accent-color: var(--brand-blue);
  width: 16px;
  height: 16px;
}

/* Quote Summary Card */
.quote-summary-card {
  background: radial-gradient(circle at top right, #0048ff 0%, #051056 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-summary-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.quote-cost-display {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
  border: 1px dashed rgba(0, 210, 255, 0.5);
}

.quote-cost-label {
  font-size: 0.85rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-cost-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-cyan);
  margin: 6px 0;
}

.quote-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #e2e8f0;
  margin-bottom: 10px;
}

.quote-perk-item i {
  color: #10b981;
}

/* ==========================================================
   CONTACT SECTION & MAP
   ========================================================== */
.contact-section {
  padding: 90px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card-box {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card-box:hover {
  background: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: var(--brand-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-card-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.contact-card-info p,
.contact-card-info a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-card-info a:hover {
  color: var(--brand-blue);
}

/* Form Alert Box */
.form-alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 20px;
  display: none;
}

.form-alert.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Map Wrapper */
.map-wrapper {
  margin-top: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 380px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================
   CALL TO ACTION (CTA BANNER)
   ========================================================== */
.cta-banner-section {
  padding: 70px 0;
  background: var(--brand-gradient);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: #e0f2fe;
  max-width: 650px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================
   FLOATING WHATSAPP & CALL BUTTONS
   ========================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: var(--transition);
  animation: pulseGreen 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #ffffff;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 10px 16px;
  z-index: 990;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

.mobile-bottom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--primary-navy-dark);
  color: #94a3b8;
  padding: 80px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--brand-blue);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--brand-blue);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-item a {
  font-size: 0.92rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link-item a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
}

.footer-contact-item i {
  color: var(--brand-cyan);
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ==========================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    max-width: 580px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sla-cards-grid {
    grid-template-columns: 1fr;
  }
  .sla-tier-card.featured {
    transform: none;
  }
  .stats-card-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .quote-calculator-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-links, .nav-cta .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-floating-stat {
    display: none;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 60px;
  }
  .floating-whatsapp {
    bottom: 75px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

