*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html,
body {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background: #f7f7f7;
}

body {
  margin: 0;
}

/* Верхняя панель */

.top-bar {
  height: 60px;
  background: #071d4b;
  color: white;

  display: flex;
  justify-content: space-around;
  align-items: center;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.top-item i {
  color: #ff7300;
}

/* Shapka */

header {
  width: 100%;
  height: 100px;
  margin: auto;
  margin-top: -5px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo i {
  font-size: 45px;
  color: #ff7300;
}

.logo h2 {
  font-size: 38px;
  color: #0b204f;
}

.logo span {
  color: #ff7300;
}

/* Menu */

nav {
  display: flex;
  gap: 45px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #ff7300;
}

/* Кнопка */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ff6b00;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: #e85d00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.btn:active {
  transform: scale(0.97);
}

.btn i {
  font-size: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.whatsapp-btn:hover {
  background: #1fb857;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #081f4d, #123a84);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.hero-left {
  width: 50%;
  color: white;
}

.subtitle {
  display: inline-block;
  background: #ff7300;
  padding: 12px 22px;
  border-radius: 40px;
  font-weight: bold;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero p {
  font-size: 20px;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.btn-orange,
.btn-green {
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-orange {
  background: #ff7300;
  color: white;
}

.btn-green {
  background: #25d366;
  color: white;
}

.btn-orange:hover,
.btn-green:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.hero-info {
  display: flex;
  gap: 60px;
}

.hero-info h2 {
  color: #ff7300;
  font-size: 42px;
}

.hero-info span {
  color: #ddd;
}

.hero-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: float 4s ease-in-out infinite;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 450px;
  overflow: hidden;
  height: 450px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
  transition: 1s;
}

.slide.active {
  opacity: 1;
}

/* Декоративные круги */

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.2;
}

.circle1 {
  width: 500px;
  height: 500px;
  background: #ff7300;
  top: -200px;
  right: -120px;
}

.circle2 {
  width: 250px;
  height: 250px;
  background: rgb(255, 255, 255);
  left: -120px;
  bottom: 120px;
}

.circle3 {
  width: 140px;
  height: 140px;
  background: #ff7300;
  bottom: 120px;
  right: 38%;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave svg {
  display: block;
  width: 100%;
}

.about {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #af9fff, #ffffff, #5890f2);
}

.about .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.about::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #ff6b00;
  opacity: 0.08;
  border-radius: 50%;
  top: -120px;
  left: -120px;
}

.about::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #0057d8;
  opacity: 0.08;
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
}

.about-image {
  flex: 1;
}

.about-slider {
  position: relative;
  width: 100%;
  height: 700px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: 1s;
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-slide.active {
  opacity: 1;
  transform: scale(1);
}

.about-content {
  flex: 1;
}

.section-title {
  display: inline-block;
  background: #ff6b00;
  font-size: 20px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #0b1d3a;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 35px 0;
}

.feature {
  background: #f7f7f7;
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.feature:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-5px);
}

.about-btn {
  display: inline-block;
  padding: 16px 35px;
  background: #ff6b00;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s;
}

.about-btn:hover {
  background: #e55d00;
}

/* ====================================
   Hizmetlerimiz bölümü
==================================== */

.services {
  padding: 100px 0;
  background: #023889;
}

.services .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-subtitle {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  font-size: 25px;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.services h2 {
  font-size: 42px;
  color: #f2f4f8;
  margin-bottom: 15px;
}

.section-text {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.service-box:hover {
  transform: translateY(-12px);
  background: #0b1d3a;
}

.service-box i {
  font-size: 55px;
  color: #ff6b00;
  margin-bottom: 25px;
}

.service-box h3 {
  margin-bottom: 20px;
  font-size: 25px;
  color: #0b1d3a;
  transition: 0.4s;
}

.service-box p {
  text-align: left;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  transition: 0.4s;
}

.service-box a {
  color: #ff6b00;
  text-decoration: none;
  font-weight: 700;
}

.service-box:hover h3,
.service-box:hover p {
  color: #fff;
}

/* Galeri */

.gallery {
  padding: 100px 0;
  background: #032457;
}

.gallery .title {
  text-align: center;
  margin-bottom: 50px;
}

.gallery .title h2 {
  font-size: 40px;
  color: #fefefe;
}

.gallery .title p {
  color: #faf8f8;
  font-size: 25px;
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

/* iletishim */
.contact {
  padding: 80px 8%;
  background: #f8f9fa;
}

.contact-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-title h2 {
  font-size: 40px;
  color: #222;
  margin-bottom: 15px;
}

.contact-title p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.contact-box {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item i {
  width: 60px;
  height: 60px;
  background: #ff9800;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.info-item h3 {
  margin-bottom: 5px;
  color: #222;
}

.info-item p,
.info-item a {
  color: #555;
  text-decoration: none;
}

.location-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 35px;
  background: #ff9800;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.location-btn:hover {
  background: #e68900;
  transform: translateY(-4px);
}

.map {
  flex: 1;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Seo */
.seo-content {
  max-width: 1200px;
  margin: 70px auto;
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.seo-content h2 {
  color: #071d4b;
  text-align: center;
  margin-bottom: 25px;
}

.seo-content h3 {
  color: #0b4ea2;
  margin-top: 30px;
  margin-bottom: 15px;
}

.seo-content p {
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.seo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}

.seo-list li {
  background: #f5f7fb;
  padding: 15px;
  border-left: 4px solid #0b4ea2;
  border-radius: 8px;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #07172f;
  color: #fff;
  padding: 70px 8% 20px;
}

.footer-container {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 40px;
}

.footer-box h3 {
  color: #f4b400;

  font-size: 24px;

  margin-bottom: 25px;

  position: relative;
}

.footer-box h3::after {
  content: "";

  width: 60px;

  height: 3px;

  background: #f4b400;

  display: block;

  margin-top: 10px;
}

.footer-box p {
  color: #d7d7d7;

  line-height: 1.9;

  margin-bottom: 12px;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin: 15px 0;
}

.footer-box ul li a {
  color: #d7d7d7;

  text-decoration: none;

  transition: 0.4s;
}

.footer-box ul li a:hover {
  color: #f4b400;

  padding-left: 12px;
}

.footer-box i {
  color: #f4b400;

  margin-right: 10px;
}

.stars {
  color: #f4b400;

  font-size: 22px;

  margin-top: 20px;
}

.stars span {
  display: block;

  color: #fff;

  font-size: 15px;

  margin-top: 10px;
}

.footer-btn {
  display: inline-block;

  margin-top: 25px;

  background: #f4b400;

  color: #07172f;

  padding: 14px 30px;

  border-radius: 40px;

  text-decoration: none;

  font-weight: bold;

  transition: 0.4s;
}

.footer-btn:hover {
  transform: translateY(-5px);

  background: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);

  text-align: center;

  margin-top: 60px;

  padding-top: 30px;

  color: #cfcfcf;

  line-height: 2;
}

.footer-bottom span {
  color: #f4b400;

  font-weight: bold;
}

/* =====================================
   MÜŞTERİ YORUMLARI
===================================== */

.reviews-section {
  width: 100%;
  padding: 90px 20px;
  background: #f7f9fc;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Заголовок */

.reviews-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.reviews-subtitle {
  display: inline-block;
  margin-bottom: 12px;

  color: #0b5ed7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.reviews-header h2 {
  margin: 0 0 15px;

  color: #071d4b;
  font-size: 38px;
  font-weight: 800;
}

.reviews-header p {
  margin: 0;

  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

/* =====================================
   ОБЩИЙ РЕЙТИНГ
===================================== */

.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.rating-box {
  min-width: 230px;
  padding: 25px 35px;

  text-align: center;

  background: #ffffff;

  border-radius: 18px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.rating-number {
  color: #071d4b;

  font-size: 42px;
  font-weight: 800;
}

.stars {
  margin: 5px 0 8px;

  color: #f5b301;

  font-size: 25px;
  letter-spacing: 3px;
}

.rating-text {
  color: #777;

  font-size: 14px;
}

/* =====================================
   КАРТОЧКИ ОТЗЫВОВ
===================================== */

.reviews-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 25px;

  margin-bottom: 55px;
}

.review-card {
  position: relative;

  padding: 28px;

  background: #ffffff;

  border-radius: 18px;

  border: 1px solid #edf0f5;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
}

/* Верх карточки */

.review-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  margin-bottom: 18px;
}

.reviewer {
  display: flex;

  align-items: center;

  gap: 12px;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: #071d4b;

  color: #ffffff;

  border-radius: 50%;

  font-size: 18px;
  font-weight: 700;
}

.reviewer-name {
  color: #071d4b;

  font-size: 16px;
  font-weight: 700;
}

.review-date {
  margin-top: 3px;

  color: #98a2b3;

  font-size: 12px;
}

/* Звёзды */

.review-stars {
  color: #f5b301;

  font-size: 17px;

  white-space: nowrap;
}

/* Текст */

.review-text {
  margin: 0;

  color: #475467;

  font-size: 15px;

  line-height: 1.75;
}

/* =====================================
   ФОРМА
===================================== */

.review-form-wrapper {
  max-width: 850px;

  margin: 0 auto;

  padding: 35px;

  background: #ffffff;

  border-radius: 22px;

  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.form-header {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  margin-bottom: 30px;
}

.form-header > span {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: #eef5ff;

  border-radius: 12px;

  font-size: 23px;
}

.form-header h3 {
  margin: 0 0 5px;

  color: #071d4b;

  font-size: 22px;
}

.form-header p {
  margin: 0;

  color: #667085;

  font-size: 14px;

  line-height: 1.6;
}

/* Строка формы */

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.form-group {
  position: relative;

  margin-bottom: 22px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  color: #344054;

  font-size: 14px;

  font-weight: 600;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;

  padding: 14px 16px;

  border: 1px solid #d0d5dd;

  border-radius: 10px;

  outline: none;

  background: #ffffff;

  color: #101828;

  font-family: inherit;

  font-size: 15px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-group textarea {
  resize: vertical;

  min-height: 130px;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  border-color: #0b5ed7;

  box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.1);
}

/* =====================================
   ВЫБОР ЗВЁЗД
===================================== */

.rating-input {
  display: flex;

  align-items: center;

  gap: 4px;

  min-height: 48px;
}

.rating-input button {
  padding: 0;

  border: none;

  background: transparent;

  color: #d0d5dd;

  cursor: pointer;

  font-size: 30px;

  line-height: 1;

  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.rating-input button:hover {
  transform: scale(1.15);

  color: #f5b301;
}

.rating-input button.active {
  color: #f5b301;
}

/* =====================================
   СЧЁТЧИК СИМВОЛОВ
===================================== */

.character-counter {
  position: absolute;

  right: 12px;
  bottom: 8px;

  color: #98a2b3;

  font-size: 12px;
}

/* =====================================
   НИЖНЯЯ ЧАСТЬ ФОРМЫ
===================================== */

.form-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.privacy-text {
  max-width: 450px;

  margin: 0;

  color: #98a2b3;

  font-size: 12px;

  line-height: 1.5;
}

.review-submit {
  padding: 14px 25px;

  border: none;

  border-radius: 10px;

  background: #071d4b;

  color: #ffffff;

  cursor: pointer;

  font-family: inherit;

  font-size: 15px;

  font-weight: 700;

  white-space: nowrap;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.review-submit:hover {
  background: #0b5ed7;

  transform: translateY(-2px);
}

/* =====================================
   СООБЩЕНИЕ
===================================== */

.review-message {
  display: none;

  margin-top: 20px;

  padding: 13px 15px;

  border-radius: 10px;

  background: #ecfdf3;

  color: #027a48;

  font-size: 14px;

  text-align: center;
}

/* =====================================
   НЕТ ОТЗЫВОВ
===================================== */

/* ===== Мобильная версия Header===== */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header {
    display: none;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    width: 140px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
  }

  .hero {
    flex-direction: column;
  }

  .hero-content,
  .hero-image {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   Адаптация для телефонов
========================= */

@media (max-width: 768px) {
  header {
    display: none;
  }

  .logo {
    justify-content: center;
    gap: 10px;
  }

  .logo i {
    font-size: 32px;
  }

  .logo h2 {
    font-size: 24px;
  }

  nav {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  nav a {
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .btn,
  .whatsapp-btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px;
  }
}

/* =========================
   Очень маленькие экраны
========================= */

@media (max-width: 480px) {
  header {
    padding: 10px;
  }

  .logo i {
    font-size: 28px;
  }

  .logo h2 {
    font-size: 20px;
  }

  nav a {
    font-size: 16px;
  }

  .btn,
  .whatsapp-btn {
    font-size: 15px;
    padding: 12px;
  }
}

/* ==========================
   Hero - Адаптация для телефона
========================== */

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0 70px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    width: 92%;
    gap: 40px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .subtitle {
    font-size: 14px;
    padding: 10px 18px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
  }

  .btn-orange,
  .btn-green {
    width: 100%;
    padding: 15px;
    font-size: 17px;
    text-align: center;
  }

  .hero-info {
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }

  .hero-info h2 {
    font-size: 28px;
  }

  .hero-info span {
    font-size: 15px;
  }

  .slider {
    width: 100%;
    max-width: 100%;
    height: 250px;
  }

  .hero-right img,
  .slide {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
  }

  /* Уменьшаем декоративные круги */

  .circle1 {
    width: 220px;
    height: 220px;
    top: -80px;
    right: -80px;
  }

  .circle2 {
    width: 120px;
    height: 120px;
    left: -50px;
    bottom: 40px;
  }

  .circle3 {
    width: 70px;
    height: 70px;
    right: 15%;
    bottom: 70px;
  }
}

/* ==========================
   Очень маленькие телефоны
========================== */

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .subtitle {
    font-size: 13px;
  }

  .slider {
    height: 200px;
  }

  .hero-right img,
  .slide {
    height: 200px;
  }

  .hero-info {
    flex-direction: column;
    gap: 18px;
  }

  .hero-info h2 {
    font-size: 24px;
  }

  .btn-orange,
  .btn-green {
    font-size: 16px;
    padding: 14px;
  }
}

/* ==========================
   About - Адаптация для телефона
========================== */

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about .container {
    flex-direction: column;
    gap: 35px;
    width: 92%;
    text-align: center;
  }

  .about-image,
  .about-content {
    width: 100%;
    flex: none;
  }

  .about-slider {
    height: 320px;
    border-radius: 15px;
  }

  .about-slide {
    border-radius: 15px;
  }

  .section-title {
    font-size: 16px;
    padding: 8px 18px;
  }

  .about-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature {
    padding: 16px;
    font-size: 16px;
  }

  .about-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 17px;
  }

  /* Уменьшаем декоративные круги */

  .about::before {
    width: 180px;
    height: 180px;
    top: -70px;
    left: -70px;
  }

  .about::after {
    width: 160px;
    height: 160px;
    bottom: -70px;
    right: -70px;
  }
}

/* ==========================
   Очень маленькие телефоны
========================== */

@media (max-width: 480px) {
  .about {
    padding: 50px 0;
  }

  .about-slider {
    height: 250px;
  }

  .section-title {
    font-size: 15px;
  }

  .about-content h2 {
    font-size: 25px;
  }

  .about-content p {
    font-size: 15px;
  }

  .feature {
    font-size: 15px;
    padding: 14px;
  }

  .about-btn {
    font-size: 16px;
    padding: 14px;
  }
}

/* ==========================
   Services - Адаптация для телефона
========================== */

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .container {
    width: 92%;
  }

  .section-subtitle {
    font-size: 18px;
    padding: 8px 18px;
  }

  .services h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .section-text {
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.7;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-box {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .service-box i {
    font-size: 45px;
    margin-bottom: 20px;
  }

  .service-box h3 {
    font-size: 22px;
  }

  .service-box p {
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
  }

  .service-box a {
    font-size: 16px;
  }
}

/* ==========================
   Очень маленькие телефоны
========================== */

@media (max-width: 480px) {
  .services {
    padding: 50px 0;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .services h2 {
    font-size: 26px;
  }

  .section-text {
    font-size: 15px;
  }

  .service-box {
    padding: 25px 18px;
  }

  .service-box i {
    font-size: 40px;
  }

  .service-box h3 {
    font-size: 20px;
  }

  .service-box p {
    font-size: 14px;
  }

  .service-box a {
    font-size: 15px;
  }
}

/* ==========================
   Contact - Адаптация для телефона
========================== */

@media (max-width: 768px) {
  .contact {
    padding: 60px 20px;
  }

  .contact-title {
    margin-bottom: 35px;
  }

  .contact-title h2 {
    font-size: 30px;
  }

  .contact-title p {
    font-size: 16px;
    line-height: 1.7;
  }

  .contact-box {
    flex-direction: column;
    gap: 25px;
  }

  .contact-info {
    padding: 25px 20px;
  }

  .info-item {
    gap: 15px;
    margin-bottom: 25px;
  }

  .info-item i {
    width: 50px;
    height: 50px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .info-item h3 {
    font-size: 20px;
  }

  .info-item p,
  .info-item a {
    font-size: 15px;
    word-break: break-word;
  }

  .location-btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
  }

  .map iframe {
    min-height: 300px;
    border-radius: 15px;
  }
}

/* ==========================
   Очень маленькие телефоны
========================== */

@media (max-width: 480px) {
  .contact {
    padding: 50px 15px;
  }

  .contact-title h2 {
    font-size: 26px;
  }

  .contact-title p {
    font-size: 15px;
  }

  .contact-info {
    padding: 20px 15px;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .info-item i {
    width: 45px;
    height: 45px;
    font-size: 17px;
  }

  .info-item h3 {
    font-size: 18px;
  }

  .info-item p,
  .info-item a {
    font-size: 14px;
  }

  .location-btn {
    font-size: 15px;
    padding: 14px;
  }

  .map iframe {
    min-height: 250px;
  }
}

/* ===========================
   SEO BLOCK - MOBILE
=========================== */

@media (max-width: 768px) {
  .seo-content {
    width: 95%;
    margin: 40px auto;
    padding: 20px;
    border-radius: 12px;
  }

  .seo-content h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .seo-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .seo-content p {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }

  .seo-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .seo-list li {
    font-size: 15px;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .seo-content {
    width: 94%;
    padding: 18px;
  }

  .seo-content h2 {
    font-size: 24px;
  }

  .seo-content h3 {
    font-size: 20px;
  }

  .seo-content p {
    font-size: 15px;
  }

  .seo-list li {
    font-size: 14px;
    padding: 12px;
  }
}

/* =====================================
   МОБИЛЬНАЯ АДАПТАЦИЯ
===================================== */

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .reviews-section {
    padding: 65px 15px;
  }

  .reviews-header h2 {
    font-size: 30px;
  }

  .reviews-header p {
    font-size: 14px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .review-form-wrapper {
    padding: 25px 18px;

    border-radius: 17px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .form-bottom {
    flex-direction: column;

    align-items: stretch;
  }

  .review-submit {
    width: 100%;
  }

  .rating-box {
    width: 100%;
  }
}

/* ==========================
   Footer - Адаптация для телефона
========================== */

@media (max-width: 768px) {
  .footer {
    padding: 50px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .footer-box h3::after {
    margin: 10px auto 0;
  }

  .footer-box p {
    font-size: 15px;
    line-height: 1.8;
  }

  .footer-box ul {
    padding: 0;
  }

  .footer-box ul li {
    margin: 12px 0;
  }

  .footer-box ul li a {
    font-size: 16px;
  }

  .footer-box ul li a:hover {
    padding-left: 0;
  }

  .footer-box i {
    margin-right: 8px;
  }

  .stars {
    font-size: 20px;
  }

  .stars span {
    font-size: 14px;
  }

  .footer-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ==========================
   Очень маленькие телефоны
========================== */

@media (max-width: 480px) {
  .footer {
    padding: 40px 15px 15px;
  }

  .footer-box h3 {
    font-size: 20px;
  }

  .footer-box p,
  .footer-box ul li a {
    font-size: 14px;
  }

  .stars {
    font-size: 18px;
  }

  .stars span {
    font-size: 13px;
  }

  .footer-btn {
    font-size: 15px;
    padding: 14px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 40px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .slider {
    width: 100%;
    max-width: 100%;
    height: 230px;
  }

  .slide {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }

  .about-slider {
    width: 100%;
    height: 300px;
  }

  .about-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .slider {
    width: 100%;
    max-width: 340px;
    height: 220px;
  }

  .slide {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px;
    height: auto;
  }

  .top-item {
    font-size: 13px;
    margin: 4px 8px;
  }
}
