:root {
  --primary: #e63946;
  --primary-dark: #a61e4d;
  --light: #ffffff;
  --dark: #000000;
  --gray: #ffffff;
  --gray-medium: #f0f0f0;
  --gray-dark: #333333;
  --text: #000000;
  --text-light: #333333;
  --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;
}

* {
  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 {
  background-color: var(--light);
  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.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--text);
}

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

.brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 90px;
  transition: var(--transition);
}

.footer-logo {
  height: 150px;
  transition: var(--transition);
}

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);
}

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

.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);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  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);
}

.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;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.hero {
  height: 100vh;
  min-height: 700px;
  background-color: var(--light);
  color: var(--text);
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 150px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
  padding-right: 0rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 120%;
  height: auto;
}

.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(--dark);
}

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

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

span {
  color: var(--primary);
}

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(--dark);
  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;
}

.services {
  background: var(--light);
  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-tabs {
  margin-top: 3rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-lg-8 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-md-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 50%;
  max-width: 50%;
}

.service-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-tab-btn {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background: var(--light);
  border: 2px solid var(--gray-medium);
  border-radius: var(--border-radius);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  gap: 1rem;
}

.service-tab-btn:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.service-tab-btn i {
  color: var(--primary);
  transition: var(--transition);
  min-width: 30px;
  text-align: center;
}

.service-tab-btn.active i {
  color: white;
}

.service-tab-btn h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.service-tab-btn.active h4 {
  color: white;
}

.service-tabs-content {
  background: var(--light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-medium);
  min-height: 450px;
}

.service-tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.service-tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-tab-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.service-tab-image img {
  width: 100%;
  height: 350px;
  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;
}

.service-tab-pane h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 700;
}

.service-tab-pane p {
  margin-bottom: 1.5rem;
  color: var(--text);
  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 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),
    url("/assets/img/cta-bg.jpg") no-repeat center center/cover;
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-top: 4rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-medium);
  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;
}

.about {
  background-color: var(--light);
}

.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(--dark);
  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(--light);
  padding: 1.5rem;
  border-radius: var(--border-radius-small);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.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(--dark);
}

.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;
}

.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;
  color: var(--light);
}

.contact {
  background-color: var(--light);
}

.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 var(--gray-medium);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.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(--dark);
  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 var(--gray-medium);
}

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

.reviews {
  background-color: var(--light);
}

.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 var(--gray-medium);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.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 var(--primary);
  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(--dark);
  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 {
  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 {
  background-color: var(--light);
}

.faq-content {
  display: flex;
  align-items: flex-start;
}

.faq-image {
  flex: 0 0 40%;
  overflow: hidden;
  height: fit-content;
}

.faq-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.faq-container {
  flex: 0 0 60%;
  max-width: 900px;
}

.faq-item {
  background: var(--light);
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--gray-medium);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.faq-question {
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--dark);
  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(--dark);
}

.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 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),
    url("/assets/img/cta-bg.jpg") no-repeat center center/cover;
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-top: 4rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-medium);
  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 {
  background-color: var(--dark);
  color: var(--light);
  padding: 5rem 0 2rem;
  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(--light);
}

.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: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: block;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1rem;
}

.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);
}

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

.footer-links a:hover::before {
  opacity: 1;
}

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

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

.footer-bottom p:first-child {
  margin-bottom: 0.5rem;
}

.footer-bottom a {
  color: var(--primary);
  font-size: 1rem;
}

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

.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);
}

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

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

@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: 1.5rem;
    padding: 2rem;
    width: 100%;
  }

  nav ul li a {
    font-size: 1.2rem;
    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;
  }

  .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;
  }
}

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

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

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 0rem;
    text-align: center;
  }

  .hero-image {
    width: 100%;
    max-width: 600px;
  }

  .about-content {
    flex-direction: column;
  }

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

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

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

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

  .col-lg-4,
  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-tabs-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .service-tab-btn {
    flex: 0 0 calc(50% - 0.4rem);
  }

  .faq-content {
    flex-direction: column;
  }

  .faq-image,
  .faq-container {
    flex: 0 0 100%;
    width: 100%;
  }

  .faq-image {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 600px;
    padding-top: 150px;
  }

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

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

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    max-width: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

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

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

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

  .logo {
    height: 70px;
  }

  .footer-column .logo {
    height: 70px;
  }

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

  .feature-item {
    padding: 1.2rem;
  }

  .feature-item i {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .service-tab-btn {
    flex: 0 0 100%;
  }

  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-tab-image {
    margin-bottom: 1.5rem;
  }
}

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

  .hero {
    min-height: 600px;
    padding-top: 110px;
  }

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

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

  .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;
  }

  .about-features {
    gap: 0.8rem;
  }

  .feature-item {
    padding: 1rem;
  }
}
