/* ═══════════════════════════════════════════════════
   HOME 2 — ADVANCED MODERN DESIGN SYSTEM (Bixol-Style Header/Hero & Cloud Divider)
   ═══════════════════════════════════════════════════ */

/* ── UNIFIED COLOR SYSTEM ── */
:root {
  --color-primary: #003cbd;
  --color-primary-dark: #002ca3;
  --color-accent: #00b2ff; /* Pure Electric Sky Blue (no green) */
  --color-dark: #091638;
  --color-dark-form: #0b132f;
  --color-light: #f4f6fa;
  --color-text-dark: #1e293b;
  --color-text-muted: #5b6c8f;
  --color-border: #e2e8f0;
  --gradient-text: linear-gradient(135deg, #00b2ff 0%, #0045ff 50%, #00b2ff 100%);
}

/* Noise texture overlay mixin via SVG */
.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* ── MOUSE GLOW ── */
.mouse-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,178,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
.mouse-glow.active { opacity: 1; }

/* ── TOP BAR (Bixol dark theme) ── */
.top-bar {
  background: #0b0f19;
  padding: 10px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-meta {
  display: flex;
  gap: 24px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.top-bar-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}
.top-bar-item a:hover {
  color: var(--color-accent);
}
.top-bar-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}
.top-bar-socials a {
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
}
.top-bar-socials a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}
.top-bar-socials svg {
  display: block;
}

/* ── CONTACT BAR (Large Info Columns) ── */
.h2-contact-bar {
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.h2-contact-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.h2-cbar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.h2-cbar-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h2-cbar-text p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.h2-cbar-text h4 {
  margin: 1px 0 0;
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0b0f19;
}
.h2-cbar-text a {
  color: #0b0f19;
  text-decoration: none;
}

/* ── NAVIGATION BAR (Centered Logo overlap) ── */
.h2-navbar-wrap {
  background: var(--color-primary); 
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0,61,189,0.15);
  transition: all 0.3s ease;
}
.h2-navbar-wrap.h2-sticky-active {
  background: rgba(0, 60, 189, 0.95); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(9, 22, 56, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.h2-navbar-wrap.h2-sticky-disabled {
  position: relative !important;
}
.h2-navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  position: relative;
}
.h2-nav-col {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 40%;
}
.h2-nav-col.nav-left {
  justify-content: flex-end;
  padding-right: 40px;
}
.h2-nav-col.nav-right {
  justify-content: flex-start;
  padding-left: 40px;
}
.h2-nav-col a {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 8px 0;
  position: relative;
}
.h2-nav-col a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--color-accent); 
  transition: width 0.3s ease;
}
.h2-nav-col a:hover::after {
  width: 100%;
}
.h2-nav-col a:hover, .h2-nav-col a.active {
  color: var(--color-accent);
}

/* Overlapping center logo */
.h2-logo-center-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 110;
}
.h2-logo-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  overflow: hidden;
}
.h2-logo-circle img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

/* ── HERO UPGRADE ── */
.h2-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 0;
}
.h2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 160px; 
}

.hero-title-wrap {
  position: relative;
}

.h2-hero-content h1 {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0b0f19;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sparkles {
  position: absolute;
  right: -20px;
  top: -25px;
  pointer-events: none;
  display: flex;
  gap: 4px;
}

.hero-badge-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hero-badge-line-indicator {
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}

.h2-hero-content .hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

/* Split Button */
.btn-split {
  display: inline-flex;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,61,189,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.btn-split:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,61,189,0.3);
}
.btn-split-text {
  background: var(--color-primary);
  color: #ffffff;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-split-icon {
  background: var(--color-primary-dark);
  color: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.btn-split-icon svg {
  animation: spinSlow 6s linear infinite;
}

.h2-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-main {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 2;
}

/* Bullet Slide indicator dots */
.hero-pagination {
  position: absolute;
  bottom: 25px;
  left: 30px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(18,28,36,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* Sticky hover panel */
.hero-sticky-icons {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
  background: #ffffff;
  padding: 12px 8px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--color-border);
}
.hero-sticky-icon-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color 0.3s, background 0.3s;
  cursor: pointer;
  border-radius: 4px;
}
.hero-sticky-icon-item:hover {
  color: var(--color-primary);
  background: #f1f5f9;
}

/* ── FLUFFY CLOUD DIVIDER ── */
.fluffy-cloud-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}
.fluffy-cloud-divider svg {
  display: block;
  width: calc(100% + 2px);
  height: 120px;
}

