/* ==========================================================================
   ASYIFA CATERING - OFFICIAL STYLESHEET
   Brand: Asyifa Catering (Homemade Taste, Professional Service)
   Color Palette: Olive Sage Green, Warm Champagne Gold, Ivory & Charcoal
   ========================================================================== */

:root {
  /* Brand Primary: Olive / Sage Green */
  --primary: #476332;
  --primary-dark: #324723;
  --primary-light: #5f8244;
  --primary-subtle: #f0f6ec;
  --primary-border: #d4e4cc;

  /* Brand Secondary: Warm Champagne Gold */
  --gold: #c29944;
  --gold-dark: #a17c2f;
  --gold-light: #dfb966;
  --gold-subtle: #fcf7eb;
  --gold-border: #ebd9b0;

  /* Neutrals & Backgrounds */
  --bg-main: #fbf9f5;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-alt: #f4f0e6;
  --bg-dark: #192415;
  --bg-dark-card: #24301f;

  /* Text Colors */
  --text-main: #182215;
  --text-muted: #53614e;
  --text-light: #83927e;
  --text-white: #ffffff;

  /* Accents & Status */
  --accent-wa: #25d366;
  --accent-wa-dark: #128c7e;
  --accent-ig: #e1306c;
  --accent-badge: #d97706;

  /* Borders & Shadows */
  --border-light: #e8e3d6;
  --border-subtle: #f0ebe0;
  --shadow-sm: 0 2px 8px rgba(25, 36, 21, 0.05);
  --shadow-md: 0 10px 25px -4px rgba(71, 99, 50, 0.08), 0 6px 12px -2px rgba(25, 36, 21, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(25, 36, 21, 0.12);
  --shadow-gold: 0 10px 30px rgba(194, 153, 68, 0.22);
  --shadow-green: 0 10px 25px rgba(71, 99, 50, 0.25);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   Typography Helper
   -------------------------------------------------------------------------- */
.serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--gold);
}

.text-primary {
  color: var(--primary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-subtle);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.section-tag.gold-tag {
  background-color: var(--gold-subtle);
  color: var(--gold-dark);
  border-color: var(--gold-border);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--bg-dark);
  color: #c9d8c2;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(194, 153, 68, 0.25);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-info-item i {
  color: var(--gold);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #d1dfca;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.top-social-link:hover {
  color: var(--gold-light);
}

