/* ============================================================
   KANIA RAYANI — Konsultan Umroh
   Domain: kaniarayani.id
   Tema: Premium Mewah — Merah Marun & Emas
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --red-dark: #5C0A14;
  --red-maroon: #8B1F2D;
  --red-primary: #9B2335;
  --red-light: #B83A4A;
  --gold-dark: #A68A2E;
  --gold-primary: #C9A84C;
  --gold-light: #D4AF37;
  --gold-pale: #F2E0A4;
  --cream: #FDF8F0;
  --cream-dark: #F5ECD7;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(201, 168, 76, 0.3);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --font-arabic: 'Amiri', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* === CSS RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === SCROLLBAR STYLING === */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: linear-gradient(135deg, var(--red-dark), var(--red-maroon));
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--gold-primary);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand .brand-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red-dark);
  font-family: var(--font-arabic);
  font-weight: 700;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-brand .brand-tagline {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar.scrolled .brand-name {
  font-size: 1.3rem;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-menu a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-menu a:hover {
  color: var(--gold-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      135deg,
      rgba(92, 10, 20, 0.85) 0%,
      rgba(139, 31, 45, 0.75) 50%,
      rgba(155, 35, 53, 0.7) 100%
    ),
    url('../images/hero-bg.jpg') center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* Ornamen geometri overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23C9A84C' fill-opacity='0.08'%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");
  pointer-events: none;
}

/* Partikel animasi */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: particleFloat 8s infinite ease-in-out;
  opacity: 0;
}

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.8; }
  50% { opacity: 0.4; transform: translateY(-60px) scale(1.5); }
  80% { opacity: 0.1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-bismillah {
  font-family: var(--font-arabic);
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.hero-label {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.4s forwards;
}

.hero-title .gold-text {
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s 0.8s forwards;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--red-dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.6);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-light);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--gold-light);
  color: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ============================================================
   SECTION STYLING
   ============================================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red-maroon);
  margin-bottom: 16px;
  position: relative;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.section-divider .line {
  width: 60px;
  height: 1.5px;
  background: var(--gold-primary);
}

.section-divider .diamond {
  width: 10px;
  height: 10px;
  background: var(--gold-primary);
  transform: rotate(45deg);
}

.section-subtitle {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

/* Background cream & putih bergantian */
.section-alt {
  background-color: var(--white);
}

/* Ornamen Geometri Section */
.section-ornament-top,
.section-ornament-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
}

.section-ornament-top {
  top: 0;
  background: linear-gradient(
    45deg,
    transparent 33.33%,
    var(--gold-pale) 33.33%,
    var(--gold-pale) 36%,
    transparent 36%
  ),
  linear-gradient(
    -45deg,
    transparent 33.33%,
    var(--gold-pale) 33.33%,
    var(--gold-pale) 36%,
    transparent 36%
  );
  opacity: 0.5;
}

/* ============================================================
   KEUNGGULAN SECTION
   ============================================================ */
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.keunggulan-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.keunggulan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transition: var(--transition-slow);
}

.keunggulan-card:hover::before {
  transform: scaleX(1);
}

.keunggulan-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 40px rgba(139, 31, 45, 0.15);
}

.keunggulan-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--red-maroon), var(--red-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gold-light);
  position: relative;
}

.keunggulan-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  opacity: 0.5;
}

.keunggulan-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--red-maroon);
  margin-bottom: 12px;
}

.keunggulan-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   PAKET UMROH
   ============================================================ */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.paket-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
}

.paket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(139, 31, 45, 0.12);
  border-color: var(--gold-primary);
}

.paket-card.featured {
  border: 2px solid var(--gold-primary);
  transform: scale(1.03);
}

.paket-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.paket-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--red-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.paket-image {
  height: 220px;
  background: linear-gradient(135deg, var(--red-maroon), var(--red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.paket-image .paket-icon {
  font-size: 64px;
  opacity: 0.3;
  color: var(--white);
}

.paket-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--white), transparent);
}

.paket-body {
  padding: 28px 24px 32px;
}

.paket-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--red-maroon);
  margin-bottom: 8px;
}

.paket-body .paket-durasi {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.paket-body .paket-harga {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red-primary);
  margin-bottom: 4px;
}

.paket-body .paket-harga-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.paket-features {
  list-style: none;
  margin-bottom: 24px;
}

.paket-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.paket-features li::before {
  content: '✦';
  color: var(--gold-primary);
  font-size: 0.7rem;
}

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section {
  background: linear-gradient(135deg, var(--red-dark), var(--red-maroon));
  padding: 60px 0;
  position: relative;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Crect x='18' y='0' width='4' height='40'/%3E%3Crect x='0' y='18' width='40' height='4'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter-item {
  padding: 20px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.counter-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONI
   ============================================================ */
.testimoni-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimoni-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--cream-dark);
  margin: 0 16px;
}

.testimoni-card .quote-icon {
  font-size: 48px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimoni-card p {
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.testimoni-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimoni-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--red-dark);
  font-size: 1.2rem;
}

.testimoni-author-info {
  text-align: left;
}

.testimoni-author-info strong {
  display: block;
  color: var(--red-maroon);
}

.testimoni-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimoni-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimoni-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
}

.testimoni-dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--red-maroon), var(--red-primary));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M40 0L44.9 35.1L80 40L44.9 44.9L40 80L35.1 44.9L0 40L35.1 35.1z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .section-title {
  color: var(--white);
  font-size: 2.2rem;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--red-dark), #3D0710);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand .brand-tagline {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold-primary);
  color: var(--red-dark);
  border-color: var(--gold-primary);
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact .contact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--gold-light);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-tooltip {
  background: var(--white);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
  white-space: nowrap;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.wa-button {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  position: relative;
  border: 2px solid var(--gold-primary);
}

.wa-button::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.wa-button svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-maroon);
  border: 2px solid var(--gold-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
  font-size: 18px;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: var(--red-dark);
}