/* ── BIXOL FEATURE CARDS SLIDER SECTION ── */
.h2-features-section {
  position: relative;
  background: #ffffff;
  padding: 80px 0 120px;
  z-index: 2;
  margin-top: -60px; 
}

.h2-features-slider-container {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.features-slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.h2-fcard {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(9, 22, 56, 0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 480px;
  overflow: hidden;
  padding: 0 25px 35px;
}

.fcard-image-wrap {
  position: relative;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
  height: 180px;
  overflow: hidden;
  border-radius: 19px 19px 0 0;
  z-index: 1;
}

.fcard-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fcard-icon-circle {
  position: absolute;
  left: 50%;
  top: 180px;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(9, 22, 56, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 3;
}

.fcard-icon-circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 178, 255, 0.15);
  opacity: 0.8;
  transition: all 0.5s ease;
}

.fcard-title-line {
  width: 35px;
  height: 3px;
  background: var(--color-primary);
  margin: 12px auto 18px;
  border-radius: 2px;
  transition: background-color 0.3s, width 0.3s;
}

.h2-fcard h3 {
  margin-top: 45px; /* Clear absolute icon circle */
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  transition: color 0.3s;
}

.h2-fcard p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 24px;
  flex: 1;
}

.btn-readmore {
  background: var(--color-primary);
  color: #ffffff;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 61, 189, 0.2);
}

/* Hover States */
.h2-fcard:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 178, 255, 0.3);
  box-shadow: 0 30px 60px rgba(9, 22, 56, 0.08), 0 0 30px rgba(0, 178, 255, 0.15);
  background: #ffffff;
  padding-top: 0; /* Reset previous padding shifting */
}

.h2-fcard:hover .fcard-image-wrap img {
  transform: scale(1.08);
}

.h2-fcard:hover .fcard-icon-circle {
  top: 180px; /* Keep position anchored */
  background: var(--color-accent);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 178, 255, 0.4);
  transform: translate(-50%, -50%) rotate(360deg);
}

.h2-fcard:hover .fcard-icon-circle::before {
  border-color: rgba(0, 178, 255, 0.4);
  transform: scale(1.15);
}

.h2-fcard:hover .fcard-title-line {
  background: var(--color-accent);
  width: 50px;
}

.h2-fcard:hover h3 {
  color: var(--color-primary);
}

.h2-fcard:hover .btn-readmore {
  background: var(--color-accent);
  box-shadow: 0 8px 20px rgba(0, 178, 255, 0.35);
  transform: translateY(-2px);
}

/* ── STATS BAR (Bixol Dark Royal Blue Style) ── */
.h2-stats-bar {
  background: linear-gradient(135deg, #003cbd 0%, #002575 100%);
  padding: 65px 0;
  position: relative;
  z-index: 2;
  border-top: none;
  border-bottom: none;
  box-shadow: 0 10px 30px rgba(0, 37, 117, 0.15);
}

.h2-stats-grid,
.h2-stats-bar-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.h2-stats-bar-item {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
  transition: transform 0.3s ease;
}

.h2-stats-bar-item:hover {
  transform: translateY(-4px);
}

.h2-stats-bar-icon {
  color: #00b2ff; /* Bright Sky Blue */
  flex-shrink: 0;
  transition: color 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(0, 178, 255, 0.3));
}

