/* High-Conversion Water Testing Website Styles */

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

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Emergency Banner */
.emergency-banner {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.emergency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.emergency-icon {
  font-size: 24px;
  animation: pulse 2s infinite;
}

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

.emergency-text {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.emergency-cta {
  background: white;
  color: #dc3545;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.emergency-cta:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 57px; /* Height of emergency banner */
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo {
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-section h1 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: #f8f9fa;
  color: #495057;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.header-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.phone-cta {
  background: #28a745;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.phone-cta:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.schedule-cta {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  animation: gentle-pulse 3s infinite;
}

@keyframes gentle-pulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.5);
  }
}

.schedule-cta:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  animation: slideInLeft 1s ease-out;
}

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

.urgency-banner {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.pulse {
  animation: urgent-pulse 1.5s infinite;
}

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

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.hero-content h1 .highlight {
  color: #dc3545;
  position: relative;
}

.hero-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #007bff;
  display: block;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}

.pain-points {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pain-point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff3cd;
  color: #856404;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #ffeaa7;
}

.pain-point .icon {
  font-size: 18px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 18px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #20c997, #17a2b8);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.cta-button.secondary {
  background: white;
  color: #007bff;
  border: 2px solid #007bff;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.2);
}

.cta-button.secondary:hover {
  background: #007bff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.cta-button .subtext {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.9;
}

