body {
  margin: 0;
  padding: 0;
}
* {
  font-family: sans-serif, system-ui;
}

/* Hero Section */
/* ===== Emergency Hero Section ===== */

.emergency-hero {
  position: relative;
  padding: 100px 20px;
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.8), rgba(127, 29, 29, 0.8)),
    url("../images/hero-emergency.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
}

.emergency-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.emergency-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Badge */
.emergency-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 30px;
}

.emergency-hero-badge svg {
  width: 20px;
  height: 20px;
}

/* Title */
.emergency-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.emergency-hero-subtitle {
  font-size: 22px;
  color: #fee2e2;
  margin-bottom: 40px;
}

/* Buttons */
.emergency-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #b91c1c;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #f3f4f6;
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Features Grid */
.emergency-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 30px 20px;
  border-radius: 16px;
}

.feature-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-subtitle {
  color: #fecaca;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .emergency-hero-title {
    font-size: 36px;
  }

  .emergency-hero-subtitle {
    font-size: 18px;
  }

  .emergency-hero-features {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
/* ===== Testimonials Section ===== */

.testimonials-section {
  padding: 80px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.testimonials-section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.testimonials-section-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.testimonials-section-stars svg {
  width: 24px;
  height: 24px;
  fill: #facc15;
  stroke: #facc15;
}

.testimonials-section-subtitle {
  color: #6b7280;
  font-size: 16px;
}

/* Grid */
.testimonials-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.testimonial-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  background: #ffffff;
}

.testimonial-stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-name {
  font-weight: 600;
  color: #111827;
}

.testimonial-location {
  font-size: 14px;
  color: #6b7280;
}

/* CTA */
.testimonials-section-cta {
  text-align: center;
  margin-top: 60px;
}

.testimonials-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dc2626;
  color: #ffffff;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.testimonials-cta-button:hover {
  background: #b91c1c;
}

.testimonials-cta-button svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-section-grid {
    grid-template-columns: 1fr;
  }
}

/* Emergency */
/* ===== Emergency Section ===== */

.emergency-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #dc2626, #b91c1c);
  color: #ffffff;
}

.emergency-container {
  max-width: 1200px;
  margin: 0 auto;
}

.emergency-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.emergency-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.emergency-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.emergency-text {
  font-size: 20px;
  color: #fee2e2;
  margin-bottom: 30px;
}

/* Button */
.emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #dc2626;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.emergency-btn:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.emergency-btn-icon {
  width: 20px;
  height: 20px;
}

/* Emergency Services */
/* ===== Emergency Services Section ===== */

.emergency-services-section {
  padding: 80px 20px;
  background: #ffffff;
}

.emergency-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.emergency-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.emergency-services-title {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.emergency-services-subtitle {
  font-size: 20px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid */
.emergency-services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .emergency-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .emergency-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.emergency-service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  transition: box-shadow 0.3s ease;
}

.emergency-service-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.emergency-service-icon-box {
  background: #fee2e2;
  padding: 12px;
  border-radius: 10px;
  display: inline-flex;
  margin-bottom: 20px;
}

.emergency-service-icon {
  width: 32px;
  height: 32px;
  color: #dc2626;
}

.emergency-service-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.emergency-service-text {
  color: #6b7280;
  line-height: 1.6;
}

/* CTA */
.emergency-services-cta {
  text-align: center;
  margin-top: 60px;
}

.emergency-services-btn {
  background: #dc2626;
  color: #ffffff;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.emergency-services-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* Why CAll */
/* ===== Why Call Section ===== */
.why-call-section {
  padding: 80px 20px;
  background-color: #f9fafb; /* light gray */
}

.why-call-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-call-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Heading */
.why-call-header {
  text-align: center;
  margin-bottom: 40px;
}

.why-call-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.why-call-subtitle {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.6;
}

/* Grid */
.why-call-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .why-call-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Feature Item */
.why-call-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-call-icon {
  width: 24px;
  height: 24px;
  color: #dc2626; /* red */
  flex-shrink: 0;
}

.why-call-text {
  color: #374151;
  font-size: 16px;
}

/* CTA */
.why-call-cta {
  text-align: center;
}

.why-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #dc2626;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.why-call-btn:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
}

.why-call-btn-icon {
  width: 20px;
  height: 20px;
}

/* Plumbing Emergency  */
/* ===== Plumbing Emergencies Section ===== */
.plumbing-emergencies-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.plumbing-emergencies-container {
  max-width: 1200px;
  margin: 0 auto;
}

.plumbing-emergencies-header {
  margin-bottom: 48px;
}

.plumbing-emergencies-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  text-align: center;
}

.plumbing-emergencies-subtitle {
  font-size: 18px;
  color: #4b5563;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.plumbing-emergencies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .plumbing-emergencies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Emergency Card */
.plumbing-emergency-card {
  position: relative;
  height: 384px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.5s ease,
    box-shadow 0.3s ease;
}

.plumbing-emergency-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.plumbing-emergency-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.plumbing-emergency-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(127, 29, 29, 0.9),
    rgba(127, 29, 29, 0.5) 50%,
    transparent
  );
}