.h2-stats-bar-icon svg {
  display: block;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.h2-stats-bar-item:hover .h2-stats-bar-icon {
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.h2-stats-bar-num {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff; /* White numbers */
  line-height: 1.1;
  display: flex;
  align-items: flex-start;
}

.h2-stats-bar-num .plus-sign {
  font-size: 1.3rem;
  color: #00b2ff; /* Sky Blue */
  margin-left: 2px;
  margin-top: -2px;
  font-weight: 700;
}

.h2-stats-bar-label {
  font-size: 0.85rem;
  color: #93c5fd; /* Soft light blue/grey */
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.h2-stats-divider {
  width: 1px;
  height: 50px;
  border-left: 1px dashed rgba(255, 255, 255, 0.2);
}

/* ── SERVICES SECTION ── */
.h2-services {
  position: relative;
  padding: 100px 0;
  background: #f8fafc; 
}

.h2-services-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.services-side-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.h2-svc-card {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 30px 28px 48px; 
  margin-left: 25px; 
  box-shadow: 0 8px 30px rgba(18,28,36,0.04);
  border: 1px solid rgba(18,28,36,0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  display: block;
}

.h2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,61,189,0.08);
  border-color: rgba(0,61,189,0.1);
}

.svc-icon-wrapper {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary); 
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(0,61,189,0.2);
  transition: all 0.4s ease;
  z-index: 2;
}

.h2-svc-card:hover .svc-icon-wrapper {
  background: #00a88f; 
  transform: translateY(-50%) scale(1.1) rotate(15deg);
  box-shadow: 0 8px 20px rgba(0,168,143,0.3);
}

.h2-svc-card h3 {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #121c24; 
  margin-bottom: 8px;
}

.h2-svc-card p {
  color: var(--color-text-muted); 
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.svc-card-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  color: var(--color-primary);
  opacity: 0.7;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h2-svc-card:hover .svc-card-arrow {
  transform: translate(3px, 3px);
  color: #00a88f;
  opacity: 1;
}

/* Center Column */
.services-center-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-center-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 30px;
  padding: 10px;
}

.services-center-outline {
  position: absolute;
  inset: 0;
  border: 2.5px solid var(--color-accent);
  border-radius: 42% 58% 37% 63% / 45% 48% 52% 55%;
  animation: spinSlow 30s linear infinite;
  pointer-events: none;
}

.services-center-img-container {
  width: 100%;
  height: 485px;
  border-radius: 40% 50% 40% 50% / 50% 40% 50% 40%;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.14);
  border: 5px solid #ffffff;
  position: relative;
}

.services-center-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services-center-img-container:hover .services-center-img {
  transform: scale(1.06);
}

.services-center-badge {
  position: absolute;
  top: 25px;
  left: -10px;
  background: var(--color-primary);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,61,189,0.3);
  z-index: 5;
  border: 2px solid #ffffff;
}

