/* ============================================================
   DhanbadDevelopers.com — Global Design System
   ============================================================ */

/* ---------- Preloader Styles ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a192f 0%, #0d1f3c 50%, #112240 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  position: relative;
}

/* Atom Animation */
.atom-loader {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.atom-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #00b4d8, #f4a261);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.6), 0 0 60px rgba(0, 180, 216, 0.3);
  animation: atomPulse 1.5s ease-in-out infinite;
}

@keyframes atomPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(0, 180, 216, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 80px;
  height: 80px;
  animation: orbitRotate1 2s linear infinite;
}

.orbit-2 {
  width: 100px;
  height: 100px;
  animation: orbitRotate2 2.5s linear infinite;
}

.orbit-3 {
  width: 120px;
  height: 120px;
  animation: orbitRotate3 3s linear infinite;
}

@keyframes orbitRotate1 {
  from { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg); }
}

@keyframes orbitRotate2 {
  from { transform: translate(-50%, -50%) rotateX(60deg) rotateY(60deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(60deg) rotateY(60deg) rotateZ(360deg); }
}

@keyframes orbitRotate3 {
  from { transform: translate(-50%, -50%) rotateX(60deg) rotateY(-60deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(60deg) rotateY(-60deg) rotateZ(360deg); }
}

.electron {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #00b4d8;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.8);
}

.orbit-1 .electron { top: -5px; left: 50%; transform: translateX(-50%); }
.orbit-2 .electron { top: -5px; left: 50%; transform: translateX(-50%); background: #f4a261; box-shadow: 0 0 10px rgba(244, 162, 97, 0.8); }
.orbit-3 .electron { top: -5px; left: 50%; transform: translateX(-50%); background: #2eb67d; box-shadow: 0 0 10px rgba(46, 182, 125, 0.8); }

.preloader-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.preloader-text span {
  color: #00b4d8;
}

.preloader-subtext {
  font-size: 0.9rem;
  color: #8892b0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.preloader-progress {
  width: 200px;
  height: 3px;
  background: rgba(0, 180, 216, 0.2);
  border-radius: 3px;
  margin-top: 30px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00b4d8, #f4a261);
  border-radius: 3px;
  animation: progressLoad 2s ease-out forwards;
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}

@keyframes progressLoad {
  from { width: 0%; }
  to { width: 100%; }
}

/* ---------- Custom Cursor Styles ---------- */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 99999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #00b4d8;
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.8), 0 0 20px rgba(0, 180, 216, 0.4);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 180, 216, 0.5);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-outline.hover {
  width: 60px;
  height: 60px;
  border-color: #f4a261;
  background: rgba(244, 162, 97, 0.1);
}

.cursor-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  background: rgba(0, 180, 216, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  animation: trailFade 0.5s ease-out forwards;
}

@keyframes trailFade {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}

/* Hide default cursor on desktop */
@media (pointer: fine) {
  body {
    cursor: none;
  }
  a, button, input, select, textarea, [role="button"] {
    cursor: none;
  }
}

/* Show default cursor on touch devices */
@media (pointer: coarse) {
  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }
  body, a, button, input, select, textarea {
    cursor: auto !important;
  }
}

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

/* ---------- Design Tokens ---------- */
:root {
  --primary: #0a192f;
  /* deep navy */
  --secondary: #112240;
  /* section alt bg */
  --accent: #00b4d8;
  /* electric cyan */
  --accent2: #f4a261;
  /* warm gold */
  --accent-glow: rgba(0, 180, 216, .25);
  --text-light: #ccd6f6;
  --text-muted: #8892b0;
  --white: #ffffff;
  --surface: #1d2d50;
  --surface2: #162032;
  --card-border: rgba(0, 180, 216, .18);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, .45);
  --shadow-glow: 0 0 32px rgba(0, 180, 216, .18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent2);
}

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  line-height: 1.22;
  color: var(--white);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.dd-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 25, 47, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  z-index: 1000;
  transition: background var(--transition);
}

.dd-nav.scrolled {
  background: rgba(10, 25, 47, .98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.nav-logo .logo-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: .93rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .03em;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #0096c7);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 180, 216, .45);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(10, 25, 47, .98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--card-border);
  padding: 1.5rem 6%;
  z-index: 999;
  transform: translateY(-120%);
  transition: transform var(--transition);
}

.nav-mobile.open {
  transform: translateY(0);
}

.nav-mobile a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  padding: .85rem 0;
  border-bottom: 1px solid var(--card-border);
  transition: color var(--transition), padding-left var(--transition);
}

.nav-mobile a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

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

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--secondary);
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 180, 216, .1);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 180, 216, .25);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--accent);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0096c7 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 180, 216, .35);
}

