/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color scheme matching the business card */
  --primary-green: #7fbf3f;
  --bright-green: #9acd32;
  --primary-blue: #1b365d;
  --bright-blue: #2e86ab;
  --accent-blue: #4a90e2;
  --dark-bg: #2c3e50;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #495057;
  --text-dark: #212529;

  /* Typography */
  --font-family: "Inter", sans-serif;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 800;

  /* Spacing */
  --header-height: 80px;
  --container-max-width: 1200px;
  --section-padding: 5rem 0;

  /* Border radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-weight-black);
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.nav__logo-icon {
  color: var(--primary-green);
  font-size: 1.8rem;
}

.nav__logo-text .highlight {
  color: var(--primary-green);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: var(--font-weight-semibold);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary-green);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.emergency-link {
  background: var(--primary-green);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.emergency-link:hover {
  background: var(--bright-green);
  transform: translateY(-1px);
}

.emergency-link::after {
  display: none;
}

.nav__toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  padding: calc(var(--header-height) + 2rem) 0 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, #e8f5e8 100%);
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
}

.hero__content {
  z-index: 2;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-black);
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero__title .highlight {
  color: var(--primary-green);
  position: relative;
}

.hero__description {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__features {
  display: flex;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
}

.feature-item i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.hero__img:hover {
  transform: rotate(0deg) scale(1.05);
}

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 106px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E")
    no-repeat center center;
  background-size: cover;
  transform: rotate(180deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--bright-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
}

/* Sections */
.services {
  padding: var(--section-padding);
  background: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.2rem;
  color: var(--dark-gray);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border: 2px solid var(--primary-green);
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card__icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-card__description {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card__features {
  list-style: none;
}

.service-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.service-card__features li::before {
  content: "✓";
  color: var(--primary-green);
  font-weight: var(--font-weight-bold);
}

.emergency-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: var(--font-weight-bold);
  font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose {
  padding: var(--section-padding);
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--bright-blue) 100%
  );
  color: var(--white);
}

