/* ============================================================
   ZarrasTech — Global Stylesheet
   Theme: Dark Tech | Electric Blue
   ============================================================ */

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

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  --clr-bg: #050a14;
  --clr-bg2: #0a1628;
  --clr-bg3: #0f1f3c;
  --clr-surface: #111d35;
  --clr-card: rgba(15, 31, 60, 0.85);
  --clr-border: rgba(0, 212, 255, 0.18);
  --clr-blue: #00d4ff;
  --clr-blue2: #0099cc;
  --clr-blue-glow: rgba(0, 212, 255, 0.35);
  --clr-text: #e2e8f0;
  --clr-muted: #8ca0bc;
  --clr-white: #ffffff;
  --clr-gold: #fbbf24;
  --clr-green: #22c55e;

  --font-main: 'Inter', sans-serif;
  --font-head: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-blue: 0 0 30px rgba(0, 212, 255, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);

  --transition: all 0.3s ease;
  --nav-height: 72px;
}

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

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

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

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

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

a:hover {
  color: var(--clr-white);
}

ul {
  list-style: none;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

p {
  color: var(--clr-text);
  margin-bottom: 1rem;
}

/* ─── Utility Classes ────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--clr-bg2);
}

.section-darker {
  background: var(--clr-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.75rem;
}

.section-title p {
  color: var(--clr-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.text-blue {
  color: var(--clr-blue);
}

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

/* ─── Gradient Text ──────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--clr-blue) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue2) 100%);
  color: var(--clr-bg);
  box-shadow: 0 4px 20px var(--clr-blue-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--clr-blue-glow);
  color: var(--clr-bg);
}

.btn-outline {
  background: transparent;
  color: var(--clr-blue);
  border: 2px solid var(--clr-blue);
}

.btn-outline:hover {
  background: var(--clr-blue);
  color: var(--clr-bg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(0, 212, 255, 0.1);
  color: var(--clr-blue);
  border: 1px solid var(--clr-border);
}

.btn-ghost:hover {
  background: rgba(0, 212, 255, 0.2);
  color: var(--clr-blue);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ─── Navigation ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 10, 20, 0.98);
  box-shadow: var(--shadow-blue);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -0.5px;
}

.nav-logo-text span {
  color: var(--clr-blue);
}

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

.nav-links a {
  padding: 0.5rem 0.65rem;
  color: var(--clr-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-blue);
  background: rgba(0, 212, 255, 0.08);
}

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: linear-gradient(135deg, var(--clr-blue), var(--clr-blue2)) !important;
  color: var(--clr-bg) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 10, 20, 0.7) 0%, rgba(0, 100, 150, 0.15) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.hero-particles::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: pulse 6s ease-in-out infinite;
}

.hero-particles::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
  bottom: 50px;
  left: -50px;
  animation: pulse 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--clr-blue);
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--clr-muted);
  margin-bottom: 2rem;
  max-width: 620px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  background: rgba(10, 22, 40, 0.4);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  margin-top: 3rem;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.stat-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--clr-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.05);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #00d4ff 0%, #9047ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-gold);
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-num {
    font-size: 2.2rem;
  }
}

/* ─── Reviews Badge ──────────────────────────────────────── */
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 31, 60, 0.9);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  margin-bottom: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.reviews-badge:hover {
  transform: translateY(-2px);
  border-color: var(--clr-blue);
  box-shadow: var(--shadow-blue);
}

.reviews-badge::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% {
    transform: translate(-100%, -100%) rotate(45deg);
  }

  100% {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

.stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews-text {
  font-size: 0.85rem;
  z-index: 1;
}

.reviews-text strong {
  color: var(--clr-white);
  display: block;
}

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

/* ─── Floating Reviews Widget ────────────────────────────── */
.floating-reviews {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: rgba(10, 22, 40, 0.95);
  border: 1px solid var(--clr-blue);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 15px var(--clr-blue-glow);
  backdrop-filter: blur(15px);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
  text-decoration: none;
}

@keyframes float {

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

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

.floating-reviews:hover {
  transform: scale(1.05);
  background: var(--clr-bg3);
}

.floating-reviews .google-g {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  color: #4285F4;
}

.floating-reviews .rating {
  font-weight: 700;
  color: var(--clr-white);
}

@media (max-width: 768px) {
  .floating-reviews {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--clr-blue);
  transform: translateY(-5px);
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(0, 212, 255, 0.05);
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--clr-bg3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--clr-blue);
  border: 1px solid var(--clr-border);
}

.author-info h4 {
  font-size: 0.95rem;
  margin: 0;
}

.author-info .stars {
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* ─── Page Hero (sub-pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-bg) 0%, var(--clr-bg3) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

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

.page-hero-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-blue), var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}

.page-hero-img:hover {
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.25);
  transform: translateY(-5px);
}

.page-hero-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.page-hero-img:hover img {
  transform: scale(1.04);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-bottom: 1rem;
}

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

.breadcrumb-sep {
  color: var(--clr-muted);
}

