/* Spot on Sparky - Website Styles */

/* ============================================
   CSS VARIABLES - Brand Colors & Settings
   ============================================ */
:root {
  /* Primary Colors */
  --color-primary: #76D430;
  --color-primary-dark: #68BD2B;
  --color-primary-light: #E6F8DC;
  
  /* Neutral Colors */
  --color-charcoal: #1A202C;
  --color-slate: #2D3748;
  --color-gray: #4A5568;
  --color-gray-cool: #718096;
  --color-gray-light: #E2E8F0;
  --color-off-white: #F7FAFC;
  --color-white: #FFFFFF;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  
  /* Container widths */
  --container-max: 1200px;
  --container-narrow: 800px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

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

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.7;
}

.text-small {
  font-size: 0.875rem;
}

.text-green {
  color: var(--color-primary);
}

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-lg {
  padding: 120px 0;
}

.section-alt {
  background: var(--color-off-white);
}

.section-light-green {
  background: linear-gradient(180deg, #f0fae8 0%, #e8f5df 100%);
}

.section-warm {
  background: linear-gradient(180deg, #fefcf9 0%, #faf7f2 100%);
}

/* ============================================
   SECTION DIVIDERS (Bubble Wave Effect)
   ============================================ */
.section-divider {
  position: relative;
}

.section-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.section-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.section-divider-top svg,
.section-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-divider-bottom svg {
  transform: rotate(180deg);
}

/* Divider color variants */
.divider-white svg path {
  fill: var(--color-white);
}

.divider-off-white svg path {
  fill: var(--color-off-white);
}

.divider-charcoal svg path {
  fill: var(--color-charcoal);
}

.divider-light-green svg path {
  fill: #f0fae8;
}

.divider-warm svg path {
  fill: #fefcf9;
}

.divider-slate svg path {
  fill: var(--color-slate);
}

/* Sections with dividers need padding adjustment */
.section-with-divider-top {
  padding-top: 120px;
}

.section-with-divider-bottom {
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .section-divider-top,
  .section-divider-bottom {
    height: 40px;
  }
  
  .section-divider-top svg,
  .section-divider-bottom svg {
    height: 40px;
  }
  
  .section-with-divider-top {
    padding-top: 90px;
  }
  
  .section-with-divider-bottom {
    padding-bottom: 90px;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 70px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--color-slate);
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-cta {
  margin-left: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 3.5rem;
  color: var(--color-slate);
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

/* Tablet and smaller - adjust spacing */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1rem;
  }
  
  .nav-cta {
    margin-left: 0.5rem;
  }
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-charcoal);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(118, 212, 48, 0.3);
}

.btn-secondary {
  background: var(--color-slate);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 55, 72, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 30px;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-slate);
  border: 2px solid transparent;
}

.btn-ghost:hover {
  border-color: var(--color-gray-light);
  background: var(--color-off-white);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero.has-video {
  /* Keep the background-image as a loading/fallback layer */
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero.has-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 32, 44, 0.72), rgba(26, 32, 44, 0.72));
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    display: none;
  }
}

