* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  overflow-x: hidden;
}

:root {
  --side-padding-desktop: 24px;
  --side-padding-mobile: 16px;
}

body {
  font-family: "Manrope", sans-serif;
  background: #050505;
  color: #ffffff;
}

/* SCROLL BAR */
#progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 6px;
  height: 0%;
  background: linear-gradient(180deg, #ff1a1a, #ff4d4d);
  z-index: 9999;
}

/* NAVBAR (RESTORED CENTERED PILL) */
.navbar {
  position: fixed;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 999;
}

.nav-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* LOGO */
.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.logo span { color: #ff2b2b; }

/* DESKTOP LINKS */
.nav-links.desktop {
  display: flex;
  gap: 22px;
}

.nav-links.desktop a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.nav-links.desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff2b2b;
  transition: 0.3s;
}

.nav-links.desktop a:hover::after { width: 100%; }

/* DESKTOP CTA */
.nav-call {
  background: linear-gradient(135deg, #ff1a1a, #ff4d4d);
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255,26,26,0.45);
  white-space: nowrap;
}

/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle i { font-size: 18px; }

/* MOBILE DRAWER (GLASS PREMIUM) */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background:
    radial-gradient(circle at top right, rgba(255,0,0,0.18), transparent 45%),
    rgba(5,5,5,0.92);
  backdrop-filter: blur(30px);
  z-index: 9999;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.mobile-drawer.show {
  transform: translateX(0%);
}

/* DRAWER HEADER */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.mobile-logo span { color: #ff2b2b; }

.close-menu {
  font-size: 30px;
  color: #ff3b3b;
  cursor: pointer;
}

/* DRAWER LINKS */
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.drawer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 0;
  position: relative;
}

.drawer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #ff2b2b;
  transition: 0.3s;
}

.drawer-links a:hover::after {
  width: 100%;
}

/* MOBILE CTA FIXED */
.mobile-cta {
  margin-top: auto;
  background: linear-gradient(135deg, #ff1a1a, #ff4d4d);
  padding: 15px 22px;
  border-radius: 999px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255,26,26,0.55);
  font-size: 15px;
}

/* =========================
   HERO SECTION (UNCHANGED LOOK)
========================= */

.hero {
  min-height: 100vh;
  padding: 140px var(--side-padding-desktop) 90px;
  position: relative;
  background: radial-gradient(circle at top, #140000, #050505 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* GRID BACKGROUND */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 1;
  opacity: 0.7;
}

/* RED OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,0,0,0.18), transparent 60%);
  z-index: 2;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  text-align: center;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(255, 0, 0, 0.18);
  color: #ff4b4b;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 0, 0, 0.35);
  box-shadow: 0 0 25px rgba(255,0,0,0.25);
}

/* HEADING */
.hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.7rem, 6.5vw, 5rem);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.glow-text {
  color: #ff2b2b;
  text-shadow:
    0 0 15px rgba(255, 43, 43, 0.9),
    0 0 45px rgba(255, 43, 43, 0.6),
    0 0 90px rgba(255, 43, 43, 0.35);
}

/* PARAGRAPH */
.hero p {
  font-size: 18px;
  line-height: 1.75;
  color: #e0e0e0;
  max-width: 780px;
  margin: 0 auto 36px;
}

/* BUTTON GROUP */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* BUTTONS */
.btn {
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.35s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ff1a1a, #ff4d4d);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(255, 26, 26, 0.5);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.28);
  color: #ffffff;
  background: rgba(255,255,255,0.04);
}

.btn.ghost {
  color: #ff3b3b;
  background: transparent;
}

.btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 45px rgba(255,0,0,0.55);
}

/* STATS */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 26px;
  border-radius: 18px;
  min-width: 150px;
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(255,0,0,0.35);
}

.stat h3 {
  color: #ff3b3b;
  font-size: 28px;
  margin-bottom: 6px;
}

.stat span {
  font-size: 13px;
  color: #cccccc;
}

/* ORBS */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.65;
  animation: float 10s ease-in-out infinite alternate;
}

.orb1 {
  width: 360px;
  height: 360px;
  background: #ff1a1a;
  top: 6%;
  left: -150px;
}

.orb2 {
  width: 280px;
  height: 280px;
  background: #ff4d4d;
  bottom: 12%;
  right: -120px;
  animation-delay: 2s;
}

.orb3 {
  width: 220px;
  height: 220px;
  background: #ff1a1a;
  top: 62%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-45px); }
}

/* =========================
   SOCIAL FLOAT (UNCHANGED)
========================= */

.social-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}

