/* ------------------------------ */
/* CSS Variables & Theme Setup    */
/* ------------------------------ */
:root {
  /* Color Palette */
  --color-primary: #2563EB; /* Vibrant Blue */
  --color-primary-hover: #1D4ED8;
  --color-secondary: #0F172A; /* Dark Navy / Black */
  --color-secondary-hover: #1E293B;
  --color-accent: #38BDF8; /* Light Blue Accent */
  
  --color-text-dark: #1E293B;
  --color-text-light: #F8FAFC;
  --color-text-muted: #64748B;
  
  --color-bg-light: #FFFFFF;
  --color-bg-light-alt: #F1F5F9;
  --color-bg-dark: #020617;
  --color-bg-dark-alt: #0F172A;

  /* Typography */
  --font-family: 'Inter', sans-serif;
  
  /* Borders & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.5);

  /* Layout */
  --container-width: 1200px;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 800;
  color: inherit;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed);
}

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

/* ------------------------------ */
/* Layout Utilities               */
/* ------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.dark-section {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.dark-section p {
  color: #94A3B8; /* lighter text for dark background */
}

/* ------------------------------ */
/* Components                     */
/* ------------------------------ */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
  font-family: var(--font-family);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-text-light);
}

.btn-secondary:hover {
  background-color: var(--color-text-light);
  color: var(--color-text-dark);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

/* ------------------------------ */
/* Header & Nav                   */
/* ------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-speed);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-secondary);
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-text-muted);
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* ------------------------------ */
/* Hero Section                   */
/* ------------------------------ */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, rgba(2,6,23,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.subheadline {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.trust-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.1);
  color: var(--color-accent);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* Decorative Hero Stats */
.hero-image-wrapper .glass-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.stat-icon {
  font-size: 2rem;
  background: var(--color-primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.stat-text h4 {
  margin: 0;
  font-size: 1rem;
}

.stat-text p {
  margin: 0;
  font-size: 0.875rem;
  color: #94A3B8;
}

/* ------------------------------ */
/* Offer Section                  */
/* ------------------------------ */
.offer-section {
  padding: 100px 0;
  background-color: var(--color-bg-light-alt);
}

.offer-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.offer-box h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.offer-explain {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.offer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
}

.check-icon {
  color: #10B981; /* Green */
  font-weight: bold;
  font-size: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ------------------------------ */
/* Services Section               */
/* ------------------------------ */
.services-section {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-bg-dark-alt);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition-speed);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* ------------------------------ */
/* How It Works                   */
/* ------------------------------ */
.how-it-works {
  padding: 100px 0;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--color-bg-light-alt);
  z-index: -1;
}

.step-card {
  flex: 1;
  text-align: center;
  background: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.1);
}

/* ------------------------------ */
/* Social Proof Section           */
/* ------------------------------ */
.testimonials-section {
  padding: 100px 0;
}

.metrics-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
}

.metric {
  text-align: center;
}

.metric h4 {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.quote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.client-info strong {
  display: block;
  font-size: 1.125rem;
}

.client-info span {
  color: #94A3B8;
  font-size: 0.875rem;
}

/* ------------------------------ */
/* Booking / Calendly             */
/* ------------------------------ */
.booking-section {
  padding: 100px 0;
  background-color: var(--color-bg-light-alt);
}

.calendly-wrapper {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

/* ------------------------------ */
/* FAQ Section                    */
/* ------------------------------ */
.faq-section {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
}

.accordion-item {
  border-bottom: 1px solid var(--color-bg-light-alt);
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
}

.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s;
}

.accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content p {
  padding-bottom: 1.5rem;
  color: var(--color-text-muted);
}

/* ------------------------------ */
/* Footer                         */
/* ------------------------------ */
.footer {
  padding: 80px 0 20px;
}

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

.footer .logo {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.local-seo-text {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #64748B;
}

.footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a, .footer-contact a {
  color: #94A3B8;
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  color: #64748B;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

/* ------------------------------ */
/* Sticky Mobile Call Button      */
/* ------------------------------ */
.mobile-sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #10B981; /* High converting green */
  color: white;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* ------------------------------ */
/* Animations                     */
/* ------------------------------ */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ------------------------------ */
/* Media Queries                  */
/* ------------------------------ */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .subheadline {
    margin: 0 auto 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }

  .steps-container {
    flex-direction: column;
  }

  .steps-container::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .offer-features {
    grid-template-columns: 1fr;
  }

  .metrics-bar {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }

  body {
    padding-bottom: 60px; /* Space for sticky button */
  }

  .mobile-sticky-call {
    display: block;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}
