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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
}

/* ===================== SCROLLBAR ===================== */

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#050505;
}

::-webkit-scrollbar-thumb{
  background:#58a6ff;
  border-radius:20px;
}

/* ===================== HEADER ===================== */

header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:18px 7%;

  background:rgba(5,5,5,0.72);

  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.06);

  transition:0.35s ease;
}

header.scrolled{
  background:rgba(5,5,5,0.92);

  padding:14px 7%;

  box-shadow:
  0 0 35px rgba(0,0,0,0.35);
}

.logo{
  font-size:1.55rem;
  font-weight:700;
  color:#58a6ff;
  letter-spacing:1px;
}

.menu-btn{
  display:none;
  font-size:2rem;
  cursor:pointer;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:500;

  position:relative;

  transition:0.3s;
}

nav a::after{
  content:'';

  position:absolute;

  left:0;
  bottom:-6px;

  width:0%;
  height:2px;

  background:#58a6ff;

  transition:0.3s;
}

nav a:hover{
  color:#58a6ff;
}

nav a:hover::after{
  width:100%;
}

/* ===================== HERO ===================== */

.hero{
  position:relative;

  height:100vh;
  width:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  overflow:hidden;

  background:
  linear-gradient(
  rgba(0,0,0,0.45),
  rgba(0,0,0,0.72)
  ),
  url("hero.jpg")
  center center / cover no-repeat;
}

.hero::before{
  content:'';

  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top,
  rgba(88,166,255,0.15),
  transparent 50%);
}

.hero::after{
  content:'';

  position:absolute;

  left:0;
  bottom:0;

  width:100%;
  height:180px;

  background:
  linear-gradient(
  to bottom,
  transparent,
  #050505
  );
}

.hero-content{
  position:relative;
  z-index:2;

  max-width:950px;

  padding:20px;
}

.tag{
  display:inline-block;

  padding:10px 18px;

  border-radius:999px;

  background:rgba(88,166,255,0.10);

  border:1px solid rgba(88,166,255,0.25);

  color:#58a6ff;

  margin-bottom:28px;

  font-size:0.9rem;

  backdrop-filter:blur(12px);
}

.hero h1{
  font-size:4.3rem;

  line-height:1.1;

  margin-bottom:24px;

  color:#ffffff;

  font-weight:700;

  text-shadow:
  0 4px 25px rgba(0,0,0,0.45);
}

.hero p{
  font-size:1.15rem;

  color:#f1f1f1;

  line-height:1.9;

  max-width:760px;

  margin:auto;

  text-shadow:
  0 2px 18px rgba(0,0,0,0.4);
}

.hero-buttons{
  margin-top:40px;
}

/* ===================== BUTTONS ===================== */

.btn{
  display:inline-block;

  padding:15px 30px;

  border-radius:16px;

  text-decoration:none;

  font-weight:600;

  margin:10px;

  background:#58a6ff;

  color:white;

  transition:0.3s ease;
}

.btn:hover{
  transform:translateY(-6px);

  box-shadow:
  0 0 35px rgba(88,166,255,0.35);
}

.ghost{
  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.12);
}

/* ===================== CARDS ===================== */

.cards-section,
.reviews-section{
  padding:120px 7%;

  text-align:center;
}

.cards-section h2,
.reviews-section h2{
  font-size:3rem;

  margin-bottom:70px;
}

.grid,
.reviews-grid,
.pricing-cards,
.booking-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap:30px;
}

.card,
.review-card,
.pricing-card,
.booking-card{
  padding:38px;

  border-radius:28px;

  background:
  linear-gradient(
  180deg,
  rgba(255,255,255,0.07),
  rgba(255,255,255,0.025)
  );

  border:1px solid rgba(255,255,255,0.07);

  backdrop-filter:blur(14px);

  transition:0.35s ease;
}

.card:hover,
.review-card:hover,
.pricing-card:hover,
.booking-card:hover{
  transform:translateY(-10px);

  border-color:rgba(88,166,255,0.4);

  box-shadow:
  0 0 45px rgba(88,166,255,0.16);
}

.card h3,
.booking-card h3{
  color:#58a6ff;

  margin-bottom:18px;

  font-size:1.5rem;
}

.card p,
.review-card p,
.booking-card p{
  color:#d7d7d7;

  line-height:1.8;
}

/* ===================== PRICING ===================== */

.pricing{
  min-height:100vh;

  padding:160px 7% 110px;

  text-align:center;

  background:
  radial-gradient(circle at top,
  rgba(88,166,255,0.10),
  transparent 40%);
}

.pricing-top{
  max-width:760px;

  margin:auto;

  margin-bottom:75px;
}

.pricing h2{
  font-size:3.2rem;

  margin-bottom:20px;
}

.pricing-top p{
  color:#d4d4d4;

  line-height:1.9;
}

.pricing-card{
  position:relative;

  text-align:left;
}

.badge{
  position:absolute;

  top:20px;
  right:20px;

  padding:8px 15px;

  border-radius:999px;

  background:#58a6ff;

  color:white;

  font-size:0.8rem;

  font-weight:600;
}

.icon-box{
  width:68px;
  height:68px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:20px;

  margin-bottom:28px;

  background:rgba(88,166,255,0.12);

  border:1px solid rgba(88,166,255,0.2);
}

.icon-box i{
  width:32px;
  height:32px;

  color:#58a6ff;
}

.pricing-card h3{
  font-size:1.45rem;

  margin-bottom:22px;
}

.pricing-card ul{
  list-style:none;
}

