* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  scroll-behavior: smooth;
}

header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  padding: 0 2rem;
  height: 100px;
}

.logo img {
  height: 90px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.4rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: 0.2s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #d4af37;
}

.hero-home {
  background: url('khalifahbg.png') center/cover no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  animation: fadeIn 1s ease-in-out;
}

.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-home .content {
  position: relative;
  z-index: 2;
}

.hero-home h1 {
  font-size: 3.5rem;
  color: #d4af37;
  font-weight: 800;
}

.hero-home p {
  font-size: 1.3rem;
  color: #eee;
  margin: 1.2rem 0 2.5rem;
  font-style: italic;
}

.btn {
  background: linear-gradient(135deg, #d4af37, #f0e68c);
  color: #111;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-4px);
}

.benefit-title {
  text-align: center;
  margin: 3rem 0 1rem;
  color: #d4af37;
  font-size: 2.2rem;
  font-weight: 800;
}

.features {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.features.vertical {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 2.3rem;
  border-radius: 14px;
  border-left: 5px solid #d4af37;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

.feature-card h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.feature-card ul {
  padding-left: 1.2rem;
}

.feature-card li {
  margin-bottom: 8px;
}

.feature-card.highlight {
  background: #fff9dd;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card.highlight p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.feature-card.highlight span {
  color: #b8962e;
  font-weight: 600;
}

.detail-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

.agent-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #d4af37;
}

.poster-paket {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('khalifahbgpaket.png') center/cover no-repeat;
  padding: 5rem 2rem;
}

.poster-title {
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
}

.poster-title h2 {
  font-size: 2.8rem;
  color: #ffd84d;
  font-weight: 800;
}

.poster-title .date {
  display: inline-block;
  margin: 1rem 0;
  background: #e74c3c;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
}

.poster-title p {
  font-style: italic;
}

.poster-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.poster-box {
  background: #fff;
  border-radius: 26px;
  padding: 2.5rem 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  position: relative;
}

.poster-box.eco {
  border: 4px solid #2ecc71;
}

.poster-box.reg {
  border: 4px solid #3498db;
}

.poster-box.superhemat {
  border: 4px solid #27c048;
}

.poster-badge {
  position: absolute;
  top: -18px;
  left: 20px;
  background: #e74c3c;
  color: #fff;
  padding: 0.45rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
}

.poster-name {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.poster-box.eco .poster-name {
  color: #27ae60;
}

.poster-box.reg .poster-name {
  color: #2980b9;
}

.poster-box.superhemat .poster-name {
  color: #29b952;
}


.poster-price {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 1.6rem;
  margin-bottom: 1.8rem;
}

.poster-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.poster-row span:last-child {
  font-weight: 900;
}

.poster-fasilitas h4 {
  margin-bottom: 0.6rem;
}

.poster-fasilitas ul {
  padding-left: 1.2rem;
  font-size: 0.95rem;
}

.poster-fasilitas li {
  margin-bottom: 0.4rem;
}

.poster-cta {
  display: block;
  margin-top: 1.8rem;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 900;
  text-decoration: none;
}

.poster-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #eee;
}

.other-paket {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('bismillahumroh.png') center/cover no-repeat;
  padding: 5rem 2rem;
}

.other-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.other-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: 0.3s ease;
  animation: fadeIn 1s ease-in-out;
}

.other-card:hover {
  transform: translateY(-8px);
}

.other-card img {
  width: 100%;
  height: auto;
  display: block;
}

.departure-section{
padding:80px 20px;
text-align:center;
}

.departure-section h2{
font-size:32px;
margin-bottom:40px;
}

.departure-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
}

.departure-card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.departure-card h3{
color:#27ae60;
margin-bottom:10px;
}

.departure-card a{
display:inline-block;
margin-top:15px;
padding:10px 18px;
background:#2ecc71;
color:white;
border-radius:25px;
text-decoration:none;
font-weight:bold;
}

.other-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.other-cta a {
  background: #2ecc71;
  color: #fff;
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.other-cta a:hover {
  background: #27ae60;
}

footer{
background:#111;
color:#aaa;
text-align:center;
padding:40px 20px;
font-size:14px;
margin-top:0;
position:relative;
z-index:5;
}

footer span{
color:#f1c40f;
font-weight:600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-home h1 {
    font-size: 2.2rem;
  }
}