:root {
  --primary: #b93341;
  --primary-dark: #992934;
  --primary-light: #c95361;
  --secondary: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: #ffffff !important;
}

.header {
  background: #ffffff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 70px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hero {
  background: #ffffff !important;
  padding: 0;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 65fr 35fr;
  min-height: 480px;
  align-items: center;
  background: #ffffff !important;
}

.hero-content {
  padding: 2.5rem 4rem;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff !important;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--primary);
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 540px;
}

.hero-image {
  height: 480px;
  overflow: hidden;
  position: relative;
}

.hero-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-carousel-slide.active {
  opacity: 1;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: white;
  transform: scale(1.2);
}

.cta-buttons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero .cta-buttons {
  justify-content: flex-start;
}

.btn {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(185, 51, 65, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 51, 65, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(44, 62, 80, 0.2);
}

.section {
  padding: 4rem 2rem;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--secondary);
}

.usps {
  background: var(--bg-light);
  padding-top: 3rem;
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.usp-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.usp-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.usp-card h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.hours-strip {
  background: var(--primary);
  color: var(--white);
  padding: 2rem;
  text-align: center;
  border-radius: 15px;
}

.hours-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hours-content h3 {
  margin-bottom: 0.5rem;
}

.contact-block {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--primary);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.blog-content {
  padding: 1.5rem;
}

.blog-card h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

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

.footer h4 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

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

.team-member {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
}

.team-photo {
  width: 100%;
  max-width: 300px;
  height: 320px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 1.5rem;
  border: 3px solid #e0e0e0;
  display: block;
}

.team-member h3 {
  color: var(--secondary);
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-credentials {
  color: var(--text-light);
  font-style: italic;
  font-size: 0.95rem;
}

.price-table {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--bg-light);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:nth-child(even) {
  background: var(--bg-light);
}

.price-service {
  font-weight: 600;
  color: var(--secondary);
}

.price-amount {
  color: var(--primary);
  font-weight: 700;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.faq-question {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--text-light);
}

.service-hero {
  background: linear-gradient(135deg, #b93341 0%, #992934 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
}

.service-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

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

.content-section p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-section h2 {
  color: var(--primary);
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.content-section h3 {
  color: var(--secondary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.content-section ul,
.content-section ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.blog-featured-image {
  width: 100%;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  margin: 2.5rem 0;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-date {
  color: var(--text-light);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.alert-box {
  background: white;
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 5px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.emergency-box {
  background: white;
  border-left: 4px solid #dc3545;
  padding: 1.5rem;
  border-radius: 5px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-strip {
  background: var(--primary);
  color: var(--white);
  padding: 2rem;
  text-align: center;
  border-radius: 15px;
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-image: url('../img/reviews-bg.jpg?v=20251110k');
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  overflow: hidden;
}

.reviews-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.reviews-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  min-height: 300px;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.98);
  padding: 3rem 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

.review-card.active {
  opacity: 1;
  pointer-events: auto;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.review-stars .star {
  color: #fbbf24;
  font-size: 1.8rem;
}

.review-text {
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

@media (max-width: 768px) {
  .reviews-section {
    min-height: 400px;
    padding: 3rem 1.5rem;
  }

  .review-card {
    padding: 2rem 1.5rem;
  }

  .review-text {
    font-size: 1.1rem;
  }

  .review-stars .star {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .logo {
    height: 80px;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-image {
    height: 280px;
    order: 1;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

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

  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .service-hero {
    padding: 3rem 1.5rem;
  }

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

  .service-hero p {
    font-size: 1.1rem;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .price-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-photo {
    height: 280px;
  }

  .hours-strip {
    padding: 2rem 1.5rem;
  }

  .hours-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

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

  .footer-links {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .content-section p {
    font-size: 1.1rem;
  }

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

  .service-card h3 {
    font-size: 1.2rem;
  }
}