.guarantees {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.guarantee {
  background: #d4edda;
  color: #155724;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.floating-element.element-1 {
  top: 10%;
  right: -20px;
  background: #dc3545;
  color: white;
  animation-delay: 0s;
}

.floating-element.element-2 {
  top: 40%;
  left: -30px;
  background: #ffc107;
  color: #212529;
  animation-delay: 1s;
}

.floating-element.element-3 {
  bottom: 20%;
  right: -25px;
  background: #6f42c1;
  color: white;
  animation-delay: 2s;
}

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

/* Social Proof Section */
#social-proof {
  background: #f8f9fa;
  padding: 80px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.testimonials-header p {
  font-size: 18px;
  color: #6c757d;
  font-weight: 500;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card.featured {
  border: 2px solid #007bff;
  position: relative;
}

.testimonial-card.featured::before {
  content: '⭐ FEATURED';
  position: absolute;
  top: -12px;
  left: 20px;
  background: #007bff;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author div {
  flex: 1;
}

.testimonial-author strong {
  display: block;
  color: #1a1a1a;
  font-weight: 600;
}

.testimonial-author span {
  color: #6c757d;
  font-size: 14px;
}

.testimonial-results {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.result {
  display: inline-block;
  background: #d1ecf1;
  color: #0c5460;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 4px;
}

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

.stat-item {
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #007bff;
  display: block;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 16px;
  color: #6c757d;
  font-weight: 600;
}

/* Problems Section */
#problems {
  padding: 80px 0;
  background: white;
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #6c757d;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.problem-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc3545, #ffc107);
}

.problem-card.danger::before {
  background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.problem-card.critical::before {
  background: linear-gradient(90deg, #dc3545, #6f42c1);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.problem-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.problem-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.problem-stats {
  margin-top: 20px;
}

.problem-stats .stat {
  background: #f8f9fa;
  color: #495057;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.cta-banner {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.cta-banner h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-banner .cta-button {
  margin: 0 auto;
}

/* Solutions Section */
#solutions {
  background: #f8f9fa;
  padding: 80px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.solution-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
}

.solution-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.solution-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.solution-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-features span {
  background: #d4edda;
  color: #155724;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-preview {
  max-width: 500px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pricing-header {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 30px;
  text-align: center;
}

.pricing-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 5px;
}

.price .amount {
  font-size: 56px;
}

.price .period {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.9;
}

.pricing-features {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features span {
  background: #f8f9fa;
  color: #495057;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

/* Urgency Section */
#urgency {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#urgency::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  opacity: 0.1;
}

.urgency-container {
  position: relative;
  z-index: 1;
}

.urgency-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.urgency-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.urgency-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.urgency-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.urgency-benefits .benefit {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgency-benefits .benefit .icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.urgency-benefits .benefit span {
  display: block;
  font-weight: 600;
}

.countdown {
  margin-bottom: 40px;
}

.countdown-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.time-unit {
  background: white;
  color: #dc3545;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.time-unit .number {
  font-size: 32px;
  font-weight: 800;
  display: block;
}

.time-unit .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.urgency-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button.urgent {
  background: white;
  color: #dc3545;
  animation: urgent-glow 2s infinite;
}

@keyframes urgent-glow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.6);
  }
}

.urgency-visual {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.offer-stamp {
  background: white;
  color: #dc3545;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
  font-weight: 800;
  font-size: 18px;
}

.offer-stamp span {
  display: block;
  line-height: 1.2;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.faq-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.faq-item p {
  color: #6c757d;
  line-height: 1.6;
}

/* Final CTA Section */
#final-cta {
  background: linear-gradient(135deg, #1a1a1a, #2d3436);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.final-cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.final-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-button.massive {
  font-size: 20px;
  padding: 20px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-subtext {
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  opacity: 0.8;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.contact-option .icon {
  font-size: 24px;
}

.contact-option div {
  text-align: left;
}

.contact-option strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
}

.contact-option span {
  font-size: 14px;
  opacity: 0.8;
}

.final-guarantees {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.final-guarantees .guarantee {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #adb5bd;
  padding: 60px 0 30px;
}

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

.footer-section h3 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.certifications {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.cert {
  background: #495057;
  color: #adb5bd;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #007bff;
}

.footer-bottom {
  border-top: 1px solid #495057;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  color: #adb5bd;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #007bff;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-button {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
  animation: float-button 3s ease-in-out infinite;
}

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

.floating-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.floating-button.secondary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.floating-button.secondary:hover {
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .emergency-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .emergency-text {
    font-size: 12px;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .trust-badges {
    justify-content: center;
  }

  .header-cta {
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-stats {
    justify-content: center;
  }

  .pain-points {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .problems-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .urgency-benefits {
    grid-template-columns: 1fr;
  }

  .countdown-timer {
    gap: 15px;
  }

  .time-unit {
    min-width: 60px;
    padding: 10px 15px;
  }

  .time-unit .number {
    font-size: 24px;
  }

  .final-ctas {
    flex-direction: column;
    align-items: center;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .floating-cta {
    bottom: 10px;
    right: 10px;
  }

  .floating-button {
    padding: 12px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .urgency-content h2 {
    font-size: 28px;
  }

  .final-cta-content h2 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .time-unit {
    min-width: 50px;
    padding: 8px 12px;
  }

  .time-unit .number {
    font-size: 20px;
  }

  .time-unit .label {
    font-size: 10px;
  }
}

/* How It Works Video Section */
#how-it-works {
  padding: 80px 0;
  background: #ffffff;
}

.video-header {
  text-align: center;
  margin-bottom: 60px;
}

.video-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.video-header .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.video-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.video-content {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.video-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.video-benefits li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 16px;
  color: #495057;
}

.video-benefits li:last-child {
  border-bottom: none;
}

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

.video-note {
  font-size: 14px;
  color: #6c757d;
  margin-top: 16px;
  font-style: italic;
}

@media (max-width: 968px) {
  .video-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-content {
    padding: 30px;
    order: -1; /* Show content above video on mobile */
  }

  .video-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  #how-it-works {
    padding: 60px 0;
  }

  .video-header {
    margin-bottom: 40px;
  }

  .video-header h2 {
    font-size: 28px;
  }

  .video-content {
    padding: 24px;
  }

  .video-content h3 {
    font-size: 20px;
  }
}

/* Installation Gallery Section */
#gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.gallery-header p {
  font-size: 18px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-carousel {
  position: relative;
  margin-bottom: 40px;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control.prev {
  left: 14px;
}
.carousel-control.next {
  right: 14px;
}

.carousel-control:hover {
  background: rgba(0, 0, 0, 0.75);
}

.carousel-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
  color: white;
  text-align: left;
}

.carousel-overlay h4 {
  margin: 0 0 6px;
  font-size: 22px;
}

.carousel-overlay p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .carousel-control {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  min-height: 320px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.gallery-cta {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.gallery-cta p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 30px;
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
  .gallery-header h2 {
    font-size: 28px;
  }

  .gallery-header p {
    font-size: 16px;
  }

  .gallery-slide img,
  .gallery-item img,
  .carousel-slide img {
    max-height: 70vh;
  }

  .carousel-control {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }

  .gallery-overlay {
    padding: 20px 15px 15px;
  }

  .gallery-overlay h4 {
    font-size: 18px;
  }

  .gallery-cta {
    padding: 30px 20px;
  }

  .gallery-cta h3 {
    font-size: 24px;
  }
}