.why-choose .section__title,
.why-choose .section__subtitle {
  color: var(--white);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-choose__item {
  text-align: center;
  padding: 2rem 1rem;
}

.why-choose__icon {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-choose__icon i {
  color: var(--white);
  font-size: 2rem;
}

.why-choose__item h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.why-choose__item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
  padding: var(--section-padding);
  background: var(--light-gray);
  text-align: center;
}

.contact-cta__content h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contact-cta__content p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.contact-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-weight-black);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer__logo .highlight {
  color: var(--primary-green);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer__section h4 {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.footer__section ul {
  list-style: none;
}

.footer__section li {
  margin-bottom: 0.5rem;
}

.footer__section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__section a:hover {
  color: var(--primary-green);
}

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer__contact i {
  color: var(--primary-green);
  width: 16px;
}

.emergency-text {
  color: var(--primary-green) !important;
  font-weight: var(--font-weight-semibold);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--white);
    flex-direction: column;
    justify-content: start;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-md);
  }

  .nav__menu.show {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }

  .emergency-link {
    justify-content: center;
    width: 100%;
    padding: 1rem;
  }

  .nav__toggle {
    display: block;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__features {
    flex-direction: column;
    gap: 1rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  .contact-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .contact-cta__content h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-large {
    padding: 1rem 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Water drop animation for hero section */
.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 20px;
  height: 20px;
  background: var(--accent-blue);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 15%;
  width: 15px;
  height: 15px;
  background: var(--primary-green);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Hover effects for interactive elements */
.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.why-choose__item:hover .why-choose__icon {
  transform: scale(1.1);
}

/* Focus styles for accessibility */
.btn:focus,
.nav__link:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* About Page Specific Styles */
.about-hero {
  padding: calc(var(--header-height) + 2rem) 0 4rem;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--bright-blue) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-hero__container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-hero__title {
  font-size: 3rem;
  font-weight: var(--font-weight-black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero__title .highlight {
  color: var(--primary-green);
}

.about-hero__description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.about-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 106px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E")
    no-repeat center center;
  background-size: cover;
  transform: rotate(180deg);
}

.owner-story {
  padding: var(--section-padding);
  background: var(--white);
}

.owner-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.5rem;
}

.owner-story__title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.owner-story__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.owner-story__contact {
  margin-top: 2rem;
}

.owner-story__image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--light-gray) 0%, #e8f5e8 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--primary-green);
  text-align: center;
}

.image-placeholder i {
  font-size: 6rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.image-placeholder span {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.image-placeholder p {
  color: var(--dark-gray);
  font-size: 1rem;
}

.company-values {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card__icon {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-card__icon i {
  color: var(--white);
  font-size: 2rem;
}

.value-card__title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.value-card__description {
  color: var(--dark-gray);
  line-height: 1.6;
}

.experience {
  padding: var(--section-padding);
  background: var(--white);
}

.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.experience__title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.experience__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.experience__stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--primary-green);
}

.stat-label {
  color: var(--dark-gray);
  font-weight: var(--font-weight-semibold);
}

.experience__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.credential-card {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  text-align: center;
}

.credential-card i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.credential-card h3 {
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.credential-card p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.4;
}

.service-area {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.service-area__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-area__map {
  display: flex;
  justify-content: center;
}

.map-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--bright-blue) 100%
  );
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.map-placeholder h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}

.service-area__info h3 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.service-area__benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.service-area__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.service-area__benefits i {
  color: var(--primary-green);
  font-weight: var(--font-weight-bold);
}

.service-area__contact p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.testimonials {
  padding: var(--section-padding);
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  position: relative;
}

.testimonial__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial__stars i {
  color: #ffd700;
}

.testimonial__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__author strong {
  color: var(--primary-blue);
  font-weight: var(--font-weight-bold);
}

.testimonial__author span {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

/* Contact Page Specific Styles */
.contact-hero {
  padding: calc(var(--header-height) + 2rem) 0 4rem;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--bright-green) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-hero__container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-hero__title {
  font-size: 3rem;
  font-weight: var(--font-weight-black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-hero__title .highlight {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero__description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  opacity: 0.95;
}

.contact-hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.or-text {
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
}

.contact-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 106px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E")
    no-repeat center center;
  background-size: cover;
  transform: rotate(180deg);
}

.contact-info {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-card.emergency {
  background: linear-gradient(135deg, #fff3cd 0%, #fcf8e3 100%);
  border: 2px solid #ff6b35;
}

.contact-card__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-card__icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.contact-card.emergency .contact-card__icon {
  background: #ff6b35;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.contact-card__title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contact-card__description {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-card__link {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  text-wrap-mode: wrap;
  text-wrap-style: pretty;
}

.contact-card__link:hover {
  color: var(--bright-green);
}

.contact-card__note {
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-style: italic;
}

.contact-form-section {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form__title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.contact-form__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.quote-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.benefit-item i {
  color: var(--primary-green);
  font-weight: var(--font-weight-bold);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.service-areas {
  padding: var(--section-padding);
  background: var(--white);
}

.service-areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.area-card {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  text-align: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.area-card:hover {
  transform: translateY(-3px);
  background: var(--primary-green);
  color: var(--white);
}

.area-card i {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.area-card:hover i {
  color: var(--white);
}

.area-card h3 {
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

.area-card:hover h3 {
  color: var(--white);
}

.service-areas__note {
  text-align: center;
  font-size: 1.1rem;
}

.service-areas__note a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
}

.service-areas__note a:hover {
  text-decoration: underline;
}

.faq {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.faq__grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  padding: 1.25rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-blue);
  transition: background 0.3s ease;
}

.faq__question:hover {
  background: var(--light-gray);
}

.faq__icon {
  color: var(--primary-green);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin: 0;
}

.emergency-cta {
  padding: 3rem 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: var(--white);
  text-align: center;
}

.emergency-cta__content {
  position: relative;
}

.emergency-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.emergency-cta h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  margin-bottom: 1rem;
}

.emergency-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.emergency-btn {
  background: var(--white);
  color: #ff6b35;
  animation: pulse 2s infinite;
}

.emergency-btn:hover {
  background: var(--light-gray);
  color: #ff6b35;
}

/* Responsive adjustments for new pages */
@media screen and (max-width: 768px) {
  .about-hero__title,
  .contact-hero__title {
    font-size: 2rem;
  }

  .owner-story__grid,
  .experience__grid,
  .service-area__content,
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .experience__stats {
    justify-content: center;
  }

  .experience__credentials {
    grid-template-columns: 1fr;
  }

  .contact-hero__cta {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info__grid {
    grid-template-columns: 1fr;
  }

  .quote-benefits {
    grid-template-columns: 1fr;
  }

  .service-areas__grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .emergency-cta h2 {
    font-size: 2rem;
  }
}

/* Print styles */
@media print {
  .header,
  .nav__toggle,
  .hero__cta,
  .contact-cta,
  .emergency-cta,
  .footer {
    display: none;
  }

  .hero,
  .about-hero,
  .contact-hero {
    padding: 1rem 0;
  }

  * {
    color: black !important;
    background: white !important;
  }
}
