/* ==========================================================================
   MAHLIGAI RASA WEDDING CATERING - STYLESHEET
   Tema: Luxury Wedding Banquet (Champagne Gold, Ivory, & Charcoal)
   ========================================================================== */

:root {
  --primary: #c5a059;
  --primary-dark: #9e7d3b;
  --primary-light: #e8d5af;
  --primary-subtle: #fbf7f0;
  
  --secondary: #2c3e50;
  --accent-rose: #a04c5c;
  --accent-rose-light: #fdf2f4;

  --bg-main: #ffffff;
  --bg-soft: #fbf9f5;
  --bg-cream: #f5efe6;
  --bg-dark: #16181b;
  --bg-dark-card: #202328;

  --text-main: #1e252d;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --border-light: #ebd8bf;
  --border-subtle: #f0e6d8;
  --border-card: rgba(197, 160, 89, 0.2);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(197, 160, 89, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(44, 62, 80, 0.12);
  --shadow-gold: 0 8px 25px rgba(197, 160, 89, 0.25);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Base Reset */
*, *::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;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #c5a059 0%, #a88139 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary-subtle);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-client-portal {
  background: var(--primary-subtle);
  color: var(--primary-dark);
  border: 1px solid var(--border-light);
  font-size: 0.88rem;
  padding: 8px 18px;
}

.btn-client-portal:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.top-notice-bar {
  background-color: var(--bg-dark);
  color: var(--primary-light);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

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

.notice-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-right a {
  color: var(--primary-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.notice-right a:hover {
  color: #fff;
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

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

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

.brand-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #c5a059 0%, #8b6826 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.35);
}

.brand-text h1 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.94rem;
  position: relative;
  padding: 6px 0;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 90px 0 110px;
  background: linear-gradient(180deg, #fbf7f0 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 22px;
  font-weight: 700;
}

.hero-content h2 span {
  color: var(--primary-dark);
  font-style: italic;
}

.hero-content p {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.badge-item {
  display: flex;
  flex-direction: column;
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.badge-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-subtle);
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.floating-badge.badge-left {
  bottom: -25px;
  left: -25px;
}

.floating-badge.badge-right {
  top: 25px;
  right: -25px;
  animation-delay: 1.5s;
}

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

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.badge-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FEATURES / WHY US SECTION
   ========================================================================== */
.features-section {
  padding: 90px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.feature-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  padding: 34px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  position: relative;
}

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

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid var(--border-light);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

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

/* ==========================================================================
   WEDDING PACKAGES SECTION
   ========================================================================== */
.packages-section {
  padding: 100px 0;
  background: var(--bg-soft);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 55px;
  align-items: stretch;
}

.package-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

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

.package-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

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

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c5a059 0%, #8b6826 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
}

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

.package-tag {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: block;
}

.package-header h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.package-price {
  margin-top: 10px;
}

.price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  vertical-align: top;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
}

.package-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 14px;
}

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

.package-features li.highlight {
  font-weight: 600;
  color: var(--primary-dark);
}

/* ==========================================================================
   INTERACTIVE CATERING ESTIMATOR (KALKULATOR PORSI)
   ========================================================================== */
.calculator-section {
  padding: 95px 0;
  background: #ffffff;
}

.calculator-box {
  background: linear-gradient(145deg, #fbf7f0 0%, #ffffff 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  margin-top: 45px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.calc-inputs h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.calc-group {
  margin-bottom: 24px;
}

.calc-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.calc-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

.calc-slider-wrapper input[type="range"] {
  flex-grow: 1;
  accent-color: var(--primary);
  height: 6px;
  border-radius: 3px;
}

.calc-number-display {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
  min-width: 110px;
  text-align: center;
}

.calc-select {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: #ffffff;
  color: var(--text-main);
  outline: none;
  font-family: inherit;
}

.calc-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.calc-result-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 34px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.calc-result-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.calc-result-header h4 {
  font-size: 1.15rem;
  font-family: var(--font-serif);
}

.calc-result-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.result-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.breakdown-item {
  background: var(--bg-soft);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}

.breakdown-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.breakdown-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.calc-total-box {
  background: var(--primary-subtle);
  border: 1px solid var(--border-light);
  padding: 18px;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 20px;
}

.calc-total-label {
  font-size: 0.82rem;
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
}

.calc-total-amount {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 4px;
}

/* ==========================================================================
   MENU SHOWCASE & FOOD STALLS (GUBUKAN)
   ========================================================================== */
.menu-section {
  padding: 95px 0;
  background: var(--bg-soft);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

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

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-item-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.menu-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.menu-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.menu-item-card:hover .menu-img-wrapper img {
  transform: scale(1.06);
}

.menu-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(26, 29, 32, 0.85);
  color: #ffffff;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu-card-body {
  padding: 22px;
}

.menu-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.menu-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.menu-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--primary-dark);
  font-weight: 600;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

/* ==========================================================================
   FOOD TASTING & WORKFLOW SECTION
   ========================================================================== */
.workflow-section {
  padding: 95px 0;
  background: #ffffff;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 55px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c5a059 0%, #8b6826 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
}

.step-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

/* CTA Tasting Banner */
.tasting-banner {
  background: linear-gradient(135deg, #202328 0%, #16181b 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #ffffff;
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: var(--shadow-lg);
}

.tasting-content h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 14px;
}

.tasting-content h3 span {
  color: var(--primary);
}

.tasting-content p {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 24px;
}

.tasting-perks {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--primary-light);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 95px 0;
  background: var(--bg-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #f59e0b;
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 45px;
  margin-bottom: 60px;
}

.footer-brand .brand-text h1 {
  color: #ffffff;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  color: var(--text-light);
}

.footer-col h4 {
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 4px;
}

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

.portal-quick-link {
  color: var(--primary);
  font-weight: 600;
}

.portal-quick-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .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);
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tasting-banner {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    display: none;
  }
  .navbar {
    height: 70px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    align-items: flex-start;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-menu.open {
    left: 0;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-content h2 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .calculator-box {
    padding: 26px 20px;
  }
}