/* Top Bar Halal Badge */
.top-halal-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  background: rgba(194, 153, 68, 0.14) !important;
  border: 1px solid rgba(194, 153, 68, 0.45) !important;
  padding: 0.22rem 0.85rem !important;
  border-radius: 9999px !important;
  transition: all 0.25s ease !important;
}
.top-halal-badge:hover {
  background: rgba(194, 153, 68, 0.24) !important;
  border-color: rgba(194, 153, 68, 0.7) !important;
}
.top-halal-logo {
  height: 20px !important;
  width: auto !important;
  object-fit: contain !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.top-halal-text {
  color: #f7edd7 !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  white-space: nowrap !important;
}

/* --------------------------------------------------------------------------
   Main Navbar
   -------------------------------------------------------------------------- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.main-header .container {
  max-width: 1320px;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px !important;
  width: auto !important;
  object-fit: contain;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-text h1 {
  font-family: var(--font-serif);
  font-size: 1.22rem !important;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
}

.brand-text span {
  font-size: 0.63rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9f7d36;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.05rem;
  margin: 0 0.5rem;
}

.nav-link {
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: var(--text-muted);
  position: relative;
  padding: 0.35rem 0 !important;
  white-space: nowrap !important;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.25s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-actions .btn-wa {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  padding: 0.55rem 1.15rem !important;
  font-size: 0.85rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
}

.nav-actions .btn-wa span {
  white-space: nowrap !important;
  display: inline-block !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-subtle);
  border-color: var(--primary-dark);
}

.btn-wa {
  background-color: var(--accent-wa);
  color: #ffffff;
}

.btn-wa:hover {
  background-color: var(--accent-wa-dark);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  font-size: 1.6rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.4rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem 0;
  background: linear-gradient(135deg, #fdfbf8 0%, #f4efe5 50%, #edf4e8 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(rgba(194, 153, 68, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero-content h1 span.gold-highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero-content p {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-white);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.hero-badge-item i {
  color: var(--primary);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-chef-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  min-height: 520px;
}

.hero-chef-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(194, 153, 68, 0.22) 0%, rgba(71, 99, 50, 0.16) 45%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 4.5s ease-in-out infinite alternate;
}

.hero-chef-ring {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: var(--radius-full);
  border: 2px dashed rgba(194, 153, 68, 0.35);
  z-index: 1;
  pointer-events: none;
  animation: rotateRing 35s linear infinite;
}

.hero-chef-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(25, 36, 21, 0.15));
  animation: chefFloat 4s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes chefFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.8deg);
  }
}

@keyframes glowPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-floating-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 0.72rem 1.15rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(25, 36, 21, 0.1), 0 4px 10px rgba(194, 153, 68, 0.12);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 3;
  transition: transform 0.3s ease;
}

.hero-floating-badge:hover {
  transform: scale(1.04);
}

.badge-chef-price {
  top: 15px;
  right: -25px;
  animation: floatBadge1 3.8s ease-in-out infinite;
}

.badge-chef-rating {
  top: 8px;
  left: -30px;
  animation: floatBadge2 4.2s ease-in-out infinite;
}

.badge-chef-service {
  bottom: 30px;
  left: -20px;
  animation: floatBadge1 4.6s ease-in-out infinite 0.6s;
}

.badge-chef-taste {
  bottom: 25px;
  right: -15px;
  animation: floatBadge2 5s ease-in-out infinite 0.3s;
}

@keyframes floatBadge1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatBadge2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-floating-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-floating-icon.gold-icon {
  background-color: var(--gold-subtle);
  color: var(--gold-dark);
}

.hero-floating-icon.green-icon {
  background-color: var(--primary-subtle);
  color: var(--primary);
}

.hero-floating-text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-main);
}

.hero-floating-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Services Section (Layanan Acara)
   -------------------------------------------------------------------------- */
.services-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
  background-color: #ffffff;
}

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

.service-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--gold-subtle);
  color: var(--gold-dark);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Packages Section (3 Paket Pemesanan + Custom)
   -------------------------------------------------------------------------- */
.packages-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, #f2ece0 100%);
  position: relative;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
}

.package-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Popular Package Highlight */
.package-card.popular {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
  z-index: 2;
}

.package-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.package-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(194, 153, 68, 0.4);
}

.package-header {
  text-align: center;
  border-bottom: 1px dashed var(--border-light);
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
}

.package-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.package-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  min-height: 40px;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
}

.package-price .currency {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.package-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.package-price .unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.package-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  flex-grow: 1;
}

.package-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.package-menu-item i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.package-footer {
  margin-top: auto;
}

.package-footer .btn {
  width: 100%;
}

/* Custom Package Banner */
.custom-package-card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-card) 100%);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  border: 1px solid rgba(194, 153, 68, 0.3);
  box-shadow: var(--shadow-lg);
}

.custom-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.custom-card-content p {
  font-size: 1.05rem;
  color: #d1dfca;
  max-width: 680px;
}

.custom-card-cta {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Calculator Section (Kalkulator Porsi & Budget)
   -------------------------------------------------------------------------- */
.calculator-section {
  padding: 6.5rem 0;
  background-color: var(--bg-white);
  position: relative;
}

.calc-card-container {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
}

.calc-controls h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--primary-dark);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.calc-group {
  margin-bottom: 1.85rem;
}

.calc-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
}

.calc-select,
.calc-input {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

.calc-select:focus,
.calc-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(71, 99, 50, 0.12);
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.calc-min-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: var(--gold-subtle);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-border);
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
}