.btn-primary:hover {
  box-shadow: 0 8px 36px rgba(0, 180, 216, .55);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: rgba(0, 180, 216, .12);
  color: var(--accent);
  box-shadow: 0 4px 24px rgba(0, 180, 216, .25);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent2) 0%, #e76f51 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(244, 162, 97, .35);
}

.btn-gold:hover {
  box-shadow: 0 8px 36px rgba(244, 162, 97, .55);
  color: var(--white);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0, 180, 216, .13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(244, 162, 97, .07) 0%, transparent 60%),
    linear-gradient(160deg, #0a192f 0%, #09122a 60%, #0d1f3c 100%);
  z-index: 0;
}

/* grid dots background */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 180, 216, .15) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  opacity: .6;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, .1);
  border: 1px solid rgba(0, 180, 216, .3);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(1.5);
  }
}

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

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item .icon {
  font-size: 1.1rem;
}

/* Two-column hero layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-card-float {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: floatCard 5s ease-in-out infinite;
  width: 100%;
  max-width: 380px;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.float-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--card-border);
}

.float-stat:last-child {
  border-bottom: none;
}

.float-stat .f-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 180, 216, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.float-stat .f-label {
  font-size: .78rem;
  color: var(--text-muted);
}

.float-stat .f-val {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 72px) 0 72px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 180, 216, .1) 0%, transparent 70%),
    linear-gradient(160deg, #0a192f 0%, #0d1f3c 100%);
  border-bottom: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 180, 216, .1) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .5;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 1.8rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
}

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

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

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: rgba(0, 180, 216, .4);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 180, 216, .18), rgba(0, 180, 216, .06));
  border: 1px solid rgba(0, 180, 216, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-4deg);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .65rem;
}

.service-card p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--accent);
}

/* Detailed service row */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--card-border);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse>* {
  direction: ltr;
}

.service-detail-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 180, 216, .2), rgba(0, 180, 216, .05));
  border: 1px solid rgba(0, 180, 216, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
}

.service-detail h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: .8rem;
}

.service-detail p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  line-height: 1.8;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--text-light);
}

.benefit-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(0, 180, 216, .15);
  border: 1px solid rgba(0, 180, 216, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 2px;
}

/* Service detail visual box */
.detail-visual {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
}

.detail-visual .dv-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color var(--transition);
}

.detail-visual .dv-item:hover {
  border-color: rgba(0, 180, 216, .4);
}

.detail-visual .dv-emoji {
  font-size: 1.4rem;
}

.detail-visual .dv-text {
  font-size: .9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}

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

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--surface2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.testi-quote {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .3;
  font-family: Georgia, serif;
  margin-bottom: .5rem;
}

.testi-stars {
  color: var(--accent2);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
}

.testi-role {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0, 180, 216, .14) 0%, transparent 70%),
    linear-gradient(160deg, #0d1f3c 0%, #0a192f 100%);
  text-align: center;
  border-top: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 180, 216, .08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-band h2 span {
  color: var(--accent);
}

.cta-band p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.4rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   FEATURE BADGES (why choose us badges strip)
   ============================================================ */
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, .08);
  border: 1px solid rgba(0, 180, 216, .2);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
}

/* ============================================================
   WHY CHOOSE US GRID
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--surface2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform var(--transition), border-color var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 216, .4);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.why-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--surface2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #0096c7);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .6rem;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: .4rem;
}

.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-price sub {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-light);
}

.pricing-features li .check {
  color: var(--accent);
  font-size: .85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-features li .cross {
  color: #e63946;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(0, 180, 216, .4);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  color: var(--white);
  user-select: none;
  gap: 12px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 180, 216, .1);
  border: 1px solid rgba(0, 180, 216, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--accent);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(0, 180, 216, .25);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding var(--transition);
  padding: 0 24px;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--surface2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(0, 180, 216, .4);
}

.ci-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(0, 180, 216, .1);
  border: 1px solid rgba(0, 180, 216, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.ci-val {
  font-weight: 600;
  color: var(--white);
  font-size: .97rem;
}

.ci-val a {
  color: var(--white);
}

.ci-val a:hover {
  color: var(--accent);
}

.contact-form-wrap {
  background: var(--surface2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.form-subtitle {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--primary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group select option {
  background: var(--primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, .15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e63946;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .err-msg {
  font-size: .78rem;
  color: #e63946;
  display: none;
}

.form-group.has-error .err-msg {
  display: block;
}

.form-success {
  display: none;
  background: rgba(0, 180, 216, .1);
  border: 1px solid rgba(0, 180, 216, .3);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  color: var(--accent);
  font-weight: 600;
  margin-top: 1rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-visual {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.story-metric {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.sm-item {
  text-align: center;
}

.sm-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sm-lbl {
  font-size: .8rem;
  color: var(--text-muted);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: var(--surface2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
}

.mv-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}

.mv-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .8rem;
}

.mv-card p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface2);
  border-top: 1px solid var(--card-border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1rem 0 1.4rem;
}

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

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(0, 180, 216, .1);
  border: 1px solid rgba(0, 180, 216, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-icon:hover {
  background: rgba(0, 180, 216, .25);
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

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

.footer-links a {
  font-size: .9rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact-item a {
  color: var(--text-muted);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ============================================================
   ENHANCED ANIMATIONS
   ============================================================ */

