/* Air Conditioning Cleaning Page Styles */

/* Сброс глобальных стилей для страницы */
body.air-conditioning-page {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* Переопределение глобального сброса для контейнеров */
body.air-conditioning-page * {
  box-sizing: border-box !important;
}

body.air-conditioning-page .container {
  margin: 0 auto !important;
  padding: 0 20px !important;
  max-width: 1200px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Общие стили для всех секций */
.air-conditioning-main {
  width: 100% !important;
}

.air-conditioning-main .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
  position: relative !important;
  width: 100% !important;
}

/* Принудительные отступы для всех секций */
.air-conditioning-main section {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Принудительные стили для всех контейнеров внутри секций */
.air-conditioning-main section .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
  position: relative !important;
  width: 100% !important;
}

/* Hero Section */
.air-conditioning-hero {
  background: linear-gradient(135deg, #F98820 0%, #ff6b35 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  width: 100% !important;
  box-sizing: border-box !important;
}

.air-conditioning-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.air-conditioning-hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Prices Table Section */
.prices-table-section {
  padding: 80px 0;
  background: #f7f7f7;
  width: 100% !important;
  box-sizing: border-box !important;
}

.prices-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.prices-table th,
.prices-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.prices-table th {
  background: #F98820;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.prices-table tr:hover {
  background: #f9f9f9;
}

.prices-table td:first-child {
  font-weight: 600;
  color: #333;
}

.prices-table td:first-child i {
  margin-right: 10px;
  color: #F98820;
}

.prices-table td:nth-child(2) {
  font-weight: 700;
  color: #F98820;
  font-size: 1.1rem;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: white;
  width: 100% !important;
  box-sizing: border-box !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card i {
  font-size: 3rem;
  color: #F98820;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Why Clean Section */
.why-clean-section {
  padding: 80px 0;
  background: #f7f7f7;
  width: 100% !important;
  box-sizing: border-box !important;
}

.why-clean-content {
  max-width: 800px;
  margin: 0 auto;
}

.why-clean-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.why-clean-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

/* Advantages Section */
.advantages-section {
  padding: 80px 0;
  background: white;
  width: 100% !important;
  box-sizing: border-box !important;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.advantage-item:hover {
  transform: translateX(5px);
}

.advantage-item i {
  font-size: 1.5rem;
  color: #22c55e;
  min-width: 30px;
}

.advantage-item span {
  font-weight: 600;
  color: #333;
}

/* Order Section */
.order-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F98820 0%, #ff6b35 100%);
  color: white;
  text-align: center;
  width: 100% !important;
  box-sizing: border-box !important;
}

.order-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.order-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.order-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: white;
  color: #F98820;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.order-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.order-btn.secondary:hover {
  background: white;
  color: #F98820;
}

/* Responsive Design */
@media (max-width: 768px) {
  .air-conditioning-main .container,
  .air-conditioning-main section .container {
    padding: 0 15px !important;
  }

  .air-conditioning-hero h1 {
    font-size: 2rem;
  }

  .air-conditioning-hero p {
    font-size: 1rem;
  }

  .prices-table th,
  .prices-table td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .order-buttons {
    flex-direction: column;
    align-items: center;
  }

  .order-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .air-conditioning-main .container,
  .air-conditioning-main section .container {
    padding: 0 10px !important;
  }

  .air-conditioning-hero {
    padding: 60px 0;
  }

  .air-conditioning-hero h1 {
    font-size: 1.8rem;
  }

  .prices-table {
    font-size: 0.8rem;
  }

  .prices-table th,
  .prices-table td {
    padding: 10px 5px;
  }
} 