.policy,
.success,
.contact-section {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__link {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-inline: 20px;
}

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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  z-index: 10000;
  display: none;
  backdrop-filter: blur(10px);
}

.cookie-popup.show {
  display: block;
  animation: slideUp 0.3s ease;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.btn-accept {
  background: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-decline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-accept:hover {
  background: #45a049;
  transform: translateY(-2px);
}

.btn-decline:hover {
  background: white;
  color: #333;
}

/* Success Popup */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}

.success-popup.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.success-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.success-content h3 {
  color: #4caf50;
  margin-bottom: 15px;
  font-size: 24px;
}

.success-content p {
  margin-bottom: 25px;
  color: #666;
}

/* Header */
.header {
  background: linear-gradient(135deg, #87ceeb 0%, #e0f6ff 50%, #87ceeb 100%);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h1 {
  color: white;
  font-size: 28px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background:   url("../img/hero-bg.png") center / cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-phone {
  text-align: center;
}

.hero-phone img {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

.hero-text {
  color: white;
}

.hero-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
}

.btn-primary {
  background: white;
  color: #4a90e2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #333;
  margin-bottom: 25px;
}

.about-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 40px 0 20px 0;
}

.about-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  margin-top: 30px;
}

.about-list li {
  margin-bottom: 25px;
  padding-left: 25px;
  position: relative;
}

.about-list li::before {
  content: "•";
  color: #4a90e2;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

.about-list strong {
  color: #333;
  font-weight: 700;
}

.about-phone {
  text-align: center;
  position: sticky;
  top: 120px;
}

.about-phone img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: white;
}

.gallery h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #333;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 15px;
  font-weight: 600;
  font-size: 14px;
}

/* Advantages Section */
.advantages {
  padding: 100px 0;
  background: #f8f9fa;
}

.advantages-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.advantages-phone {
  text-align: center;
  position: sticky;
  top: 120px;
}

.advantages-phone img {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

.advantages-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #333;
  margin-bottom: 40px;
}

.advantages-list {
  list-style: none;
}

.advantages-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.advantage-icon {
  width: 30px;
  height: 30px;
  background: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 5px;
}

.advantage-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.advantage-content p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: white;
}

.reviews h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #333;
  margin-bottom: 60px;
}

.reviews-slider {
  position: relative;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(74, 144, 226, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
  background: rgba(74, 144, 226, 1);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-arrow-left {
  left: 15px;
}

.slider-arrow-right {
  right: 15px;
}

.slider-arrow span {
  line-height: 1;
}

.review-card {
  min-width: calc(33.333% - 20px);
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.reviewer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid #f0f0f0;
}

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

.rating {
  margin-bottom: 15px;
}

.star {
  color: #ffd700;
  font-size: 18px;
  margin: 0 2px;
}

.review-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.review-card p {
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #4a90e2;
  transform: scale(1.2);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #f8f9fa;
}

.contact h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #333;
  margin-bottom: 60px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: #4a90e2;
  color: white;
  width: 100%;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: #357abd;
  transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer {
  padding: 80px 0;
  background: #2c3e50;
  color: white;
}

.disclaimer h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
}

.disclaimer p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: #1a252f;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-contact h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #bbb;
  line-height: 1.6;
}

.footer-brand h2 {
  font-size: 28px;
  font-weight: 800;
  text-align: right;
  color: #87ceeb;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #87ceeb;
}

.footer-bottom p {
  color: #888;
  font-size: 14px;
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(135, 206, 235, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 30px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 32px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-phone {
    position: static;
    order: -1;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .advantages-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .advantages-phone {
    position: static;
    order: -1;
  }

  .review-card {
    min-width: 100%;
  }

  .reviews-track {
    gap: 0;
  }

  .contact-form {
    margin: 0 20px;
    padding: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand h2 {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .about,
  .gallery,
  .advantages,
  .reviews,
  .contact {
    padding: 60px 0;
  }

  .about-text h2,
  .gallery h2,
  .advantages-text h2,
  .reviews h2,
  .contact h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 20px;
  }

  .advantages-list li {
    flex-direction: column;
    gap: 10px;
  }

  .advantage-icon {
    align-self: flex-start;
  }
}
