﻿/* ============================================================
   StarbizProServices â€” Premium Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* --- CSS Variables --- */
:root {
  --green-bright: #00C853;
  --green-mid:    #00A846;
  --green-deep:   #1B5E20;
  --blue-bright:  #29B6F6;
  --blue-mid:     #0288D1;
  --blue-deep:    #01579B;
  --gold:         #FFD700;
  --gold-dark:    #C8A800;
  --yellow:       #FFC107;
  --white:        #FFFFFF;
  --off-white:    #F5F7FA;
  --light-gray:   #E8EDF5;
  --dark:         #070D1C;
  --dark-mid:     #0C1628;
  --dark-card:    #0F1A2E;
  --dark-card2:   #131F35;
  --glass:        rgba(255,255,255,0.06);
  --glass-hover:  rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.12);
  --glass-border-hover: rgba(0, 200, 83, 0.5);
  --text-muted:   #94A3B8;
  --text-light:   #CBD5E1;
  --text-dark:    #1E293B;
  --shadow-green: 0 0 40px rgba(0,200,83,0.15);
  --shadow-blue:  0 0 40px rgba(41,182,246,0.15);
  --shadow-card:  0 20px 60px rgba(0,0,0,0.4);
  --shadow-gold:  0 0 30px rgba(255,215,0,0.2);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --radius-full:  9999px;
  --nav-height:   86px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Playfair Display', serif;
  --booking-url:  'https://starbizproservices8mgb.setmore.com/starbizproservices';
}

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

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

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

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

/* --- Utility Classes --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.text-green  { color: var(--green-bright); }
.text-blue   { color: var(--blue-bright); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-left   { text-align: left; }

.gradient-text {
  background: linear-gradient(135deg, var(--green-bright), var(--blue-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gb {
  background: linear-gradient(135deg, var(--green-bright), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Labels --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,83,0.1);
  border: 1px solid rgba(0,200,83,0.3);
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

/* --- Headings --- */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.heading-sm {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(7, 13, 28, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 13, 28, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(0,200,83,0.25));
  transition: var(--transition);
}
.nav-logo-icon img,
.nav-logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nav-logo:hover .nav-logo-icon {
  filter: drop-shadow(0 0 18px rgba(0,200,83,0.45));
  transform: scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .logo-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  background: linear-gradient(135deg, var(--green-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-text .logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 15px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: var(--glass);
}

.nav-link i.fa-chevron-down {
  font-size: 10px;
  transition: var(--transition);
}

.nav-links > li:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 220px;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  /* Extra top padding bridges the visual gap so cursor never leaves the hover zone */
  padding: 18px 8px 8px 8px;
  margin-top: -10px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

/* Invisible hover bridge so the cursor can cross from trigger to dropdown without losing hover */
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 20px;
}

.nav-links > li:hover .dropdown,
.nav-links > li:focus-within .dropdown,
.nav-links > li.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown { min-width: 260px; }

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--glass);
  color: var(--green-bright);
}

.dropdown a i {
  width: 18px;
  color: var(--green-bright);
  font-size: 12px;
}

/* Service thumbnails in dropdown + mobile nav (match homepage service cards) */
.dropdown-thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.dropdown a:hover .dropdown-thumb,
.mobile-nav a:hover .dropdown-thumb {
  border-color: var(--green-bright);
  transform: scale(1.05);
}
.mobile-nav .dropdown-thumb {
  width: 42px;
  height: 42px;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.nav-phone:hover {
  background: rgba(0,200,83,0.1);
  border-color: var(--green-bright);
  color: var(--green-bright);
}

.nav-phone i {
  color: var(--green-bright);
}

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

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: left center;
}

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-mid);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  transform: translateX(100%);
  transition: var(--transition-slow);
}

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

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--green-bright);
}

.mobile-nav a i {
  width: 24px;
  color: var(--green-bright);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before { opacity: 1; }

/* Primary Green */
.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(0,200,83,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,200,83,0.45);
}

.btn-primary::before {
  background: linear-gradient(135deg, #00E860, var(--green-bright));
}

/* Gold */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #E6B800);
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(255,215,0,0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,215,0,0.4);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
  background: rgba(0,200,83,0.08);
  transform: translateY(-2px);
}

