
/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Premium and Professional */
  --primary-blue: #1e40af;
  --primary-blue-light: #3b82f6;
  --primary-blue-dark: #1e3a8a;
  --accent-gold: #d97706;
  --accent-gold-light: #f59e0b;
  --accent-gold-dark: #b45309;
  --success-green: #059669;
  --danger-red: #dc2626;
  --warning-orange: #ea580c;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Gradients */
  --hero-gradient: linear-gradient(135deg, #1e40af 0%, #d97706 100%);
  --card-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  
  /* Shadows */
  --comic-shadow: 4px 4px 0px #000, 8px 8px 0px rgba(0,0,0,0.1);
  --soft-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --medium-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --large-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Font families */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.comic-border {
  border: 3px solid #000;
  border-radius: 15px;
}

.comic-shadow {
  box-shadow: var(--comic-shadow);
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.title-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    margin: 10px auto 20px;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.about-intro {
    margin-bottom: 40px;
}

.about-intro h3 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--gray-800);
    line-height: 1.7;
    font-weight: 500;
}

.about-story {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border-left: 4px solid var(--primary-blue);
}

.about-story h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-story p {
    color: var(--gray-800);
    line-height: 1.7;
    margin: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.about-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.about-features .feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-features .feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.about-features .feature:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.about-features .feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-cta {
    text-align: center;
}

.about-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.about-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px 20px;
    color: white;
}

.overlay-content h5 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.overlay-content p {
    margin: 0;
    opacity: 0.9;
}

.stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Method Section Styles */
.method-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.method-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e9ecef" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.method-content {
    position: relative;
    z-index: 1;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.method-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.method-steps .step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.method-steps .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.method-steps .step:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.method-steps .step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

.step-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.step-content {
    flex: 1;
}

.method-steps .step h3 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.method-steps .step p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.mission-statement {
    margin-top: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem;
    background: var(--primary-blue);
    border-radius: 12px;
}

.mission-statement blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-intro h3 {
    font-size: 1.8rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .about-features .feature {
    padding: 25px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .feature-content h4 {
    font-size: 1.1rem;
  }
  
  .stats-mini {
    grid-template-columns: 1fr;
  }
  
  .image-container img {
    height: 250px;
  }
  
  .method-steps {
    grid-template-columns: 1fr;
  }
  
  .mission-statement {
    padding: 2rem;
  }
  
  .mission-statement blockquote {
    font-size: 1.25rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-features .feature:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
      opacity: 0;
      transform: scale(0.8);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid var(--primary-blue);
  box-shadow: var(--comic-shadow);
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 3rem;
  width: auto;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

.logo-subtitle {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.desktop-nav {
  display: flex;
  gap: 2.5rem;
}

.desktop-nav button {
  background: none;
  border: none;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
}

.desktop-nav button::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-blue);
  transition: all 0.3s ease;
}

.desktop-nav button:hover {
  color: var(--primary-blue);
}

.desktop-nav button:hover::after {
  width: 100%;
  left: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

.phone-link:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.cta-button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  box-shadow: var(--comic-shadow);
  text-decoration: none;
}

.cta-button.mobile{
  padding: 1rem;
}

.cta-button:hover {
  background: var(--primary-blue-dark);
  transform: scale(1.05);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--gray-800);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--gray-800);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav button {
  background: none;
  border: none;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
  padding: 0.5rem 0;
  font-family: var(--font-primary);
  font-size: 1rem;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
  z-index: 1; /* Make sure content stays on top */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), /* dark overlay */
    url('back.jpg') no-repeat center center/cover;
  z-index: -1;
}



.hero-bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-bg-dots::before,
.hero-bg-dots::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: white;
  border-radius: 50%;
}

.hero-bg-dots::before {
  top: 5rem;
  left: 5rem;
}

.hero-bg-dots::after {
  bottom: 5rem;
  right: 5rem;
  width: 0.75rem;
  height: 0.75rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  animation: slideUp 0.8s ease-out;
}

