/* ============================================================
   BASE — Variables, Reset, Typography, Layout, Helpers
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================================
   TOUR TRAVEL — Complete Stylesheet
   Design System: Midnight + Gold
   ============================================================ */

/* --- CSS Variables (Design Tokens) --- */
:root {
  /* Primer (Brand) */
  --primary: #0D1B2A;
  --primary-dark: #070F18;
  --primary-light: #1B2D45;
  --accent: #C9A84C;
  --accent-dark: #A88A35;
  --accent-light: #D4BE6A;
  /* Sekunder */
  --green: #3A8C82;
  --green-light: #5BB5AA;
  --red: #B86050;
  --red-light: #F08080;
  --gold: #D4A840;
  /* Netral - Warm */
  --white: #FAFAFA;
  --gray-50: #F5F5F5;
  --gray-100: #EBEBEB;
  --gray-200: #E0E0E0;
  --gray-300: #BDBDBD;
  --gray-500: #757575;
  --gray-700: #424242;
  --gray-900: #1A1A1A;
  /* Gradients */
  --gradient-primary: #0D1B2A;
  --gradient-accent: #C9A84C;
  --gradient-luxury: #070F18;
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'SF Mono', 'Menlo', monospace;
  /* Shadows - adjusted for warm tones */
  --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.04), 0 1px 2px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 4px 12px -2px rgba(26, 26, 26, 0.06), 0 2px 6px -1px rgba(26, 26, 26, 0.04);
  --shadow-lg: 0 12px 28px -6px rgba(26, 26, 26, 0.08), 0 4px 12px -4px rgba(26, 26, 26, 0.04);
  --shadow-xl: 0 20px 48px -10px rgba(26, 26, 26, 0.08), 0 8px 20px -8px rgba(26, 26, 26, 0.04);
  --shadow-raised: 0 1px 3px rgba(26, 26, 26, 0.04), 0 1px 2px rgba(26, 26, 26, 0.06);
  --shadow-card: 0 2px 8px -2px rgba(26, 26, 26, 0.04);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-width: 1200px;
  --header-height: 76px;
  --section-gap: 100px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container { padding: 0 24px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 16px;
  border-radius: 2px;
}

/* --- Responsive Helpers --- */
@media (max-width: 1023px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 1024px) {
  .hide-desktop { display: none !important; }
}

/* ============================================================
   LUCIDE ICON SYSTEM — Premium Vector Icons
   ============================================================ */
[data-lucide] {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  pointer-events: none;
}

.lucide {
  stroke: currentColor;
  fill: none;
  display: inline-block;
}

/* Logo Icon */
.logo-icon .lucide {
  width: 22px;
  height: 22px;
}

/* Nav WA Icon */
.nav-wa .lucide {
  width: 16px;
  height: 16px;
}

/* Bottom Bar Icons */
.bottom-bar-item .icon .lucide {
  width: 20px;
  height: 20px;
}

/* Package Meta Icons */
.package-meta-item .lucide {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 2px;
}

/* Feature Card Icons */
.feature-icon .lucide {
  width: 28px;
  height: 28px;
  color: var(--primary);
  stroke-width: 1.5;
}