/* Outline Green */
.btn-outline-green {
  background: transparent;
  color: var(--green-bright);
  border: 2px solid var(--green-bright);
}

.btn-outline-green:hover {
  background: var(--green-bright);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Small */
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* Large */
.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}

/* Full width */
.btn-full { width: 100%; justify-content: center; }

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(1.2);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,13,28,0.7) 0%,
    rgba(1,87,155,0.4) 50%,
    rgba(27,94,32,0.5) 100%
  );
}

.hero-bg-overlay2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(0,200,83,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,83,0.12);
  border: 1px solid rgba(0,200,83,0.4);
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}

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

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .line-highlight {
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--blue-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

.hero-trust-item i {
  color: var(--gold);
  font-size: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1s both;
}

.hero-scroll-arrow {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Service hero (subpages) */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.2);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,13,28,0.8) 0%, rgba(1,87,155,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content .heading-xl {
  margin-bottom: 16px;
}

.page-hero-content .tagline {
  margin-bottom: 32px;
  max-width: 600px;
}

/* Location ticker */
.location-ticker {
  background: linear-gradient(90deg, var(--dark-mid), rgba(0,200,83,0.05), var(--dark-mid));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.ticker-item i {
  color: var(--green-bright);
  font-size: 10px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   TRUST BADGES STRIP
   ============================================================ */
.trust-strip {
  background: var(--dark-card);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 36px 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.trust-badge:hover {
  border-color: var(--green-bright);
  background: rgba(0,200,83,0.06);
  transform: translateY(-2px);
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-badge-icon.green  { background: rgba(0,200,83,0.15); color: var(--green-bright); }
.trust-badge-icon.blue   { background: rgba(41,182,246,0.15); color: var(--blue-bright); }
.trust-badge-icon.gold   { background: rgba(255,215,0,0.15); color: var(--gold); }
.trust-badge-icon.yellow { background: rgba(255,193,7,0.15); color: var(--yellow); }

.trust-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.trust-badge-text span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
  background: var(--dark-mid);
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .heading-lg {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-bright);
  box-shadow: 0 20px 60px rgba(0,200,83,0.15), 0 0 0 1px rgba(0,200,83,0.3);
}

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

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  filter: brightness(0.7) saturate(1.2);
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
  filter: brightness(0.6) saturate(1.4);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--dark-card) 100%);
}

.service-card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.service-card-body {
  padding: 24px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.service-price-tag {
  display: flex;
  flex-direction: column;
}

.service-price-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.service-price-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--green-bright);
}

.service-card-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: var(--glass);
}

.service-card:hover .service-card-btn {
  color: var(--green-bright);
  border-color: var(--green-bright);
  background: rgba(0,200,83,0.08);
}

.service-card-btn i {
  transition: var(--transition);
}

.service-card:hover .service-card-btn i {
  transform: translateX(4px);
}

/* ============================================================
   WHY STARBIZBRO
   ============================================================ */
.why-section {
  background: var(--dark);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: var(--transition);
}

.why-card.green::before { background: linear-gradient(90deg, var(--green-bright), var(--green-deep)); }
.why-card.blue::before  { background: linear-gradient(90deg, var(--blue-bright), var(--blue-deep)); }
.why-card.gold::before  { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.why-card.green .why-card-icon { background: rgba(0,200,83,0.15); color: var(--green-bright); }
.why-card.blue  .why-card-icon { background: rgba(41,182,246,0.15); color: var(--blue-bright); }
.why-card.gold  .why-card-icon { background: rgba(255,215,0,0.15); color: var(--gold); }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
}

.why-card ul li i {
  color: var(--green-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Comparison Table */
.comparison-table-wrap {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: rgba(0,200,83,0.08);
  border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.comparison-table th:first-child { text-align: left; }

.comparison-table th.ours {
  color: var(--green-bright);
}

.comparison-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--white);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--glass); }