.social-float a {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.35),
    inset 0 0 10px rgba(255,255,255,0.05);
  transition: all 0.35s ease;
}

.social-float a i {
  font-size: 18px;
}

.social-float a:hover {
  background: linear-gradient(135deg, #ff1a1a, #ff4d4d);
  box-shadow:
    0 10px 28px rgba(255,43,43,0.55),
    0 0 18px rgba(255,43,43,0.45);
  transform: translateY(-4px) scale(1.08);
}

.mobile-drawer.show ~ .hero .social-float {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .social-float {
    bottom: 18px;
    left: 18px;
    gap: 12px;
  }

  .social-float a {
    width: 42px;
    height: 42px;
  }
}

/* =========================
   ABOUT SECTION (UNCHANGED LOOK)
========================= */

.about {
  padding: 100px var(--side-padding-desktop);
  position: relative;
  background: radial-gradient(circle at center, rgba(255,0,0,0.05), transparent 70%);
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 0, 0, 0.15);
  color: #ff4b4b;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(255,0,0,0.2);
}

.about-left h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 17px;
  line-height: 1.7;
  color: #dddddd;
  margin-bottom: 18px;
  max-width: 520px;
}

.about-cta {
  margin-top: 15px;
  display: inline-block;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 26px 24px;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.04);
}

.about-card i {
  font-size: 26px;
  color: #ff3b3b;
  margin-bottom: 14px;
}

.about-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(255,0,0,0.25);
}

@media (max-width: 768px) {
  .nav-links.desktop { display: none; }
  .nav-call { display: none; }
  .menu-toggle { display: flex; }

  .hero {
    padding: 130px var(--side-padding-mobile) 70px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
  }

  .hero p {
    font-size: 16px;
  }

  .stat {
    min-width: 135px;
    padding: 18px 22px;
  }

  .about {
    padding: 80px var(--side-padding-mobile);
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left p {
    max-width: 100%;
  }
}


/* =========================
   SERVICES SECTION
========================= */

.services {
  padding: 100px var(--side-padding-desktop);
  position: relative;
  background: radial-gradient(circle at center, rgba(255,0,0,0.04), transparent 70%);
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.services-header p {
  font-size: 17px;
  line-height: 1.7;
  color: #dddddd;
  max-width: 620px;
  margin: auto;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px 26px;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.04);
}

.service-card i {
  font-size: 30px;
  color: #ff3b3b;
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(255,0,0,0.3);
}

/* CTA */
.services-cta-wrap {
  margin-top: 60px;
  text-align: center;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .services {
    padding: 80px var(--side-padding-mobile);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-header p {
    max-width: 100%;
  }
}

/* =========================
   PRICING SECTION v3 (FIXED MOBILE)
========================= */

/* =========================
   PRICING SECTION v4 (FINAL FIX)
========================= */

.pricing {
  padding: 160px var(--side-padding-desktop) 100px; /* 🔥 MORE TOP SPACE */
  position: relative;
  background: radial-gradient(circle at center, rgba(255,0,0,0.04), transparent 70%);
  overflow: visible; /* 🔥 ALLOW BADGE TO BREATHE */
}


.pricing-container {
  max-width: 1200px;
  margin: auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.pricing-header p {
  font-size: 17px;
  line-height: 1.7;
  color: #dddddd;
  max-width: 700px;
  margin: auto;
}

/* DESKTOP GRID */
.pricing-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  overflow: visible;
  margin-top: 40px; /* 🔥 PUSH CARDS DOWN */
}



/* CARD */
.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 34px 28px;
  border-radius: 22px;
  backdrop-filter: blur(16px);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  box-shadow: inset 0 0 12px rgba(255,255,255,0.04);

  display: flex;
  flex-direction: column;
    overflow: visible !important;
}

.pricing-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price {
  font-size: 42px;
  font-weight: 700;
  color: #ff3b3b;
  margin-bottom: 18px;
}

.price span {
  font-size: 14px;
  color: #cccccc;
}

/* FEATURES */
.pricing-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  text-align: left;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: #dddddd;
  margin-bottom: 10px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li.disabled {
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

/* POPULAR */
.pricing-card.popular {
  border-color: rgba(255,59,59,0.6);
  box-shadow: 0 0 45px rgba(255,59,59,0.4);
transform: translateY(-20px) scale(1.04);
  z-index: 3;
}


.popular-badge {
  position: absolute;
  top: -12px; /* 🔥 SMALL, SAFE OFFSET */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff1a1a, #ff4d4d);
  color: #ffffff;
  font-size: 12px;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(255,43,43,0.55);
  z-index: 20;
  white-space: nowrap;
}


/* CTA */
.pricing-cta {
  margin-top: auto;
  text-align: center;
}

.pricing-cta .btn {
  width: 100%;
  max-width: 220px;
}

/* HOVER */
.pricing-card:hover {
  transform: translateY(-14px) scale(1.06);
  box-shadow: 0 26px 60px rgba(255,0,0,0.45);
}

/* MOBILE FIXED SLIDER */
@media (max-width: 768px) {
  .pricing {
padding: 140px var(--side-padding-mobile) 80px; /* 🔥 EXTRA TOP */
  }

    .pricing-slider {
    display: flex;
    overflow-x: auto;
    overflow-y: visible; /* 🔥 CRITICAL */
    gap: 18px;
    scroll-snap-type: x mandatory;
    padding: 80px 8% 50px; /* 🔥 BIGGER TOP SPACE */
  }

  .pricing-slider::-webkit-scrollbar {
    display: none;
  }

  .pricing-card {
    min-width: 84%;
    scroll-snap-align: center;
    padding: 30px 24px;
    transform: scale(0.96);
  }

  .pricing-card.popular {
    
  }

  .pricing-header {
    margin-bottom: 40px;
  }

  .pricing-header p {
    max-width: 100%;
  }
}


/* =========================
   HOW IT WORKS SECTION
========================= */

.process {
  padding: 100px var(--side-padding-desktop);
  position: relative;
  background: radial-gradient(circle at center, rgba(255,0,0,0.04), transparent 70%);
}

.process-container {
  max-width: 1200px;
  margin: auto;
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.process-header p {
  font-size: 17px;
  line-height: 1.7;
  color: #dddddd;
  max-width: 720px;
  margin: auto;
}

/* TIMELINE */
.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
}

/* STEP */
.process-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 26px 30px;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  display: flex;
  gap: 26px;
  align-items: center;
  transition: all 0.4s ease;
  box-shadow: inset 0 0 12px rgba(255,255,255,0.04);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(255,0,0,0.35);
}

/* NUMBER */
.step-number {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  color: #ff3b3b;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 59, 59, 0.15);
  border: 1px solid rgba(255, 59, 59, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255,59,59,0.35);
}

/* CONTENT */
.step-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: #dddddd;
  line-height: 1.7;
  max-width: 600px;
}

