/* 
 * Bali Fresh - Premium Stylesheet
 * Custom visual design system overriding Bootstrap defaults
 */

/* --- Custom Variables & Theme Colors --- */
:root {
  --primary-orange: #f97316;
  --primary-hover: #c2410c;
  --secondary-accent: #ffb703;
  --accent-orange: #fb923c;
  --dark-charcoal: #121212;
  --dark-surface: #1e1e1e;
  --light-cream: #fbf9f6;
  --cream-accent: #f5efe6;
  --text-dark: #2d2d2d;
  --text-muted: #6e6e6e;
  --white-glass: rgba(255, 255, 255, 0.85);
  --shadow-sm: 0 4px 6px -1px rgba(249, 115, 22, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(249, 115, 22, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(249, 115, 22, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Font Import & General Setup --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

html {
  scroll-padding-top: 82px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--light-cream);
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 82px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* --- Fixed Top Glassmorphic Navbar --- */
.navbar-glass {
  background: var(--white-glass);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(249, 115, 22, 0.08);
  transition: var(--transition-smooth);
}

.navbar-brand-capsule {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  border: 0;
}

.brand-logo-img {
  height: 26px;
  object-fit: contain;
}

.brand-logo-full {
  height: 44px;
  width: auto;
  max-width: 260px;
}

.brand-logo-footer {
  height: 54px;
  width: auto;
  max-width: 220px;
}

.footer-contact-icon {
  color: var(--primary-orange);
}

.brand-title-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--primary-orange);
  margin-left: 8px;
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark) !important;
  transition: var(--transition-smooth);
  margin: 0 6px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-orange);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-orange) !important;
}

/* --- Styled Buttons --- */
.btn-premium {
  background: linear-gradient(135deg, var(--primary-orange), #fb923c);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
  color: #ffffff;
}

.btn-whatsapp-cta {
  background: linear-gradient(135deg, #18c75a, #0f9f73);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 10px 18px 10px 12px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 12px 28px rgba(24, 199, 90, 0.25);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.btn-whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(24, 199, 90, 0.35);
  color: #ffffff;
}

.btn-secondary-premium {
  background: #ffffff;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 10px 18px 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.btn-secondary-premium:hover {
  background-color: #fff7ed;
  color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-actions .btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.btn-secondary-premium .btn-icon {
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-orange);
}

/* --- Hero Banner Section --- */
.hero-section {
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #f5efe6 0%, var(--light-cream) 100%);
  position: relative;
}

.hero-tag {
  background-color: rgba(249, 115, 22, 0.08);
  color: var(--primary-orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(to right, var(--primary-orange), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.hero-img-container {
  position: relative;
  max-width: 480px;
  margin-left: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: var(--transition-smooth);
}

.hero-img-container:hover {
  transform: scale(1.02);
}

/* --- Quick Promotion Banner --- */
.promo-banner {
  background: linear-gradient(135deg, var(--primary-orange), #c2410c);
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  top: -150px;
  right: -50px;
}

.promo-tag {
  background-color: var(--secondary-accent);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* --- Card Designs & Interactive Effects --- */
.card-promo {
  border: none;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.card-promo:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(249, 115, 22, 0.15);
}

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

.card-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card-promo:hover img {
  transform: scale(1.06);
}

/* --- Clean Shop Experience Section --- */
.shop-experience-section {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.13), transparent 32%),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
  border-top: 1px solid rgba(249, 115, 22, 0.08);
  border-bottom: 1px solid rgba(249, 115, 22, 0.08);
  overflow: hidden;
}

.experience-kicker {
  background: rgba(249, 115, 22, 0.09);
  color: var(--primary-orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  border: 1px solid rgba(249, 115, 22, 0.14);
}

.experience-highlight-card {
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.experience-highlight-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex: 0 0 auto;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.25);
}

.shop-photo-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.shop-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  margin: 0;
  min-height: 260px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(18, 18, 18, 0.09);
  border: 4px solid #ffffff;
}

.shop-photo-card-large {
  grid-row: span 2;
}

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

.shop-photo-card:hover img {
  transform: scale(1.045);
}

.shop-photo-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0), rgba(18, 18, 18, 0.72));
  pointer-events: none;
}

.shop-photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #ffffff;
}

.shop-photo-card figcaption strong,
.shop-photo-card figcaption span {
  display: block;
}

.shop-photo-card figcaption strong {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 3px;
}

.shop-photo-card figcaption span {
  font-size: 13px;
  opacity: 0.86;
}

.experience-proof {
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
}

.experience-proof i {
  color: var(--primary-orange);
  font-size: 22px;
}

/* --- Women Workforce Section --- */
.women-workforce-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  border-top: 1px solid rgba(249, 115, 22, 0.08);
  border-bottom: 1px solid rgba(249, 115, 22, 0.08);
  overflow: hidden;
  position: relative;
}

.women-workforce-image-card {
  position: relative;
  border-radius: 28px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(18, 18, 18, 0.09);
  border: 1px solid rgba(18, 18, 18, 0.08);
  z-index: 2;
}

.women-workforce-image-card::before {
  content: '';
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  z-index: -1;
  border-radius: 40px;
  filter: blur(10px);
  pointer-events: none;
}

.women-workforce-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.women-workforce-image-card:hover img {
  transform: scale(1.03);
}