.hero h1 {
  color: var(--color-white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero .subheadline {
  font-size: 1.25rem;
  color: var(--color-gray-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero .btn {
  margin-top: 1rem;
}

.hero-placeholder {
  width: 100%;
  height: 400px;
  background: var(--color-gray-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-light);
  font-size: 1rem;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
}

.hero-image {
  width: 100%;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* About Page Hero with Background Image */
.hero-about {
  background-image: linear-gradient(rgba(26, 32, 44, 0.7), rgba(26, 32, 44, 0.7)), url('assets/about-hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Home Page Hero with Background Image */
.hero-home {
  background-image: linear-gradient(rgba(26, 32, 44, 0.7), rgba(26, 32, 44, 0.7)), url('assets/home-hero-background.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Solar & Battery Page Hero with Background Image */
.hero-solar {
  background-image: linear-gradient(rgba(26, 32, 44, 0.7), rgba(26, 32, 44, 0.7)), url('assets/solar-hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Page Hero with Background Image */
.hero-contact {
  background-image: linear-gradient(rgba(26, 32, 44, 0.7), rgba(26, 32, 44, 0.7)), url('assets/contact-hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Products Page Hero with Background Image */
.hero-products {
  background-image: linear-gradient(rgba(26, 32, 44, 0.7), rgba(26, 32, 44, 0.7)), url('assets/products-hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card h3, .card h4 {
  margin-bottom: 1rem;
}

.card p {
  color: var(--color-gray);
}

.card-placeholder {
  width: 100%;
  height: 200px;
  background: var(--color-gray-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-cool);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.card-image {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* ============================================
   GRIDS
   ============================================ */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-gray-light);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.feature-icon img {
  filter: invert(64%) sepia(84%) saturate(434%) hue-rotate(39deg) brightness(99%) contrast(88%);
  width: 56px;
  height: 56px;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  font-size: 0.95rem;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 5px;
}

.badge-green {
  background: var(--color-primary-light);
  color: #4A8C1F;
}

.badge-gray {
  background: var(--color-gray-light);
  color: var(--color-slate);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

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

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

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 1rem 1.5rem 1.5rem;
  color: var(--color-gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-slate);
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.form-note {
  font-size: 0.875rem;
  color: var(--color-gray-cool);
  margin-top: 0.5rem;
}

.form-error {
  color: #E53E3E;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #E53E3E;
}

/* ============================================
   SERVICE AREA / LOCATION LISTS
   ============================================ */
.location-list {
  font-size: 1.125rem;
  color: var(--color-gray);
  text-align: center;
  line-height: 2;
}

.location-list span {
  display: inline-block;
  margin: 0 8px;
}

.location-list span::after {
  content: '•';
  margin-left: 16px;
  color: var(--color-primary);
}

.location-list span:last-child::after {
  content: '';
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  background: linear-gradient(180deg, var(--color-charcoal) 0%, var(--color-slate) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--color-gray-light);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-charcoal);
  color: var(--color-gray-light);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--color-gray-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--color-primary);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-item strong {
  color: var(--color-white);
  min-width: 80px;
}

.footer-bottom {
  border-top: 1px solid var(--color-slate);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
}

/* ============================================
   BENEFITS LIST
   ============================================ */
.benefits-list {
  list-style: none;
  margin: 1.5rem 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--color-gray);
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-grid {
  align-items: center;
}

.why-choose-image {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.why-choose-image img {
  width: 100%;
  height: 380px;
  display: block;
  object-fit: cover;
  object-position: center 40%;
}

/* ============================================
   WHY CHOOSE US LIST (with checkmarks)
   ============================================ */
.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-choose-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-choose-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.why-choose-item p {
  margin-bottom: 0;
  color: var(--color-gray);
}

.check-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal);
}

.check-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .why-choose-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .check-icon {
    width: 56px;
    height: 56px;
  }
  
  .check-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .why-choose-image {
    max-height: 300px;
  }
}

/* ============================================
   CONTACT INFO BOX
   ============================================ */
.contact-box {
  background: var(--color-off-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-box h3 {
  margin-bottom: 1.5rem;
}

.contact-box-item {
  margin-bottom: 1.5rem;
}

.contact-box-item:last-child {
  margin-bottom: 0;
}

.contact-box-item strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-charcoal);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-box-item strong img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: invert(64%) sepia(84%) saturate(434%) hue-rotate(39deg) brightness(99%) contrast(88%);
}

.contact-box-item a {
  color: var(--color-primary);
  font-weight: 600;
}

.contact-box-item a:hover {
  text-decoration: underline;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  counter-reset: step-counter;
}

.process-step {
  counter-increment: step-counter;
  margin-bottom: 2rem;
  padding-left: 4rem;
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h4 {
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.process-step p {
  color: var(--color-gray);
  margin: 0;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero .subheadline {
    font-size: 1.125rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-lg {
    padding: 70px 0;
  }
}

/* ============================================
   MAP CONTAINER
   ============================================ */
.map-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-gray-light);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  background: linear-gradient(180deg, #fefcf9 0%, #faf7f2 100%);
  position: relative;
  padding-bottom: 100px;
}

.google-reviews-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.google-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-white);
  padding: 0.625rem 1.25rem;
  border-radius: 60px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-gray-light);
}

.google-logo {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.google-rating {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1;
}

.rating-stars {
  color: #FBBC05;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1;
}

.rating-text {
  font-size: 0.75rem;
  color: var(--color-gray-cool);
  font-weight: 500;
}

/* Review Cards Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-gray-light);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.review-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--color-gray);
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-light);
}

.review-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author-name {
  font-weight: 600;
  color: var(--color-charcoal);
  font-size: 0.9rem;
}

.review-author-location {
  color: var(--color-gray-cool);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .google-badge-inner {
    padding: 0.5rem 1rem;
    gap: 0.625rem;
  }
  
  .google-logo {
    width: 30px;
    height: 30px;
  }
  
  .rating-number {
    font-size: 1.2rem;
  }
  
  .review-card {
    padding: 1.25rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.hidden {
  display: none;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

