:root {
  --primary: #f16722;
  --primary-dark: #c1121f;
  --secondary: #1a1a1a;
  --light: #ffffff;
  --dark: #000000;
  --gray: #f5f5f5;
  --gray-medium: #e0e0e0;
  --gray-dark: #666666;
  --text: #333333;
  --text-light: #777777;

  --shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease-in-out;
  --border-radius: 12px;
  --border-radius-small: 6px;
}

/* Service CTA Background */
.service-cta {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)),
    url("/assets/img/cta-bg.jpg") no-repeat center center/cover;
}

/* FAQ CTA Background */
.faq-cta {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)),
    url("/assets/img/hero-bg.jpg") no-repeat center center/cover;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header - White as requested */
header {
  background-color: var(--light) !important;
  color: var(--text);
  padding: 0.4rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Styles */
.brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 80px;
  width: 210px;
  transition: var(--transition);
}

/* Navigation - Updated for white background */
nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav ul li a {
  font-weight: 600;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
  font-size: 1rem;
  color: var(--text);
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary) !important;
}

nav ul li a.active::after {
  width: 100% !important;
  background: var(--primary) !important;
}

/* Mobile Menu Button - Updated for white theme */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
  padding: 0.5rem;
}

.mobile-menu-btn:hover {
  color: var(--primary-dark);
}

/* Mobile Navigation  */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    width: 100%;
    margin-bottom: 8rem;
  }

  nav ul li a {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--gray-medium);
  }

  nav ul li a:hover {
    color: var(--primary);
    padding-left: 1.5rem;
  }

  nav ul li a::after {
    display: none;
  }

  /* Overlay when menu is open */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-logo {
  width: 200px;
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease forwards;
}

.preloader-logo img {
  width: 100%;
  height: auto;
}

.preloader-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner-circle {
  width: 15px;
  height: 15px;
  background-color: var(--primary);
  border-radius: 50%;
  margin: 0 8px;
  animation: bounce 1.2s infinite ease-in-out;
}

.spinner-circle:nth-child(1) {
  animation-delay: 0s;
}

.spinner-circle:nth-child(2) {
  animation-delay: 0.2s;
}

.spinner-circle:nth-child(3) {
  animation-delay: 0.4s;
}

.spinner-circle:nth-child(4) {
  animation-delay: 0.6s;
}

/* Preloader Animations */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide preloader when loaded */
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
  border: 2px solid var(--primary);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(230, 57, 70, 0.4);
  border-color: rgba(230, 57, 70, 0.3);
}

.btn:active {
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-small {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)),
    url("/assets/img/hero-bg.jpg") no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
  margin-top: 100px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Section Styling */
section {
  padding: 6rem 0;
  position: relative;
  background-color: var(--light);
  color: var(--text);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-pre-title {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--secondary);
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  margin-top: 1rem;
}

/* About Section */
.about-content {
  display: flex;
  /* align-items: center; */
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.3;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text);
  font-size: 1.1rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.feature-item {
  background: var(--gray);
  padding: 1.5rem;
  border-radius: var(--border-radius-small);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.feature-item p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-light);
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 16/9;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-small);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
}

.experience-badge span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

/* Services Section */
.services {
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/dark-geometric.png");
  opacity: 0.03;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(230, 57, 70, 0.1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(230, 57, 70, 0.3);
}

.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  font-weight: 700;
}

.service-content p {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
}

.service-features i {
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.service-cta {
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-top: 4rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(230, 57, 70, 0.1);
  color: white;
}

.service-cta .cta-content {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.service-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Contact Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(230, 57, 70, 0.1);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(230, 57, 70, 0.3);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.contact-card p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(230, 57, 70, 0.1);
}

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

/* Reviews Section */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.review-card {
  background: var(--light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(230, 57, 70, 0.1);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(230, 57, 70, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.review-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  border: 3px solid rgba(230, 57, 70, 0.2);
  flex-shrink: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-info {
  flex: 1;
}

.review-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.review-stars {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.review-text {
  color: var(--text);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Reviews CTA Button */
.reviews-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.google-review-btn {
  background: #4285f4 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.8rem !important;
  font-weight: 600;
  transition: all 0.3s ease;
  border-color: #4285f4 !important;
}

.google-review-btn:hover {
  background: #3367d6 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(51, 103, 214, 0.4) !important;
  border-color: #3367d6 !important;
}

.google-review-btn i {
  font-size: 1.3rem;
}

/* FAQs Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(230, 57, 70, 0.1);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(230, 57, 70, 0.3);
}

.faq-question {
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
  transition: var(--transition);
  font-size: 1.2rem;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: var(--transition);
  color: var(--primary);
  font-size: 1rem;
}

.faq-answer {
  padding: 0 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text);
  line-height: 1.8;
}

.faq-answer ul {
  margin: 1rem 0 1rem 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.faq-answer li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.faq-answer strong {
  color: var(--secondary);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 2rem;
}

.faq-cta {
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-top: 4rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(230, 57, 70, 0.1);
  color: white;
}

.faq-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Footer - White as requested */
footer {
  background-color: var(--light);
  color: var(--text);
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--gray-medium);
  position: relative;
}

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

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
  color: var(--secondary);
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.footer-column p {
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--text);
  transition: var(--transition);
  display: block;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
  opacity: 1;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 1.5rem;
}

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

.footer-cta {
  margin-top: 2rem;
  width: 100%;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--gray);
  border-radius: 50%;
  transition: var(--transition);
  color: var(--text);
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-medium);
  color: var(--text);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary);
}

.footer-bottom a:hover {
  color: var(--primary-dark);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4);
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.6);
  background: var(--primary-dark);
}

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

.animate {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

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

  .hero-content {
    margin-top: 150px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }

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

  .hero-content {
    margin-top: 120px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 200px;
  }

  .trust-indicators {
    gap: 1rem;
  }

  .trust-item {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .services-grid,
  .reviews-container {
    grid-template-columns: 1fr;
  }

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

  .reviews-cta {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    height: 60px;
    width: 150px;
  }

  .footer-column .logo {
    height: 60px;
    width: 150px;
  }
}

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

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 3rem;
  }

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

  .hero-content {
    margin-top: 150px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

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

  .about-text h3 {
    font-size: 1.8rem;
  }

  .contact-card {
    padding: 1.8rem;
  }

  .faq-question {
    padding: 1.3rem;
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 1rem 2rem;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }
}
