:root {
  --green: #00794d;
  --dark-green: #005d3b;
  --light: #f6fff9;
  --text: #222;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

/* === NAVBAR === */
.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  position: relative;
  z-index: 1000;
}
.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  width: 45px;
  height: auto;
  object-fit: contain;
}
.logo-text strong {
  font-size: 1rem;
  color: #111;
}
.logo-text span {
  font-size: 0.8rem;
  color: #666;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--green);
  font-weight: 600;
}

/* BUTTON CTA */
.btn-cta {
  background: linear-gradient(90deg, #00a859, #00794d);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}
.btn-cta:hover {
  background: linear-gradient(90deg, #00994d, #006e44);
  transform: translateY(-1px);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.btn-light {
  background: #fff;
  color: var(--green);
}
.btn-light:hover {
  color: var(--dark-green);
}
.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green);
  color: white;
}
.btn-outline.white {
  border-color: #fff;
  color: #fff;
}
.btn-outline.white:hover {
  background: #fff;
  color: var(--green);
}

/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #333;
  cursor: pointer;
}

/* === HERO / DASHBOARD === */
.hero {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* biar gak blur */
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 15px;
}
.hero-inner h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero-inner p {
  font-size: 1.05rem;
  opacity: 0.95;
}
.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn {
  min-width: 150px;
}
.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d4f8d3;
  margin-bottom: 5px;
  display: inline-block;
}
.hero-metrics {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 20px 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  z-index: 1;
  backdrop-filter: blur(8px);
}
.metric {
  text-align: center;
}
.metric strong {
  display: block;
  font-size: 1.6rem;
}
.metric span {
  font-size: 0.9rem;
  opacity: 0.85;
}
.hero-visa,
.hero-blog,
.hero-article,
.hero-haji,
.hero-kontak {
  min-height: 460px;
  text-align: left;
  align-items: flex-end;
  padding-bottom: 120px;
}
.hero-blog .hero-inner,
.hero-visa .hero-inner,
.hero-haji .hero-inner,
.hero-kontak .hero-inner {
  text-align: left;
  align-items: flex-start;
}
.hero-article {
  min-height: 360px;
}
.hero-article .hero-inner {
  max-width: 800px;
  text-align: left;
}

/* SECTION */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}
.section-title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 10px;
}
.section-subtitle {
  text-align: center;
  color: gray;
  margin-bottom: 40px;
}

/* === PAKET UMROH === */
.paket {
  background: #fff;
  padding: 60px 20px;
}
.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.paket-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.paket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.paket-header {
  position: relative;
}
.paket-header img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.label-populer {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f4a100;
  color: #fff;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.paket-body {
  padding: 20px 22px 30px;
}
.paket-body h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #111;
}
.paket-body .durasi {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
}
.paket-body .harga {
  margin-bottom: 15px;
}
.paket-body .harga span {
  color: #888;
  font-size: 0.9rem;
}
.paket-body .harga h4 {
  color: var(--green);
  font-size: 1.5rem;
  margin: 3px 0;
}
.paket-body small {
  color: #666;
  font-size: 0.85rem;
}
.paket-info {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  margin: 12px 0;
  font-size: 0.9rem;
}
.paket-info p {
  margin: 5px 0;
}
.paket-body h5 {
  font-size: 1rem;
  color: #00794d;
  margin-top: 15px;
  margin-bottom: 10px;
}
.paket-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}
.paket-body li {
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.paket-body i {
  color: var(--green);
  margin-right: 8px;
}

/* Tombol */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  padding: 10px 0;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-bottom: 10px;
  width: 100%;
}
.btn-wa:hover {
  background: var(--dark-green);
}
.paket-card .btn-outline {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  border-radius: 6px;
}
.detail-buttons .btn-wa {
  width: auto;
  padding: 12px 24px;
}

/* DETAIL PACK */
.detail-pack {
  padding: 70px 0;
  background: #fff;
}
.detail-pack:nth-of-type(even) {
  background: var(--light);
}
.detail-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}
.detail-hero img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}
.detail-copy h2 {
  margin-bottom: 12px;
}
.paket-note {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 121, 77, 0.15);
  color: var(--green);
  font-weight: 600;
  margin-bottom: 12px;
}
.pill.soft {
  background: rgba(253, 230, 138, 0.5);
  color: #92400e;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
  margin-top: 16px;
}
.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0, 121, 77, 0.08);
}
.detail-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.detail-buttons .btn {
  padding: 12px 24px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.detail-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.detail-card h3 {
  margin-bottom: 12px;
  color: #0d4d33;
}
.detail-card h4 {
  margin: 16px 0 8px;
  color: #0f5132;
  font-size: 1rem;
}
.detail-card ul {
  list-style: none;
  padding-left: 18px;
  margin: 0;
}
.detail-card ul li {
  position: relative;
  margin-bottom: 8px;
  color: #4b5563;
}
.detail-card ul li::before {
  content: '\2022';
  position: absolute;
  left: -14px;
  color: var(--green);
}
.detail-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}/* POPULER BORDER */
.populer {
  border: 2px solid #f4a100;
}