/* CTA */
.process-cta {
  margin-top: 60px;
  text-align: center;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .process {
    padding: 80px var(--side-padding-mobile);
  }

  .process-header {
    margin-bottom: 50px;
  }

  .process-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 22px;
  }

  .step-number {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .step-content p {
    max-width: 100%;
  }
}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials {
  padding: 100px var(--side-padding-desktop);
  position: relative;
  background: radial-gradient(circle at center, rgba(255,0,0,0.04), transparent 70%);
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.testimonials-header p {
  font-size: 17px;
  line-height: 1.7;
  color: #dddddd;
  max-width: 640px;
  margin: auto;
}

/* SLIDER */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 32px 28px;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  transition: all 0.4s ease;
  box-shadow: inset 0 0 12px rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(255,0,0,0.35);
}

.stars {
  color: #ff3b3b;
  font-size: 18px;
  margin-bottom: 16px;
}

.quote {
  font-size: 15px;
  color: #dddddd;
  line-height: 1.7;
  margin-bottom: 22px;
}

.client strong {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.client span {
  font-size: 13px;
  color: #bbbbbb;
}

/* CTA */
.testimonials-cta {
  margin-top: 60px;
  text-align: center;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .testimonials {
    padding: 80px var(--side-padding-mobile);
  }

  .testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }

  .testimonials-slider::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    min-width: 85%;
    scroll-snap-align: center;
    padding: 28px 22px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-header p {
    max-width: 100%;
  }
}

/* =========================
   CONTACT SECTION
========================= */

.contact {
  padding: 100px var(--side-padding-desktop);
  position: relative;
  background: radial-gradient(circle at center, rgba(255,0,0,0.04), transparent 70%);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.contact-left h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-left p {
  font-size: 17px;
  line-height: 1.7;
  color: #dddddd;
  margin-bottom: 28px;
  max-width: 520px;
}

/* INFO LIST */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #dddddd;
}

.info-item i {
  color: #ff3b3b;
  font-size: 18px;
}

/* CTAS */
.contact-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* FORM */
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 34px 30px;
  border-radius: 22px;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 12px rgba(255,255,255,0.04);
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbbbbb;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff3b3b;
  box-shadow: 0 0 15px rgba(255,59,59,0.4);
}

