/* ============================================================
   Excellent Solution Mysore — style.css
   Ant Design Landing inspired | Pure Static CSS
   ============================================================ */

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

:root {
  /* Brand Colors */
  --brand-primary: #0d6efd;
  --brand-secondary: #0f7bff;
  --brand-accent: #ff6b35;
  --brand-dark: #f7f9fc;
  --brand-dark2: #eef4fb;
  --brand-surface: #ffffff;
  --brand-surface2: #f2f6ff;
  --brand-border: rgba(13, 110, 253, 0.18);
  --brand-border2: rgba(15, 81, 189, 0.16);

  /* Text */
  --text-primary: #11243d;
  --text-secondary: #4d637f;
  --text-muted: #6b7a92;

  /* Gradients */
  --grad-blue: linear-gradient(135deg, #0d6efd 0%, #47b0ff 100%);
  --grad-hero: linear-gradient(
    160deg,
    #0d6efd22 0%,
    #47b0ff11 50%,
    transparent 100%
  );
  --grad-card: linear-gradient(145deg, #ffffff 0%, #eef4ff 100%);

  /* Shadows */
  --shadow-card: 0 20px 60px rgba(16, 88, 176, 0.08);
  --shadow-glow: 0 0 30px rgba(13, 110, 253, 0.15);

  /* Spacing */
  --section-py: 100px;
  --container-max: 1220px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Fonts */
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Arial, sans-serif;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--brand-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 15.5px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.btn {
  font-family: var(--font-display);
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--brand-dark2);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 3px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 98, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 98, 255, 0.55);
}

.btn-outline {
  background: transparent;
  border-color: rgba(0, 198, 255, 0.4);
  color: var(--brand-secondary);
}
.btn-outline:hover {
  background: rgba(0, 198, 255, 0.08);
  border-color: var(--brand-secondary);
  transform: translateY(-2px);
}

.btn-nav {
  background: rgba(0, 98, 255, 0.15);
  border-color: rgba(0, 98, 255, 0.3);
  color: var(--brand-secondary);
  padding: 9px 20px;
  font-size: 0.88rem;
}
.btn-nav:hover {
  background: var(--brand-primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}
.btn-white:hover {
  background: #e8f0ff;
  transform: translateY(-2px);
}

.btn-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn-wa:hover {
  background: #1db954;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.3px;
}
.section-tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  background: rgba(0, 98, 255, 0.12);
  border: 1px solid rgba(0, 98, 255, 0.3);
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 14px rgba(17, 36, 61, 0.05);
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--brand-border2);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 12px 40px rgba(17, 36, 61, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-img {
  height: 42px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  width: auto;
  display: block;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}
.accent {
  color: var(--brand-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.93rem;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--brand-border2);
}
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}
.mobile-menu a:hover {
  color: var(--text-primary);
  background: rgba(13, 110, 253, 0.08);
}
.mobile-cta {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ===========================
   HERO
   =========================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 98, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 98, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 100%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.orb1 {
  width: 600px;
  height: 600px;
  background: #0062ff;
  top: -150px;
  left: -100px;
}
.orb2 {
  width: 400px;
  height: 400px;
  background: #00c6ff;
  top: 100px;
  right: -100px;
}
.orb3 {
  width: 300px;
  height: 300px;
  background: #ff6b35;
  bottom: -100px;
  left: 40%;
  opacity: 0.12;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.hero-img {
  height: 380px;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img {
    height: 220px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  background: rgba(0, 98, 255, 0.12);
  border: 1px solid rgba(0, 98, 255, 0.35);
  color: var(--brand-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease both;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s ease 0.1s both;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 18px rgba(17, 36, 61, 0.06);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 650px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s ease 0.2s both;
  letter-spacing: 0.01em;
}
.hero-sub strong {
  color: var(--text-primary);
}
.hero-badge {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.45s both;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 28px;
  min-width: 130px;
}
.stat-value {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  white-space: nowrap;
}
.stat-num {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--brand-border);
}
@media (max-width: 860px) {
  .hero-stats {
    gap: 16px;
    padding: 20px 24px;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    min-width: 145px;
    padding: 18px 20px;
  }
}
@media (max-width: 560px) {
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px;
  }
  .stat-item {
    width: 100%;
    padding: 16px 18px;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1s both;
}
.hero-scroll-hint i {
  animation: bounce 1.5s ease infinite;
}

/* ===========================
   TICKER
   =========================== */
.ticker-wrap {
  overflow: hidden;
  background: rgba(0, 98, 255, 0.08);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.ticker-track .sep {
  color: var(--brand-primary);
  font-size: 0.7rem;
}

/* ===========================
   SERVICES
   =========================== */
#services {
  padding: var(--section-py) 0;
}

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

.service-card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--brand-border2);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(0, 98, 255, 0.35);
  box-shadow: var(--shadow-card);
  transform: translateY(-6px); /* ✅ ONLY THIS */
}
.service-card--wide {
  grid-column: 1 / -1;
}
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 98, 255, 0.08);
  filter: blur(60px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: var(--transition);
}
.service-card:hover .card-glow {
  opacity: 1.5;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.cctv-icon {
  background: rgba(0, 98, 255, 0.15);
  color: #4d94ff;
  border: 1px solid rgba(0, 98, 255, 0.2);
}
.alarm-icon {
  background: rgba(255, 165, 0, 0.12);
  color: #ffaa33;
  border: 1px solid rgba(255, 165, 0, 0.2);
}
.net-icon {
  background: rgba(0, 198, 255, 0.12);
  color: #00c6ff;
  border: 1px solid rgba(0, 198, 255, 0.2);
}
.fire-icon {
  background: rgba(255, 80, 50, 0.12);
  color: #ff5032;
  border: 1px solid rgba(255, 80, 50, 0.2);
}
.web-icon {
  background: rgba(100, 180, 100, 0.12);
  color: #66cc66;
  border: 1px solid rgba(100, 180, 100, 0.2);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.feature-list li i {
  color: var(--brand-primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.web-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    gap var(--transition),
    color var(--transition);
}
.card-link:hover {
  gap: 14px;
  color: #fff;
}

/* ===========================
   WHY US
   =========================== */
#why-us {
  padding: var(--section-py) 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 62, 180, 0.04) 50%,
    transparent 100%
  );
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--grad-card);
  border: 1px solid var(--brand-border2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  border-color: rgba(0, 98, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 98, 255, 0.12);
  border: 1px solid rgba(0, 98, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-secondary);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: rgba(0, 98, 255, 0.22);
  transform: scale(1.08);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===========================
   COVERAGE
   =========================== */
#coverage {
  padding: var(--section-py) 0;
}
.coverage-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.coverage-map-placeholder {
  background: var(--grad-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--brand-primary);
  font-size: 5rem;
}
.coverage-map-placeholder span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.coverage-list h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.locality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.locality-tags span {
  padding: 6px 16px;
  background: rgba(0, 98, 255, 0.1);
  border: 1px solid rgba(0, 98, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.locality-tags span:hover {
  background: rgba(0, 98, 255, 0.2);
  color: var(--text-primary);
  border-color: rgba(0, 98, 255, 0.4);
}
.coverage-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.coverage-note i {
  color: var(--brand-secondary);
}

/* ===========================
   PROCESS
   =========================== */
#process {
  padding: var(--section-py) 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 62, 180, 0.05) 50%,
    transparent 100%
  );
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 32px 20px;
  background: var(--grad-card);
  border: 1px solid var(--brand-border2);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.process-step:hover {
  border-color: rgba(0, 98, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 98, 255, 0.12);
  border: 1px solid rgba(0, 98, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-secondary);
  margin: 0 auto 16px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.process-arrow {
  color: var(--brand-border);
  font-size: 1.2rem;
  padding: 0 8px;
  flex-shrink: 0;
}

/* ===========================
   FAQ
   =========================== */
#faq {
  padding: var(--section-py) 0;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--grad-card);
  border: 1px solid var(--brand-border2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active {
  border-color: rgba(0, 98, 255, 0.35);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--brand-secondary);
}
.faq-icon {
  color: var(--brand-primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--brand-border2);
  padding-top: 16px;
}

/* ===========================
   CTA BANNER
   =========================== */
#cta-banner {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 98, 255, 0.2) 0%,
    rgba(0, 198, 255, 0.1) 100%
  );
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-text p {
  color: var(--text-secondary);
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   CONTACT
   =========================== */
#contact {
  padding: var(--section-py) 0;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.info-item > i {
  width: 40px;
  height: 40px;
  background: rgba(0, 98, 255, 0.12);
  border: 1px solid rgba(0, 98, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  flex-shrink: 0;
}
.info-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-item strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.info-item span,
.info-item a {
  color: var(--text-primary);
  font-size: 0.95rem;
}
.info-item a:hover {
  color: var(--brand-secondary);
}
.contact-services {
  margin-top: 28px;
}
.contact-services h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.contact-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.contact-services li i {
  color: var(--brand-primary);
  width: 16px;
  text-align: center;
}

/* FORM */
.contact-form {
  background: var(--grad-card);
  border: 1px solid var(--brand-border2);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--brand-border2);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group select option {
  background: var(--brand-dark2);
  color: var(--text-primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* ===========================
   FOOTER
   =========================== */
#footer {
  border-top: 1px solid var(--brand-border2);
}
.footer-top {
  padding: 70px 0 50px;
}
#footer .logo-img {
  height: 64px !important;
  width: auto !important;
  max-height: 64px !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--brand-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--brand-secondary);
}
.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact p i {
  color: var(--brand-primary);
  width: 14px;
}
.footer-contact a:hover {
  color: var(--brand-secondary);
}
.footer-wa {
  margin-top: 16px;
}
.footer-bottom {
  border-top: 1px solid var(--brand-border2);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}
.footer-keywords {
  font-size: 0.75rem !important;
  opacity: 0.5;
}

/* ===========================
   FLOATING ELEMENTS
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: rgba(0, 98, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--brand-primary);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card--wide {
    grid-column: auto;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .coverage-wrapper {
    grid-template-columns: 1fr;
  }
  .coverage-map-placeholder {
    aspect-ratio: 2/1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 70px;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
    animation: fadeInDown 0.25s ease both;
  }

  .hero-stats {
    padding: 20px 16px;
    gap: 0;
  }
  .stat-item {
    padding: 0 16px;
  }
  .stat-num,
  .stat-item > span:nth-child(2) {
    font-size: 1.6rem;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .web-features-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
  }
  .process-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
  .cta-inner {
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .stat-divider {
    display: none;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.service-content h3 {
  margin-bottom: 8px;
}

.service-content p {
  margin-bottom: 16px;
}

.service-image {
  margin-bottom: 16px;
  border-radius: 16px; /* 🔥 smooth corners */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-image img {
  width: 100%;
  height: auto; /* ✅ no cropping */
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-image .image-placeholder {
  height: 160px;
}

/* LAYOUT */
.founder-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

/* IMAGE */
.founder-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* TEXT */
.founder-text h3 {
  margin-bottom: 10px;
}

.founder-text p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 600px) {
  .founder-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-image {
    max-width: 200px;
    margin: 0 auto;
  }
}

.service-card:hover .image-placeholder img {
  transform: scale(1.05);
}