/* TRUST SECTION */
.trust {
  background: var(--light);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.trust-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}
.trust-card i {
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 12px;
}
.trust-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.trust-card p {
  color: #555;
  font-size: 0.95rem;
}

/* PROSES */
.proses {
  background: #fff;
}
.proses-head {
  text-align: center;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.step {
  background: #f8fffb;
  border: 1px solid rgba(0, 121, 77, 0.15);
  border-radius: 16px;
  padding: 24px;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.step p {
  color: #555;
  font-size: 0.95rem;
}

/* TESTIMONI */
.testimoni {
  background: var(--light);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.testi-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testi-top img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-top h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.testi-top span {
  font-size: 0.85rem;
  color: #777;
}
.testi-card p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 13px;
}
.rating {
  color: #f6c343;
}

/* FAQ */
.faq {
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #fdfdfd;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555;
}
.faq-answer p {
  margin: 0 0 18px;
  font-size: 0.95rem;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 18px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* VISA PAGE */
.visa-types {
  background: #fff;
}
.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.visa-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}
.visa-card i {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 12px;
}
.visa-card ul {
  list-style: none;
  padding-left: 0;
  margin: 15px 0 0;
}
.visa-card li {
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.requirements {
  background: var(--light);
}
.requirement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.doc-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.doc-card h2 {
  margin: 6px 0 12px;
}
.doc-card ul {
  list-style: none;
  margin-top: 15px;
  padding-left: 0;
}
.doc-card li {
  margin-bottom: 10px;
  color: #444;
  font-size: 0.95rem;
}
.doc-card i {
  margin-right: 10px;
  color: var(--green);
}

/* BLOG */
.hero-blog .hero-actions,
.hero-article .hero-actions {
  justify-content: flex-start;
}
.blog-featured {
  background: #fff;
}
.featured-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.featured-media {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}
.featured-content {
  padding: 30px;
  color: #0f172a;
}
.badge {
  display: inline-block;
  background: rgba(0, 121, 77, 0.12);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}
.featured-content .meta {
  margin: 16px 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #637381;
}
.blog-list {
  background: var(--light);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}
.blog-card .cover {
  display: block;
  width: 100%;
  padding-top: 62%;
  background-size: cover;
  background-position: center;
}
.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-body .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-body .tags span {
  background: rgba(0, 121, 77, 0.12);
  color: var(--green);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 600;
}
.blog-body .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  font-size: 0.85rem;
}
.blog-body .readmore {
  color: var(--green);
  font-weight: 600;
}
.newsletter {
  background: #fff;
  text-align: center;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: center;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}
.newsletter .section-subtitle {
  max-width: 560px;
  margin: 0 auto 16px;
  color: #475467;
}
.article {
  background: #fff;
}
.article-inner {
  max-width: 850px;
  margin-inline: auto;
}
.article-inner h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}
.article-inner p,
.article-inner li {
  color: #4b5563;
}
.article-inner ul,
.article-inner ol {
  margin-left: 18px;
}
.article-inner blockquote {
  border-left: 4px solid var(--green);
  padding-left: 16px;
  font-style: italic;
  color: #1f2937;
  margin: 24px 0;
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 0.95rem;
}
.cost-table th,
.cost-table td {
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  text-align: left;
}
.cost-table th {
  background: var(--light);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.article-share .share-buttons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 121, 77, 0.1);
  color: var(--green);
}
.related {
  background: var(--light);
}

/* HAJI PAGE */
.haji-info {
  background: #fff;
}
.haji-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.haji-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.haji-card i {
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 10px;
}
.waitlist {
  background: var(--light);
}
.waitlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  align-items: start;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.waitlist-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #374151;
  font-size: 0.95rem;
}
.waitlist-form input,
.waitlist-form select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
}
.waitlist-form button {
  margin-top: 8px;
}
.waitlist-form small {
  color: #6b7280;
}

