/* Reset and Base Styles */

@import url("car-services.css");

a {
  text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Service Detail Page Styles */
.service-detail-page {
  padding: 40px 0 80px;
  background: #f8f9fa;
  min-height: 100vh;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  margin-top: 30px;
}

.service-detail-left {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-image-large {
  width: 300px;
  height: 250px;
  margin: 0 0 30px 0;
  float: left;
  margin-right: 30px;
}

.service-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.service-description {
  margin-bottom: 40px;
}

.service-description h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-description p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  text-align: justify;
}

.service-packages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  clear: both;
}

.package-box {
  border: 3px solid;
  border-radius: 12px;
  padding: 25px;
  background: white;
}

.refreshment-package {
  border-color: #17a2b8;
  background: rgba(23, 162, 184, 0.02);
}

.deep-cleaning-package {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.02);
}

.package-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.package-header i {
  font-size: 1.5rem;
  color: #2c3e50;
}

.package-header h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.package-box p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.package-header h4 {
  color: white;
}

.fas fa-star {
  color: white;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  color: #666;
  margin-bottom: 5px;
  font-size: 0.9rem;
  position: relative;
  padding-left: 15px;
}

.package-features li:before {
  content: "•";
  color: #2c3e50;
  position: absolute;
  left: 0;
}

