/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #0F0F12;
  color: #fff;
  line-height: 1.6;
}
#preloader {
  position: fixed;
  inset: 0;
  background: #050507;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.loader {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  border-top: 2px solid #ff2d2d;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Контейнер */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(15,15,18,0.85),
    rgba(15,15,18,0.55)
  );
  border-bottom: 1px solid rgba(255, 200, 120, 0.15);
  box-shadow:
    0 5px 30px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255, 220, 150, 0.2);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(-20px);
  animation: headerReveal 0.8s ease forwards;
}
@keyframes headerReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffcc88,
    transparent
  );
  box-shadow: 0 0 20px rgba(255, 190, 120, 0.6);
}


.header::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 120px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,180,100,0.15),
    transparent 70%
  );
  pointer-events: none;
}


.header .logo img {
  height: 50px;
}

.header .nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.header .nav ul li a {
  position: relative;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.header .nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ffb86c, #ff7a00);
  transition: width 0.3s ease;
}

.header .nav ul li a:hover {
  color: #ffcc88;
}

.header .nav ul li a:hover::after {
  width: 100%;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header .nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.header .nav ul li:nth-last-child(-n+2) a {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 200, 120, 0.3);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  font-size: 13px;
  letter-spacing: 1px;
}

.header .nav ul li:nth-last-child(-n+2) a:hover {
  background: linear-gradient(135deg, #ffcc88, #ff9900);
  color: #000;
}


/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center; 
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/plane.jpg') center/cover no-repeat;
  transform: scale(1.1);
  will-change: transform;
  transition: transform 0.1s linear;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.7),
    rgba(120,30,0,0.4),
    rgba(0,0,0,0.7)
  );
}


.hero-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  text-shadow: 0 5px 30px rgba(0,0,0,0.6);
}


.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
  margin-right: 10px;
}

.btn {
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff3b3b, #b30000);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(255, 0, 0, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(255, 0, 0, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-secondary {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 16px;
  padding: 16px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-secondary:hover {
  background: rgba(0,0,0,0.9);
  transform: translateY(-3px);
}
.btn span {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn:hover span {
  transform: translateX(5px);
}


/* HERO FORM */
.hero-form {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 
    0 0 60px rgba(255, 100, 0, 0.15),
    0 30px 60px rgba(0,0,0,0.6);
  max-width: 380px;
}


.hero-form h3 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.4);
  color: #fff;
  transition: all 0.3s ease;
}

.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border: 1px solid rgba(255, 80, 80, 0.8);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}


.hero-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #e63946;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.hero-form button:hover {
  background: #d62839;
}
.about {
  padding: 100px 0 0;
  background: #0e0e12;
  position: relative;
}
.about-showcase {
  display: flex;
  align-items: center;
  gap: 80px;
}
.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 25px 0;
}
.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 25px 0;
}
.about-right {
  flex: 1;
  position: relative;
}

.about-right img {
  width: 100%;
  border-radius: 28px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 50px rgba(255, 150, 80, 0.1);
  transition: transform 0.5s ease;
}

.about-right img:hover {
  transform: scale(1.03);
}
.about-stats-premium {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-stats-premium .stat h3 {
  font-size: 40px;
  background: linear-gradient(135deg, #ff5050, #aa0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stats-premium .stat span {
  display: block;
  margin-top: 10px;
  color: #aaa;
}
.about::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 60, 0.08),
    transparent 70%
  );
  transform: translateY(-50%);
  pointer-events: none;
}


.gold-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 180, 100, 0.6),
    transparent
  );
  margin-bottom: 10px;
}

.services {
  padding: 30px 0;
  background: #0f0f14;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 60, 0.06),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}


.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-size: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b30000;
}

.section-header h2 {
  font-size: 42px;
  margin-top: 20px;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    #ff2d2d,
    transparent
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-card {
  position: relative;
  padding: 50px 35px;
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 190, 120, 0.5);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}
.service-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.8s;
  opacity: 0;
}

.service-card:hover::after {
  top: 100%;
  opacity: 1;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 150, 80, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
}

.destinations {
  padding: 30px 0;
  background: #0c0c11;
  position: relative;
}
.section-label.red {
  color: #ff2d2d;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.destination-card {
  
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease;
}
.destination-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(180, 0, 0, 0.85),
    rgba(0, 0, 0, 0.6),
    transparent 60%
  );
}
.destination-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  color: white;
}
.destination-content h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.destination-content span {
  font-size: 14px;
  opacity: 0.8;
}
.destination-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 22px;
  border-radius: 40px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 45, 45, 0.4);
  color: white;
  font-size: 14px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.destination-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 45, 45, 0.4),
    transparent
  );
  transition: 0.6s;
}
.destination-btn:hover {
  background: #ff2d2d;
  border-color: #ff2d2d;
  transform: translateY(-3px);
}

.destination-btn:hover::before {
  left: 100%;
}

.destination-btn:hover .btn-arrow {
  transform: translateX(5px);
}
.btn-arrow {
  transition: 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-12px);
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-link:hover {
  background: #ff2d2d;
  border-color: #ff2d2d;
}
.destinations::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.08),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.badge-hot {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ff1e1e, #b30000);
  color: white;
  border-radius: 30px;
  z-index: 3;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}
.hot .badge-hot {
  animation: pulseHot 2s infinite;
}

@keyframes pulseHot {
  0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}.price {
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.85;
}

.price strong {
  font-size: 20px;
  color: #ff2d2d;
  margin-left: 6px;
}

.why-us {
  padding: 40px 0;
  background: #0a0a0f;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.07),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.why-left h2 {
  font-size: 42px;
  margin: 20px 0;
}

