/* World-Class Premium Support Page Styles */
body {
  background: transparent !important;
  overflow-x: hidden;
}

.support-section {
  padding: 0;
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
  background: transparent !important;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Premium Background Effects */
.support-section::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(49, 46, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(76, 29, 149, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure all containers are transparent */
.first-container,
.support-container,
.support-program-section,
.support-contact-section,
.support-hours-section,
.support-social-section {
  background: transparent !important;
}

.support-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: hidden;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Premium Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Hero Support Section */
.support-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #2d5a87 70%, #1a2e4a 100%);
  color: white;
  padding: 0;
  margin: 0;
  margin-top: 8rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.support-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(45, 90, 135, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(15, 23, 42, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
  width: 100%;
  box-sizing: border-box;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.stat-disclaimer {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  line-height: 1.3;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.primary-cta, .secondary-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: 48px;
}

.primary-cta svg, .secondary-cta svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: block;
  overflow: visible;
}

.primary-cta {
  background: #ffffff;
  color: #1e3a5f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid #ffffff;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: #1e3a5f;
  background: #f1f5f9;
  border-color: #f1f5f9;
}

.secondary-cta {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-2px);
}

/* Premium Support Form */
.support-form {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 3rem;
  margin: -1.5rem 2rem 0 2rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(20px);
  animation: fadeInUp 1s ease-out 1s both;
  scroll-margin-top: 8rem; /* Offset for fixed navigation header */
}


.support-form h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3c4e;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2d3c4e 0%, #2d5a87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(45, 60, 78, 0.3);
}

/* Section Title Styles (not loaded from homepage-styles.css) */
.support-section .section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .support-section .section-title {
    font-size: 2.25rem;
  }
}

/* Premium Trust Indicators */
.trust-indicators {
  margin: 4rem 2rem;
  padding: 3rem 0;
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d5a87 0%, #2d3c4e 100%);
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  border-color: #2d5a87;
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2d5a87 0%, #2d3c4e 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  color: white;
  box-shadow: 0 8px 20px rgba(45, 90, 135, 0.3);
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(45, 90, 135, 0.4);
}

.trust-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Premium Testimonials Section */
.testimonials-section {
  margin: 4rem 2rem;
  padding: 4rem 0;
  background: transparent;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(49, 46, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d5a87 0%, #2d3c4e 100%);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border-color: #2d5a87;
}

.testimonial-quote {
  color: #3b82f6;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.testimonial-content p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.2rem;
}

/* KeepPACE Support Program */
.support-program-section {
  margin: 4rem 2rem;
}

.support-section-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2d3c4e;
  text-align: center;
  margin-bottom: 2rem;
}

.support-program-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.keeppace-logo {
  max-width: 50px;
  height: auto;
  margin-right: 0.75rem;
  vertical-align: middle;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.keeppace-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.15));
}

.support-program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d5a87 0%, #2d3c4e 100%);
}

.program-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3c4e;
  margin-bottom: 1.5rem;
  text-align: center;
}

.program-content p {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.program-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #2d5a87;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2d5a87 0%, #2d3c4e 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(45, 90, 135, 0.3);
}

.feature-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.75rem;
}

.feature-text p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  text-align: left;
  line-height: 1.6;
}

.program-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 16px;
  border: 1px solid #cbd5e1;
}

.program-cta p {
  margin: 0;
  font-size: 1.1rem;
  color: #334155;
}

.program-cta a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}

.program-cta a:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* Training Image Section */
.training-image-section {
  margin: 4rem 2rem;
}

.training-image-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.training-image-container:hover .training-image {
  transform: scale(1.02);
}

.training-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.training-image-content {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

.training-image-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white !important;
}

.training-image-content p {
  font-size: 1.2rem;
  margin: 0;
  opacity: 1;
  color: white !important;
  line-height: 1.5;
}

/* Contact Information Section */
.support-contact-section {
  margin: 4rem 2rem;
}

.support-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.support-contact-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.support-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d5a87 0%, #2d3c4e 100%);
}

.support-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border-color: #2d5a87;
}

.support-contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2d5a87 0%, #2d3c4e 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: white;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  overflow: visible;
}

.support-contact-icon svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.support-contact-card:hover .support-contact-icon {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(45, 90, 135, 0.4);
}

.support-contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3c4e;
  margin-bottom: 1rem;
}