.calc-range {
  flex-grow: 1;
  accent-color: var(--primary);
  height: 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

/* Custom Interactive Portion Input Box */
.portion-input-box {
  display: inline-flex;
  align-items: center;
  background-color: var(--bg-white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(71, 99, 50, 0.1);
  overflow: hidden;
  transition: var(--transition);
  min-width: 170px;
}

.portion-input-box:focus-within {
  box-shadow: 0 0 0 3px rgba(71, 99, 50, 0.2);
  border-color: var(--primary-dark);
}

.btn-portion-step {
  background-color: var(--primary-subtle);
  color: var(--primary-dark);
  width: 38px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-portion-step:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.portion-input-inner {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  background-color: #ffffff;
}

.portion-custom-input {
  width: 65px;
  text-align: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary-dark);
  background: transparent;
  padding: 0.4rem 0;
  -moz-appearance: textfield;
}

.portion-custom-input::-webkit-outer-spin-button,
.portion-custom-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.portion-unit {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  user-select: none;
}

/* Quick Preset Chips */
.portion-presets-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.presets-caption {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.presets-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.btn-preset {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-preset:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-subtle);
}

.btn-preset.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(71, 99, 50, 0.25);
}

.calc-addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  font-weight: 600;
}

.addon-checkbox-label:hover {
  border-color: var(--gold);
  background-color: var(--gold-subtle);
}

.addon-checkbox-label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 17px;
  height: 17px;
}

/* Calculator Result Card */
.calc-result-box {
  background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-dark-card) 100%);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(194, 153, 68, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.calc-result-header h4 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.calc-result-header p {
  font-size: 0.88rem;
  color: #b7c7b0;
  margin-bottom: 1.75rem;
}

.calc-breakdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-bottom: 1.75rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #d1dfca;
}

.breakdown-row span.val {
  font-weight: 700;
  color: var(--text-white);
}

.total-estimate-wrap {
  text-align: center;
  margin-bottom: 1.75rem;
}

.total-estimate-wrap span.caption {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
}

.total-estimate-wrap .total-price {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.calc-result-box .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Why Choose Us (Keunggulan Asyifa)
   -------------------------------------------------------------------------- */
.why-section {
  padding: 6.5rem 0;
  background-color: var(--bg-main);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.25rem;
}

.why-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  display: flex;
  gap: 1.25rem;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-text h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 0.45rem;
}

.why-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Gallery Showcase (Foto Makanan & Kemasan)
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-card {
  position: relative;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.gallery-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #f4efe5;
}

.gallery-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

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

.gallery-event-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(25, 36, 21, 0.88);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  z-index: 2;
  border: 1px solid rgba(194, 153, 68, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-card-body {
  padding: 1.5rem 1.6rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--bg-white);
}

.gallery-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.gallery-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.gallery-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-light);
  transition: var(--transition);
}

.gallery-card-cta:hover {
  color: var(--accent-wa-dark);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Order Flow (Alur Pemesanan 4 Langkah)
   -------------------------------------------------------------------------- */
.flow-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f7f3ea 0%, #edf4e8 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.flow-step-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.flow-step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--gold);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(194, 153, 68, 0.4);
}

.flow-step-icon {
  width: 60px;
  height: 60px;
  margin: 1rem auto 1.25rem auto;
  border-radius: var(--radius-md);
  background-color: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.flow-step-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.flow-step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   FAQ Section (Pertanyaan Umum)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 6.5rem 0;
  background-color: var(--bg-white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-main);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold);
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