.pricing-card li{
  margin:13px 0;

  color:#d7d7d7;

  line-height:1.7;
}

.price{
  margin-top:30px;

  font-size:2.3rem;

  font-weight:700;

  color:#58a6ff;
}

/* ===================== ABOUT ===================== */

.about{
  position:relative;

  min-height:100vh;

  padding:160px 7% 120px;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;
}

.about-bg{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
  rgba(0,0,0,0.65),
  rgba(0,0,0,0.82)
  ),
  url("about-bg.jpg")
  center center / cover no-repeat;

  filter:brightness(0.9);
}

.about-box{
  position:relative;
  z-index:2;

  max-width:850px;

  padding:60px;

  border-radius:32px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(18px);

  box-shadow:
  0 0 45px rgba(0,0,0,0.25);
}

.about h2{
  font-size:3rem;

  margin-bottom:25px;

  color:#58a6ff;
}

.about p{
  color:#e0e0e0;

  line-height:2;

  margin-bottom:22px;
}

/* ===================== CONTACT ===================== */

.contact{
  padding:160px 25px 120px;

  text-align:center;
}

.contact h2{
  font-size:3rem;

  margin-bottom:60px;
}

.contact-box,
.booking-form-box{
  max-width:800px;

  margin:auto;

  padding:55px;

  border-radius:30px;

  background:
  linear-gradient(
  180deg,
  rgba(255,255,255,0.07),
  rgba(255,255,255,0.025)
  );

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(16px);
}

.contact-box p{
  margin:24px 0;

  font-size:1.1rem;

  color:#e0e0e0;
}

/* ===================== BOOKING ===================== */

.booking-hero{
  position:relative;

  min-height:70vh;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:140px 7% 100px;

  background:
  linear-gradient(
  rgba(0,0,0,0.5),
  rgba(0,0,0,0.75)
  ),
  url("hero.jpg")
  center center / cover no-repeat;
}

.booking-content{
  position:relative;
  z-index:2;

  max-width:850px;
}

.booking-content h1{
  font-size:4rem;

  margin-bottom:25px;
}

.booking-content p{
  color:#e0e0e0;

  line-height:1.9;

  font-size:1.1rem;
}

.booking-services{
  padding:100px 7%;
}

.booking-badge{
  display:inline-block;

  padding:10px 16px;

  border-radius:999px;

  background:rgba(88,166,255,0.1);

  border:1px solid rgba(88,166,255,0.2);

  color:#58a6ff;

  font-size:0.9rem;
}

.booking-form-section{
  padding:20px 7% 120px;
}

.booking-form-box h2{
  text-align:center;

  margin-bottom:40px;

  font-size:2.5rem;
}

.booking-form-box form{
  display:flex;
  flex-direction:column;

  gap:18px;
}

.booking-form-box input,
.booking-form-box textarea,
.booking-form-box select{
  width:100%;

  padding:16px 18px;

  border-radius:14px;

  border:1px solid rgba(255,255,255,0.08);

  background:rgba(255,255,255,0.04);

  color:white;

  font-family:'Poppins',sans-serif;

  outline:none;

  transition:0.3s;
}

.booking-form-box input:focus,
.booking-form-box textarea:focus,
.booking-form-box select:focus{
  border-color:#58a6ff;

  box-shadow:
  0 0 20px rgba(88,166,255,0.18);
}

.booking-form-box textarea{
  resize:vertical;

  min-height:140px;
}

.booking-form-box select option{
  background:#111;
}

/* ===================== REVIEWS ===================== */

.stars{
  color:#58a6ff;

  font-size:1.35rem;

  margin-bottom:18px;
}

.review-card span{
  color:#9b9b9b;

  font-size:0.95rem;
}

.featured-review{
  border-color:rgba(88,166,255,0.3);

  box-shadow:
  0 0 45px rgba(88,166,255,0.1);
}

.reviews-btn{
  display:inline-block;

  margin-top:55px;

  padding:16px 32px;

  border-radius:16px;

  background:#58a6ff;

  color:white;

  text-decoration:none;

  font-weight:600;

  transition:0.3s;
}

.reviews-btn:hover{
  transform:translateY(-6px);

  box-shadow:
  0 0 35px rgba(88,166,255,0.35);
}

/* ===================== FOOTER ===================== */

footer{
  padding:35px;

  text-align:center;

  border-top:1px solid rgba(255,255,255,0.08);

  color:#8a8a8a;
}

/* ===================== SCROLL REVEAL ===================== */

.hidden{
  opacity:0;

  transform:translateY(40px);

  transition:all 1s ease;
}

.show{
  opacity:1;

  transform:translateY(0);
}

/* ===================== MOBILE ===================== */

@media(max-width:768px){

  .menu-btn{
    display:block;
  }

  nav{
    position:absolute;

    top:80px;
    right:20px;

    flex-direction:column;

    background:#0d0d0d;

    padding:22px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,0.08);

    display:none;
  }

  nav.active{
    display:flex;
  }

  .hero h1,
  .booking-content h1{
    font-size:2.7rem;
  }

  .hero p,
  .booking-content p{
    font-size:1rem;
  }

  .cards-section h2,
  .reviews-section h2,
  .pricing h2,
  .about h2,
  .contact h2,
  .booking-form-box h2{
    font-size:2.2rem;
  }

  .about-box,
  .contact-box,
  .pricing-card,
  .card,
  .review-card,
  .booking-card,
  .booking-form-box{
    padding:30px;
  }

  .pricing{
    padding-top:140px;
  }
}