.hero-text {
  color: white;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: white;
  color: var(--primary-blue);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 2rem;
  box-shadow: var(--comic-shadow);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--accent-gold-light);
  text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.primary-button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  box-shadow: var(--comic-shadow);
}

.primary-button:hover {
  background: var(--primary-blue-dark);
  transform: scale(1.05);
}

.secondary-button {
  background: white;
  color: var(--primary-blue);
  border: 4px solid white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  box-shadow: var(--comic-shadow);
}

.secondary-button:hover {
  background: var(--gray-50);
  transform: scale(1.05);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-image {
  position: relative;
  animation: bounceIn 1s ease-out;
  z-index: 2;
}

.superhero {
  width: 100%;
  max-width: 32rem;
  height: auto;
  margin: 0 auto;
  display: block;
}

.speech-bubble {
  position: absolute;
  top: 6rem;
  right: -5rem;
  background: white;
  padding: 1.25rem;
  border-radius: 20px;
  box-shadow: var(--medium-shadow);
  max-width: 14rem;
  z-index: 3;
}

.speech-bubble::before {
  transform: rotate(135deg);
  content: '';
  position: absolute;
  top: -2px;
  left: -10px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
}

.speech-bubble p {
  font-weight: bold;
  color: var(--primary-blue);
  font-size: 1.125rem;
  margin: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  animation: pulse 2s infinite;
}

.scroll-arrow {
  font-size: 2rem;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--card-gradient);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--comic-shadow);
}

.service-card:hover {
  transform: scale(1.05);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.25rem 0;
  font-weight: 500;
}

.service-price {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  box-shadow: var(--comic-shadow);
}

.service-button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-comic);
  width: 100%;
  box-shadow: var(--comic-shadow);
  text-decoration: none;
}

.service-button:hover {
  background: var(--primary-blue-dark);
}

.additional-services {
  text-align: center;
}

.additional-title {
  font-family: var(--font-hero);
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.additional-service {
  background: var(--card-gradient);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.additional-service:hover {
  transform: scale(1.05);
}
.additional-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.additional-service h4 {
  font-weight: bold;
  color: var(--gray-800);
}

/* Quote Section */
.quote-section {
  padding: 4rem 0;
  background: var(--card-gradient);
}

/* Quote Page Styles */
.quote-page {
  padding: 80px 0;
  background: linear-gradient(135deg, #e0f2fe 0%, #f8f9fa 100%);
  min-height: 100vh;
}

.quote-header {
  text-align: center;
  margin-bottom: 40px;
}

.quote-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

/* Progress Steps */
.progress-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.progress-step {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-300);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background: var(--primary-blue);
  color: white;
}

.progress-line {
  width: 80px;
  height: 2px;
  background: var(--gray-300);
  margin: 0 10px;
}

/* Quote Content Layout */
.quote-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Form Section */
.form-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.form-subtitle {
  color: var(--gray-600);
  margin-bottom: 30px;
  font-size: 0.9rem;
}

/* Form Messages */
.form-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid;
  animation: slideInDown 0.4s ease-out;
}

.form-message i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.success-message {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.success-message i {
  color: #059669;
}

.error-message {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #991b1b;
  border-color: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.error-message i {
  color: #dc2626;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-800);
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

/* Select Dropdown Styles */
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group select option {
  padding: 12px;
}

.referral-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-style: italic;
}

/* Highlight the referral source field to make it stand out */
#referralSource {
  border-color: var(--primary-blue-light);
  background-color: #f0f7ff;
}

#otherReferralGroup input {
  border-left: 3px solid var(--primary-blue);
  padding-left: 14px;
}

/* Checkbox Styles */
.checkbox-group {
  margin-bottom: 25px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-blue);
  color: white;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  font-size: 12px;
  font-weight: bold;
}

.checkbox-disclaimer {
  margin-top: 10px;
  padding-left: 32px;
}

.checkbox-disclaimer p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.4;
  margin: 0;
}

.checkbox-disclaimer a {
  color: var(--primary-blue);
  text-decoration: none;
}

.checkbox-disclaimer a:hover {
  text-decoration: underline;
}