.why-left p {
  opacity: 0.7;
  line-height: 1.6;
  max-width: 400px;
}
.why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.why-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.why-number {
  font-size: 14px;
  color: #ff2d2d;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 45, 45, 0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.why-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.why-card.show {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.contacts {
  padding: 40px 0;
  background: #0b0b10;
}
.contacts-header {
  text-align: center;
  margin-bottom: 70px;
}
.contacts-header h2 {
  font-size: 36px;
  color: #ff2d2d;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
.contacts-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    #ff2d2d,
    transparent
  );
}

.contacts-header p {
  font-size: 16px;
  color: white;
  opacity: 0.85;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.contact-card {
  display: block;
  padding: 40px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-icon {
  font-size: 26px;
  margin-bottom: 20px;
  color: #ff2d2d;
}
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.contact-card p {
  opacity: 0.8;
  font-size: 14px;
}
.contact-action {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: #ff2d2d;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 45, 0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.contact-card:hover .contact-action {
  opacity: 1;
  transform: translateY(0);
}
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at bottom,
    rgba(255, 0, 0, 0.08),
    transparent 70%
  );
  opacity: 0;
  transition: 0.4s ease;
}

.contact-card:hover::after {
  opacity: 1;
}

.feedback {
  padding: 40px 0;
  background: #09090d;
  position: relative;
  overflow: hidden;
}
.feedback::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.07),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.feedback-header {
  text-align: center;
  margin-bottom: 60px;
}

.feedback-header h2 {
  font-size: 36px;
  color: #ff2d2d;
  margin-bottom: 14px;
}

.feedback-header p {
  color: white;
  opacity: 0.8;
}
.feedback-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(15px);
}
.form-row {
  display: flex;
  gap: 30px;
}
.input-group {
  position: relative;
  margin-bottom: 35px;
  flex: 1;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  color: white;
  outline: none;
  font-size: 15px;
}

.input-group label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 14px;
  opacity: 0.6;
  transition: 0.3s ease;
  pointer-events: none;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -10px;
  font-size: 12px;
  color: #ff2d2d;
}
.feedback-btn {
  width: 100%;
  padding: 18px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #ff1e1e, #b30000);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.feedback-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255, 0, 0, 0.4);
}

.footer {
  padding-top: 30px;
  background: #07070b;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1000px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.06),
    transparent 70%
  );
  transform: translateX(-50%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col h4 {
  margin-bottom: 20px;
  color: #ff2d2d;
  font-size: 16px;
}

.footer-col p {
  opacity: 0.7;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  opacity: 0.8;
}
.footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
   position: relative;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #ff2d2d;
  transition: 0.3s;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer-col ul li a:hover {
  color: #ff2d2d;
}
.footer-bottom {
  text-align: center;
  padding: 30px 0;
  font-size: 13px;
  opacity: 0.6;
}

.reviews {
  padding: 30px 0;
  background: #0a0a0f;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.06),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.reviews-header {
  text-align: center;
  margin-bottom: 80px;
}

.reviews-header h2 {
  font-size: 36px;
  color: #ff2d2d;
  margin-bottom: 12px;
}

.reviews-header p {
  color: white;
  opacity: 0.8;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.review-card {
  padding: 45px 35px;
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}
.review-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 45, 45, 0.5);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}
.review-rating {
  color: #ff2d2d;
  font-size: 18px;
  margin-bottom: 20px;
}
.review-card p {
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 25px;
}
.review-author strong {
  display: block;
  font-size: 15px;
}

.review-author span {
  font-size: 13px;
  opacity: 0.6;
}
#scrollTopBtn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}
#scrollTopBtn:hover {
  background: #ff2d2d;
  border-color: #ff2d2d;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #ff1e1e, #b30000);
  z-index: 9999;
}
.service-card,
.destination-card,
.review-card,
.contact-card {
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
  .footer-bottom a{
    color:red;
  }
/* ================================================= */
/* =============== TABLET 769px–1024px ============== */
/* ================================================= */

@media (max-width: 1024px) {

  .hero-content {
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .about-showcase {
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ================================================= */
/* ================= MOBILE 320–768px ============== */
/* ================================================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .container {
    width: 92%;
  }

  /* HEADER */
  .header .container {
    justify-content: space-between;
  }

  .header .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #0f0f14;
    backdrop-filter: blur(20px);
    padding-top: 120px;
    transition: 0.4s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,0.6);
  }

  .header .nav.active {
    right: 0;
  }

  .header .nav ul {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
  }

  .burger span {
    width: 26px;
    height: 2px;
    background: white;
    transition: 0.3s;
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 140px 0 80px;
  }

  .hero-content {
    flex-direction: column;
    gap: 60px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-form {
    max-width: 100%;
    padding: 30px;
  }

  /* ABOUT */
  .about-showcase {
    flex-direction: column;
    gap: 50px;
  }

  .about-left h2 {
    font-size: 32px;
  }

  .about-stats-premium {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* DESTINATIONS */
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card img {
    height: 360px;
  }

  .destination-content {
    left: 25px;
    bottom: 25px;
  }

  /* WHY */
  .why-right {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 30px;
  }

  /* REVIEWS */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* CONTACTS */
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  /* FEEDBACK */
  .feedback-form {
    padding: 40px 25px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* SCROLL BTN */
  #scrollTopBtn {
    right: 20px;
    bottom: 20px;
  }
}


/* ================================================= */
/* ============ SMALL MOBILE 320–480px ============= */
/* ================================================= */

@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .section-label {
    font-size: 24px;
  }

  .contacts-header h2,
  .feedback-header h2,
  .reviews-header h2 {
    font-size: 28px;
  }

  .about-left h2 {
    font-size: 26px;
  }

  .destination-content h3 {
    font-size: 22px;
  }

}