/* Glow animation on reveal */
@keyframes revealGlow {
  0% { box-shadow: 0 0 0 rgba(0, 180, 216, 0); }
  50% { box-shadow: 0 0 30px rgba(0, 180, 216, 0.4); }
  100% { box-shadow: 0 0 0 rgba(0, 180, 216, 0); }
}

/* Shimmer effect */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Glow pulse */
@keyframes glowPulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3), 0 0 40px rgba(0, 180, 216, 0.1);
  }
  50% { 
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.5), 0 0 60px rgba(0, 180, 216, 0.2);
  }
}

/* Border glow animation */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(0, 180, 216, 0.3); }
  50% { border-color: rgba(0, 180, 216, 0.6); }
}

/* Rotate animation */
@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Bounce subtle */
@keyframes bounceSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Gradient shift */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enhanced hover effects for cards */
.service-card, .pricing-card, .testi-card, .why-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease;
}

.service-card:hover, .pricing-card:hover, .testi-card:hover, .why-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 180, 216, 0.15);
}

/* Button magnetic hover enhancement */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: scale(0.95);
}

/* Enhanced nav link hover */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

/* Section label animation */
.section-label {
  position: relative;
  overflow: hidden;
}

.section-label::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

/* Hero badge pulse enhancement */
.hero-badge {
  animation: glowPulse 2s ease-in-out infinite;
}

/* Stats number glow */
.stat-number {
  text-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
}

/* Floating animation for hero card */
.hero-card-float {
  animation: float 6s ease-in-out infinite;
}

/* Pricing card featured enhancement */
.pricing-card.featured {
  animation: borderGlow 3s ease-in-out infinite;
}

/* FAQ item hover enhancement */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateX(5px);
}

/* Social icon hover enhancement */
.social-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
}

/* Contact info card hover */
.contact-info-card {
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(10px);
  border-color: var(--accent);
}

/* Form input focus enhancement */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  animation: glowPulse 2s ease-in-out infinite;
}

/* Footer link hover enhancement */
.footer-links a {
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  padding-left: 20px;
  color: var(--accent);
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

/* Service detail visual items */
.dv-item {
  transition: all 0.3s ease;
}

.dv-item:hover {
  transform: translateX(10px);
  background: rgba(0, 180, 216, 0.1);
}

/* Scrollbar enhancement */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent2), var(--accent));
}

/* Selection color */
::selection {
  background: rgba(0, 180, 216, 0.3);
  color: var(--white);
}

/* ============================================================
   ANIMATIONS (scroll reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays */
.reveal-delay-1 {
  transition-delay: .12s;
}

.reveal-delay-2 {
  transition-delay: .24s;
}

.reveal-delay-3 {
  transition-delay: .36s;
}

.reveal-delay-4 {
  transition-delay: .48s;
}

.reveal-delay-5 {
  transition-delay: .60s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    display: none;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   WHY CHOOSE US SECTION - MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* Main why choose us grid layout */
  .reveal-left + .reveal-right,
  .reveal-right:has(.why-card) {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
}

@media (max-width: 768px) {
  /* Stack the main content and cards vertically */
  .reveal-left:has(+ .reveal-right .why-card) {
    width: 100%;
  }
  
  /* Parent grid container - stack vertically */
  .reveal-left:has(+ .reveal-right .why-card) + .reveal-right,
  div:has(> .reveal-left):has(> .reveal-right .why-card) {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Why cards grid - 2 columns on tablet */
  .reveal-right:has(.why-card) {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  
  /* Badge strip adjustments */
  .badge-strip {
    justify-content: center;
  }
  
  .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  /* Center text on mobile */
  .reveal-left:has(+ .reveal-right .why-card) {
    text-align: center;
  }
  
  .reveal-left:has(+ .reveal-right .why-card) .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  
  /* Center the button */
  .reveal-left:has(+ .reveal-right .why-card) .btn {
    margin: 0 auto;
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  /* Why cards - single column on small mobile */
  .reveal-right:has(.why-card) {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  /* Smaller why cards */
  .why-card {
    padding: 20px 18px;
  }
  
  .why-icon {
    font-size: 1.6rem;
  }
  
  .why-card h4 {
    font-size: 0.95rem;
  }
  
  .why-card p {
    font-size: 0.82rem;
  }
  
  /* Badge strip - stack on very small screens */
  .badge-strip {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .badge {
    width: fit-content;
  }
}