/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #1c2331;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(7, 18, 34, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
  padding: 5px;
}

.logo-box h1 {
  font-size: 20px;
  line-height: 1.1;
}

.logo-box span {
  font-size: 13px;
  color: #f7c948;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.navbar a:hover {
  color: #f7c948;
}

.nav-whatsapp {
  background: #19b76b;
  padding: 10px 16px;
  border-radius: 999px;
}

.nav-whatsapp:hover {
  color: #ffffff !important;
  background: #0f9a58;
}

.nav-youtube {
  background: #e62117;
  padding: 10px 16px;
  border-radius: 999px;
}

.nav-youtube:hover {
  color: #ffffff !important;
  background: #c81710;
}

.menu-btn {
  display: none;
  background: none;
  color: #ffffff;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background: #071222;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 12, 24, 0.86), rgba(3, 12, 24, 0.42), rgba(3, 12, 24, 0.18)),
    linear-gradient(0deg, rgba(3, 12, 24, 0.55), transparent);
}

.slide-content {
  position: absolute;
  z-index: 3;
  top: 52%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 650px;
  color: #ffffff;
}

.slide-content span {
  display: inline-block;
  background: rgba(247, 201, 72, 0.18);
  color: #f7c948;
  padding: 8px 18px;
  border: 1px solid rgba(247, 201, 72, 0.4);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}

.slide-content h2 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.slide-content p {
  font-size: 18px;
  max-width: 580px;
  color: #e9eef7;
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-block;
  background: #f7c948;
  color: #071222;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(247, 201, 72, 0.25);
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  background: #ffffff;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.slide-btn:hover {
  background: #f7c948;
  color: #071222;
}

.prev {
  left: 28px;
}

.next {
  right: 28px;
}

.dots {
  position: absolute;
  z-index: 6;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.dot.active {
  background: #f7c948;
}

/* Sections */
.section {
  padding: 95px 0;
}

.section-label {
  display: inline-block;
  color: #f0a500;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-title h2,
.about-grid h2,
.youtube-box h2,
.contact-grid h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #071222;
}

.section-title p,
.about-grid p,
.youtube-box p,
.contact-grid p {
  color: #5c6675;
  font-size: 17px;
}

/* About */
.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 45px;
  align-items: center;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.about-points div {
  background: #f5f7fb;
  padding: 15px;
  border-radius: 16px;
  font-weight: 700;
  color: #071222;
}

.about-image-box {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7, 18, 34, 0.18);
}

.about-image-box img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

/* Services */
.services-section {
  background: #f5f7fb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(7, 18, 34, 0.08);
  transition: 0.3s ease;
  scroll-margin-top: 100px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(7, 18, 34, 0.14);
}

.service-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #071222;
}

.service-content p {
  color: #5c6675;
  margin-bottom: 20px;
}

.service-content a {
  display: inline-block;
  color: #071222;
  background: #f7c948;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.3s ease;
}

.service-content a:hover {
  background: #071222;
  color: #ffffff;
}

/* YouTube */
.youtube-section {
  background: #071222;
  color: #ffffff;
}

.youtube-box {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 35px;
  align-items: center;
}

.youtube-box h2 {
  color: #ffffff;
}

.youtube-box p {
  color: #dce5f4;
}

.youtube-btn {
  display: inline-block;
  margin-top: 25px;
  background: #e62117;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.3s ease;
}

.youtube-btn:hover {
  background: #ffffff;
  color: #e62117;
}

.youtube-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 35px;
  border-radius: 26px;
}

.youtube-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.youtube-card a {
  display: inline-block;
  color: #f7c948;
  font-weight: 800;
  margin-top: 18px;
}

/* Contact */
.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.contact-list {
  margin-top: 22px;
}

.contact-list p {
  margin-bottom: 8px;
}

.contact-card {
  background: linear-gradient(145deg, #071222, #102a47);
  color: #ffffff;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(7, 18, 34, 0.22);
}

.contact-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-card p {
  color: #e4edf8;
  margin-bottom: 25px;
}

.main-whatsapp,
.main-youtube {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  margin-top: 12px;
}

.main-whatsapp {
  background: #19b76b;
  color: #ffffff;
}

.main-youtube {
  background: #e62117;
  color: #ffffff;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  background: #19b76b;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(25, 183, 107, 0.35);
}

/* Footer */
.footer {
  background: #050b14;
  color: #dbe4f2;
  padding: 28px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #071222;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 6%;
    gap: 18px;
    display: none;
  }

  .navbar.active {
    display: flex;
  }

  .hero {
    min-height: 700px;
  }

  .slide-content {
    left: 6%;
    right: 6%;
  }

  .about-grid,
  .youtube-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-btn {
    display: none;
  }
}

@media (max-width: 650px) {
  .logo-box h1 {
    font-size: 16px;
  }

  .logo-box span {
    font-size: 11px;
  }

  .logo-img {
    width: 48px;
    height: 48px;
  }

  .slide-content h2 {
    font-size: 38px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 75px 0;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 14px;
  }
}
.top-booking-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: #f5f9ff;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 700;
  z-index: 10;
  position: relative;
}

.top-booking-bar a {
  text-decoration: none;
  color: #061326;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.top-booking-bar a:hover {
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .top-booking-bar {
    gap: 10px;
    padding: 10px;
  }

  .top-booking-bar a {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}
.contact-number-line {
  font-size: 18px;
  margin: 10px 0;
}

.contact-number-line a {
  color: #0b7a3b;
  font-weight: 800;
  text-decoration: none;
}

.contact-number-line a:hover {
  text-decoration: underline;
}