/* --------------------------------------------------------------------------
   Location & Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 6.5rem 0;
  background-color: var(--bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.contact-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-item-icon.gold-bg {
  background-color: var(--gold-subtle);
  color: var(--gold-dark);
}

.contact-item-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-item-text a:hover {
  color: var(--primary);
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  min-height: 420px;
  height: 100%;
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: var(--bg-dark);
  color: #c9d8c2;
  padding: 4.5rem 0 2rem 0;
  border-top: 2px solid var(--gold-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-img {
  height: 48px !important;
  width: auto !important;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #aebfa7;
  max-width: 380px;
  line-height: 1.6;
}

.ig-footer-icon {
  width: 14px !important;
  height: 14px !important;
  display: inline-block;
  vertical-align: middle;
}

.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #c9d8c2;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-ig-link:hover {
  color: var(--gold-light);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: #c9d8c2;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #8c9e85;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--accent-wa);
  color: #ffffff;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulseWa 2.5s infinite;
}

.floating-wa-btn:hover {
  background-color: var(--accent-wa-dark);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-wa-icon {
  font-size: 1.3rem;
  display: flex;
}

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

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .package-card.popular {
    transform: none;
  }
  .package-card.popular:hover {
    transform: translateY(-8px);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badges-list {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-visual {
    max-width: 540px;
    margin: 0 auto;
  }
  .calc-card-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .navbar {
    height: 70px;
  }
  .brand-logo-img {
    height: 48px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-actions .btn-wa {
    display: none;
  }
  .hero {
    padding: 3rem 0;
  }
  .hero-chef-container {
    min-height: 400px;
    max-width: 100%;
  }
  .hero-chef-img {
    max-width: 340px;
  }
  .hero-chef-glow {
    width: 300px;
    height: 300px;
  }
  .hero-chef-ring {
    width: 320px;
    height: 320px;
  }
  .hero-floating-badge {
    padding: 0.6rem 0.9rem;
    gap: 0.5rem;
  }
  .hero-floating-badge strong {
    font-size: 0.85rem;
  }
  .hero-floating-badge span {
    font-size: 0.72rem;
  }
  .hero-floating-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .badge-chef-price {
    top: 5px;
    right: -10px;
  }
  .badge-chef-rating {
    top: 5px;
    left: -10px;
  }
  .badge-chef-service {
    bottom: 20px;
    left: -10px;
  }
  .badge-chef-taste {
    bottom: 15px;
    right: -10px;
  }
  .custom-package-card {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 1.75rem;
  }
  .calc-card-container {
    padding: 1.75rem;
  }
  .slider-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .portion-input-box {
    align-self: center;
  }
  .calc-addons-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .gallery-card-thumb {
    aspect-ratio: 16 / 10;
  }
  .gallery-card-body {
    padding: 1.25rem 1.35rem 1.4rem 1.35rem;
  }
  .gallery-card-body h4 {
    font-size: 1.2rem;
  }
  .gallery-card-body p {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .floating-wa-btn span {
    display: none;
  }
  .floating-wa-btn {
    padding: 0.95rem;
    border-radius: var(--radius-full);
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

@media (max-width: 480px) {
  .badge-chef-rating,
  .badge-chef-taste {
    display: none;
  }
  .hero-chef-img {
    max-width: 290px;
  }
  .hero-chef-container {
    min-height: 340px;
  }
}

/* --------------------------------------------------------------------------
   Instagram Custom Logo Branding
   -------------------------------------------------------------------------- */
.ig-topbar-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.contact-item-icon.ig-item-icon {
  background: var(--primary);
  border: 1px solid rgba(194, 153, 68, 0.35);
  box-shadow: 0 4px 10px rgba(71, 99, 50, 0.25);
}

.ig-contact-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ig-footer-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.gallery-ig-cta {
  margin-top: 2.75rem;
  text-align: center;
}

.btn-outline-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  background-color: var(--primary);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(194, 153, 68, 0.45);
  box-shadow: 0 4px 14px rgba(71, 99, 50, 0.22);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-ig:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(71, 99, 50, 0.32);
  color: var(--gold-light) !important;
}

.ig-btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
}

.mobile-nav-ig {
  display: none;
}

@media (max-width: 992px) {
  .mobile-nav-ig {
    display: block;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border-light);
  }
}

/* --------------------------------------------------------------------------
   WhatsApp Custom Logo Branding (High-Res Transparent Monochrome)
   -------------------------------------------------------------------------- */
.wa-topbar-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.wa-btn-icon {
  width: 19px;
  height: 19px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.wa-gallery-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.wa-contact-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

.wa-flow-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.wa-floating-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