.services-center-badge .badge-big {
  display: block;
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.services-center-badge .badge-small {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

/* ── PROCESS SECTION ── */
.h2-process {
  padding: 120px 0;
  position: relative;
}

.h2-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  position: relative;
}

.h2-process-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(0,178,255,0.1) 0%, hsl(190,80%,50%) 30%, hsl(205,90%,55%) 70%, rgba(0,178,255,0.1) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.h2-pstep {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.pstep-circle {
  width: 110px;
  height: 110px;
  margin: 0 auto 30px;
  position: relative;
}

.pstep-orbit {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(0,178,255,0.15);
  animation: spinSlow 25s linear infinite;
}

.pstep-num {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  background: #fff;
  border: 3px solid var(--color-border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.h2-pstep:hover .pstep-num {
  background: linear-gradient(135deg, hsl(190,75%,45%), hsl(205,80%,40%));
  border-color: transparent;
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(0,178,255,0.3);
}
.h2-pstep:hover .pstep-orbit {
  border-color: rgba(0,178,255,0.5);
}

.h2-pstep h3 {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.h2-pstep p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── BIXOL PRICING PLANS SECTION ── */
.h2-pricing-section {
  padding: 100px 0;
  background: #f8fafc;
}

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
  margin-bottom: 48px;
}

.pricing-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0b0f19;
  cursor: pointer;
}

.pricing-toggle-btn input {
  cursor: pointer;
}

.save-badge {
  background: #e0f2fe;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.h2-pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Base Pricing Card */
.h2-pcard-clean {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  padding: 44px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}

.h2-pcard-clean.featured {
  background: var(--color-primary); 
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0,61,189,0.15);
  transform: translateY(-8px);
}

.h2-pcard-clean.featured h3,
.h2-pcard-clean.featured p,
.h2-pcard-clean.featured .pcard-employees {
  color: #ffffff;
}

.h2-pcard-clean:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.h2-pcard-clean.featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0,61,189,0.22);
}

.pcard-best-choice {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.h2-pcard-clean h3 {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b0f19;
  margin: 0 0 6px;
}

.pcard-employees {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.pcard-price {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 3.2rem;
  font-weight: 800;
  color: #0b0f19;
  line-height: 1;
  margin-bottom: 24px;
}
.h2-pcard-clean.featured .pcard-price {
  color: #ffffff;
}

.pcard-icon {
  color: var(--color-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcard-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}

.pcard-btn-action {
  width: 100%;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s, transform 0.3s;
}

.h2-pcard-clean:not(.featured) .pcard-btn-action {
  background: var(--color-primary);
  color: #ffffff;
}
.h2-pcard-clean:not(.featured) .pcard-btn-action:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.h2-pcard-clean.featured .pcard-btn-action {
  background: var(--color-accent);
  color: #ffffff;
}
.h2-pcard-clean.featured .pcard-btn-action:hover {
  background: #008ecc;
  transform: translateY(-2px);
}

/* ── ESTIMATE BANNER (Bixol Split call center section) ── */
.h2-estimate-banner {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 480px;
  background: var(--color-dark-form); 
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.h2-est-left {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.h2-est-img {
  position: absolute;
  inset: 0;
  background: url('../images/estimate_banner.png') no-repeat center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  z-index: 3;
}

.h2-est-border-cyan {
  position: absolute;
  top: 0; right: 12%; bottom: 0; left: 0;
  background: var(--color-accent);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  z-index: 2;
}

.h2-est-border-blue {
  position: absolute;
  top: 0; right: 8%; bottom: 0; left: 0;
  background: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  z-index: 1;
}

/* Float circular overlay badge */
.h2-est-badge {
  position: absolute;
  left: 85%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: #ffffff;
  border: 5px solid var(--color-dark-form);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  z-index: 10;
  text-align: center;
  padding: 10px;
}
.h2-est-badge span.help {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}
.h2-est-badge h4 {
  font-size: 0.85rem;
  color: #0b0f19;
  margin: 4px 0 2px;
  font-weight: 800;
}
.h2-est-badge span.num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-accent);
}

.h2-est-form-col {
  padding: 60px 50px 60px 100px; 
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.est-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.est-control {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.est-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.est-control:focus {
  outline: none;
  background: rgba(255,255,255,0.12);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,178,255,0.25);
}

textarea.est-control {
  resize: none;
  min-height: 90px;
}

.btn-est-submit {
  display: inline-flex;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  align-self: flex-start;
}

.btn-est-submit:hover {
  transform: translateY(-2px);
}

.btn-est-text {
  background: var(--color-primary);
  color: #ffffff;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-est-icon {
  background: #0055ff;
  color: #ffffff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── TESTIMONIALS ── */
.h2-testimonials {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.h2-testimonials::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 0;
  font-size: 500px;
  font-weight: 900;
  color: rgba(0,178,255,0.03);
  line-height: 1;
  pointer-events: none;
  font-family: serif;
}

.h2-testi-track {
  display: flex;
  gap: 28px;
  margin-top: 60px;
  padding-bottom: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.h2-testi-track::-webkit-scrollbar { display: none; }

.h2-testi-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  border-radius: 24px;
  padding: 2px;
  background: var(--color-border);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.h2-testi-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(0,178,255,0.3), rgba(245,171,35,0.2));
  box-shadow: 0 20px 50px rgba(0,178,255,0.08);
}

.testi-inner {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testi-stars {
  color: hsl(38,90%,55%);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testi-quote {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  font-style: italic;
  flex: 1;
  margin-bottom: 28px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(190,75%,45%), hsl(205,80%,40%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.95rem; color: var(--color-primary); }
.testi-role { font-size: 0.8rem; color: var(--color-accent); font-weight: 600; }

/* ── CTA SECTION UPGRADE ── */
.h2-cta {
  background: var(--color-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.h2-cta::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0, 178, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.h2-cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.h2-cta-content {
  max-width: 620px;
}

.h2-cta-content h2 {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 12px;
}

.h2-cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.h2-cta-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

.btn-cta-primary {
  background: var(--color-accent); 
  color: #ffffff;
  padding: 15px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 178, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta-primary:hover {
  background: #008ecc;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 178, 255, 0.4);
}

.cta-phone-box {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.cta-phone-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: all 0.3s;
}

.cta-phone-box:hover .cta-phone-icon {
  background: var(--color-accent);
  color: #ffffff;
  transform: scale(1.08) rotate(15deg);
}

.cta-phone-text span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-phone-text h3 {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 2px 0 0;
}

/* ── SECTION HEADERS ── */
.sh2-header {
  text-align: center;
  margin-bottom: 0;
}
.sh2-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sh2-label-dark { color: var(--color-accent); }
.sh2-label-light { color: var(--color-primary); }

.sh2-label .line {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.sh2-header h2 {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.sh2-header p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── LOGO STRIP ── */
.h2-logos {
  padding: 44px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background: #fff;
}

.h2-logos-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}
.h2-logos-track:hover { animation-play-state: paused; }

.h2-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  opacity: 0.4;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.h2-logo-item:hover { opacity: 0.85; }
.lsep {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── SCROLL REVEAL SYSTEM ── */
.sr {
  opacity: 0;
  transition: 
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr.up   { transform: translateY(60px); }
.sr.down { transform: translateY(-60px); }
.sr.left { transform: translateX(-80px); }
.sr.right{ transform: translateX(80px); }
.sr.scale{ transform: scale(0.85); }
.sr.visible {
  opacity: 1;
  transform: none;
}
.sr-d1 { transition-delay: 0.08s; }
.sr-d2 { transition-delay: 0.16s; }
.sr-d3 { transition-delay: 0.24s; }
.sr-d4 { transition-delay: 0.32s; }
.sr-d5 { transition-delay: 0.40s; }
.sr-d6 { transition-delay: 0.48s; }

/* ── FOOTER OVERLAPPING MODULES ── */
.site-footer {
  background: var(--color-dark); 
  padding: 100px 0 30px;
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.7);
}

.footer-map-wrap {
  position: relative;
  z-index: 10;
  line-height: 0;
}

.footer-logo-overlap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  z-index: 99;
}
.footer-logo-overlap img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}
.footer-logo-overlap span {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  color: #0b0f19;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.footer-sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.footer-sparkle.left { top: 40px; left: 40px; }
.footer-sparkle.right { bottom: 40px; right: 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-col h3 {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-col p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

/* Mobile Toggle */
.h2-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-primary);
  padding: 10px;
}
.h2-mobile-toggle .hamburger-inner {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  position: relative;
  transition: all 0.3s;
}
.h2-mobile-toggle .hamburger-inner::before,
.h2-mobile-toggle .hamburger-inner::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s;
  left: 0;
}
.h2-mobile-toggle .hamburger-inner::before { top: -6px; }
.h2-mobile-toggle .hamburger-inner::after { bottom: -6px; }
.h2-mobile-toggle.is-active .hamburger-inner { background-color: transparent; }
.h2-mobile-toggle.is-active .hamburger-inner::before { transform: translateY(6px) rotate(45deg); }
.h2-mobile-toggle.is-active .hamburger-inner::after { transform: translateY(-6px) rotate(-45deg); }

/*  RESPONSIVE  */
@media (max-width: 1024px) {
  .h2-navbar-container {
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    padding: 15px 0;
  }
  .h2-mobile-toggle {
    display: block;
    order: 2;
  }
  .h2-logo-center-wrap {
    position: static;
    transform: none;
    order: 1;
  }
  .h2-logo-circle {
    transform: none !important;
    width: 64px;
    height: 64px;
    border-width: 2px;
  }
  .h2-logo-circle img {
    max-height: 40px;
  }
  
  /* Mobile Menus */
  .h2-nav-col {
    width: 100%;
    order: 3;
    display: none; /* hidden by default */
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px 0 !important;
    margin: 0;
  }
  .h2-nav-col.is-active {
    display: flex;
  }
  
  .h2-hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .h2-hero-content .hero-subtitle { margin: 0 auto 40px; }
  .btn-split { margin: 0 auto; }
  .hero-pagination { left: 50%; transform: translateX(-50%); }
  .hero-float-card.card-top { right: 10px; top: 10px; }
  .hero-float-card.card-bottom { left: 10px; bottom: 10px; }
  
  /* Features grid stacks */
  .features-slider-track { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .h2-fcard { height: auto; padding-bottom: 35px; }
  .h2-fcard:hover { padding-top: 0; padding-bottom: 35px; }
  
  /* Stats Bar Stack */
  .h2-stats-grid,
  .h2-stats-bar-grid { flex-direction: column; gap: 30px; }
  .h2-stats-divider { display: none; }
  
  /* Services Stack */
  .h2-services-layout { grid-template-columns: 1fr; max-width: 520px; margin: 64px auto 0; gap: 44px; }
  .h2-svc-card { margin-left: 20px; }
  .services-center-col { order: -1; margin-bottom: 20px; }
  
  /* Pricing 4 Column stack */
  .h2-pricing-grid-4 { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; gap: 30px; }
  .h2-pcard-clean.featured { transform: scale(1); }
  
  /* Estimate Banner Stack */
  .h2-estimate-banner { grid-template-columns: 1fr; }
  .h2-est-left { display: none; }
  .h2-est-badge { display: none; }
  .h2-est-form-col { padding: 50px 30px; }
  
  .h2-process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .h2-process-grid::before { display: none; }
  .h2-testi-card { flex: 0 0 320px; }
  
  /* Contact Bar Hide/Stack */
  .h2-contact-bar-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  
  /* CTA Upgrade Stack */
  .h2-cta-wrapper { flex-direction: column; text-align: center; gap: 30px; }
  .h2-cta-actions { flex-direction: column; gap: 20px; }
}

@media (max-width: 768px) {
  .h2-hero-content h1 { font-size: 2.2rem; }
  .h2-stat-number { font-size: 2.6rem; }
  .h2-testi-card { flex: 0 0 290px; }
  .h2-cta { padding: 80px 0; }
  .top-bar-meta { flex-direction: column; gap: 6px; }
  .h2-contact-bar-grid { grid-template-columns: 1fr; gap: 15px; }
  .est-input-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 576px) {
  .h2-hero-grid { padding: 80px 0 40px; }
  .h2-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .h2-process-grid { grid-template-columns: 1fr; }
  .h2-stat-card { padding: 32px 16px; }
}
/* ==========================================================================
   INNER PAGE HERO (Bixol Premium Variant)
   ========================================================================== */
.h2-inner-hero {
  background-color: var(--color-dark);
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(0, 178, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0, 60, 189, 0.1) 0%, transparent 40%);
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.h2-inner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CiAgPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPgo8L3N2Zz4=');
  opacity: 0.5;
  z-index: 1;
}

.h2-inner-hero .container {
  position: relative;
  z-index: 2;
}

.h2-inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.h2-inner-hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
/* ==========================================================================
   ENHANCED ANIMATIONS & EFFECTS
   ========================================================================== */

/* Sparkles pulsing in Inner Hero */
@keyframes pulseSparkles {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.6; }
  100% { transform: scale(1); opacity: 0.3; }
}

.h2-inner-hero::before {
  animation: pulseSparkles 8s ease-in-out infinite;
}

/* Float icon animation on hover */
@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.h2-feature-card:hover .h2-feat-icon,
.h2-svc-card:hover .h2-svc-icon {
  animation: floatIcon 2s ease-in-out infinite;
  color: var(--color-accent);
}

/* Card hover enhancements */
.h2-feature-card, .h2-svc-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.h2-feature-card:hover, .h2-svc-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 178, 255, 0.15);
  border-color: rgba(0, 178, 255, 0.5);
}

/* Gradient Text shine animation */
@keyframes shineGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shineGradient 4s linear infinite;
  display: inline-block;
}

/* Base styles for the About pillars grid */
.h2-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .h2-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature/Pillar card base styling */
.h2-feature-card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(9, 22, 56, 0.05);
}

.h2-feat-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.h2-feature-card h3 {
  font-family: var(--font-display, inherit);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.h2-feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Detailed service list styling */
.detail-service-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
  text-align: left;
}

.detail-service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.detail-service-list li::before {
  content: "✓";
  color: var(--color-accent);
  margin-right: 2px;
  font-weight: bold;
}