/* ============================================================
   PAGE BANNER (Untuk sub-page)
   ============================================================ */
.page-banner {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      135deg,
      rgba(92, 10, 20, 0.88) 0%,
      rgba(139, 31, 45, 0.8) 100%
    ),
    url('../images/hero-bg.jpg') center / cover no-repeat;
  text-align: center;
  position: relative;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-banner-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb .separator {
  color: var(--gold-primary);
}

.breadcrumb .current {
  color: var(--gold-light);
  font-weight: 600;
}

/* ============================================================
   INFO KONSULTAN PAGE
   ============================================================ */
.profile-section {
  padding: 80px 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.profile-image-wrapper {
  position: relative;
}

.profile-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--red-maroon), var(--red-primary));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: var(--white);
  border: 4px solid var(--gold-primary);
  position: relative;
  overflow: hidden;
}

.profile-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201,168,76,0.2), transparent);
}

.profile-image .placeholder-icon {
  opacity: 0.3;
  font-size: 120px;
}

.profile-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--red-dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.profile-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--red-maroon);
  margin-bottom: 8px;
}

.profile-info .profile-role {
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.profile-info p {
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Visi Misi Cards */
.visi-misi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.visi-misi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.visi-misi-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.visi-misi-card .card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.visi-misi-card h3 {
  font-family: var(--font-heading);
  color: var(--red-maroon);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.visi-misi-card ul {
  list-style: none;
}

.visi-misi-card ul li {
  padding: 6px 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.visi-misi-card ul li::before {
  content: '◆';
  color: var(--gold-primary);
  font-size: 0.6rem;
}

/* ============================================================
   KONTAK PAGE
   ============================================================ */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.kontak-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--cream-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--red-maroon);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.kontak-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.kontak-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.kontak-info-item:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.kontak-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red-maroon), var(--red-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.kontak-info-text h4 {
  font-family: var(--font-heading);
  color: var(--red-maroon);
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.kontak-info-text p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--gold-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ============================================================
   ARTIKEL PAGE
   ============================================================ */
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.artikel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.artikel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--gold-primary);
}

.artikel-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--red-maroon), var(--red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  position: relative;
}

.artikel-card-image .artikel-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-primary);
  color: var(--red-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.artikel-card-body {
  padding: 24px;
}

.artikel-card-body .artikel-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.artikel-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--red-maroon);
  margin-bottom: 10px;
  line-height: 1.4;
}

.artikel-card-body h3 a:hover {
  color: var(--gold-dark);
}

.artikel-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.artikel-readmore {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.artikel-readmore:hover {
  color: var(--red-maroon);
  gap: 10px;
}

/* Artikel Detail */
.artikel-detail {
  max-width: 800px;
  margin: 0 auto;
}

.artikel-detail-header {
  text-align: center;
  margin-bottom: 40px;
}

.artikel-detail-header .artikel-category-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--red-dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.artikel-detail-header h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--red-maroon);
  margin-bottom: 16px;
  line-height: 1.3;
}

.artikel-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.artikel-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.artikel-detail-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--red-maroon), var(--red-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 32px;
}

.artikel-detail-content {
  line-height: 2;
  color: var(--text);
  font-size: 1.05rem;
}

.artikel-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--red-maroon);
  margin: 32px 0 16px;
}

.artikel-detail-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--red-maroon);
  margin: 24px 0 12px;
}

.artikel-detail-content p {
  margin-bottom: 16px;
}

.artikel-detail-content ul,
.artikel-detail-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.artikel-detail-content li {
  margin-bottom: 8px;
}

.artikel-share {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.artikel-share span {
  font-weight: 600;
  color: var(--red-maroon);
}

.artikel-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.artikel-share a:hover {
  background: var(--red-maroon);
  color: var(--white);
  border-color: var(--red-maroon);
}

/* Artikel CTA */
.artikel-cta {
  background: linear-gradient(135deg, var(--red-maroon), var(--red-primary));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
  color: var(--white);
}

.artikel-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.artikel-cta p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* ============================================================
   NOT FOUND / LOADING
   ============================================================ */
.not-found,
.loading {
  text-align: center;
  padding: 80px 20px;
}

.not-found h2,
.loading h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--red-maroon);
  margin-bottom: 16px;
}

.not-found p,
.loading p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ============================================================
   ANIMATIONS (Scroll Reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .keunggulan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .paket-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .artikel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, var(--red-dark), var(--red-maroon));
    flex-direction: column;
    gap: 20px;
    padding: 100px 40px 40px;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .navbar-menu.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-bismillah {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .keunggulan-grid {
    grid-template-columns: 1fr;
  }

  .paket-grid {
    grid-template-columns: 1fr;
  }

  .paket-card.featured {
    transform: none;
  }

  .paket-card.featured:hover {
    transform: translateY(-10px);
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .artikel-grid {
    grid-template-columns: 1fr;
  }

  .kontak-grid {
    grid-template-columns: 1fr;
  }

  .visi-misi-grid {
    grid-template-columns: 1fr;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 90px;
    right: 20px;
  }

  .page-banner-content h1 {
    font-size: 2rem;
  }

  .artikel-detail-header h1 {
    font-size: 1.6rem;
  }

  .artikel-detail-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }

  .counter-number {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-section .section-title {
    font-size: 1.5rem;
  }

  .hero-bismillah {
    font-size: 1.4rem;
  }
}