/* ========== GLOBAL STYLES ========== */
:root {
  --green: #047857;     /* Emerald green */
  --gold: #d4af37;      /* Gold accent */
  --muted: #6b7280;
  --bg-light: #f9fafb;
  --font-main: 'Poppins', sans-serif;
}

body {
  margin-top: 8%;
  font-family: var(--font-main);
  background: var(--bg-light);
  color: #111827;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* ========== HERO SECTION ========== */
.hero-banner {
  position: relative;
  background: url('assets/img/kaaba-bg.jpg') center center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-banner .overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner h1 {
  font-size: 2.5rem;
}

.hero-banner p {
  font-size: 1.1rem;
}

/* ========== SEARCH CARD ========== */
.search-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  max-width: 800px;
}

.nav-tabs .nav-link {
  color: var(--green);
  font-weight: 500;
  border: none;
}

.nav-tabs .nav-link.active {
  background: var(--green);
  color: white;
  border-radius: 8px;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  font-weight: 600;
  transition: 0.3s ease;
  border: none;
}

.btn-gold:hover {
  background: #b89628;
  color: white;
}

.text-green { color: var(--green) !important; }
.text-gold { color: var(--gold) !important; }
.bg-green { background: var(--green) !important; }

/* ========== PACKAGE CARDS ========== */
.package-card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.package-card img {
  height: 220px;
  object-fit: cover;
}

.package-card .card-body {
  background: white;
  border-top: 2px solid var(--gold);
}

/* ========== SUBSCRIBE SECTION ========== */
.subscribe-section {
  background: url('assets/img/madinah-bg.jpg') center/cover no-repeat;
  position: relative;
  color: white;
}

.subscribe-section .overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(4, 120, 87, 0.8);
  z-index: 1;
}

.subscribe-section .container {
  position: relative;
  z-index: 2;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--green);
}

.footer a {
  transition: 0.3s;
}

.footer a:hover {
  color: var(--gold);
}

/* ========== MISC ========== */
blockquote {
  font-style: italic;
  color: var(--green);
}
.hero {
  position: relative;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.4)
  );
  z-index: 1;
}

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

.text-gold {
  color: #d4af37;
}

.btn-gold {
  background: #d4af37;
  color: #000;
  border: none;
}

.btn-gold:hover {
  background: #c39c2e;
  color: #000;
}

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 15px;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; top: 8px; }
  50% { opacity: 1; }
  100% { opacity: 0; top: 20px; }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }
  .hero {
    background: url('./assets/images/hero-poster.jpg') center/cover no-repeat;
  }
}
