@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,700&display=swap');

:root {
  --primary: #8B1A1A;
  --primary-dark: #6b1414;
  --primary-light: #a82323;
  --gold: #C9A84C;
  --gold-light: #e8c96a;
  --gold-dark: #a8882a;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --text: #2d2d2d;
  --text-muted: #6c757d;
  --bg-light: #fafafa;
  --bg-section: #f8f4f0;
  --white: #ffffff;
  --border: rgba(139, 26, 26, 0.1);
  --shadow-sm: 0 2px 20px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.35);
  --shadow-red: 0 8px 30px rgba(139, 26, 26, 0.3);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::selection {
  background: var(--primary);
  color: white;
}

::-moz-selection {
  background: var(--primary);
  color: white;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

/* ══════════════════════════════════════════
   NAVBAR & TOP BAR
══════════════════════════════════════════ */
.top-bar {
  background: #0d0a17;
  color: rgba(255, 255, 255, 0.75);
  height: 44px;
  line-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1030;
  font-size: 13px;
}

.text-gold-light {
  color: var(--gold-light) !important;
}

.top-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
}

.top-link:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.navbar-custom {
  position: fixed;
  top: 44px;
  /* Height of Top Bar */
  left: 0;
  right: 0;
  z-index: 1020;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

@media (max-width: 991px) {
  .navbar-custom {
    top: 0;
    padding: 10px 0;
    background: transparent;
    box-shadow: none;
  }
}

.navbar-custom.scrolled {
  background: white;
  top: 0;
  padding: 10px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.navbar-custom.scrolled .nav-link {
  color: var(--dark);
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.navbar-custom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  transition: var(--transition);
}

.navbar-custom.scrolled .container {
  padding: 8px 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  box-shadow: var(--shadow-red);
  flex-shrink: 0;
  transition: var(--transition);
}

.navbar-custom.scrolled .brand-icon {
  box-shadow: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.3px;
  transition: var(--transition);
}

@media (max-width: 991px) {
  .navbar-custom .brand-name {
    color: white;
  }
}

.navbar-custom.scrolled .brand-name {
  color: var(--primary);
}

.brand-sub {
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

@media (max-width: 991px) {
  .navbar-custom .brand-sub {
    color: rgba(255, 255, 255, 0.75);
  }
}

.navbar-custom.scrolled .brand-sub {
  color: var(--text-muted);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar-custom.scrolled .nav-link {
  color: var(--text) !important;
}

.nav-link:hover {
  color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-custom.scrolled .nav-link:hover {
  color: var(--primary) !important;
  background: rgba(139, 26, 26, 0.06);
}

.btn-nav-wa {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-nav-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45) !important;
  color: white !important;
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-custom.scrolled .navbar-toggler {
  border-color: var(--primary);
}

.navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 991px) {
  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
  }

  .navbar-toggler-icon {
    filter: invert(1);
  }
}

.navbar-custom.scrolled .navbar-toggler-icon {
  filter: none;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fdfcfb;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(139, 26, 26, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B1A1A' fill-opacity='0.015'%3E%3Cpath d='M50 50v-5h-3v5h-5v3h5v5h3v-5h5v-3h-5zm0-40V5h-3v5h-5v3h5v5h3v-5h5v-3h-5zM10 50v-5H7v5H2v3h5v5h3v-5h5v-3h-5zM10 10V5H7v5H2v3h5v5h3v-5h5v-3h-5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}



/* Gradient fade bawah hero — tampilan default home page */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, white);
  z-index: 3;
  pointer-events: none;
}

/* Hero shape divider — untuk page headers (bukan home hero, sudah pakai ::after) */
.hero-shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 0 60px;
  width: 100%;
}

@media (max-width: 991px) {
  .hero-content {
    padding: 100px 0 60px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 26, 26, 0.04);
  border: 1px solid rgba(139, 26, 26, 0.12);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--gold);
}