/* ─── Cards & Grids ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-blue);
  box-shadow: var(--shadow-blue);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 20, 0.7) 0%, transparent 50%);
}

.service-card-body {
  padding: 1.5rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--clr-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* ─── Feature List ───────────────────────────────────────── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.05);
}

.feature-icon {
  color: var(--clr-blue);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.92rem;
  color: var(--clr-text);
}

/* ─── Warning Box ────────────────────────────────────────── */
.warning-box {
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.warning-box h3 {
  color: var(--clr-gold);
  margin-bottom: 1rem;
}

.warning-box ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.5rem;
}

.warning-box li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--clr-text);
}

.warning-box li::before {
  content: '⚠';
  font-size: 0.85rem;
  color: var(--clr-gold);
}

/* ─── Trust Grid (Why choose us) ─────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.trust-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-blue);
  box-shadow: var(--shadow-blue);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.trust-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--clr-white);
}

.trust-card-body p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  margin: 0;
  line-height: 1.5;
}

/* ─── Symptoms Grid (Diagnostic Guide) ───────────────────── */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.symptom-card {
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.symptom-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.05);
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.1);
}

.symptom-icon {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 50%;
  color: var(--clr-gold);
}

.symptom-card span {
  font-size: 0.95rem;
  color: var(--clr-text);
  font-weight: 500;
  line-height: 1.4;
}

/* ─── CTA Section ────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--clr-bg2) 0%, var(--clr-bg3) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--clr-muted);
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* ─── Contact Info ───────────────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--clr-blue);
}

.info-card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h4 {
  color: var(--clr-blue);
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card p {
  color: var(--clr-text);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-card a {
  color: var(--clr-text);
}

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

/* ─── Map ────────────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  display: block;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--clr-card);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.35);
}

.faq-item.open {
  border-color: var(--clr-blue);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: var(--clr-white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--clr-blue);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--clr-blue);
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-blue);
  color: var(--clr-bg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  color: var(--clr-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ─── Service Links (Subpage navigation) ─────────────────── */
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--clr-bg2);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.service-links a {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
  transition: var(--transition);
}

.service-links a:hover,
.service-links a.current {
  background: rgba(0, 212, 255, 0.18);
  border-color: var(--clr-blue);
  color: var(--clr-blue);
}

/* ─── Process Steps ──────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--clr-blue);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 212, 255, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-card h4 {
  color: var(--clr-blue);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.step-card p {
  color: var(--clr-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--clr-blue);
  color: var(--clr-bg);
  border-color: var(--clr-blue);
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-blue);
  margin-bottom: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--clr-muted);
  font-size: 0.88rem;
}

.footer-col ul li a:hover {
  color: var(--clr-blue);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--clr-muted);
  margin-bottom: 0.6rem;
}

.footer-contact li span {
  flex-shrink: 0;
}

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

.footer-contact a:hover {
  color: var(--clr-blue);
}

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--clr-muted);
  margin: 0;
}

/* ─── Scroll Animations ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes pulse {

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

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

@keyframes float {

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

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

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── Dividers ───────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  margin: 0;
}

/* ─── Phone CTA Bar ──────────────────────────────────────── */
.phone-bar {
  background: linear-gradient(135deg, var(--clr-blue2) 0%, var(--clr-blue) 100%);
  padding: 0.6rem 0;
  text-align: center;
}

.phone-bar a {
  color: var(--clr-bg);
  font-weight: 700;
  font-size: 0.9rem;
}

.phone-bar a:hover {
  opacity: 0.85;
  color: var(--clr-bg);
}

/* ─── Two Column Layout ──────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse>* {
  direction: ltr;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--clr-border);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

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

  .nav-links a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 50px 0;
  }
}

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

  .process-steps {
    grid-template-columns: 1fr;
  }
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--clr-blue2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-blue);
}

. d i s c o u n t - b a d g e    {
     p o s i t i o n :    a b s o l u t e ;
     t o p :    - 1 5 p x ;
     r i g h t :    - 1 5 p x ;
     b a c k g r o u n d :    l i n e a r - g r a d i e n t ( 1 3 5 d e g ,    # f f 4 1 6 c ,    # f f 4 b 2 b ) ;
     c o l o r :    w h i t e ;
     p a d d i n g :    1 2 p x   2 4 p x ;
     f o n t - w e i g h t :    9 0 0 ;
     f o n t - s i z e :    1 . 1 r e m ;
     b o r d e r - r a d i u s :    5 0 p x ;
     b o x - s h a d o w :    0   1 0 p x   2 5 p x   r g b a ( 2 5 5 ,    6 5 ,    1 0 8 ,    0 . 5 ) ;
     t r a n s f o r m :    r o t a t e ( 1 2 d e g ) ;
     a n i m a t i o n :    p u l s e - b a d g e   2 s   i n f i n i t e ;
     z - i n d e x :    1 0 ;
     b o r d e r :    4 p x   s o l i d   v a r ( - - b g - c a r d ) ;
     
}

   @ k e y f r a m e s   p u l s e - b a d g e    {
     0 %    {
       t r a n s f o r m :    s c a l e ( 1 )   r o t a t e ( 1 2 d e g ) ;
       
  }

     5 0 %    {
       t r a n s f o r m :    s c a l e ( 1 . 0 5 )   r o t a t e ( 1 2 d e g ) ;
       
  }

     1 0 0 %    {
       t r a n s f o r m :    s c a l e ( 1 )   r o t a t e ( 1 2 d e g ) ;
       
  }

     
}

     