/* css/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1D1D1F;
  background: #FFFFFF;
  line-height: 1.6;
}

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

/* Header */
.header {
  background: white;
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  text-decoration: none;
  color: #1D1D1F;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  color: #0066FF;
  font-size: 1.5rem;
}

.btn-book {
  background: #0066FF;
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn-book:hover {
  background: #0052CC;
}

/* Hero */
.hero {
  padding: 80px 0;
  background: #F5F5F7;
}

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

.overline {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0066FF;
  margin-bottom: 12px;
  display: block;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #86868B;
  margin-bottom: 32px;
  max-width: 450px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0066FF;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  width: auto;
}

.btn-primary:hover {
  background: #0052CC;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,102,255,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #D1D1D6;
  color: #1D1D1F;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
}

.btn-outline:hover {
  border-color: #0066FF;
  color: #0066FF;
}

/* Hero Card */
.hero-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.badge {
  display: inline-block;
  background: #E8F0FE;
  color: #0066FF;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.hero-card p {
  color: #86868B;
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.hero-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #6E6E73;
  font-size: 0.9rem;
}

.hero-card ul li i {
  color: #34C759;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
}

/* Packages */
.packages {
  padding: 80px 0;
}

.packages h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.package-card {
  background: white;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.package-card.featured {
  border: 2px solid #0066FF;
}

.card-badge {
  display: inline-block;
  background: #F5F5F7;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.featured .card-badge {
  background: #E8F0FE;
  color: #0066FF;
}

.package-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.duration {
  color: #86868B;
  margin-bottom: 20px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.package-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #6E6E73;
  font-size: 0.9rem;
}

.package-card ul li i {
  color: #0066FF;
}

.card-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.card-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #86868B;
}

/* Footer */
.footer {
  background: #F5F5F7;
  padding: 32px 0;
  text-align: center;
  color: #86868B;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 48px 0;
  }
  
  .packages {
    padding: 48px 0;
  }
  
  .packages h2 {
    font-size: 1.8rem;
  }
  
  .package-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS FOR HERO SECTION YOUTUBE VIDEO */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-video {
  width: 100%;
  height: 400px; /* Adjust height as needed */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-video {
    height: 250px;
  }
}


/* CSS FOR HERO SECTION Email */

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
}

.logo img {
    height: 90px;
    width: auto;
    display: block;
}