.hero-section.has-bg-image .hero-badge,
.hero-section.has-bg-preset .hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--hero-text-color, white);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(1.85rem, 9.5vw, 3.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-section.has-bg-image .hero-title,
.hero-section.has-bg-preset .hero-title {
  color: var(--hero-text-color, white);
}

.text-gold {
  color: var(--gold);
}

.text-maroon {
  color: var(--primary);
}

.hero-subtitle {
  font-size: clamp(14px, 4.5vw, 17px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-section.has-bg-image .hero-subtitle,
.hero-section.has-bg-preset .hero-subtitle {
  color: var(--hero-text-color, rgba(255, 255, 255, 0.9));
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 24px 34px;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.hero-section.has-bg-image .hero-stats,
.hero-section.has-bg-preset .hero-stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-section.has-bg-image .stat-label,
.hero-section.has-bg-preset .stat-label {
  color: var(--hero-text-color, white);
  opacity: 0.8;
}

.hero-section.has-bg-image .stat-divider,
.hero-section.has-bg-preset .stat-divider {
  background: rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  padding: 0 28px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  padding-right: 0;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: clamp(10px, 3vw, 12px);
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.06);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  border: none;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.3px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(201, 168, 76, 0.55);
  color: var(--dark) !important;
}

.btn-outline-gold {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--primary);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.hero-section.has-bg-image .btn-outline-gold,
.hero-section.has-bg-preset .btn-outline-gold {
  color: white !important;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-section.has-bg-image .btn-outline-gold:hover,
.hero-section.has-bg-preset .btn-outline-gold:hover {
  background: white;
  color: var(--dark) !important;
  border-color: white;
}

/* Hero floating cards */
.hero-card-float {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 24px;
}

.hero-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: floatCard 3s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hero-section.has-bg-image .hero-card,
.hero-section.has-bg-preset .hero-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.15);
}

.hero-card:nth-child(2) {
  animation-delay: 1s;
}

.hero-card:nth-child(3) {
  animation-delay: 2s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px) scale(1.02);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.card-info strong {
  display: block;
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.card-info span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 145px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 22px;
  text-decoration: none;
  transition: var(--transition);
}

.hero-scroll a:hover {
  color: var(--gold);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
section {
  padding: 96px 0;
}

.section-header {
  margin-bottom: 52px;
}

.section-badge {
  display: inline-block;
  background: rgba(139, 26, 26, 0.06);
  color: var(--primary);
  border: 1.5px solid rgba(139, 26, 26, 0.1);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.65rem, 8vw, 2.9rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.section-subtitle {
  font-size: clamp(13px, 4vw, 16px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.page-header-premium {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .page-header-premium {
    padding: 110px 0 60px !important;
  }
}

.page-header-premium .header-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  color: #C9A84C;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: var(--transition);
}

.page-header-premium h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-header-premium .breadcrumb-item,
.page-header-premium .breadcrumb-item a {
  font-size: 14px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .page-header-premium .header-badge {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .page-header-premium h1 {
    font-size: 22px !important;
    margin-bottom: 8px;
  }

  .page-header-premium .breadcrumb-item,
  .page-header-premium .breadcrumb-item a {
    font-size: 11px !important;
  }
}

/* ══════════════════════════════════════════
   PACKAGE CARDS — PREMIUM
══════════════════════════════════════════ */
.section-packages {
  background: var(--bg-light);
}

.package-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .package-filter {
    gap: 6px;
    margin-bottom: 30px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 13px;
    flex: 1 1 auto;
    text-align: center;
  }

  section {
    padding: 60px 0;
  }

  /* Optimized input sizes for mobile */
  .input-group-lg .form-control,
  .input-group-lg .input-group-text {
    font-size: 14px !important;
    padding: 12px 15px !important;
  }

  .input-group-lg .form-control::placeholder {
    font-size: 14px !important;
  }
}

.filter-btn {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.08);
  color: var(--text-muted);
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

/* ── PACKAGE CARD ── */
.package-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
  border-color: rgba(139, 26, 26, 0.12);
}

.package-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background-color: #ffffff;
  overflow: hidden;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   DESKTOP & LAPTOP VIEW SCALING (90%)
   Berlaku untuk PC dan Laptop (layar lebar)
══════════════════════════════════════════ */
@media (min-width: 1025px) {
  body {
    zoom: 90%;
    /* Gunakan zoom untuk scaling browser-level yang akurat di Chrome/Edge */
  }
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.package-card:hover .package-image img {
  transform: scale(1.1);
}

/* Gradient overlay on image */
.package-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.package-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 60%, #c9a84c);
  position: relative;
}

.package-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.package-image-placeholder i {
  font-size: 52px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.package-image-placeholder span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.badge-umroh {
  background: rgba(139, 26, 26, 0.88);
  color: white;
}

.badge-haji {
  background: rgba(201, 168, 76, 0.92);
  color: var(--dark);
}

.badge-haji_plus {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white;
}

.package-quota-warning {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ff4757;
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.package-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.4;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.package-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  background: #f8f4f0;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.package-meta i {
  color: var(--primary);
  font-size: 11px;
}

.package-departure {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(139, 26, 26, 0.04);
  border-radius: 10px;
  border-left: 3px solid var(--primary);
}

.package-departure i {
  color: var(--primary);
}

.package-departure strong {
  color: var(--primary);
}

/* Price block */
.package-price-block {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.price-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.price-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.price-per {
  font-size: 12px;
  color: var(--text-muted);
}

.package-dp {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.package-dp strong {
  color: var(--gold-dark);
}

.package-actions {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 10px;
  margin-top: 16px;
}

.btn-detail {
  background: transparent;
  border: 2px solid rgba(139, 26, 26, 0.25);
  color: var(--primary) !important;
  padding: 11px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-detail:hover {
  background: rgba(139, 26, 26, 0.06);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.btn-book {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  border: none;
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(139, 26, 26, 0.3);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 26, 26, 0.4);
  color: white !important;
}

.btn-card-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white !important;
  border: none;
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-card-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white !important;
}

/* ── View All Button ── */
.btn-outline-maroon {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  padding: 13px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-outline-maroon:hover {
  background: var(--primary);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  color: white !important;
}

.btn-nav-wa {
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 50px;
  background: transparent !important;
  transition: var(--transition);
}

.btn-nav-wa:hover {
  background: var(--gold) !important;
  color: white !important;
}

/* ══════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════ */
.section-why {
  background: #fbfbfb;
}

.feature-card {
  text-align: center;
  padding: 45px 30px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(139, 26, 26, 0.12);
  border-color: rgba(139, 26, 26, 0.1);
}

.feature-icon {
  width: 85px;
  height: 85px;
  background: #fff;
  border: 1px solid rgba(139, 26, 26, 0.08);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  margin: 0 auto 28px;
  transition: all 0.4s;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.03);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white;
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(139, 26, 26, 0.2);
  border-color: transparent;
}

.feature-title {
  font-size: clamp(16px, 4.5vw, 18px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════════
   TESTIMONIALS — PREMIUM REDESIGN
══════════════════════════════════════════ */
.section-testimonials {
  background: #fdfcfb;
  /* Clean off-white */
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid rgba(139, 26, 26, 0.05);
  border-bottom: 1px solid rgba(139, 26, 26, 0.05);
}

.section-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/pattern-islamic.svg') repeat;
  opacity: 0.02;
  /* Very subtle */
  z-index: 0;
  pointer-events: none;
}

.section-testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, rgba(139, 26, 26, 0.03) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.section-testimonials .container {
  position: relative;
  z-index: 2;
}

.section-testimonials .section-badge {
  background: rgba(139, 26, 26, 0.05);
  border-color: rgba(139, 26, 26, 0.15);
  color: var(--primary);
}

.section-testimonials .section-title {
  color: var(--dark);
}

.section-testimonials .section-subtitle {
  color: var(--text-muted);
}

/* ── Testimonial Card ── */
.testimonial-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 80px;
  font-family: 'Playfair Display', serif;
  color: rgba(139, 26, 26, 0.05);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), transparent);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: white;
  border-color: rgba(139, 26, 26, 0.15);
  box-shadow: 0 20px 50px rgba(139, 26, 26, 0.08);
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars .fas.fa-star {
  color: var(--gold);
  font-size: 14px;
  filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.5));
}

.testimonial-stars .far.fa-star {
  color: rgba(201, 168, 76, 0.3);
  font-size: 14px;
}

.testimonial-text {
  font-size: clamp(14px, 4.2vw, 15px);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.4);
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.author-info span {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Author info fallback for strong/span selectors used in home.ejs */
.testimonial-author>div strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.testimonial-author>div span {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Swiper overrides */
.testimonial-swiper {
  padding: 16px 4px 48px !important;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: var(--transition);
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   TESTIMONIALS PAGE — GRID CARDS
══════════════════════════════════════════ */
.testimonial-card-full {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-card-full::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 90px;
  font-family: 'Playfair Display', serif;
  color: rgba(139, 26, 26, 0.07);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card-full::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--gold));
  border-radius: 20px 0 0 20px;
}

.testimonial-card-full:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(139, 26, 26, 0.15);
}

.testimonial-card-full .testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-card-full .testimonial-stars .fas.fa-star {
  color: var(--gold);
  font-size: 15px;
}

.testimonial-card-full .testimonial-stars .far.fa-star {
  color: #ddd;
  font-size: 15px;
}

.testimonial-card-full .testimonial-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-card-full .testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 18px;
  margin-top: auto;
}

.testimonial-card-full .author-avatar {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
}

.testimonial-card-full .author-avatar .avatar-placeholder {
  color: white;
  font-size: 20px;
}

.testimonial-card-full .testimonial-author>div strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-card-full .testimonial-author>div small {
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}


/* ══════════════════════════════════════════
   ARTICLES
══════════════════════════════════════════ */
.section-articles {
  background: var(--bg-section);
}

.article-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.article-image {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--gold));
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.08);
}