.plumbing-emergency-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
}

.plumbing-emergency-label {
  display: inline-block;
  background-color: #dc2626;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

.plumbing-emergency-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plumbing-emergency-description {
  font-size: 14px;
  color: #fee2e2;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.plumbing-emergency-card:hover .plumbing-emergency-description {
  max-height: 160px;
  opacity: 1;
}

.plumbing-emergency-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.plumbing-emergency-meta-icon {
  width: 16px;
  height: 16px;
}

/* CTA */
.plumbing-emergencies-cta {
  text-align: center;
  margin-top: 48px;
}

.plumbing-emergencies-cta-text {
  font-size: 16px;
  color: #374151;
  margin-bottom: 16px;
}

.plumbing-emergencies-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #dc2626;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.plumbing-emergencies-btn:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
}

.plumbing-emergencies-btn-icon {
  width: 20px;
  height: 20px;
}

/* Emergency Coverage */

/* ===== Emergency Coverage Section ===== */
.emergency-coverage-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.emergency-coverage-container {
  max-width: 1200px;
  margin: 0 auto;
}

.emergency-coverage-header {
  margin-bottom: 48px;
}

.emergency-coverage-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.emergency-coverage-subtitle {
  font-size: 18px;
  color: #4b5563;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.emergency-coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .emergency-coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.emergency-coverage-card {
  background-color: #f9fafb;
  color: #1f2937;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.emergency-coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.emergency-coverage-card-content {
  padding: 24px;
}

.emergency-coverage-icon {
  width: 40px;
  height: 40px;
  color: #dc2626;
  margin-bottom: 16px;
}

.emergency-coverage-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.emergency-coverage-card-text {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 12px;
}

.emergency-coverage-card-list {
  font-size: 12px;
  color: #374151;
  list-style: none;
  padding-left: 0;
}
.emergency-coverage-card-list li {
  margin: 10px;
}

.emergency-coverage-card-list li::before {
  content: "• ";
  color: #dc2626;
}

/* CTA */
.emergency-coverage-cta {
  margin-top: 32px;
  text-align: center;
}

.emergency-coverage-btn {
  background-color: #dc2626;
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.emergency-coverage-btn:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
}
/* Expect Call us */
.expect-call-section {
  padding: 5rem 1rem;
  background-color: #f9fafb; /* light gray */
}

.expect-call-container {
  max-width: 900px;
  margin: 0 auto;
}

.expect-call-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 3rem;
}

.expect-call-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expect-call-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
}

.expect-call-card-content {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
}

.expect-call-card-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: #dc2626; /* red-600 */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.expect-call-card-text h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.expect-call-card-text p {
  color: #4b5563; /* gray-600 */
  line-height: 1.6;
}

.expect-call-button-wrapper {
  text-align: center; /* center button */
  margin-top: 3rem;
}

.expect-call-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #dc2626; /* red-600 */
  color: #ffffff;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.expect-call-button:hover {
  background-color: #b91c1c; /* red-700 */
}

.expect-call-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Contact Section */

.contact-section {
  padding: 5rem 1rem;
  background-color: #ffffff;
  font-family: sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.contact-header p {
  font-size: 1.125rem;
  color: #4b5563;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Info Cards */
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #111827;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: #fee2e2; /* red-100 */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #dc2626;
}

.contact-info-text h4 {
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.25rem;
}

.contact-info-text a {
  font-size: 1.125rem;
  font-weight: bold;
  color: #dc2626;
  text-decoration: none;
}

.contact-info-text a:hover {
  color: #b91c1c;
}

.contact-info-text p {
  margin-top: 0.25rem;
  color: #4b5563;
}

.contact-emergency {
  color: #dc2626;
  font-weight: bold;
}

.contact-free-estimate {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #fef2f2; /* red-50 */
  border-radius: 1rem;
}

/* Contact Form */
.contact-form-wrapper h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #111827;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #374151;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  outline: none;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.4);
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-submit-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-submit-btn:hover {
  background-color: #b91c1c;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 0.5rem;
}
/* FAQ */
.faq-section {
  padding: 5rem 1rem;
  background-color: #f3f4f6; /* gray-100 */
  font-family: sans-serif;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.faq-header p {
  font-size: 1.125rem;
  color: #4b5563;
}

/* FAQ Items */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #ffffff;
  border-left: 4px solid #dc2626; /* red-600 */
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #fee2e2; /* red-50 */
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #dc2626; /* red-600 */
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin: 0;
}

/* FAQ answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-answer.open {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

/* CTA Button */
.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-button:hover {
  background-color: #b91c1c;
}

/* CTA Section */
/* CTA Section */
.cta-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c); /* red gradient */
  color: #fff;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.5rem;
  color: #fee2e2; /* lighter red */
  margin-bottom: 2rem;
}

.cta-link {
  text-decoration: none;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #fff;
  color: #b91c1c;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.75rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #f3f4f6; /* light gray hover */
}

.cta-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
}