.check-yes { color: var(--green-bright); font-size: 18px; }
.check-no  { color: #EF4444; font-size: 18px; }
.check-partial { color: var(--yellow); font-size: 18px; }

/* ============================================================
   OFFERS SECTION
   ============================================================ */
.offers-section {
  background: linear-gradient(135deg, rgba(27,94,32,0.4) 0%, rgba(1,87,155,0.4) 100%);
  border-top: 1px solid rgba(0,200,83,0.2);
  border-bottom: 1px solid rgba(41,182,246,0.2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.offers-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,200,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.offers-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(41,182,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.offer-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,200,83,0.05), rgba(41,182,246,0.05));
  opacity: 0;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,83,0.4);
  box-shadow: 0 20px 50px rgba(0,200,83,0.1);
}

.offer-card:hover::before { opacity: 1; }

.offer-emoji {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gold);
}

.offer-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.offer-badge {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--dark-card);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 28px 16px;
  border-right: 1px solid var(--glass-border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green-bright);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--dark-mid);
  padding: 100px 0;
}

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

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.testimonial-quote {
  font-size: 48px;
  color: var(--green-bright);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}

.author-detail {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--dark);
  padding: 100px 0;
}

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

.about-content .section-label { margin-bottom: 20px; }

.about-content .heading-lg { margin-bottom: 20px; }

.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,200,83,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  font-size: 16px;
  flex-shrink: 0;
}

.about-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.about-feature-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-image-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(7,13,28,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-image-badge .badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,200,83,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  font-size: 22px;
  flex-shrink: 0;
}

.about-image-badge strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.about-image-badge span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--blue-deep) 50%, var(--dark-mid) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') center/cover;
}

.cta-banner .heading-lg { margin-bottom: 16px; }
.cta-banner .tagline { margin-bottom: 40px; }

.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-section {
  background: var(--dark-mid);
  padding: 100px 0;
}

.pricing-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.pricing-tab {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: none;
  background: none;
  font-family: var(--font-body);
}

.pricing-tab.active,
.pricing-tab:hover {
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  color: var(--dark);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pricing Table */
.price-table-wrap {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.price-table-header {
  padding: 28px 32px;
  background: rgba(0,200,83,0.06);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-table-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.price-table-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.price-table-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,200,83,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead {
  background: rgba(255,255,255,0.03);
}

.pricing-table th {
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--glass-border);
}

.pricing-table td {
  padding: 18px 24px;
  font-size: 15px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-table tr:last-child td { border-bottom: none; }

.pricing-table tr:hover td {
  background: rgba(0,200,83,0.04);
}

.pricing-table .price-cell {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-bright);
}

.pricing-table .tag-cell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  background: rgba(0,200,83,0.08);
  border: 1px solid rgba(0,200,83,0.2);
  color: var(--green-bright);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* ============================================================
   SERVICE PAGE COMPONENTS
   ============================================================ */
.service-overview {
  background: var(--dark-mid);
  padding: 80px 0;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-includes h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.service-includes-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
}

.service-includes-list li i {
  color: var(--green-bright);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-image-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(7,13,28,0.9), transparent);
}

/* How it works */
.how-it-works {
  background: var(--dark-card);
  padding: 80px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-bright), var(--blue-bright));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(0,200,83,0.1);
}

.step-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ */
.faq-section {
  background: var(--dark-mid);
  padding: 80px 0;
}

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

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

.faq-item.open {
  border-color: rgba(0,200,83,0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  gap: 16px;
  user-select: none;
}

.faq-question i {
  color: var(--green-bright);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* Differentiators */
.diff-section {
  background: var(--dark);
  padding: 80px 0;
}

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

.diff-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,200,83,0.3);
}

.diff-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.diff-card-icon.green  { background: rgba(0,200,83,0.12); color: var(--green-bright); }
.diff-card-icon.blue   { background: rgba(41,182,246,0.12); color: var(--blue-bright); }
.diff-card-icon.gold   { background: rgba(255,215,0,0.12); color: var(--gold); }

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   FLOATING PHONE BUTTON
   ============================================================ */
.float-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90; /* below modals / mobile nav (which use higher z-indexes) */
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: var(--transition);
  pointer-events: none;
}

/* Hide the floating phone when the bottom CTA banner is in view so it doesn't overlap that CTA */
.float-phone.near-footer {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px) scale(0.8) !important;
}