.email-disclaimer {
  margin-bottom: 30px;
  padding: 15px;
  background: var(--gray-50);
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
}

.email-disclaimer p {
  font-size: 0.85rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.4;
}

/* Radio Button Styles */
.radio-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  flex: 1;
  min-width: 0;
}

.radio-option:hover {
  border-color: var(--primary-blue);
  background: #f8fafc;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary-blue);
}

.radio-option label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--gray-800);
  font-size: 0.95rem;
}

.radio-option.popular {
  border-color: var(--primary-blue);
  background: #f0f4ff;
}

.radio-option.popular label::after {
  content: " 👑";
  color: var(--primary-blue);
}

/* Textarea Styles */
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background: white;
  resize: vertical;
  min-height: 100px;
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea::placeholder {
  color: var(--gray-400);
}

/* Submit Button */
.submit-button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 16px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  width: 100%;
  margin-bottom: 25px;
}

.submit-button:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

/* Form Footer */
.form-footer {
  text-align: center;
  padding: 20px;
  background: var(--gray-50);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.form-footer p {
  margin: 5px 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-footer p:first-child {
  font-size: 1rem;
  color: var(--gray-800);
  font-weight: 500;
}

.form-footer strong {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Info Section */
.info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.why-choose-us {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-us h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 25px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
  padding: 4rem 0;
  background: white;
}

.before-after-container {
  background: var(--card-gradient);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: var(--comic-shadow);
}

.comparison-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.before-image,
.after-image {
  position: relative;
}

.image-label {
  position: absolute;
  top: -1rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  z-index: 2;
  box-shadow: var(--comic-shadow);
}

.before-label {
  left: -1rem;
  background: var(--danger-red);
  color: white;
}

.after-label {
  right: -1rem;
  background: var(--success-green);
  color: white;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--comic-shadow);
}

.before-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(75, 85, 99, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
}

.sparkle-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-gold);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-btn {
  background: white;
  border: 2px solid var(--gray-300);
  color: var(--gray-600);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.nav-btn.active,
.nav-btn:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.nav-btn.active::after,
.nav-btn:hover::after {
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  background: white;
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--medium-shadow);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.stat-label {
  font-weight: 600;
  color: var(--gray-800);
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background: var(--card-gradient);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: var(--soft-shadow);
}

.stars {
  color: var(--accent-gold);
  font-size: 1.25rem;
}

.trust-badge {
  background: var(--success-green);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  font-weight: bold;
  box-shadow: var(--soft-shadow);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--medium-shadow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-header img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.testimonial-info h4 {
  font-weight: bold;
  color: var(--gray-800);
  margin: 0;
}

.testimonial-info p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin: 0;
}

.testimonial-text {
  color: var(--gray-700);
  line-height: 1.6;
  font-style: italic;
}

.google-reviews-cta {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  display: block;
  margin: 0 auto;
  max-width: 28rem;
  box-shadow: var(--soft-shadow);
}

.google-reviews-cta h3 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.google-reviews-cta p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.google-reviews-cta a {
  color: var(--primary-blue);
  font-weight: bold;
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.google-reviews-cta a:hover {
  color: var(--primary-blue-dark);
  text-decoration: underline;
}

/* Service Areas Section */
.service-areas {
  padding: 4rem 0;
  background: white;
}

.map-container {
  margin-bottom: 2rem;
}

.map-placeholder {
  background: rgba(37, 99, 235, 0.1);
  height: 16rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--comic-shadow);
}

.map-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.map-placeholder h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  color: var(--gray-600);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.area-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

.area-card:hover {
  background: var(--card-gradient);
  transform: translateY(-4px);
  box-shadow: var(--medium-shadow);
}

.area-cta {
  background: rgba(217, 119, 6, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 4rem;
  box-shadow: var(--soft-shadow);
}

.area-cta h3 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.area-cta p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.area-cta a {
  color: var(--primary-blue);
  font-weight: bold;
  text-decoration: none;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.area-cta a:hover {
  color: var(--primary-blue-dark);
  text-decoration: underline;
}

.service-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-type {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.service-type:hover {
  transform: translateY(-4px);
  box-shadow: var(--medium-shadow);
}

.type-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-type h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.service-type p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 1rem;
}

/* Blog Section */
.blog {
  padding: 4rem 0;
  background: var(--card-gradient);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--comic-shadow);
}

.blog-card:hover {
  transform: scale(1.05);
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.read-time {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--gray-800);
}

.blog-excerpt {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  background: none;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  font-weight: 500;
  width: 100%;
}

.read-more:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.newsletter-signup {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 24rem;
  margin: 0 auto;
  box-shadow: var(--comic-shadow);
}

.newsletter-signup h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.newsletter-signup p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.newsletter-form input {
  padding: 0.75rem;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-family: var(--font-primary);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.newsletter-form button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: var(--font-primary);
}

.newsletter-form button:hover {
  background: var(--primary-blue-dark);
}

.newsletter-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 4rem;
  width: auto;
}

.footer-brand-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin: 0;
}

.footer-brand-text p {
  font-size: 1.125rem;
  margin: 0;
}

.footer-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.2rem;
  border-radius: 12%;
  text-decoration: none;
  font-size: 1.25rem;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

.footer-contact h4,
.footer-links h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--accent-gold-light);
  margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-gold-light);
}

