/* ============================================================
   GREENLIGHT PRO SPARK — MAIN STYLESHEET
   File: css/styles.css
   Structure:
     1. Reset & Variables
     2. Utility
     3. Navbar
     4. Hero
     5. Marquee
     6. Services
     7. Why Us
     8. Reviews
     9. Contact & Form
    10. Footer
    11. Floating CTA
    12. Animations & Scroll Reveal
    13. Responsive
   ============================================================ */


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

:root {
  --navy:        #0a0f1e;
  --navy-mid:    #111827;
  --navy-light:  #1e2a3a;
  --spark:       #c8f135;
  --spark-dim:   #9db82a;
  --white:       #f5f7f0;
  --grey:        #8a9bb0;
  --grey-light:  #c4cdd8;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:     4px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:     0 4px 32px rgba(0, 0, 0, 0.4);
  --glow:       0 0 24px rgba(200, 241, 53, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar         { width: 6px; }
::-webkit-scrollbar-track   { background: var(--navy); }
::-webkit-scrollbar-thumb   { background: var(--spark-dim); border-radius: 3px; }


/* ===== 2. UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.spark-text { color: var(--spark); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

section { padding: 100px 0; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spark);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.section-sub {
  color: var(--grey-light);
  font-size: 1rem;
  max-width: 540px;
  margin-top: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--spark);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: #d8ff40;
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--spark);
  color: var(--spark);
}


/* ===== 3. NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(200, 241, 53, 0.12);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 38px;
  height: 38px;
  /* background: var(--spark); */
  /* border-radius: 6px; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

/* If using an <img> logo instead of SVG icon */
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.62rem;
  color: var(--spark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--grey-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--spark) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: #d8ff40 !important;
  transform: translateY(-1px);
  box-shadow: var(--glow) !important;
}
.nav-cta::after { display: none !important; }

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

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--spark); }


/* ===== 4. HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Hero background image layer — set via inline style on the element */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Fallback gradient shown when image is missing / loading */
  background-color: var(--navy);
}

/* Dark overlay on top of the bg image for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 9, 18, 0.82) 0%,
    rgba(4, 9, 14, 0.75) 50%,
    rgba(7, 10, 20, 0.85) 100%
  );
  z-index: 1;
}

/* Subtle dot-grid pattern on top of overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(200, 241, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 241, 53, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 241, 53, 0.1);
  border: 1px solid rgba(200, 241, 53, 0.25);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--spark);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--spark);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-heading em {
  font-style: normal;
  color: var(--spark);
}

.hero-sub {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--grey-light);
  max-width: 480px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--spark);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero right-side cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp 0.6s 0.2s ease both;
}

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

.hero-card {
  background: rgba(30, 42, 58, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spark), transparent);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 241, 53, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--spark);
}

.hero-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
}


/* ===== 5. MARQUEE ===== */
.marquee-bar {
  background: var(--spark);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.06em;
  padding: 0 32px;
  white-space: nowrap;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
}


/* ===== 6. SERVICES ===== */
#services { background: var(--navy-mid); }

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

/* Each card is position:relative to contain the bg image + overlay */
.service-item {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  cursor: default;
  transition: var(--transition);
}

/* Background image — set via JS from data-bg attribute */
.service-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Fallback color shown when no image is loaded */
  background-color: var(--navy-light);
}

/* Dark overlay so text stays legible over image */
.service-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 15, 30, 0.82) 0%,
    rgba(10, 15, 30, 0.65) 100%
  );
  transition: background var(--transition);
  z-index: 1;
}

/* Overlay darkens slightly more on hover */
.service-item:hover .service-item-overlay {
  background: linear-gradient(
    160deg,
    rgba(10, 15, 30, 0.72) 0%,
    rgba(10, 15, 30, 0.55) 100%
  );
}

/* Text/content sits above overlay */
.service-item-content {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
}

/* Spark underline on hover */
.service-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--spark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 3;
}
.service-item:hover::after { transform: scaleX(1); }