/* Floating glassmorphic pills */
.floating-glass-pill {
  position: absolute;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.floating-glass-pill i {
  color: var(--primary-orange);
  font-size: 16px;
  background: rgba(249, 115, 22, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-glass-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.pill-operations {
  top: 15%;
  right: -20px;
  animation: float-ops 5s ease-in-out infinite;
}

.pill-customer {
  bottom: 15%;
  left: -20px;
  animation: float-cust 5s ease-in-out infinite 2.5s;
}

@keyframes float-ops {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes float-cust {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(8px) rotate(1deg); }
}

/* 50% Balance Bar */
.balance-bar-container {
  background: var(--cream-accent);
  padding: 16px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(249, 115, 22, 0.08);
}

.balance-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.balance-bar-label span:last-child {
  color: var(--primary-orange);
}

.balance-bar-track {
  height: 10px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 99px;
  position: relative;
  overflow: hidden;
}

.balance-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--primary-orange), #fb923c);
  border-radius: 99px;
}

/* Feature Cards Grid */
.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card-premium {
  background: #ffffff;
  border: 1px solid rgba(18, 18, 18, 0.06);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.feature-card-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.2);
}

.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.feature-card-premium:hover .feature-card-icon {
  background: var(--primary-orange);
  color: #ffffff;
  transform: scale(1.05) rotate(-5deg);
}

.feature-card-content {
  flex-grow: 1;
}

.feature-card-content h5 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.feature-card-content p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- Documentary Video Section --- */
.documentary-section {
  background:
    linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(41, 25, 16, 0.94)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.25), transparent 34%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.documentary-section .section-title {
  color: #ffffff;
}

.documentary-section .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.documentary-section .experience-kicker {
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary-accent);
  border-color: rgba(255, 255, 255, 0.12);
}

.documentary-points {
  display: grid;
  gap: 12px;
}

.documentary-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.documentary-point i {
  color: var(--secondary-accent);
  font-size: 20px;
}

.documentary-video-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.documentary-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #000000;
  object-fit: cover;
}

.documentary-video-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 6px 4px;
}

.documentary-video-caption strong,
.documentary-video-caption span {
  display: block;
}

.documentary-video-caption strong {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
}

.documentary-video-caption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.documentary-duration {
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.18);
  color: #ffffff !important;
  font-weight: 800;
}

/* --- WhatsApp Flow Timeline --- */
.flow-grid {
  position: relative;
}

.flow-grid::before {
  content: none;
  position: absolute;
  left: 12%;
  right: 12%;
  top: 62px;
  height: 3px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0), rgba(249, 115, 22, 0.32), rgba(249, 115, 22, 0));
  border-radius: 999px;
}

.flow-step-card {
  border: 1px solid rgba(249, 115, 22, 0.11);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  border-radius: 24px;
  padding: 28px 24px 26px;
  box-shadow: 0 14px 38px rgba(18, 18, 18, 0.05);
  position: relative;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.flow-step-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-orange), var(--secondary-accent));
}

.flow-step-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.22);
}

.flow-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  border: 5px solid #fff3e8;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.22);
}

.flow-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.09);
  color: var(--primary-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.flow-step-card h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.flow-step-card p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 245px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Section Styling --- */
.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-orange);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

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

@media (max-width: 991px) {
  .flow-grid::before {
    display: none;
  }

  .shop-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }

  .shop-photo-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 575px) {
  .shop-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .shop-photo-card-large {
    grid-column: auto;
  }

  .experience-highlight-card {
    align-items: flex-start;
  }

  .pill-operations {
    right: 15px;
    top: 15%;
  }

  .pill-customer {
    left: 15px;
    bottom: 15%;
  }

  .feature-card-premium {
    padding: 15px;
  }

  .documentary-video-caption {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* --- Quality Guarantee Badges --- */
.badge-feature {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.badge-feature:hover {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream-accent) 100%);
  transform: translateY(-3px);
}

.badge-feature i {
  font-size: 40px;
  color: var(--primary-orange);
  margin-bottom: 15px;
  display: inline-block;
}

/* --- Sticky WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  color: #ffffff;
  font-size: 30px;
  z-index: 9999;
  transition: var(--transition-smooth);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128C7E;
  color: #ffffff;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- Collapsible Accordion Styles --- */
.accordion-premium .accordion-item {
  border: none;
  background: #ffffff;
  border-radius: 16px !important;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-premium .accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  padding: 20px 24px;
  background: transparent;
  box-shadow: none;
}

.accordion-premium .accordion-button:not(.collapsed) {
  color: var(--primary-orange);
  background-color: rgba(249, 115, 22, 0.03);
}

.accordion-premium .accordion-button::after {
  filter: sepia(100%) hue-rotate(320deg) saturate(300%);
}

/* --- Footer Layout --- */
.premium-footer {
  background-color: var(--dark-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 4px solid var(--primary-orange);
}

.premium-footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 24px;
}

.premium-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.premium-footer a:hover {
  color: var(--secondary-accent);
  padding-left: 5px;
}

.premium-footer .footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-right: 10px;
  transition: var(--transition-smooth);
}

.premium-footer .footer-social-icon:hover {
  background: var(--primary-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Language Switcher Capsule --- */
.lang-switcher-capsule {
  display: inline-flex;
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  color: var(--primary-orange);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--primary-orange), #fb923c);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