.support-contact-card p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-contact-link {
  color: #2d5a87;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid #cbd5e1;
  word-break: break-all;
  max-width: 100%;
  box-sizing: border-box;
}

.support-contact-link:hover {
  color: white;
  background: linear-gradient(135deg, #2d5a87 0%, #2d3c4e 100%);
  border-color: #2d5a87;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 90, 135, 0.3);
}

.support-address {
  font-style: normal;
  color: #334155;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 500;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

/* Business Hours Section */
.support-hours-section {
  margin: 4rem 2rem;
}

.support-hours-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.support-hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d5a87 0%, #2d3c4e 100%);
}

.support-hours-content {
  margin-bottom: 2rem;
}

.support-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.support-hours-item:last-child {
  border-bottom: none;
}

.support-day {
  font-weight: 600;
  color: #1e40af;
  font-size: 1.1rem;
}

.support-time {
  color: #64748b;
  font-size: 1rem;
}

.support-time.closed {
  color: #dc2626;
  font-weight: 600;
}

.support-timezone-note {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.support-timezone-note p {
  margin: 0;
  font-size: 1rem;
  color: #334155;
}

/* Social Media Section */
.support-social-section {
  margin: 4rem 2rem;
}

.support-social-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.support-social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d5a87 0%, #2d3c4e 100%);
}

.support-social-card p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.support-social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.support-social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.support-social-link:hover {
  background: linear-gradient(135deg, #2d5a87 0%, #2d3c4e 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 90, 135, 0.3);
}

.support-social-link svg {
  width: 24px;
  height: 24px;
}

/* Featured Video Styles */
.featured-video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
  align-items: center;
}

.video-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.video-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-image {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.video-thumbnail:hover .play-button {
  background: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.video-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.video-description {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  overflow: visible;
  min-height: 44px;
}

.video-link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  overflow: visible;
}

.video-link:hover {
  background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
  color: white;
}

.youtube-channel-link {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2d5a87 0%, #2d3c4e 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  overflow: visible;
  min-height: 48px;
}

.channel-link svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  overflow: visible;
}

.channel-link:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
  color: white;
}