/* Contact Icons */
.contact-icon .lucide {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

/* About Stats Icons */
.about-stat-icon .lucide {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

/* FAQ Icon */
.faq-icon .lucide {
  width: 20px;
  height: 20px;
}

/* Package Wishlist (Heart) */
.package-wishlist .lucide {
  width: 18px;
  height: 18px;
  color: var(--accent);
  pointer-events: none;
}

/* Button Icons */
.btn .lucide {
  width: 18px;
  height: 18px;
}

/* Check Icon (Include/Exclude) */
.check-icon .lucide {
  width: 12px;
  height: 12px;
}

/* Payment Method Icons */
.payment-icon .lucide {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

/* Success Icon */
.success-icon-wrapper .lucide {
  width: 40px;
  height: 40px;
  color: var(--green);
}

/* Blog Meta Icons */
.blog-card-meta .lucide {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

/* Team Avatar Icons */
.team-avatar .lucide {
  width: 36px;
  height: 36px;
  color: var(--primary-light);
}

/* Social Link Icons */
.social-link .lucide {
  width: 18px;
  height: 18px;
}

/* Calendar Nav Icons */
.calendar-nav .lucide {
  width: 18px;
  height: 18px;
}

/* Modal Nav Icons */
.modal-nav .lucide {
  width: 32px;
  height: 32px;
}

/* Itinerary Toggle */
.itinerary-toggle .lucide {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.itinerary-day.open .itinerary-toggle .lucide {
  transform: rotate(180deg);
}

/* Dropdown Arrow */
.dropdown-arrow .lucide {
  width: 14px;
  height: 14px;
}

/* Booking Card Title Icons */
.booking-card-title .lucide {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

/* Summary Item Icons */
.summary-item .lucide {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* Star Rating */
.star-filled { fill: #F59E0B; stroke: #F59E0B; }
.star-empty { fill: none; stroke: #F59E0B; opacity: 0.35; }

/* ============================================================
   SERVICE SECTION — Premium Cards
   ============================================================ */
.services-section {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid rgba(26, 26, 26, 0.05);
  transition: var(--transition-slow);
  display: block;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0;
  transition: var(--transition-slow);
  border-radius: var(--radius-md);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  background: var(--gray-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition-slow);
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.service-icon .lucide {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.service-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  transition: var(--transition-slow);
}

.service-card:hover .service-title {
  color: var(--white);
}

.service-desc {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  transition: var(--transition-slow);
}

.service-card:hover .service-desc {
  color: rgba(255, 255, 255, 0.8);
}

.service-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-size: 18px;
  color: var(--accent);
  transition: var(--transition-bounce);
  opacity: 0;
  transform: translateX(-8px);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-arrow .lucide {
  width: 20px;
  height: 20px;
}

/* ============================================================
   SERVICES — Page Detail (Redesigned)
   ============================================================ */

/* Service Detail Hero - Gradient */
.service-detail-hero {
  margin-top: var(--header-height);
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 60%, rgba(58, 140, 130, 0.3) 100%);
  padding: 64px 0 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
  border-radius: 50%;
}

.service-detail-hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58, 140, 130, 0.12), transparent 70%);
  border-radius: 50%;
}

.service-detail-hero-inner {
  position: relative;
  z-index: 1;
}

.service-detail-hero-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(250, 250, 250, 0.12);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(250, 250, 250, 0.15);
}

.service-detail-hero-icon .lucide {
  width: 36px;
  height: 36px;
}

.service-detail-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.service-detail-hero p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 24px;
}

.service-detail-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.service-detail-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(250, 250, 250, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(250, 250, 250, 0.12);
}

.service-detail-hero-badges .lucide {
  width: 14px;
  height: 14px;
}

/* Layout */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1023px) {
  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Main Content */
.service-detail-main {}

.service-detail-section {
  margin-bottom: 56px;
}

.service-detail-section:last-child {
  margin-bottom: 0;
}

.service-detail-section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.service-detail-section-desc {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.service-detail-intro p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 12px;
}

/* Feature Cards Grid */
.service-detail-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.sd-feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.sd-feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sd-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 27, 42, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.sd-feature-icon .lucide {
  width: 24px;
  height: 24px;
}

.sd-feature-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.sd-feature-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-500);
}

/* Destination Cards */
.service-detail-destinations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.sd-dest-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.sd-dest-card:hover {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.sd-dest-card .lucide {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-bottom: 4px;
}

.sd-dest-card strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.sd-dest-card span {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* How It Works */
.service-detail-how {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sd-how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sd-how-number {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.sd-how-step strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.sd-how-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Sidebar - Sticky */
.service-detail-sidebar {
  position: relative;
}

@media (min-width: 1024px) {
  .sidebar-card {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.sidebar-price {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-price-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.sidebar-price-amount {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.sidebar-price-unit {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

.sidebar-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 600;
}

.sidebar-cta {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

.sidebar-wa {
  display: block;
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}

.sidebar-guarantees {
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
}

.sidebar-guarantee .lucide {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES PAGE — Card Grid Redesign
   ============================================================ */

/* Services Hero */
.services-hero {
  margin-top: var(--header-height);
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}

.services-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.services-hero p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

/* Services Card Grid */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .services-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual Service Card */
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.svc-card-icon-wrap {
  margin-bottom: 20px;
}

.svc-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(13, 27, 42, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.svc-card-icon .lucide {
  width: 28px;
  height: 28px;
}

.svc-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.svc-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 20px;
  flex-grow: 1;
}

.svc-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.svc-card-features li {
  font-size: 13px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-card-features li .lucide {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.2s ease;
  margin-top: auto;
}

.svc-card-cta:hover {
  color: var(--accent);
  gap: 10px;
}

.svc-card-cta .lucide {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.svc-card-cta:hover .lucide {
  transform: translateX(3px);
}

/* ============================================================
   DESTINASI & AKTIVITAS — Card Grid
   ============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1023px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
}

.dest-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.dest-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dest-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-card-img img {
  transform: scale(1.05);
}

.dest-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 27, 42, 0.85);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.dest-card-body {
  padding: 20px;
}

.dest-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.dest-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--gray-500);
}

.dest-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dest-card-meta .lucide {
  width: 14px;
  height: 14px;
}

.dest-card-meta .star-filled {
  color: var(--gold);
  fill: var(--gold);
}

.dest-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.dest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.dest-card-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================================
   SUCCESS / THANK-YOU PAGE
   ============================================================ */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  margin-top: var(--header-height);
}

.success-wrapper {
  max-width: 520px;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.success-icon-wrapper .lucide {
  width: 36px;
  height: 36px;
  color: var(--green);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.success-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-details {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.success-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

.success-detail-item:last-child {
  border-bottom: none;
}

.success-detail-label {
  color: var(--gray-500);
  font-weight: 500;
}

.success-detail-value {
  color: var(--primary);
  font-weight: 600;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   BUTTON ENHANCEMENTS — Premium Interactions
   ============================================================ */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(13, 27, 42, 0.35);
}

/* ============================================================
   ENHANCED PACKAGE CARD — Premium Depth
   ============================================================ */
.package-card {
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(197, 168, 128, 0.15);
}

.feature-card {
  transition: var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   FORM VALIDATION — Error Messages
   ============================================================ */
.form-error {
  display: block;
  color: var(--red);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================================
   COMPONENT LOADING — Skeleton / Fallback
   ============================================================ */
.component-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--gray-500);
  font-size: 14px;
}

.component-fallback {
  background: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  text-align: center;
  font-size: 14px;
}

.component-fallback a {
  color: var(--accent-light);
  margin: 0 12px;
  font-weight: 600;
}

.component-fallback a:hover {
  text-decoration: underline;
}

