/* PT Umroh Mastery Konsultindo - umrohmastery.com */
:root {
  --navy: #1a3a5c;
  --navy-dark: #102740;
  --navy-light: #e9eef4;
  --gold: #c9a84c;
  --gold-light: #f5edd9;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #5c5c5c;
  --shadow: 0 10px 30px rgba(16, 39, 64, 0.12);
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--navy-dark);
  margin-top: 0;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Top bar ===== */
.topbar {
  background: var(--navy-dark);
  color: var(--gold-light);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.topbar a { color: var(--gold-light); }
.topbar span { margin-right: 18px; }

/* ===== Header / Nav ===== */
header.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand .brand-name {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-dark);
}
.brand .brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--navy);
}
nav.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

/* ===== Dropdown nav (Produk) ===== */
.nav-dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dropdown-toggle .caret {
  font-size: 0.7em;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover .dropdown-toggle .caret,
.nav-dropdown.open .dropdown-toggle .caret {
  transform: rotate(180deg);
}
.dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 10px;
  z-index: 150;
  gap: 2px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: flex;
}
.dropdown-menu a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: var(--navy-light);
  color: var(--navy);
}
.dropdown-menu .dropdown-soon {
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.78em;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--navy-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy-dark);
}
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-block { display: block; width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--navy-dark);
  border-radius: 2px;
}

/* ===== Hero / Coming soon ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 65%);
  color: var(--white);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(201,168,76,0.25), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(201,168,76,0.18), transparent 40%);
}
.hero .container { position: relative; z-index: 2; text-align: center; }
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero h1 .gold-text { color: var(--gold); }
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 38px auto;
  color: var(--gold);
  max-width: 260px;
}
.ornament-divider::before,
.ornament-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.5);
}

.coming-soon-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 10px;
}
.coming-soon-card h3 {
  color: var(--gold-light);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.coming-soon-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.coming-soon-contacts div {
  text-align: left;
}
.coming-soon-contacts strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.coming-soon-contacts span,
.coming-soon-contacts a {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}
.coming-soon-contacts a:hover { color: var(--gold); }

/* ===== Page header (for non-home pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.85); margin: 0; }
.breadcrumb {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gold-light);
}
.breadcrumb a { color: var(--gold-light); text-decoration: underline; }

/* ===== Sections ===== */
section { padding: 70px 0; }
.section-alt { background: var(--navy-light); }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
}
.section-head .tag {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 2rem; margin-bottom: 12px; }
.section-head p { color: var(--text-light); margin: 0; }

/* ===== Product Cards ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 14px;
}
.badge-sandbox,
.badge-comingsoon {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.badge-sandbox {
  background: var(--navy-light);
  color: var(--text-light);
}
.badge-comingsoon {
  background: var(--gold-light);
  color: var(--navy-dark);
  font-weight: 700;
}
.product-card h3 { margin: 0 0 12px; font-size: 1.25rem; }
.product-card p { color: var(--text-light); margin-bottom: 26px; }
.product-card .btn { margin-top: auto; }
.btn-green {
  background: #1f8a4c;
  color: var(--white);
}
.btn-green:hover { background: #166b3a; }

.product-card--soon {
  background: var(--navy-light);
  border-color: #cfcfcf;
  opacity: 0.75;
}
.product-card--soon:hover { opacity: 0.9; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 22px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-info-item h4 { margin: 0 0 4px; font-size: 0.95rem; }
.contact-info-item p, .contact-info-item a { margin: 0; color: var(--text-light); font-size: 0.92rem; }

.whatsapp-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  color: var(--white);
  text-align: center;
}
.whatsapp-card h3 { color: var(--white); margin-bottom: 10px; }
.whatsapp-card p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebc59; }

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}
.map-box iframe { width: 100%; height: 320px; border: 0; }

/* ===== Content pages (visa / hotel / konsultasi) ===== */
.content-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
}
.feature-card .ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feature-card h4 { margin: 0 0 8px; font-size: 1rem; }
.feature-card p { margin: 0; color: var(--text-light); font-size: 0.92rem; }

.process-steps {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 16px;
}
.process-steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
}
.process-steps .num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-family: 'Poppins', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-steps h4 { margin: 0 0 4px; font-size: 0.98rem; }
.process-steps p { margin: 0; color: var(--text-light); font-size: 0.9rem; }

/* ===== Legal pages ===== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; font-size: 1.35rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 24px; font-size: 1.05rem; color: var(--navy); }
.legal-content p, .legal-content li { color: var(--text-light); }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content strong { color: var(--text); }
.updated-note {
  background: var(--navy-light);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--navy-dark);
  margin-bottom: 30px;
  display: inline-block;
}
.legal-toc {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 40px;
}
.legal-toc strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-dark);
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 30px;
}
.legal-toc a { color: var(--navy); font-weight: 600; }
.legal-toc a:hover { color: var(--gold); text-decoration: underline; }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.footer-brand .brand-name { color: var(--white); font-family: 'Poppins', Arial, sans-serif; font-weight: 700; font-size: 1.2rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; margin: 0 0 12px; color: rgba(255,255,255,0.8); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-toc ol { columns: 1; }
}
@media (max-width: 760px) {
  nav.main-nav, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  nav.main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  }
  .navbar { position: relative; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    padding: 4px 0 0 14px;
    min-width: auto;
  }
  .nav-dropdown.open .dropdown-menu { display: flex; }
  .hero { padding: 80px 0 70px; }
  .hero h1 { font-size: 1.8rem; }
  .coming-soon-contacts { flex-direction: column; gap: 18px; align-items: center; text-align: center; }
  .coming-soon-contacts div { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .topbar .container { flex-direction: column; gap: 2px; }
}