/* Premium Mobile Responsive */
@media (max-width: 1024px) {
  .trust-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

  .featured-video {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .support-section {
    padding: 0;
  }

  .support-hero {
    margin: 0;
    margin-top: 8rem;
    border-radius: 16px;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-disclaimer {
    font-size: 0.65rem;
  }

  .support-form {
    margin: 1rem;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .support-form h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .support-form::after {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .support-section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .support-program-section,
  .support-contact-section,
  .support-social-section {
    margin: 2rem 1rem;
  }

  .trust-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-item {
    padding: 2rem 1.5rem;
  }

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

  .testimonial-card {
    padding: 2rem;
  }

  .support-program-card,
  .support-social-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .keeppace-logo {
    max-width: 40px;
  }

  .program-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .program-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .program-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-item {
    padding: 1rem;
    border-radius: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
  }

  .feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .feature-text p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .support-contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .support-contact-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .support-contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .support-contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .support-contact-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .support-contact-link {
    font-size: 0.95rem;
  }

  .support-hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .training-image {
    height: 350px;
  }

  .support-social-links {
    gap: 1rem;
  }

  .support-social-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .featured-video {
    flex-direction: column;
    gap: 1.5rem;
  }

  .video-thumbnail {
    width: 100%;
    height: 180px;
    border-radius: 12px;
  }

  .video-info h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .video-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .video-link,
  .channel-link {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .youtube-channel-link {
    margin-top: 1rem;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .support-hero {
    margin: 0;
    margin-top: 8rem;
    border-radius: 12px;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .stat-disclaimer {
    font-size: 0.6rem;
  }

  .support-form {
    margin: 0.75rem;
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

  .support-form h2 {
    font-size: 1.2rem;
  }

  .support-form::after {
    font-size: 0.75rem;
  }

  .support-section-title {
    font-size: 1.3rem;
  }

  .trust-indicators,
  .testimonials-section,
  .support-program-section,
  .training-image-section,
  .support-contact-section,
  .support-hours-section,
  .support-social-section {
    margin: 2rem 1rem;
  }

  .trust-item,
  .testimonial-card,
  .support-program-card,
  .support-contact-card,
  .support-hours-card,
  .support-social-card {
    padding: 1.5rem;
  }

  .support-social-links {
    flex-direction: column;
    align-items: center;
  }

  .support-social-link {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .primary-cta, .secondary-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    min-height: 44px;
  }

  .primary-cta svg, .secondary-cta svg {
    width: 16px;
    height: 16px;
  }

  .featured-video {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .video-info h3 {
    font-size: 1.1rem;
  }

  .play-button {
    width: 45px;
    height: 45px;
  }

  .play-button svg {
    width: 32px;
    height: 32px;
  }

  .video-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    min-height: 40px;
  }

  .video-link svg {
    width: 16px;
    height: 16px;
  }

  .channel-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-height: 44px;
  }

  .channel-link svg {
    width: 18px;
    height: 18px;
  }
}

/* Extra small screens - prevent horizontal overflow */
@media (max-width: 360px) {
  .support-section {
    padding: 0;
    margin: 0;
  }

  .support-hero {
    margin: 0;
    margin-top: 8rem;
    border-radius: 8px;
  }

  .hero-content {
    padding: 1.5rem 0.75rem;
  }

  .hero-text h1 {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .stat-disclaimer {
    font-size: 0.55rem;
  }

  .support-form {
    margin: 0.5rem;
    padding: 1.25rem 0.75rem;
    border-radius: 8px;
  }

  .support-form h2 {
    font-size: 1.1rem;
    word-wrap: break-word;
  }

  .support-section-title {
    font-size: 1.2rem;
    word-wrap: break-word;
  }

  .support-program-section,
  .support-contact-section,
  .support-social-section {
    margin: 1rem 0.5rem;
  }

  .support-program-card,
  .support-social-card {
    padding: 1rem 0.75rem;
    border-radius: 8px;
  }

  .keeppace-logo {
    max-width: 35px;
  }

  .support-contact-card {
    padding: 1rem 0.75rem;
    border-radius: 8px;
  }

  .featured-video {
    gap: 1rem;
  }

  .video-thumbnail {
    height: 140px;
  }

  .video-info h3 {
    font-size: 0.95rem;
    word-wrap: break-word;
  }

  .video-description {
    font-size: 0.75rem;
  }

  .video-link,
  .channel-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    min-height: 36px;
  }

  /* Ensure all text elements don't overflow */
  * {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* Service Offerings Styles (from services.html) */
.service-offerings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .service-offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-offering-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.service-offering-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #d1d5db;
}

.service-offering-image {
  width: 100%;
  height: 16rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #f3f4f6;
}

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

.service-offering-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.service-offering-card p {
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-offering-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-offering-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

.service-offering-list svg {
  width: 1rem;
  height: 1rem;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.service-cta-box {
  margin-top: 2rem;
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.service-cta-box p {
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-cta-buttons {
    flex-direction: row;
  }
}

.btn-service-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #2563eb;
  color: white;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-service-primary:hover {
  background: #1d4ed8;
  color: white;
}

.btn-service-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #2563eb;
  color: #2563eb;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-service-secondary:hover {
  background: #eff6ff;
}

.service-cta-section {
  position: relative;
  background: linear-gradient(to bottom right, #111827, #1f2937, #111827);
  border-radius: 1rem;
  padding: 2.5rem 1rem;
  text-align: center;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin: 4rem 2rem;
}

@media (min-width: 768px) {
  .service-cta-section {
    padding: 4rem 2rem;
  }
}

.service-cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 768px) {
  .service-cta-section h2 {
    font-size: 2.25rem;
  }
}

.service-cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
}

.service-cta-buttons-large {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .service-cta-buttons-large {
    flex-direction: row;
  }
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: #111827;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  min-width: 220px;
}

.btn-cta-primary:hover {
  background: #f3f4f6;
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  min-width: 220px;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.btn-cta-primary svg,
.btn-cta-secondary svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
}

.btn-cta-primary:hover svg,
.btn-cta-secondary:hover svg {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .service-cta-section {
    margin: 2rem 1rem;
    padding: 2rem 1rem;
  }

  .service-cta-section h2 {
    font-size: 1.5rem;
  }

  .service-cta-section p {
    font-size: 1rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
}

/* Service Card Styles */
.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #d1d5db;
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  background: linear-gradient(to bottom right, #dbeafe, #eff6ff);
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.service-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.service-card:hover h2 {
  color: #2563eb;
}

.service-card p {
  color: #4b5563;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  color: #2563eb;
  font-weight: 600;
  margin-top: auto;
  gap: 0.25rem;
}

.service-card-footer a {
  color: inherit;
  text-decoration: none;
}

/* Support Page Layout Utilities */
.support-form-section {
  margin-top: 3rem;
}

.support-form-description {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-content-block {
  margin-top: 3rem;
  margin-bottom: 0;
}

.support-content-block:last-child {
  margin-bottom: 3rem;
}

.support-contact-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.support-services-description {
  margin-bottom: 2rem;
}

.support-content-block .service-offerings-grid {
  margin-top: 2rem;
}

/* 3-column layout for combined services section */
@media (min-width: 1024px) {
  .support-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-cta-wrapper {
  margin-top: 1.5rem;
}

.support-cta-centered {
  margin-top: 2rem;
  text-align: center;
}

.support-main-spacer {
  margin-bottom: 4rem;
}

/* ============================================
   Quote Page Redesign
   ============================================ */

/* Compact Page Header */
.quote-page-header {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 1.5rem;
}

.quote-page-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.quote-page-header p {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Form + Sidebar Grid */
.quote-main-grid {
  display: grid;
  grid-template-columns: 5fr 2fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.quote-page .support-form,
.support-page .support-form {
  margin: 0;
  animation: none;
}

.quote-form-column {
  min-width: 0;
}

/* Sidebar */
.quote-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

/* Sidebar Cards */
.quote-sidebar-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
}

/* Response Time Badge */
.quote-response-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: #bfdbfe;
}

.quote-sidebar-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2d5a87, #2d3c4e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.quote-sidebar-text {
  display: flex;
  flex-direction: column;
}

.quote-sidebar-text strong {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 0.125rem;
}

.quote-sidebar-text span {
  font-size: 0.8rem;
  color: #6b7280;
}

/* What You'll Receive */
.quote-expectations h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.quote-expectations ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-expectations li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.4;
}

.quote-expectations li i {
  color: #2563eb;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Trust Stats Strip */
.quote-trust-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.5rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.quote-stat {
  text-align: center;
  padding: 0.5rem 1rem;
}

.quote-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.25rem;
}

.quote-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #6b7280;
}

/* How It Works */
.quote-how-it-works {
  margin-bottom: 1rem;
  text-align: center;
}

.quote-how-it-works .section-title {
  margin-bottom: 2rem;
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.quote-step {
  text-align: center;
  padding: 1.5rem;
}

.quote-step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2d5a87, #2d3c4e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.quote-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.quote-step p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Quote Page FAQ spacing */
.quote-page .contact-faq-section {
  margin-bottom: 3rem;
}

/* Quote Page CTA Section (matches services page) */
.quote-cta-section {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #111827 70%, #0f172a 100%);
  border-radius: 1rem;
  padding: 3rem 1rem 2.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  margin-bottom: 3rem;
}

.quote-cta-section .cta-hexagons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.quote-cta-section .cta-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.quote-cta-section .cta-accent {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #2563eb, #3b82f6, #2563eb, transparent);
  border-radius: 0 0 2px 2px;
  z-index: 1;
}

.quote-cta-section h2,
.quote-cta-section p,
.quote-cta-section .service-cta-buttons-large {
  position: relative;
  z-index: 1;
}

.quote-cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: -0.01em;
}

.quote-cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Quote Page Responsive */
@media (max-width: 1024px) {
  .quote-main-grid {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .quote-response-badge {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .quote-page-header {
    padding-top: 7.5rem;
    padding-bottom: 1rem;
  }

  .quote-page-header h1 {
    font-size: 1.75rem;
  }

  .quote-page-header p {
    font-size: 1rem;
  }

  .quote-sidebar {
    grid-template-columns: 1fr;
  }

  .quote-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }

  .quote-cta-section {
    padding: 2rem 1rem 1.5rem;
  }

  .quote-cta-section h2 {
    font-size: 1.5rem;
  }

  .quote-cta-section p {
    font-size: 1rem;
  }

  .quote-cta-section .cta-accent {
    left: 5%;
    right: 5%;
  }
}

@media (max-width: 480px) {
  .quote-page-header {
    padding-top: 6.5rem;
  }

  .quote-page-header h1 {
    font-size: 1.5rem;
  }

  .quote-page-header p {
    font-size: 0.9rem;
  }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .support-form {
    animation: none;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}