.article-body {
  padding: 24px;
}

.article-category {
  display: inline-block;
  background: rgba(139, 26, 26, 0.08);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-title {
  font-size: clamp(15px, 4.5vw, 17px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.article-meta a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.article-meta a:hover {
  color: var(--gold-dark);
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.section-cta {
  background: #0d0a17;
  /* Very rich dark */
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(139, 26, 26, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    url('/img/pattern-islamic.svg') repeat;
  opacity: 0.03;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.section-cta .container {
  position: relative;
  z-index: 5;
}

.cta-box {
  padding: 60px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

@media (min-width: 992px) {
  .cta-title {
    text-align: left;
  }
}

.cta-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

@media (min-width: 992px) {
  .cta-subtitle {
    margin: 0;
    max-width: 100%;
    text-align: left;
  }
}

.btn-cta-wa {
  background: linear-gradient(135deg, #25D366, #1fa851);
  color: white !important;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.btn-cta-wa:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45);
  color: white !important;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  font-family: 'Poppins', sans-serif;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-3px);
  color: white !important;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}

.footer-main {
  padding: 72px 0 48px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand .brand-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  margin-bottom: 14px;
}

.footer-brand .brand-name {
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.footer-brand .brand-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn.fb {
  background: #1877f2;
}

.social-btn.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.wa {
  background: #25D366;
}

.social-btn.yt {
  background: #ff0000;
}

.social-btn.tt {
  background: #fff;
  color: #000 !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-btn.tt:hover {
  background: #000;
  color: #fff !important;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  opacity: 0.9;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links a i {
  font-size: 10px;
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item .icon {
  width: 34px;
  height: 34px;
  background: rgba(139, 26, 26, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-item .info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-contact-item .info strong {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 45px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 74px;
}

/* ══════════════════════════════════════════
   AOS ANIMATIONS
══════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   ALERTS
══════════════════════════════════════════ */
.alert {
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border-left: 4px solid #10b981;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.alert-warning {
  background: #fef3c7;
  color: #92400e;
  border-left: 4px solid #f59e0b;
}

.alert-info {
  background: #dbeafe;
  color: #1e40af;
  border-left: 4px solid #3b82f6;
}

.alert-maroon {
  background: rgba(139, 26, 26, 0.05);
  color: var(--primary);
  border-left: 4px solid var(--primary);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }

  .hero-content {
    padding: 110px 0 70px;
  }

  .hero-stats {
    padding: 16px 20px;
  }

  .stat-item {
    padding: 0 16px;
  }

  .navbar-collapse {
    background: white;
    border-radius: 20px;
    padding: 12px;
    margin-top: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .navbar-collapse .navbar-nav {
    gap: 2px;
  }

  .navbar-collapse .nav-link {
    color: var(--dark) !important;
    padding: 12px 20px !important;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
  }

  .navbar-collapse .nav-link:hover {
    background: rgba(139, 26, 26, 0.05);
    color: var(--primary) !important;
    padding-left: 25px !important;
  }

  .navbar-collapse .btn-nav-wa {
    margin-top: 10px;
    justify-content: center;
    padding: 14px !important;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .stat-item {
    padding: 0;
  }

  .package-actions {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    padding: 50px 0 32px;
  }

  .footer-bottom {
    padding: 25px 0 80px;
    /* Extra bottom padding for WhatsApp float */
    text-align: center;
  }

  .footer-bottom .container {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .copyright-info p {
    font-size: 12px;
    line-height: 1.8;
  }

  .footer-designer p {
    font-size: 11px;
    opacity: 0.6;
    line-height: 1.6;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 25px;
    right: 20px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  }
}

/* ══════════════════════════════════════════
   PROFESSIONAL MOBILE RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Global Adjustments */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding: 60px 0;
  }

  /* Text Alignment */
  .section-header,
  .hero-content,
  .section-cta .cta-content,
  .section-cta,
  .site-footer {
    text-align: center;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .cta-title {
    margin-bottom: 15px;
  }

  .cta-subtitle {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .btn-cta-wa {
    width: 100%;
    max-width: 320px;
    padding: 12px 24px;
    font-size: 14.5px;
  }



  /* Hero Section */
  .hero-content {
    padding-top: 70px !important;
    padding-bottom: 100px;
    /* Extra space for buttons/WA float */
  }

  .hero-badge {
    margin: 0 auto 16px;
    font-size: 10px;
    padding: 4px 12px;
  }

  /* Fluid Typography for Title */
  .hero-title {
    font-size: 22px !important;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    padding: 0 10px;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.7;
    margin: 0 auto 24px;
    max-width: 90%;
    opacity: 0.85;
  }

  /* Stats Box - Sleek & Compact */
  .hero-stats {
    width: 100%;
    margin-bottom: 24px;
    padding: 16px;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    /* Slightly more transparent */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .stat-item {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtler divider */
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-divider {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .stat-number {
    font-size: 22px;
    margin-bottom: 2px;
  }

  .stat-label {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
  }

  /* Buttons */
  .hero-actions {
    flex-direction: column;
    gap: 16px;
    /* Slightly more gap */
    width: 100%;
    max-width: 320px;
    /* Standardize max width for mobile buttons */
    margin: 0 auto;
  }

  .btn-primary-custom,
  .btn-outline-gold {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    /* Taller, more clickable */
    font-size: 15px;
    border-radius: 50px;
    letter-spacing: 0.5px;
  }

  /* Readability improvement for Outline Button on Red bg */
  .btn-outline-gold {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 215, 0, 0.6);
  }

  /* Navbar Mobile */
  .navbar-custom .container {
    padding: 10px 20px;
  }

  .navbar-toggler {
    padding: 6px 10px;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .brand-name {
    font-size: 14px;
  }

  .footer-brand .brand-name {
    color: white !important;
  }

  .footer-brand .brand-sub {
    color: rgba(255, 255, 255, 0.45) !important;
  }

  .brand-sub {
    font-size: 9px;
  }

  /* Other Sections */
  .feature-card {
    padding: 40px 24px;
    margin-bottom: 10px;
  }

  .package-card {
    height: auto;
    margin-bottom: 20px;
  }

  .testimonial-card::before {
    font-size: 40px;
    top: 10px;
    right: 10px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-brand .brand-icon,
  .footer-brand img {
    margin: 0 auto 15px;
  }

  .footer-desc {
    margin: 0 auto 30px;
    max-width: 100%;
  }

  /* Footer Links - Better Centering */
  .footer-links {
    padding: 0;
    display: inline-block;
    text-align: left;
    margin-bottom: 30px;
  }

  .footer-heading {
    margin-bottom: 25px;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
    margin-bottom: 40px;
  }

  /* Contact Items - Perfectly aligned icons, centered block */
  .footer-contact-item {
    display: flex;
    text-align: left;
    margin-bottom: 25px;
    max-width: 290px;
    /* Membatasi lebar agar bisa ditengah haman */
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    gap: 15px;
  }

  .footer-contact-item .icon {
    flex-shrink: 0;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    padding: 25px 0;
  }

  /* WhatsApp Float Position */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  /* About Us Optimizations */
  .stat-box {
    padding: 20px 15px;
  }

  .stat-box h3 {
    font-size: 22px;
  }

  .vision-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}

/* ================================================
   ABOUT US PAGE STYLES
   ================================================ */
.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stat-box {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  height: 100%;
}

.stat-box:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.stat-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.vision-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition);
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(139, 26, 26, 0.1);
}

.vision-icon {
  width: 60px;
  height: 60px;
  background: rgba(139, 26, 26, 0.05);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 24px;
}

.vision-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.vision-card p,
.vision-card ul li {
  font-size: 14.5px;
  color: #666;
  line-height: 1.7;
}

.vision-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.vision-card ul li {
  margin-bottom: 10px;
}

.vision-card ul li::marker {
  color: var(--gold);
}

/* Small Screens (iPhone SE/Mini - 375px & below) */
@media (max-width: 380px) {
  .hero-content {
    padding-top: 60px !important;
  }

  .hero-title {
    font-size: 24px;
    /* Force smaller size */
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
}

/* ================================================
   ARTICLES - Page Header
   ================================================ */
.art-page-header {
  background: linear-gradient(135deg, #6B0F0F 0%, #8B1A1A 50%, #A52020 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.art-page-header-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #f8f9fa;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.art-cat-header-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.25);
  color: #C9A84C;
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.art-header-meta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.art-meta-dot {
  opacity: 0.5;
}

/* ================================================
   ARTICLES - Filter Buttons
   ================================================ */
.art-filter-btn {
  display: inline-block;
  padding: 8px 20px;
  margin: 4px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  color: #555;
  background: #fff;
  border: 2px solid #e5e5e5;
  text-decoration: none;
  transition: all 0.25s ease;
}

.art-filter-btn:hover,
.art-filter-btn.active {
  background: linear-gradient(135deg, #8B1A1A, #C9A84C);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(139, 26, 26, 0.25);
  text-decoration: none;
}

/* ================================================
   ARTICLES - List Cards
   ================================================ */
.art-card-pro {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.art-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 26, 26, 0.15);
}

.art-card-img {
  position: relative;
  height: 215px;
  overflow: hidden;
  flex-shrink: 0;
}

.art-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.art-card-pro:hover .art-card-img img {
  transform: scale(1.08);
}

.art-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107, 15, 15, 0.5) 0%, transparent 60%);
}

.art-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #8B1A1A, #C9A84C);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.art-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.art-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.art-title {
  font-size: clamp(1rem, 4vw, 1.15rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.45;
}

.art-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.art-title a:hover {
  color: #8B1A1A;
}

.art-excerpt {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.art-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8B1A1A;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}

.art-read-more:hover {
  color: #C9A84C;
  gap: 9px;
}

/* ================================================
   ARTICLES - Pagination
   ================================================ */
.art-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #e5e5e5;
  color: #555;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.art-page-btn:hover,
.art-page-btn.active {
  background: linear-gradient(135deg, #8B1A1A, #C9A84C);
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(139, 26, 26, 0.25);
  text-decoration: none;
}

/* ================================================
   ARTICLE DETAIL - Content Card
   ================================================ */
.art-detail-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.art-detail-hero-img {
  height: 380px;
  overflow: hidden;
}

.art-detail-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-detail-body {
  padding: 30px 32px 35px;
}

@media (max-width: 768px) {
  .art-card-img {
    height: 190px;
  }

  .art-card-body {
    padding: 20px;
  }

  .art-detail-body {
    padding: 20px 18px 25px;
  }

  .art-detail-hero-img {
    height: 240px;
  }

  .art-detail-content {
    font-size: 14.5px;
    line-height: 1.75;
  }
}

.art-detail-content {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.9;
  white-space: pre-line;
}

.art-detail-content h1,
.art-detail-content h2,
.art-detail-content h3 {
  color: #8B1A1A;
  font-weight: 700;
  margin: 28px 0 14px;
}

.art-detail-content p {
  margin-bottom: 18px;
}

.art-detail-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 16px 0;
}

.art-detail-content blockquote {
  border-left: 4px solid #C9A84C;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.04), rgba(201, 168, 76, 0.04));
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #555;
  margin: 20px 0;
}

.art-detail-content a {
  color: #8B1A1A;
}

/* ================================================
   ARTICLE DETAIL - Share Bar
   ================================================ */
.art-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #f0f0f0;
  flex-wrap: wrap;
}

.art-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.art-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.art-share-btn.wa {
  background: #25D366;
}

.art-share-btn.fb {
  background: #1877F2;
}

.art-share-btn.tw {
  background: #1DA1F2;
}

/* ================================================
   ARTICLE DETAIL - Back Button
   ================================================ */
.art-back-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 50px;
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #555;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.art-back-btn:hover {
  background: linear-gradient(135deg, #8B1A1A, #C9A84C);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(139, 26, 26, 0.25);
}

/* ================================================
   ARTICLE DETAIL - Sidebar CTA
   ================================================ */
/* ================================================
   ARTICLE DETAIL - Sidebar CTA Premium
   ================================================ */
.art-sidebar-cta {
  background: linear-gradient(135deg, #8B1A1A 0%, #a11e1e 50%, #6b0f0f 100%);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(139, 26, 26, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.art-cta-pattern {
  position: absolute;
  inset: 0;
  background: url('/img/pattern-islamic.svg') repeat;
  opacity: 0.07;
  pointer-events: none;
}

.art-sidebar-cta::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.art-sidebar-cta-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #C9A84C;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.art-sidebar-cta h5 {
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.art-sidebar-cta p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.art-cta-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  position: relative;
  z-index: 2;
  border: none;
}

.art-cta-wa-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.art-cta-wa-btn i {
  font-size: 18px;
}

/* ================================================
   ARTICLE DETAIL - Related Articles Sidebar
   ================================================ */
.art-sidebar-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.art-sidebar-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #8B1A1A, #C9A84C);
  padding: 16px 20px;
}

.art-related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.art-related-item:last-child {
  border-bottom: none;
}

.art-related-item:hover {
  background: #fef9f0;
}

.art-related-thumb {
  width: 64px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.art-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-related-info {
  flex: 1;
  min-width: 0;
}

.art-related-title {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.art-related-date {
  font-size: 11.5px;
  color: #aaa;
}

@media (max-width: 768px) {
  .art-detail-body {
    padding: 20px;
  }

  .art-detail-hero-img {
    height: 220px;
  }

  .art-card-img {
    height: 185px;
  }
}

/* ================= BOOKING SUBMIT BUTTON ================= */
.btn-book-now {
  background: linear-gradient(135deg, #6B0F0F, #A52020);
  color: #fff !important;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(107, 15, 15, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-book-now:hover {
  background: linear-gradient(135deg, #8B1A1A, #C0392B);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(107, 15, 15, 0.45);
  color: #fff !important;
}

.btn-book-now:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(107, 15, 15, 0.3);
}

/* Premium Package Cards Global */
/* Package Cards - UI Based on Screenshot */
/* Premium Package Cards — Specific White Flyer Layout */
.package-card-premium {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

.package-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-image-wrapper {
  position: relative;
  height: 240px;
  /* Good height for 1200x600 crop */
  width: 100%;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badges Premium Refined */
.card-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.badge-type-pill {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.badge-type-pill.wisata {
  background: linear-gradient(135deg, #e11d48, #9f1239);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.badge-discount-pill {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #fff;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: premium-pulse 2.5s infinite;
}

.badge-urgency-pill {
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes premium-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(217, 119, 6, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
  }
}

@keyframes flash-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.03);
    opacity: 0.95;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes urgency-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
  }
}

.sold-out-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  backdrop-filter: blur(2px);
}

.sold-out-badge {
  background: #ff4757;
  color: white;
  padding: 8px 25px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  transform: rotate(-10deg);
  border: 2px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: soldOutPulse 2s infinite;
}

@keyframes soldOutPulse {
  0% {
    transform: rotate(-10deg) scale(1);
  }

  50% {
    transform: rotate(-10deg) scale(1.1);
  }

  100% {
    transform: rotate(-10deg) scale(1);
  }
}

/* Sold Out Status - Correct Button Size */
.sold-out-stamp-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* Balanced margin to match button spacing */
}

.sold-out-stamp {
  display: block;
  width: 100%;
  color: #c41e1e;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 4px double #c41e1e;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  transform: none;
  opacity: 0.95;
  font-family: 'Poppins', sans-serif;
  user-select: none;
  background: rgba(196, 30, 30, 0.03);
  position: relative;
  box-sizing: border-box;
  /* Ensure border is included in padding height */
}

.sold-out-stamp::after {
  content: "HABIS";
  position: absolute;
  top: -12px;
  right: 15px;
  font-size: 9px;
  background: #c41e1e;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  transform: none;
  font-weight: 800;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.badge-status-sold {
  background: #000;
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-left: 8px;
}

.badge-status-sold i {
  font-size: 8px;
  color: #c9a84c;
  /* Premium gold icon */
}

.badge-status-urgent {
  background: #dc2626;
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
  margin-left: 8px;
  animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.card-body-flyer {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  /* Added to anchor the stamp */
}

.card-title-flyer {
  font-size: clamp(17px, 5vw, 20px);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.35;
}

.card-title-flyer a {
  color: inherit;
  text-decoration: none;
}

.card-short-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 24px 22px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}

@media (max-width: 768px) {
  .card-short-desc {
    font-size: 12px;
    margin: 0 15px 22px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    line-height: 1.45;
  }
}

.card-specs-list {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #64748b;
}

.spec-row.hotel {
  align-items: flex-start;
}

.hotel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hotel-info strong {
  color: #1a1a2e;
  font-weight: 700;
  font-size: 13px;
}

.hotel-info span {
  font-size: 13.5px;
  line-height: 1.4;
}

.spec-row i {
  width: 18px;
  color: #c9a84c;
  font-size: 14px;
  text-align: center;
  margin-top: 3px;
}

.card-footer-flyer {
  width: 100%;
  margin-top: auto;
}

.card-divider {
  width: 100%;
  height: 1px;
  background: #f1f5f9;
  margin-bottom: 20px;
}

.card-price-flyer {
  font-size: 24px;
  font-weight: 800;
  color: #8B1A1A;
  margin-bottom: 20px;
}

.card-actions-flyer {
  width: 100%;
}

.btn-flyer-primary {
  display: block;
  width: 100%;
  background: #8B1A1A;
  color: #fff !important;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  border: 4px solid transparent;
  /* Essential for height alignment with Sold Out stamp */
  box-sizing: border-box;
}

.btn-flyer-primary:hover {
  background: #6B0F0F;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(139, 26, 26, 0.3);
}

@media (max-width: 576px) {
  .package-card-premium {
    min-height: auto;
  }
}

/* Filter Styles */
.package-filter .filter-btn {
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid #eee;
  background: #fff;
  color: #666;
  font-weight: 600;
  font-size: 14px;
  margin: 5px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.package-filter .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.25);

  /* Contact Us Optimizations */
  .contact-info-item {
    padding: 15px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .contact-form-card {
    padding: 24px;
  }
}

/* ================================================
   CONTACT PAGE STYLES
   ================================================ */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateX(10px);
  border-color: var(--gold);
}

.contact-icon {
  width: 54px;
  height: 54px;
  background: rgba(139, 26, 26, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-size: 14px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0;
}

.contact-info-item a {
  color: inherit;
  text-decoration: none;
}

.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  font-size: 14.5px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 26, 26, 0.08);

  /* Testimonials Optimizations */
  .testimonial-card-full {
    padding: 24px 20px;
  }

  .testimonial-card-full::before {
    font-size: 60px;
    top: 5px;
    right: 15px;
  }

  .testimonial-text {
    font-size: 13.5px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
  }
}

/* ================================================
   TESTIMONIALS PAGE STYLES
   ================================================ */
.testimonial-card-full {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-card-full::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 90px;
  font-family: 'Playfair Display', serif;
  color: rgba(139, 26, 26, 0.07);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card-full::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--gold));
  border-radius: 20px 0 0 20px;
}

.testimonial-card-full .testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-card-full .testimonial-stars .fas.fa-star {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-card-full .testimonial-stars .far.fa-star {
  color: #ddd;
  font-size: 14px;
}

.testimonial-card-full .testimonial-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-card-full .testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 18px;
  margin-top: auto;
}

.testimonial-card-full .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  flex-shrink: 0;
}

.testimonial-card-full .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* FAQ Optimizations */
  .faq-item .accordion-button {
    font-size: 14px;
    padding: 15px 20px;
  }

  .faq-item .accordion-body {
    font-size: 13.5px;
    line-height: 1.7;
    padding: 15px 20px 20px;
  }

  .btn-wa-premium {
    padding: 14px 28px;
    font-size: 14.5px;
  }
}

/* ================================================
   FAQ PAGE STYLES
   ================================================ */
.faq-accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(139, 26, 26, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
  padding: 22px 28px;
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
  background: #fff;
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(139, 26, 26, 0.02);
  color: var(--primary);
}

.faq-accordion .accordion-button i {
  color: var(--gold);
  font-size: 18px;
}

.faq-accordion .accordion-body {
  padding: 0 28px 28px;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  background: rgba(139, 26, 26, 0.02);
}

/* WhatsApp Premium CTA */
.wa-wrapper {
  background: radial-gradient(circle at center, rgba(37, 211, 102, 0.15), transparent 70%);
  padding: 20px;
  display: inline-block;
  border-radius: 60px;
  margin-top: 10px;
}

.btn-wa-premium {
  background: linear-gradient(135deg, #25D366, #1fa851);
  color: white !important;
  border: none;
  padding: 18px 40px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-wa-premium:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.testimonial-card-full .author-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-card-full .testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-card-full .testimonial-author small {
  font-size: 11.5px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.map-container iframe {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ================================================
   GALLERY HOME STYLES
   ================================================ */
.gal-card-v2:hover img {
  transform: scale(1.1);
}

.gal-card-v2:hover .gal-overlay-v2 {
  opacity: 1 !important;
}

.gal-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(139, 26, 26, 0.15) !important;
}

.gal-overlay-v2 {
  transition: all 0.4s ease !important;
}