.contact-item small {
  display: block;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links button {
  background: none;
  border: none;
  color: white;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: var(--font-primary);
  font-weight: 400;
  padding: 0;
}

.footer-links button:hover {
  color: var(--accent-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  margin: 0.25rem 0;
}

.footer-copyright p:first-child {
  font-family: var(--font-primary);
  font-weight: 600;
}

.footer-copyright p:last-child {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent-gold-light);
}

.superhero-guarantee {
  color: var(--accent-gold-light);
  font-weight: 600;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--success-green);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: var(--large-shadow);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10000;
  font-family: var(--font-primary);
  font-weight: 600;
  opacity: 0;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav,
  .header-cta {
      display: none;
  }
  
  .mobile-menu-btn {
      display: block;
  }
  
  .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
      margin-top: 2rem;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-buttons {
      align-items: center;
  }
  
  .primary-button,
  .secondary-button {
      width: 100%;
      max-width: 20rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .services-grid {
      grid-template-columns: 1fr;
  }
  
  .form-row {
      grid-template-columns: 1fr;
  }
  
  .before-after {
      grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
      grid-template-columns: 1fr;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
  }
  
  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }
  
  .trust-indicators {
      flex-direction: column;
      gap: 1rem;
  }
  
  .hero-buttons {
      flex-direction: column;
  }
  
  .areas-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .footer-logo{
    justify-content: center;
  }
  .social-links{
    justify-content: center;
  }
  .footer-links button{
    font-size: 1rem;
    text-align: center;
  }
  .footer-legal{
    display: grid;
  }
  
  /* Quote Page Mobile Styles */
  .quote-page {
    padding: 40px 0;
  }
  
  .quote-header h1 {
    font-size: 2rem;
  }
  
  .progress-container {
    margin-bottom: 40px;
  }
  
  .progress-line {
    width: 40px;
  }
  
  .step-circle {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .quote-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-section {
    padding: 25px;
  }
  
  .form-container h2 {
    font-size: 1.5rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .submit-button,
  .back-button {
    width: 100%;
  }
  
  .info-image img {
    height: 250px;
  }
  
  .why-choose-us {
    padding: 20px;
  }
  
  /* Mobile Radio Button Layout */
  .radio-group {
    flex-direction: column;
  }
  
  .radio-option {
    flex: none;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 0.75rem;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .section-title {
      font-size: 1.75rem;
  }
  
  .service-card,
  .testimonial-card,
  .blog-card {
      margin: 0 0.5rem;
  }
  
  .before-after-container {
      padding: 1rem;
  }
  
  .toast {
      right: 1rem;
      left: 1rem;
      transform: translateY(-100%);
  }
  
  .toast.show {
      transform: translateY(0);
  }
}