/* Ensure page content has clearance for the floating CTA so it never covers footer text */
body { padding-bottom: 0; }
.cta-banner, footer.footer { scroll-margin-bottom: 96px; }

.float-phone.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.float-phone-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  color: var(--dark);
  border-radius: var(--radius-full);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(0,200,83,0.4), 0 0 0 0 rgba(0,200,83,0.4);
  animation: phone-pulse 3s infinite;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.float-phone-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

@keyframes phone-pulse {
  0%   { box-shadow: 0 8px 30px rgba(0,200,83,0.4), 0 0 0 0   rgba(0,200,83,0.4); }
  50%  { box-shadow: 0 8px 30px rgba(0,200,83,0.4), 0 0 0 16px rgba(0,200,83,0); }
  100% { box-shadow: 0 8px 30px rgba(0,200,83,0.4), 0 0 0 0   rgba(0,200,83,0); }
}

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

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

.footer-brand .nav-logo { margin-bottom: 20px; }

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(0,200,83,0.1);
  border-color: var(--green-bright);
  color: var(--green-bright);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--green-bright);
  padding-left: 4px;
}

.footer-col ul li a i {
  font-size: 11px;
  color: var(--green-bright);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--green-bright);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact-item a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.footer-badge-item i { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,200,83,0.2); }
  50% { box-shadow: 0 0 40px rgba(0,200,83,0.4); }
}

/* AOS custom */
[data-aos] { transition: opacity 0.6s ease, transform 0.6s ease; }

/* ============================================================
   LIGHT SECTION OVERRIDES
   ============================================================ */
.bg-light {
  background: var(--off-white);
  color: var(--text-dark);
}

.bg-light .heading-lg,
.bg-light .heading-md,
.bg-light .heading-sm { color: var(--text-dark); }

.bg-light .tagline { color: var(--text-dark); opacity: 0.7; }

.bg-light .service-card,
.bg-light .why-card,
.bg-light .testimonial-card {
  background: var(--white);
  border-color: var(--light-gray);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--glass-border); }
  .stat-item:nth-child(3) { border-bottom: none; }
  .service-overview-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .section-pad { padding: 70px 0; }

  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; }

  .hero-trust { gap: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }

  .float-phone-btn .phone-text { display: none; }
  .float-phone { bottom: 24px; right: 24px; }
  .float-phone-btn { padding: 14px; border-radius: 50%; }
  .float-phone-icon { width: 44px; height: 44px; font-size: 20px; }

  .pricing-tabs { flex-wrap: wrap; border-radius: var(--radius-lg); }
  .pricing-tab { min-width: 90px; flex: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-grid { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Typography scales down so headlines don't overflow on small phones */
  .heading-xl { font-size: 38px; line-height: 1.15; }
  .heading-lg { font-size: 28px; line-height: 1.2; }
  .heading-md { font-size: 22px; }
  .tagline    { font-size: 15px; }

  /* Buttons should never blow out the viewport */
  .btn         { font-size: 14px; padding: 12px 18px; }
  .btn-lg      { font-size: 15px; padding: 14px 22px; }
  .btn-full    { width: 100%; }

  /* Tables become horizontally scrollable so they never break the layout */
  .comparison-table-wrap,
  .pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comparison-table,
  .pricing-table { min-width: 540px; }

  /* Smaller floating phone on small phones — it must never cover content */
  .float-phone { bottom: 18px; right: 18px; }
  .float-phone-btn { padding: 12px; }
  .float-phone-icon { width: 40px; height: 40px; font-size: 18px; }

  /* Section padding tightens up */
  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 36px 0; }

  /* Forms full-width on small screens */
  .contact-form input,
  .contact-form textarea,
  .contact-form select,
  .quote-form input,
  .quote-form textarea,
  .quote-form select { width: 100%; font-size: 16px; /* 16px prevents iOS zoom on focus */ }

  /* Footer brand stacks cleanly */
  .footer-brand { text-align: center; }
  .footer-brand .nav-logo { justify-content: center; }
}

/* Touch-only screens: replace hover-based dropdown with tap-only behavior */
@media (hover: none) {
  .nav-links > li:hover .dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-links > li.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
}