/* KONTAK PAGE */
.contact-info {
  background: #fff;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--light);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}
.info-card i {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 10px;
}
.info-card span {
  display: block;
  color: #6b7280;
  font-size: 0.9rem;
}
.contact-form {
  background: var(--light);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.contact-form form,
.form-side {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: #1f2937;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
}
.contact-form textarea {
  resize: vertical;
}
.form-side ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.form-side li {
  margin-bottom: 10px;
  color: #555;
}
.form-side i {
  color: var(--green);
  margin-right: 8px;
}
.map-section {
  background: #fff;
}
.map-embed {
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* === CTA === */
.cta {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.cta h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.cta p {
  opacity: 0.9;
}
.cta-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.floating-cta {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 90;
}
.floating-cta a {
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
  font-weight: 600;
  text-decoration: none;
}
.floating-cta a:hover {
  transform: translateY(-3px);
}
/* === FOOTER === */
.footer {
  background: #004f32;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 50px 20px;
}
.footer .col h4 {
  color: #f4d35e;
  margin-bottom: 10px;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 8px;
}
.footer a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}
.footer a:hover {
  opacity: 1;
}
.socials a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: white;
}
.footer-bottom {`n  text-align: center;`nbackground: #003f29;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #c8c8c8;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .paket-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .paket-card img {
    height: 200px;
  }
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .nav-links.show {
    display: flex;
  }
  .btn-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }

  .paket-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .paket-card img {
    height: 180px;
  }
  .hero-inner h1 {
    font-size: 2rem;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    width: 90%;
    padding: 15px;
  }
  .timeline,
  .testi-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-visa,
  .hero-blog,
  .hero-article,
  .hero-haji,
  .hero-kontak {
    padding-bottom: 80px;
    text-align: center;
    align-items: center;
  }
  .hero-visa .hero-inner,
  .hero-blog .hero-inner,
  .hero-article .hero-inner,
  .hero-haji .hero-inner,
  .hero-kontak .hero-inner {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .paket-grid {
    grid-template-columns: 1fr;
  }
  .paket-card img {
    height: 170px;
  }
  .paket-body h4 {
    font-size: 1.1rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .floating-cta {
    left: 15px;
    right: 15px;
  }
  .floating-cta a {
    width: 100%;
    justify-content: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  .waitlist-form,
  .contact-form form,
  .form-side {
    padding: 20px;
  }
}

/* TABUNGAN */
.tabungan {
  background: var(--light);
  padding: 70px 0;
}
.tabungan-head {
  text-align: center;
  margin-bottom: 40px;
}
.tabungan-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.tabungan-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.tabungan-card h3 {
  margin-bottom: 6px;
}
.tabungan-card h4 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #0d4d33;
}
.tabungan-card ul {
  list-style: none;
  padding-left: 18px;
  margin: 0;
}
.tabungan-card ul li {
  position: relative;
  margin-bottom: 8px;
  color: #4b5563;
  font-size: 0.95rem;
}
.tabungan-card ul li::before {
  content: '\2022';
  position: absolute;
  left: -14px;
  color: var(--green);
}
.tabungan-extra {
  margin-top: 30px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.tabungan-extra ul {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 0;
}
.tabungan-extra li {
  margin-bottom: 10px;
  color: #455a64;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.tabungan-extra i {
  color: var(--green);
  margin-top: 4px;
}
.tabungan-extra i.fa-xmark {
  color: #b91c1c;
}

/* VISA BRIEF */
.visa-brief {
  background: #fff;
  padding: 70px 0;
}
.visa-brief-head {
  text-align: center;
  margin-bottom: 30px;
}
.visa-brief-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.visa-brief-grid article {
  background: #f7fffb;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.visa-brief-grid h3 {
  margin-bottom: 10px;
}
.visa-brief-grid ul {
  list-style: none;
  padding-left: 18px;
  margin: 0;
}
.visa-brief-grid li {
  color: #4b5563;
  margin-bottom: 8px;
  position: relative;
}
.visa-brief-grid li::before {
  content: '\2022';
  position: absolute;
  left: -14px;
  color: var(--green);
}
@media (max-width: 768px) {
  .detail-meta span {
    width: 100%;
    justify-content: flex-start;
  }
  .detail-buttons {
    flex-direction: column;
  }
  .detail-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}



/* Footer bottom center fix */
.footer-bottom, .footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 14px 0;
}

/* Footer bottom unified */
.footer-bottom {
  background: #fff;
  color: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px 0;
  width: 100%;
}
.footer-bottom .container {
  width: 100%;
  text-align: center;
  padding: 0;
}
/* === Footer Bottom Consistent === */
.footer-bottom {
  background: #fff;
  color: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  width: 100%;
}
.footer-bottom .container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