/* Scale image slightly on hover */
.service-item:hover {
  background-size: 108%;
}

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(200, 241, 53, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.service-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

.service-arrow {
  display: inline-block;
  margin-top: 20px;
  color: var(--spark);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.service-item:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ===== 7. WHY US ===== */
#why { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.why-item:last-child { border-bottom: none; }

.why-check {
  width: 32px;
  height: 32px;
  background: rgba(200, 241, 53, 0.1);
  border: 1px solid rgba(200, 241, 53, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg { width: 14px; height: 14px; color: var(--spark); }

.why-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.why-item p  { font-size: 0.85rem; color: var(--grey); line-height: 1.6; }

/* Quote block */
.why-image-block {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.why-image-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 241, 53, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.why-big-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 15vw, 14rem);
  color: rgba(200, 241, 53, 0.07);
  line-height: 1;
  position: absolute;
  top: -40px; right: -20px;
  pointer-events: none;
}

.why-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.why-quote em { font-style: normal; color: var(--spark); }

.why-sig { display: flex; align-items: center; gap: 14px; }

.why-sig-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--spark), var(--spark-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
}

.why-sig-name { font-weight: 600; font-size: 0.9rem; }
.why-sig-role { font-size: 0.78rem; color: var(--grey); }


/* ===== 8. REVIEWS ===== */
#reviews { background: var(--navy-mid); }

.stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

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

.review-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--spark), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-card:hover::before { opacity: 1; }

.review-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(200, 241, 53, 0.2);
  line-height: 0.6;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--spark);
  border: 1px solid rgba(200, 241, 53, 0.2);
  flex-shrink: 0;
}

.reviewer-name { font-weight: 600; font-size: 0.88rem; }
.reviewer-info { font-size: 0.75rem; color: var(--grey); margin-top: 1px; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.7rem;
  color: var(--grey);
  margin-top: 4px;
}

/* Overall rating summary block */
.rating-block {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.rating-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--spark);
  line-height: 1;
}

.rating-detail { flex: 1; min-width: 160px; }

.rating-stars {
  font-size: 1.3rem;
  color: #fbbf24;
  letter-spacing: 3px;
}

.rating-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}

.rating-label {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 2px;
}

.rating-badge {
  background: rgba(200, 241, 53, 0.1);
  border: 1px solid rgba(200, 241, 53, 0.3);
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
}

.rating-badge-logo { font-size: 1.5rem; margin-bottom: 4px; }
.rating-badge-name { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.rating-badge-text { font-size: 0.75rem; color: var(--grey); }
.rating-badge-sub  { font-size: 0.65rem; color: var(--spark); font-weight: 600; }


/* ===== 9. CONTACT & FORM ===== */
#contact { background: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 241, 53, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--spark); }

.contact-item-label {
  font-size: 0.72rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.contact-item-value { font-size: 0.95rem; font-weight: 500; }
.contact-item-value a { color: var(--white); text-decoration: none; }
.contact-item-value a:hover { color: var(--spark); }

/* Form wrapper */
.contact-form {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.form-sub {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 28px;
}

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

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--spark);
  box-shadow: 0 0 0 3px rgba(200, 241, 53, 0.12);
}

/* Fix: dropdown option text must be dark on light background */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  /* Force readable text color in the dropdown list */
  color: var(--white);
}

/* Option elements rendered by OS/browser use system styles.
   Setting color on <option> ensures dark text on light OS dropdowns. */
.form-group select option {
  background-color: #1e2a3a;
  color: #111827;
  /* Note: most browsers override option background with system default.
     The safest cross-browser fix is setting both background + color here. */
  background-color: #ffffff;
  color: #111111;
}

/* Placeholder option (disabled) */
.form-group select option[value=""] { color: #555555; }

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey);
}

/* Honeypot — never visible to humans */
.hp-field { display: none !important; }

/* Captcha placeholder */
.captcha-wrap { margin: 6px 0 16px 0; }

/* Submit button */
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--spark);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  background: #d8ff40;
  transform: translateY(-1px);
  box-shadow: var(--glow);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 0.72rem;
  color: var(--grey);
  text-align: center;
  margin-top: 10px;
}

#form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  text-align: center;
  min-height: 20px;
}
#form-status.success { color: var(--spark); }
#form-status.error   { color: #f87171; }


/* ===== 10. FOOTER ===== */
footer {
  background: #060b14;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--spark); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--grey); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.78rem;
  color: var(--grey);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--white); }


/* ===== 11. FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  background: var(--spark);
  color: var(--navy);
  border-radius: 100px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(200, 241, 53, 0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 241, 53, 0.5);
}


/* ===== 12. ANIMATIONS & SCROLL REVEAL ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== 13. RESPONSIVE ===== */
@media (max-width: 900px) {
  /* Navbar */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Hero */
  .hero-content   { grid-template-columns: 1fr; gap: 48px; padding-top: 20px; }
  .hero-visual    { display: none; }
  .hero-heading   { font-size: clamp(3rem, 10vw, 5rem); }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why */
  .why-grid    { grid-template-columns: 1fr; gap: 48px; }
  .why-big-num { display: none; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand         { grid-column: 1 / -1; }

  section { padding: 72px 0; }
}

@media (max-width: 600px) {
  .services-grid  { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .hero-stats     { gap: 20px; }
  .contact-form   { padding: 28px 20px; }
  .hero-actions   { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}