.service-detail-right {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.booking-widget {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.price-display {
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.price {
  font-size: 2.5rem;
  color: #28a745;
  font-weight: 700;
  margin-bottom: 5px;
}

.price-note {
  color: #666;
  font-size: 0.9rem;
}

.booking-form {
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: #2c3e50;
}

.booking-buttons {
  padding: 0 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-booking {
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

.btn-primary:hover {
  background: #34495e;
  border-color: #34495e;
  color: white;
  text-decoration: none;
}

.btn-outline {
  background: white;
  color: #2c3e50;
  border-color: #2c3e50;
}

.btn-outline:hover {
  background: #2c3e50;
  color: white;
  text-decoration: none;
}

.service-features {
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #666;
  font-size: 0.9rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item i {
  color: #2c3e50;
  font-size: 1rem;
}

.related-services {
  margin-top: 60px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.related-services h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 600;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.related-service-item {
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: transform 0.3s ease;
}

.related-service-item:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.related-service-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.related-service-item h4 {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 600;
}

.related-service-item .price {
  font-size: 1.1rem;
  color: #28a745;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-detail-content {
    grid-template-columns: 1fr 300px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail-right {
    position: static;
  }

  .service-packages {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-image-large {
    float: none;
    width: 100%;
    height: 200px;
    margin: 0 0 20px 0;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .related-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .service-detail-page {
    padding: 20px 0 40px;
  }

  .service-detail-left,
  .related-services {
    padding: 25px 20px;
  }

  .related-services-grid {
    grid-template-columns: 1fr;
  }

  .service-title {
    font-size: 1.3rem;
  }
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
}

.breadcrumb a {
  color: #28a745;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 10px;
  color: #6c757d;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f2ef;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #3d8b7d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.logo-icon i {
  color: white;
  font-size: 20px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #0a5189;
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: #0a5189;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3d8b7d;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #3d8b7d;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}



.get-price-btn {
  background: linear-gradient(90deg, #47937d 0%, #0d5c91 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}



.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #0a5189;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu-item {
  text-decoration: none;
  color: #0a5189;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.mobile-menu-item:hover {
  color: #3d8b7d;
  padding-left: 10px;
}

.mobile-get-price {
  margin-top: 10px;
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: #b8a99a;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

/* Wave Divider Styles */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.wave-divider .shape-fill {
  fill: #ffffff;
}

/* Mobile responsive wave */
@media (max-width: 768px) {
  .wave-divider svg {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .wave-divider svg {
    height: 60px;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0a5189;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}



.hero-image {
  position: relative;
}

.hero-image-container {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.hero-image-container:hover {
  transform: translateY(-10px);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-image-container:hover img {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: #3d8b7d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 139, 125, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(61, 139, 125, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 139, 125, 0);
  }
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.benefit-item {
  padding: 10px 20px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: rgba(10, 81, 137, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 32px;
  color: #0a5189;
}

.benefit-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a5189;
  margin-bottom: 15px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Services Section */
/* Services Section */
.services {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-card:hover .service-image img {
  filter: blur(3px);
  transform: scale(1.05);
}

.service-card .more-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #007cba;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
  pointer-events: none;
  border: none;
  cursor: pointer;
}

.service-card:hover .more-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.service-content {
  padding: 25px;
}

.service-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

.service-prices {
  text-align: center;
  color: black;
  font-size: 20px;
  margin-bottom: 20px;
}


.service-prices li:last-child {
  border-bottom: none;
}

.service-prices strong {
  color: #2c3e50;
  font-weight: 600;
}

.service-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-btn:hover {
  background-color: #34495e;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-content {
    padding: 20px 15px;
  }

  .service-content h4 {
    font-size: 16px;
  }

  .service-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 15px;
  }

  .service-content {
    padding: 15px 10px;
  }

  .service-prices li {
    font-size: 13px;
  }
}

/* Specialized Areas Section */
.specialized-areas {
  padding: 100px 0;
  background: white;
  position: relative;
}

.specialized-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.specialized-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.specialized-item {
  padding: 30px;
  transition: transform 0.3s ease;
}


.specialized-item-header {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.specialized-item.right .specialized-item-header {
  justify-content: flex-end;
}

.specialized-icon {
  width: 60px;
  height: 60px;
  background: #3d8b7d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.specialized-icon i {
  font-size: 24px;
  color: white;
}

.specialized-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a5189;
  margin: 0 20px;
}

.specialized-item.right {
  text-align: right;
  margin: 10px;
  width: 100%;
    
}

.specialized-item.right h3 {
  margin: 0 20px 0 0;
}

.specialized-item p {
  color: #555;
  line-height: 1.6;
}

.specialized-center {
  position: relative;
}

.specialized-image {
  width: 100%;
  height: 600px;
  border-radius: 170px 170px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.specialized-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(61, 139, 125, 0.1);
  z-index: 0;
}

.how-it-works::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(10, 81, 137, 0.1);
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 колонки на ПК */
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

/* Для планшетов и мобильных */
@media (max-width: 1200px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  margin: 10px;
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  border-left: 4px solid #3d8b7d;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background: #0a5189;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(10deg);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(10, 81, 137, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon i {
  font-size: 32px;
  color: #0a5189;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a5189;
  text-align: center;
  margin-bottom: 15px;
}

.step-card p {
  color: #666;
  text-align: center;
  line-height: 1.6;
}

/* Packages Section */
.packages {
  padding: 100px 0;
  background: #f5f2ef;
  position: relative;
}

.discount-banner {
  background: linear-gradient(135deg, #0a5189 0%, #3d8b7d 100%);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.discount-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.discount-banner::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.discount-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.discount-text {
  display: flex;
  align-items: center;
  color: white;
}

.discount-text i {
  font-size: 40px;
  margin-right: 20px;
}

.discount-text h3 {
  font-size: 2rem;
  font-weight: 700;
}

.discount-btn {
  background: white;
  color: #0a5189;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.discount-btn:hover {
  background: #f0f0f0;
  color: #3d8b7d;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.package-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-header {
  background: linear-gradient(135deg, #3d8b7d 0%, #0a5189 100%);
  padding: 30px;
  text-align: center;
  color: white;
}

.package-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.package-header p {
  font-size: 14px;
  opacity: 0.9;
}

.package-content {
  padding: 40px 30px;
}

.package-price {
  text-align: center;
  margin-bottom: 30px;
}

.price-from {
  font-size: 1rem;
  color: #666;
  margin-right: 5px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a5189;
}

.package-features {
  list-style: none;
  margin-bottom: 30px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #555;
}

.package-features i {
  color: #3d8b7d;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

.package-btn {
  width: 100%;
  background: linear-gradient(90deg, #3d8b7d 0%, #0a5189 100%);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Why Contact Us Section */
.why-contact {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.why-contact::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(61, 139, 125, 0.1);
  z-index: 0;
}

.why-contact::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(10, 81, 137, 0.1);
  z-index: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-image img {
  transform: scale(1.1);
}

.benefit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 81, 137, 0.8), transparent);
}

.benefit-card-content {
  padding: 30px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a5189;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #555;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f5f2ef;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(61, 139, 125, 0.1);
  z-index: 0;
}

.about::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(10, 81, 137, 0.1);
  z-index: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: translateY(-10px);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.0rem;
  font-weight: 500;
}

.read-more-btn {
  background: none;
  border: none;
  color: #0a5189;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #3d8b7d;
}

.read-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more-btn.expanded i {
  transform: rotate(180deg);
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.expandable-content.expanded {
  max-height: 500px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #3d8b7d;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: #0a5189;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  margin-right: 15px;
}

.testimonial-info h4 {
  font-weight: 700;
  color: #0a5189;
  margin-bottom: 5px;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 14px;
}

.testimonial-text {
  color: #555;
  line-height: 1.6;
  font-style: italic;
}

/* Before After Section */
.before-after {
  padding: 100px 0;
  background: #f5f2ef;
}

.gallery-container {
  max-width: 1000px;
  margin: 60px auto 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a5189;
  margin-bottom: 10px;
}

.gallery-counter {
  color: #666;
}

.gallery-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.gallery-image {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-image:hover img {
  transform: scale(1.05);
}

.image-label {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #0a5189;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.gallery-btn {
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: #f0f0f0;
}

.gallery-btn i {
  color: #3d8b7d;
  font-size: 16px;
}

.gallery-dots {
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #0a5189;
  transform: scale(1.2);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #3d8b7d 0%, #0a5189 100%);
  color: white;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #004a99;
}

.section-subtitle {
  text-align: center;
}

.contact .section-title {
  color: white;
}

.contact .section-title::after {
  background: white;
}

.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item i {
  font-size: 24px;
  color: white;
}

.contact-item p {
  font-size: 1.1rem;
  margin: 0;
}

.coverage-info {
  margin-top: 40px;
}

.coverage-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.coverage-info p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: #333;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a5189;
}

.expand-btn {
  background: none;
  border: 2px solid #0a5189;
  color: #0a5189;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expand-btn:hover {
  background: rgba(10, 81, 137, 0.1);
}

.form-container {
  max-height: 600px;
  overflow-y: auto;
  transition: max-height 0.3s ease;
}

.form-container.expanded {
  max-height: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.required {
  color: #3d8b7d;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-height: 150px;
  overflow-y: auto;
  border: 2px solid #ddd;
  border-radius: 6px;
  padding: 15px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #3d8b7d;
}

.checkbox-item label {
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.file-upload {
  position: relative;
  border: 2px dashed #ddd;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.file-upload:hover {
  border-color: #3d8b7d;
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-btn {
  background: none;
  border: 2px solid #3d8b7d;
  color: #3d8b7d;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-btn:hover {
  background: #3d8b7d;
  color: white;
}

.file-list {
  margin-top: 15px;
}

.file-item {
  display: flex;
  justify-content: between;
  align-items: center;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.file-name {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.file-remove {
  background: none;
  border: none;
  color: #dc3545;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.file-remove:hover {
  color: #c82333;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 6px;
}

.privacy-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #3d8b7d;
}

.privacy-consent label {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.privacy-consent a {
  color: #0a5189;
  text-decoration: none;
  font-weight: 600;
}

.privacy-consent a:hover {
  color: #3d8b7d;
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #3d8b7d 0%, #0a5189 100%);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}

.success-message i {
  font-size: 48px;
  color: #28a745;
  margin-bottom: 15px;
}

.success-message h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.error-message {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: #f5f2ef;
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 30px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a5189;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #3d8b7d;
}

.faq-question i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: #555;
  line-height: 1.6;
}

/* Call Request Widget */
.call-request-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.call-request-btn {
  width: 60px;
  height: 60px;
  background: #0a5189;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.call-request-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.call-request-form {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.call-request-form.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.call-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.call-form-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a5189;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #666;
}

.call-request-form form {
  padding: 20px;
}

.call-request-form .form-group {
  margin-bottom: 15px;
}

.call-request-form .form-input,
.call-request-form .form-select,
.call-request-form .form-textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.call-request-form .submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 14px;
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-chat {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow: hidden;
}

.whatsapp-chat.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.chat-header {
  background: #0a5189;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-info i {
  font-size: 20px;
}

.chat-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.chat-body {
  padding: 20px;
  background: #e8f5e8;
}

.welcome-message {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  position: relative;
}

.welcome-message::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid white;
}

.welcome-message p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-action {
  background: white;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.quick-action:hover {
  background: #f0f0f0;
  border-color: #25d366;
}

/* Footer */
.footer {
  background: #004F8D;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #3d8b7d;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3d8b7d;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #3d8b7d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #0a5189;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid white;
  padding-top: 20px;
  text-align: center;
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .specialized-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .specialized-center {
    order: -1;
  }

  .specialized-image {
    height: 400px;
    border-radius: 12px;
  }

  .specialized-item.right {
    text-align: left;
  }

  .specialized-item.right .specialized-item-header {
    justify-content: flex-start;
  }

  .specialized-item.right h3 {
    margin: 0 0 0 20px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .header-actions .get-price-btn {
    display: none;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-container {
    height: 300px;
  }

  .discount-badge {
    width: 80px;
    height: 80px;
    font-size: 14px;
    bottom: -15px;
    right: -15px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .discount-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .discount-text {
    flex-direction: column;
    gap: 10px;
  }

  .discount-text i {
    margin-right: 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-image {
    height: 250px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .call-request-widget,
  .whatsapp-widget {
    bottom: 20px;
  }

  .call-request-widget {
    right: 20px;
  }

  .whatsapp-widget {
    left: 20px;
  }

  .call-request-form,
  .whatsapp-chat {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .get-price-btn,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .benefit-item,
  .step-card,
  .testimonial-card {
    padding: 30px 20px;
  }

  .package-card .package-content {
    padding: 30px 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .call-request-form,
  .whatsapp-chat {
    width: calc(100vw - 40px);
    right: 20px;
    left: auto;
  }

  .whatsapp-chat {
    left: 20px;
    right: auto;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-in-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-in-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-top: 2px solid #3d8b7d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Print Styles */
@media print {
  .header,
  .call-request-widget,
  .whatsapp-widget,
  .footer {
    display: none;
  }

  .hero {
    padding-top: 0;
  }

  * {
    box-shadow: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .hero {
    background: #000;
    color: #fff;
  }

  .hero-text h1 {
    color: #fff;
  }

  .section-title {
    color: #000;
  }

  .btn-primary,
  .get-price-btn {
    background: #fff;
    border-color: #000;
  }

  .btn-secondary {
    border-color: #000;
    color: #000;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles for Accessibility */
ul li {
    list-style: none;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #3d8b7d;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1001;
}

.skip-link:focus {
  top: 6px;
}