/* SUBMIT */
.form-btn {
  width: 100%;
  margin-top: 10px;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 60px var(--side-padding-desktop) 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.footer-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-logo span {
  color: #ff2b2b;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.7;
  color: #cccccc;
  max-width: 420px;
}

/* FOOTER LINKS */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
}

.footer-links a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ff2b2b;
  transition: 0.3s;
}

.footer-links a:hover::after {
  width: 100%;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #ff1a1a, #ff4d4d);
  box-shadow: 0 10px 25px rgba(255,43,43,0.5);
  transform: translateY(-4px) scale(1.08);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaaaaa;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .contact {
    padding: 80px var(--side-padding-mobile);
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-left p {
    max-width: 100%;
  }

  .footer {
    padding: 50px var(--side-padding-mobile) 26px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-left p {
    max-width: 100%;
  }
}


/* =========================
   FORM SUCCESS MESSAGE
========================= */

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(0, 255, 128, 0.12);
  border: 1px solid rgba(0, 255, 128, 0.35);
  color: #a9ffd5;
  font-size: 14px;
  text-align: center;
  backdrop-filter: blur(10px);
}

/* =========================
   THEME TOGGLE BUTTON
========================= */

.theme-toggle {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle i {
  font-size: 16px;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.18);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* =========================
   TRUE LIGHT MODE (INVERTED)
========================= */

body.light {
  background: #f4f6f9;
  color: #121212;
}

/* GLOBAL TEXT */
body.light p,
body.light span,
body.light li,
body.light .quote {
  color: #333333;
}

/* NAVBAR */
body.light .nav-glass {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

body.light .nav-links.desktop a {
  color: #111111;
}

body.light .nav-links.desktop a::after {
  background: #ff2b2b;
}

body.light .nav-call {
  color: #ffffff;
}

/* SECTIONS BACKGROUND */
body.light .hero,
body.light .about,
body.light .services,
body.light .pricing,
body.light .process,
body.light .testimonials,
body.light .contact {
  background: radial-gradient(circle at center, rgba(255,0,0,0.03), transparent 70%);
}

/* GLASS CARDS */
body.light .service-card,
body.light .pricing-card,
body.light .testimonial-card,
body.light .process-step,
body.light .contact-form,
body.light .about-card,
body.light .stat {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.08);
  color: #121212;
  box-shadow:
    0 8px 22px rgba(0,0,0,0.08),
    inset 0 0 6px rgba(255,255,255,0.6);
}

/* HEADINGS */
body.light h1,
body.light h2,
body.light h3,
body.light h4 {
  color: #121212;
}

/* GLOW TEXT */
body.light .glow-text {
  color: #ff2b2b;
  text-shadow:
    0 0 6px rgba(255,43,43,0.35),
    0 0 18px rgba(255,43,43,0.25);
}

/* BADGES */
body.light .section-badge,
body.light .hero-badge {
  background: rgba(255, 43, 43, 0.12);
  color: #ff2b2b;
  border-color: rgba(255, 43, 43, 0.3);
}

/* BUTTONS */
body.light .btn.primary {
  background: linear-gradient(135deg, #ff1a1a, #ff4d4d);
  color: #ffffff;
}

body.light .btn.secondary {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.2);
  color: #111111;
}

body.light .btn.ghost {
  color: #ff2b2b;
}

/* FORM INPUTS */
body.light .form-group input,
body.light .form-group textarea {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.12);
  color: #111111;
}

body.light .form-group input::placeholder,
body.light .form-group textarea::placeholder {
  color: #666666;
}

/* SOCIAL FLOAT */
body.light .social-float a {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.12);
  color: #111111;
}

/* FOOTER */
body.light .footer {
  background: rgba(0,0,0,0.04);
}

body.light .footer-links a {
  color: #111111;
}

body.light .footer-socials a {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.12);
  color: #111111;
}

/* TOGGLE ICON */
body.light .theme-toggle {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.15);
  color: #111111;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1a1a, #ff4d4d);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 10px 25px rgba(255,43,43,0.5);
  z-index: 900;
}

.back-to-top.show {
  display: block;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(37,211,102,0.6);
  z-index: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


/* ANIMATED BORDERS */
.service-card,
.pricing-card,
.testimonial-card,
.process-step,
.about-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.pricing-card::before,
.testimonial-card::before,
.process-step::before,
.about-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff1a1a, #ff4d4d, #ff1a1a);
  opacity: 0.15;
  animation: borderGlow 4s linear infinite;
  z-index: -1;
}

@keyframes borderGlow {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

