/* ============================================================
   landing.css — Public Landing Page Mobile-First & Islamic Luxury
   PT. Q-Ummat
   ============================================================ */

:root {
  --bg-dark-emerald: #0B2B22;
  --bg-card-emerald: #123E32;
  --bg-header-emerald: #071F18;
  --gold-primary: #D4AF37;
  --gold-bright: #F4D068;
  --gold-muted: #C5A059;
  --gold-text: #E5C158;
  --gold-border: rgba(212, 175, 55, 0.28);
  --gold-gradient: linear-gradient(135deg, #F4D068 0%, #D4AF37 50%, #B38B27 100%);
  --text-light: #FAFAFA;
  --text-muted: #C2D1C9;
}

/* Base Body Styles */
body {
  background-color: var(--bg-dark-emerald) !important;
  color: var(--text-light);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Headings Serif */
h1, h2, h3, .section-title, .hero__title {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
}

/* ============================================================
   CONTAINER & SECTION LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.section {
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--bg-header-emerald);
}

.section-light {
  background: var(--bg-dark-emerald);
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-header-emerald) 0%, var(--bg-dark-emerald) 100%);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-light);
  margin: 0 0 1rem 0;
  line-height: 1.25;
  background: linear-gradient(135deg, #FFFFFF 0%, #F4D068 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   HERO SECTION (ULTRA LUXURY)
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  padding: 5rem 0 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #071F18 0%, #123E32 50%, #0B2B22 100%);
  border-bottom: 1px solid var(--gold-border);
  box-sizing: border-box;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: #FAFAFA;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.5px;
}

.hero__title span {
  background: linear-gradient(135deg, #F4D068 0%, #D4AF37 50%, #E5C158 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__btn-primary {
  background: var(--gold-gradient);
  color: #071F18;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.hero__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
  color: #041410;
}

.hero__btn-outline {
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.hero__btn-outline:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #FFFFFF;
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.hero__stat-item {
  background: rgba(18, 62, 50, 0.6);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.hero__stat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.5);
}

.hero__stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   PAKET TRAVEL CARDS
   ============================================================ */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.paket-card {
  background: var(--bg-card-emerald);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.paket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

.paket-card.featured {
  background: linear-gradient(180deg, #164C3D 0%, #123E32 100%);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.25);
}

.paket-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #071F18;
  background: var(--gold-gradient);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.paket-card__name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.paket-card__duration {
  font-size: 0.88rem;
  color: var(--gold-text);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.paket-card__price {
  background: rgba(7, 31, 24, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.paket-card__price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.paket-card__price-value {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold-bright);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.paket-card__features {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-paket {
  width: 100%;
  padding: 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.btn-paket-gold {
  background: var(--gold-gradient);
  color: #071F18;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-paket-gold:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-paket-outline {
  background: transparent;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  color: var(--gold-bright);
}

.btn-paket-outline:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-bright);
  color: #FFFFFF;
}

/* ============================================================
   ALUR PEMESANAN (TIMELINE & STEPS)
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.step-item {
  background: var(--bg-card-emerald);
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
}

.step-item__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  color: #071F18;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.step-item__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-item__title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.step-item__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   KEUNGGULAN FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--bg-card-emerald);
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.feature-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}

.feature-card__title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   KALKULATOR BIAYA ESTIMATOR (INTERACTIVE CARD)
   ============================================================ */
.kalkulator-card {
  background: var(--bg-card-emerald);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 840px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.calc-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

.calc-select, .calc-input {
  width: 100%;
  background: rgba(7, 31, 24, 0.8);
  border: 1px solid var(--gold-border);
  color: var(--text-light);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.calc-select:focus, .calc-input:focus {
  border-color: var(--gold-bright);
}

.calc-result-box {
  background: rgba(7, 31, 24, 0.9);
  border: 1.5px solid var(--gold-primary);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
}

.calc-result-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin: 8px 0 16px 0;
}

/* ============================================================
   TESTIMONI CAROUSEL / CARDS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--bg-card-emerald);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
}

.testimonial-stars {
  color: var(--gold-bright);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #071F18;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.95rem;
}

.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--gold-text);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card-emerald);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  outline: none;
}

.faq-question i {
  font-size: 1.4rem;
  color: var(--gold-bright);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.landing-footer {
  background: var(--bg-header-emerald);
  border-top: 1px solid var(--gold-border);
  padding: 4.5rem 0 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand__name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.footer-brand__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.footer-social-link:hover {
  background: var(--gold-gradient);
  color: #071F18;
  transform: translateY(-2px);
}

.footer-col__title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.25rem;

}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--gold-bright);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
  .hero {
    padding: 4rem 0 3rem 0;
  }
  .hero__title {
    font-size: 2.1rem;
  }
  .kalkulator-card {
    padding: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
