/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f9fafb;
  color: #1f2937;
  padding-top: 64px;
}




/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  height: 60vh;
  min-height: 420px;
}
.slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.6s ease;
}
.slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}
.slide:nth-child(1) {
  background: linear-gradient(135deg, #047857, #10b981);
}
.slide:nth-child(2) {
  background: linear-gradient(135deg, #065f46, #34d399);
}
.slide:nth-child(3) {
  background: linear-gradient(135deg, #064e3b, #6ee7b7);
}
.hero-content {
  max-width: 600px;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 14px;
}
.hero p {
  font-size: 17px;
  opacity: 0.95;
}

/* ===== DOTS ===== */
.dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.dot.active {
  background: #ffffff;
}

/* ===== PACKAGES ===== */
.packages {
  padding: 80px 20px;
}
.package-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.package-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.package-btn {
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #047857;
  color: #047857;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
}
.package-btn:hover {
  background: #047857;
  color: #fff;
}

/* ===== PACKAGE DETAILS LAYOUT ===== */
.details-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

/* Sticky inquiry form */
.inquiry-box {
  position: sticky;
  top: 90px; /* below topbar */
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Left content card */
.details-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Mobile fallback */
@media (max-width: 900px) {
  .details-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-box {
    position: static;
    margin-top: 30px;
  }
}


/* ===== FOOTER ===== */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 60px 20px 30px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.footer-logo {
  font-size: 22px;
  font-weight: bold;
  color: #10b981;
}
.footer-bottom {
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
/* ===== FOOTER LINKS ===== */
footer a {
  color: #9ca3af;              /* soft gray to match footer text */
  text-decoration: none;       /* remove underline */
  transition: color 0.3s ease;
}

footer a:hover {
  color: #34d399;              /* Willow green */
  text-decoration: none;
}


/* ========= HEADER SECTION  ======= */

/* ======================================================
   HEADER – EXTRACTED FROM INLINE (STEP 2)
   ====================================================== */

/* ===== HEADER SAFE STYLES (NO LAYOUT) ===== */

.site-logo {
  font-size: 20px;
  font-weight: 700;
  color: #047857;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

.nav-link:hover {
  color: #047857;
}

.admin-btn {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #047857;
  color: #047857;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.admin-btn:hover {
  background: #047857;
  color: #ffffff;
}

.logout-btn {
  padding: 6px 14px;
  border-radius: 20px;
  background: #047857;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.menu-toggle {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #047857;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.mobile-nav a {
  padding: 16px 20px;
  text-decoration: none;
  color: #374151;
  font-weight: 600;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-nav a:hover {
  background: #f0fdf4;
  color: #047857;
}

/* offset for fixed header */
body {
  padding-top: 64px;
}



/* ===== HEADER FLEX SAFETY FIX ===== */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ====== END HEADER ========= */

header a.admin-btn,
header a.logout-btn {
  text-decoration: none;
}


/* ===== HEADER LINK RESET (FINAL POLISH) ===== */

/* Reset all links inside header */
header a {
  color: #374151;
  text-decoration: none;
}

/* Hover effect */
header a:hover {
  color: #047857;
  text-decoration: none;
}
