/* ============================================
   CUTIILE TALE - STYLESHEET PRINCIPAL
   Versiune: 2.0
   Ultima actualizare: 2024-12-07
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* === CSS VARIABLES === */
:root {
  /* Brand Colors */
  --brand-primary: #e11d48;
  --brand-primary-hover: #be123c;
  --brand-primary-soft: #ffe4e6;
  --brand-primary-softer: #fff1f2;
  --brand-gold: #f59e0b;
  --brand-gold-soft: #fef3c7;

  /* Missing Variables (Critical for Layout) */
  --color-primary: #d4a574; /* Warm gold for buttons/borders */
  
  /* Neutral Colors */
  --color-bg: #fdf5f7;
  --color-surface: #ffffff;
  --color-text: #111827;
  --color-text-secondary: #4b5563;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;
  
  /* Semantic Colors */
  --color-success: #059669;
  --color-success-bg: #ecfdf5;
  --color-success-border: #bbf7d0;
  --color-error: #dc2626;
  --color-error-bg: #fef2f2;
  --color-error-border: #fecaca;
  --color-info: #2563eb;
  --color-info-bg: #eff6ff;
  --color-info-border: #bfdbfe;
  --color-warning: #d97706;
  --color-warning-bg: #fef9c3;
  --color-warning-border: #fef08a;
  
  /* Typography */
  --font-sans: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif; /* Alias for headings */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  
  /* Layout */
  --container-max: 1200px;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 10px 25px rgba(225, 17, 72, 0.28);
  --shadow-primary-lg: 0 14px 32px rgba(225, 17, 72, 0.36);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  
  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-toast: 500;
}

/* === TYPOGRAPHY === */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background: radial-gradient(circle at top, var(--brand-primary-soft) 0%, var(--color-bg) 45%, var(--color-surface) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-playfair { font-family: var(--font-serif); }
.font-roboto { font-family: var(--font-sans); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }

@media (min-width: 768px) {
  h1 { font-size: var(--font-size-4xl); }
  h2 { font-size: var(--font-size-3xl); }
  h3 { font-size: var(--font-size-2xl); }
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-secondary);
}

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

a:hover {
  color: var(--brand-primary-hover);
}

/* === ACCESSIBILITY === */
/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: var(--z-modal);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

/* Focus States */
:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

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

.page-padding-lg {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.page-padding-md {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.section-intro-sm {
  margin-bottom: 1rem;
}

.section-intro-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.section-intro-text {
  margin-bottom: 0.5rem;
  max-width: 720px;
}

.header-compact {
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
}

.christmas-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.badge-christmas {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

.section-title-mt-sm {
  margin-top: 0.75rem;
}

.list-christmas {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
}

.text-warning-sm {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #b91c1c;
}

.image-christmas {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid #ffffff;
  max-width: 100%;
  height: auto;
}

.section-title-mb-md {
  margin-bottom: 1.5rem;
}

.actions-mt-md {
  margin-top: 1.5rem;
}

.text-no-margin {
  margin: 0;
}

.text-404 {
  font-size: 3rem;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.text-404-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.text-404-body {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.centered-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.centered-content {
  text-align: center;
  padding: 2rem;
}

.brand-icon-lg {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.button-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  min-height: 44px; /* Touch target */
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: var(--color-surface);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary-lg);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 6px 18px rgba(225, 17, 72, 0.25);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover:not(:disabled) {
  background-color: var(--color-surface);
  border-color: var(--color-muted);
}

.btn-ghost {
  background-color: var(--color-border-light);
  color: var(--color-muted);
  border-color: var(--color-border);
}

.btn-ghost:hover:not(:disabled) {
  background-color: var(--color-border);
  color: var(--color-text);
}

.btn-sm {
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-xs);
  min-height: 36px;
}

.btn-lg {
  padding: var(--space-4) var(--space-6);
  font-size: var(--font-size-base);
}

/* Button loading state */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-surface);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.btn-outline:hover:not(:disabled) {
  background: var(--color-primary);
  color: var(--color-surface);
}

/* === BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
}

.badge-soft {
  background-color: var(--brand-primary-soft);
  color: var(--brand-primary);
  border: 1px solid var(--color-border);
}

.badge-success {
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid var(--color-success-border);
}

.badge-warning {
  background-color: var(--color-warning-bg);
  color: var(--color-warning);
  border: 1px solid var(--color-warning-border);
}

.badge-error {
  background-color: var(--color-error-bg);
  color: var(--color-error);
  border: 1px solid var(--color-error-border);
}

/* === CARDS === */
.card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-6);
}

.card-hover {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-hover-soft {
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.card-hover-soft:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
  background-color: var(--brand-primary-softer);
}

/* === FORMS === */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-border-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  min-height: 44px; /* Touch target */
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background-color: var(--color-surface);
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(225, 17, 72, 0.15);
  outline: none;
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-color: var(--color-error);
  animation: shake 0.3s ease;
}

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

.form-hint {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

.form-error {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-error);
}

/* === MESSAGES / ALERTS === */
.msg {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.msg-info {
  background-color: var(--color-info-bg);
  color: var(--color-info);
  border: 1px solid var(--color-info-border);
}

.msg-success {
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid var(--color-success-border);
}

.msg-warning {
  background-color: var(--color-warning-bg);
  color: var(--color-warning);
  border: 1px solid var(--color-warning-border);
}

.msg-error {
  background-color: var(--color-error-bg);
  color: var(--color-error);
  border: 1px solid var(--color-error-border);
}

/* === TOAST NOTIFICATIONS === */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-4);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 380px;
  width: 100%;
  pointer-events: none;
}

@media (max-width: 767px) {
  .toast-container {
    bottom: calc(var(--space-16) + env(safe-area-inset-bottom, 0px));
    left: var(--space-4);
    right: var(--space-4);
    max-width: none;
  }
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  pointer-events: auto;
  animation: slideInUp 0.3s ease, fadeOut 0.3s ease 4.7s forwards;
}

.toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.toast-content {
  flex: 1;
  min-width: 0;
}

.toast-title {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.toast-message {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
  margin-top: var(--space-1);
}

.toast-close {
  flex-shrink: 0;
  padding: var(--space-1);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

.toast-close:hover {
  color: var(--color-text);
}

.toast-success .toast-icon { color: var(--color-success); }
.toast-error .toast-icon { color: var(--color-error); }
.toast-warning .toast-icon { color: var(--color-warning); }
.toast-info .toast-icon { color: var(--color-info); }

/* === HEADER === */
.header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary), #f97316);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.brand-icon img {
  width: 32px;
  height: 32px;
}

.brand-name {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.brand-tagline {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.nav-link {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  padding: var(--space-2);
}

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

/* === HERO SECTION === */
.hero {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-16);
  animation: fadeIn 0.6s ease-out;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.hero-content {
  order: 2;
}

@media (min-width: 768px) {
  .hero-content {
    order: 1;
  }
}

.hero-card {
  order: 1;
}

@media (min-width: 768px) {
  .hero-card {
    order: 2;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-primary);
  border-radius: var(--radius-full);
  animation: pulse 1.6s infinite;
}

.hero-title {
  color: #312e81;
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero-meta {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

/* Hero Card / Slider */
.hero-card-float {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-card-inner {
  padding: var(--space-6) var(--space-8);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.hero-slider {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

@media (min-width: 768px) {
  .hero-slider {
    height: 260px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.hero-slide-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-caption {
  position: absolute;
  bottom: var(--space-2);
  left: var(--space-2);
  right: var(--space-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-xl);
  color: var(--color-surface);
  font-size: var(--font-size-sm);
}

.hero-slide-price {
  font-weight: 600;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-1);
  margin-top: var(--space-3);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--color-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.hero-dot:hover,
.hero-dot-active {
  background-color: var(--brand-primary);
}

/* === SECTIONS === */
.section {
  margin-bottom: var(--space-16);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-title {
  color: #312e81;
  margin-bottom: var(--space-3);
}

.section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-secondary);
}

/* Section - Special Crăciun */
.section-christmas {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-6) var(--space-8);
}

/* Section - Box Types Grid */
.box-types-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.box-type-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
}

.box-type-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  font-family: var(--font-sans);
}

.box-type-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.box-type-meta {
  font-size: var(--font-size-xs);
  color: var(--color-muted);
}

/* Section - How It Works */
.steps-grid {
  display: grid;
  gap: var(--space-6);
}

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

.step {
  display: flex;
  gap: var(--space-3);
}

.step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-primary);
  color: var(--color-surface);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
}

.step-content h3 {
  font-size: var(--font-size-base);
  font-weight: 600;
  font-family: var(--font-sans);
  margin-bottom: var(--space-2);
}

.step-content p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* Section - FAQ */
.faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--space-4);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: var(--font-size-xl);
  color: var(--brand-primary);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-4) var(--space-4);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* === FOOTER === */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding-top: var(--space-4);
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* === STICKY CTA MOBILE === */
.sticky-cta-mobile {
  position: fixed;
  bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-fixed);
  width: min(420px, calc(100% - var(--space-10)));
  display: flex;
}

.sticky-cta-mobile .btn {
  flex: 1;
  justify-content: center;
}

@media (min-width: 768px) {
  .sticky-cta-mobile {
    display: none;
  }
}

/* === CONFIGURATOR SPECIFIC === */
.configurator-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 880px) {
  .configurator-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: flex-start;
  }
}

.tag-soft {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background-color: var(--brand-primary-soft);
  color: var(--color-info);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

/* Catalog Grid */
.catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

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

.catalog-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-3);
  background-color: var(--brand-primary-softer);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.catalog-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.catalog-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-1);
}

.catalog-item-title {
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.catalog-item-price {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

.catalog-item-desc {
  font-size: var(--font-size-xs);
  color: var(--color-muted);
  margin-bottom: var(--space-2);
}

.variant-buttons {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.variant-buttons .btn {
  flex: 1;
  min-width: 80px;
}

/* Box Items Summary */
.box-items {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background-color: var(--brand-primary-softer);
  padding: var(--space-3);
  max-height: 280px;
  overflow-y: auto;
}

.box-empty {
  padding: var(--space-4);
  text-align: center;
  color: var(--color-muted);
  font-size: var(--font-size-sm);
}

.box-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: var(--space-2);
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
  animation: fadeIn 0.3s ease;
}

.box-row:last-child {
  border-bottom: none;
}

.box-row-added {
  animation: rowHighlight 0.6s ease-out;
}

.box-name {
  font-weight: 500;
  font-size: var(--font-size-sm);
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-lg);
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.qty-btn:hover {
  color: var(--brand-primary);
}

.box-price,
.box-total {
  text-align: right;
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

.remove-link {
  font-size: var(--font-size-xs);
  color: var(--color-error);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  transition: color var(--transition-fast);
}

.remove-link:hover {
  color: var(--brand-primary-hover);
}

/* Summary */
.summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.summary-tag {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
}

/* Emotion map */
.emotion-map {
  margin-top: var(--space-3);
}

.emotion-title {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-2);
}

.emotion-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.emotion-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-xs);
}

.emotion-label {
  color: var(--color-muted);
}

.emotion-dots {
  display: flex;
  gap: 4px;
}

.emotion-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background-color: transparent;
}

.emotion-dot-filled {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.summary-tag[data-level="low"] {
  background-color: var(--color-info-bg);
  color: var(--color-info);
  border: 1px solid var(--color-info-border);
}

.summary-tag[data-level="mid"] {
  background-color: var(--color-warning-bg);
  color: var(--color-warning);
  border: 1px solid var(--color-warning-border);
}

.summary-tag[data-level="high"] {
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid var(--color-success-border);
}

.budget-suggestion {
  margin-top: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background-color: var(--color-info-bg);
  border: 1px solid var(--color-info-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-xs);
  color: var(--color-muted);
}

/* Steps Pills */
.steps-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  font-size: var(--font-size-xs);
  color: var(--color-muted);
  transition: all var(--transition-fast);
}

.step-pill[data-active="true"] {
  background-color: var(--brand-primary-soft);
  border-color: var(--brand-primary);
  color: var(--color-text);
}

.step-pill .step-index {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--brand-primary-soft);
  color: var(--brand-primary);
  font-size: var(--font-size-xs);
  font-weight: 600;
}

.step-pill[data-active="true"] .step-index {
  background-color: var(--brand-primary);
  color: var(--color-surface);
}

/* Section Title in forms */
.section-title-sm {
  font-size: var(--font-size-base);
  font-weight: 600;
  font-family: var(--font-sans);
  margin: var(--space-4) 0 var(--space-3);
  color: var(--color-text);
}

/* Form Grid */
.form-grid {
  display: grid;
  gap: var(--space-3);
}

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

.field-row {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 600px) {
  .field-row {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Actions */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.hint {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-muted);
}

/* === REVEAL ON SCROLL === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* === ANIMATIONS === */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

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

@keyframes rowHighlight {
  0% { background-color: var(--brand-primary-soft); }
  100% { background-color: transparent; }
}

.animate-spin-slow {
  animation: spin 20s linear infinite;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.shadow-pulse {
  box-shadow: 0 0 0 6px rgba(225, 17, 72, 0.22);
  animation: pulse 1.6s infinite;
}

/* === PRINT STYLES === */
@media print {
  .sticky-cta-mobile,
  .nav,
  .btn,
  .toast-container {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  
  a {
    color: inherit;
    text-decoration: underline;
  }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-sm { font-size: var(--font-size-sm); }
.text-xs { font-size: var(--font-size-xs); }
.text-lg { font-size: var(--font-size-lg); }

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

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mt-4 { margin-top: var(--space-4); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }

.w-full { width: 100%; }
.max-w-2xl { max-width: 672px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   PACKAGE SELECTION SYSTEM
   Premium package cards with animations
   ============================================ */

.package-selection-section {
  margin-bottom: var(--space-8);
  padding: var(--space-6);
  background: linear-gradient(135deg, 
    var(--brand-primary-softer) 0%, 
    var(--color-surface) 50%,
    var(--brand-primary-softer) 100%);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.package-header-content {
  text-align: center;
  margin-bottom: var(--space-6);
}

.package-header-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

/* Comparison Table Toggle */
.package-comparison-toggle {
  text-align: center;
  margin-bottom: var(--space-4);
}

.package-comparison-table {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
  overflow-x: auto;
  animation: slideDown 0.3s ease-out;
}

.package-comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.package-comparison-table th,
.package-comparison-table td {
  padding: var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.package-comparison-table th {
  background: var(--brand-primary-softer);
  font-weight: 600;
  color: var(--color-text);
}

.package-comparison-table td:first-child {
  font-weight: 500;
}

/* Package Grid */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

/* Package Card */
.package-card {
  position: relative;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--brand-primary) 50%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.package-card:nth-child(1) { animation-delay: 0s; }
.package-card:nth-child(2) { animation-delay: 0.1s; }
.package-card:nth-child(3) { animation-delay: 0.2s; }

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

/* Hover Effect */
.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(225, 29, 72, 0.2);
  border-color: var(--brand-primary);
}

.package-card:focus {
  outline: 3px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Popular Package */
.package-card-popular {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.package-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-soft));
  color: #78350f;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
}

/* Package Badge (Icon) */
.package-badge {
  font-size: 56px;
  text-align: center;
  margin-bottom: var(--space-3);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

.package-card:hover .package-badge {
  transform: scale(1.15) rotate(10deg);
  filter: drop-shadow(0 6px 12px rgba(225, 29, 72, 0.3));
}

/* Video Preview Placeholder */
.package-video-preview {
  position: relative;
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  cursor: pointer;
}

.package-video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23f3f4f6" width="100" height="100"/><circle cx="50" cy="50" r="20" fill="%23e11d48" opacity="0.1"/></svg>') center/cover;
}

.video-play-icon {
  font-size: 32px;
  color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.95);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.package-video-preview:hover .video-play-icon {
  transform: scale(1.1);
  background: var(--brand-primary);
  color: white;
}

/* Package Header */
.package-header {
  text-align: center;
  margin-bottom: var(--space-3);
}

.package-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.package-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-primary);
  margin: 0;
}

.package-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px dotted var(--color-border);
}

/* Package Features */
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4) 0;
}

.package-features li {
  padding: var(--space-2) 0;
  font-size: 14px;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-light);
  transition: all 0.2s ease;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-card:hover .package-features li {
  color: var(--color-text);
  padding-left: var(--space-1);
}

/* Select Button */
.package-select-btn {
  width: 100%;
  margin-top: var(--space-3);
  font-weight: 600;
  transition: all 0.3s ease;
}

.package-select-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

/* Selected State */
.package-card[aria-checked="true"] {
  border-color: var(--brand-primary);
  border-width: 3px;
  background: linear-gradient(135deg, 
    rgba(225, 29, 72, 0.05) 0%, 
    rgba(225, 29, 72, 0.02) 50%,
    rgba(225, 29, 72, 0.05) 100%);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.15),
              0 8px 24px rgba(225, 29, 72, 0.2);
  transform: scale(1.03);
}

.package-card[aria-checked="false"] {
  opacity: 0.7;
}

.package-card[aria-checked="true"] {
  opacity: 1;
}

/* Selected Badge */
.package-selected-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--brand-primary);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: none;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.4);
}

.package-card[aria-checked="true"] .package-selected-badge {
  display: block;
}

@keyframes bounceIn {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Package Testimonial */
.package-testimonial {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.package-card:hover .package-testimonial {
  opacity: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-1);
  line-height: 1.5;
}

.testimonial-author {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
}

/* Package Summary Bar */
.package-summary-bar {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--color-surface);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-lg);
  animation: slideDown 0.4s ease-out;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.15);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.package-summary-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.package-summary-icon {
  font-size: 32px;
  animation: bounce 1s infinite;
}

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

.package-summary-text {
  flex: 1;
  font-size: 16px;
  min-width: 200px;
}

.package-summary-text strong {
  color: var(--brand-primary);
  font-size: 18px;
  text-transform: uppercase;
}

/* Budget Progress Bar */
.budget-progress-container {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: var(--brand-primary-softer);
  border-radius: var(--radius-lg);
}

.budget-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
}

.budget-progress-label {
  font-weight: 600;
  color: var(--color-text);
  font-size: 14px;
}

.budget-progress-value {
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 16px;
}

.budget-progress-bar {
  position: relative;
  height: 24px;
  background: var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--space-2);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.budget-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, 
    var(--brand-primary) 0%, 
    var(--brand-gold) 100%);
  border-radius: 12px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.3);
  position: relative;
  overflow: hidden;
}

.budget-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.budget-progress-marker {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--color-text);
  z-index: 1;
}

.budget-progress-marker-min {
  left: 0;
}

.budget-progress-marker-max {
  right: 0;
}

.budget-progress-status {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  margin-top: var(--space-2);
}

.budget-progress-status.status-low {
  color: var(--color-warning);
}

.budget-progress-status.status-good {
  color: var(--color-success);
}

.budget-progress-status.status-high {
  color: var(--color-info);
}

/* Auto-Suggest Section */
.auto-suggest-section {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: linear-gradient(135deg, 
    var(--color-info-bg) 0%, 
    var(--color-surface) 100%);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--color-info);
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.auto-suggest-header {
  text-align: center;
  margin-bottom: var(--space-4);
}

.auto-suggest-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.auto-suggest-subtitle {
  font-size: 14px;
  color: var(--color-muted);
}

.auto-suggest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-3);
}

.auto-suggest-item {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.auto-suggest-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
  border-color: var(--color-info);
}

.auto-suggest-item-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.auto-suggest-item-price {
  font-size: 13px;
  color: var(--brand-primary);
  font-weight: 600;
}

.auto-suggest-item-badge {
  display: inline-block;
  background: var(--color-success);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

/* Suggested Product Badge (in catalog) */
.suggested-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: auto;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
  animation: glow 2s infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .package-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .package-card {
    padding: var(--space-4);
  }

  .package-badge {
    font-size: 48px;
  }

  .package-name {
    font-size: 24px;
  }

  .package-summary-content {
    flex-direction: column;
    text-align: center;
  }

  .package-comparison-table {
    font-size: 13px;
  }

  .package-comparison-table th,
  .package-comparison-table td {
    padding: var(--space-2);
  }

   .auto-suggest-grid {
     grid-template-columns: 1fr;
   }

   /* IMPROVED: Steps pills mobile layout */
   .steps-pills {
     flex-direction: column;
     gap: var(--space-2);
     align-items: stretch;
   }

   .step-pill {
     width: 100%;
     justify-content: flex-start;
     padding: var(--space-3);
     font-size: 14px;
   }

   .step-pill span:not(.step-index) {
     flex: 1;
     text-align: left;
   }

   /* IMPROVED: Comparison table mobile layout */
   .package-comparison-table {
     font-size: 12px;
     overflow-x: auto;
     display: block;
   }

   .package-comparison-table table {
     min-width: 100%;
     width: auto;
   }

   .package-comparison-table th,
   .package-comparison-table td {
     padding: var(--space-2) var(--space-1);
     white-space: nowrap;
   }

   /* Make first column sticky on horizontal scroll */
   .package-comparison-table th:first-child,
   .package-comparison-table td:first-child {
     position: sticky;
     left: 0;
     background: white;
     z-index: 1;
     box-shadow: 2px 0 4px rgba(0,0,0,0.05);
   }

   /* OPTIMIZED: Package card mobile display */
   .package-card {
     /* Add smoother mobile interaction */
     tap-highlight-color: transparent;
     -webkit-tap-highlight-color: transparent;
   }

   /* Reduce excessive content on mobile */
   .package-testimonial {
     font-size: 13px;
     margin-top: var(--space-2);
   }

   .package-features {
     font-size: 14px;
   }

   /* Make buttons more thumb-friendly */
   .package-select-btn {
     padding: var(--space-3) var(--space-4);
     font-size: 16px; /* Prevent iOS zoom on focus */
   }

   /* IMPROVED: Section intro mobile layout */
   .section-intro-sm {
     padding: var(--space-4) 0;
     text-align: center;
   }

   .section-intro-title {
     font-size: 24px;
     line-height: 1.3;
     margin-bottom: var(--space-2);
   }

   .section-intro-text {
     font-size: 14px;
     line-height: 1.6;
   }
 }

@media (min-width: 768px) and (max-width: 1023px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }

  .package-card {
    padding: var(--space-4);
  }

  .package-badge {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
  }

  .package-card {
    padding: var(--space-5);
  }
}

/* Print Styles */
@media print {
  .package-selection-section {
    page-break-inside: avoid;
  }

  .package-card:hover {
    transform: none;
    box-shadow: none;
  }

  .package-video-preview {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .package-card,
  .package-badge,
  .package-select-btn,
  .budget-progress-fill,
  .package-summary-bar {
    animation: none !important;
    transition: none !important;
  }

  .package-card:hover {
    transform: none;
  }
}
/* ============================================
   PROFESSIONAL ENHANCEMENTS & NEW SECTIONS
   Added: 2024-12-09
   ============================================ */

/* === REFINED COLOR PALETTE === */
:root {
  /* Replace garish colors with sophisticated palette */
  --primary: #d4a574;          /* Warm elegant gold */
  --primary-dark: #b8935f;     /* Darker gold */
  --primary-light: #e8c9a8;    /* Light gold */
  --primary-soft: #f5ebe0;     /* Very light gold background */
  
  --secondary: #c85b7a;        /* Muted rose */
  --secondary-dark: #a84961;   /* Deep rose */
  --secondary-light: #e8a5b8;  /* Soft pink */
  
  /* Warm neutrals instead of cold grays */
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;
  
  /* Christmas accent */
  --accent-christmas: #2d5f3f;  /* Forest green */
}

/* === ENHANCED TYPOGRAPHY === */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.125rem;   /* 18px - more readable */
  line-height: 1.7;
  color: var(--gray-700);
  font-weight: 400;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.lead {
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--gray-600);
  font-weight: 400;
}

p {
  margin-bottom: 1.5rem;
  max-width: 65ch;
}

/* === HERO STATS === */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

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

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

/* === SECTION FEATURED (for Christmas, etc) === */
.section-featured {
  background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
  border-radius: 24px;
  padding: 4rem 2.5rem;
}

/* === CHRISTMAS SECTION ENHANCEMENTS === */
.badge-christmas {
  background: linear-gradient(135deg, var(--accent-christmas) 0%, #1f4d32 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.feature-box {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

/* === PACKAGE PREVIEW CARDS === */
.christmas-packages {
  margin-top: 2rem;
}

.package-preview {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.package-preview:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 16px rgba(212, 165, 116, 0.15);
  transform: translateY(-2px);
}

.package-preview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.package-preview-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.package-preview-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.package-preview-price {
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin: 0;
}

.package-preview-desc {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* === ALERT STYLES === */
.alert {
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.alert-warning {
  background: var(--color-warning-bg);
  border: 2px solid var(--color-warning-border);
  color: var(--gray-800);
}

.alert p {
  margin: 0;
}

/* === BOX TYPE CARDS - ENHANCED === */
.box-type-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-hover-lift:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 25px -5px rgba(212, 165, 116, 0.15),
              0 10px 10px -5px rgba(212, 165, 116, 0.08);
}

.box-type-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.box-type-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.box-type-price {
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.box-type-desc {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.box-type-features {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.box-type-features h4 {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-700);
}

.box-type-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.box-type-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.box-type-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.box-type-meta {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 2px solid var(--gray-100);
}

.box-type-testimonial {
  font-style: italic;
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

/* === DETAILED STEPS GRID === */
.steps-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-detailed {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.step-detailed:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(212, 165, 116, 0.1);
  transform: translateY(-4px);
}

.step-detailed-number {
  position: absolute;
  top: -20px;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.step-detailed-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: var(--gray-900);
}

.step-detailed-content p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.example-box {
  background: var(--primary-soft);
  border-left: 4px solid var(--primary);
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 8px;
}

/* === WHY US SECTION === */
.section-why-us {
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  border-radius: 24px;
  padding: 4rem 2.5rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.why-us-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.why-us-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(212, 165, 116, 0.12);
  transform: translateY(-4px);
}

.why-us-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.why-us-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.why-us-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* === TESTIMONIALS SECTION === */
.section-testimonials {
  background: white;
  padding: 4rem 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(212, 165, 116, 0.12);
}

.testimonial-rating {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-gold);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 2px solid var(--gray-200);
  padding-top: 1rem;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1rem;
}

.testimonial-author-location {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

.testimonial-author-occasion {
  font-size: 0.875rem;
  color: var(--primary-dark);
  margin-top: 0.25rem;
  font-weight: 600;
}

.testimonial-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--primary-soft);
  border-radius: 16px;
}

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

.testimonial-stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

/* === FAQ ENHANCEMENTS === */
.faq-category {
  margin-bottom: 3rem;
}

.faq-category-title {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

.faq-item {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.1);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-900);
  font-size: 1.1rem;
  user-select: none;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item[open] summary:after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-answer ul {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 3rem;
  background: var(--primary-soft);
  border-radius: 20px;
}

/* === SECTION CTA === */
.section-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 3rem 2rem;
  background: var(--gray-50);
  border-radius: 20px;
}

/* === FOOTER ENHANCEMENTS === */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 2rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  /* Footer section styles */
}

.footer-title {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-text {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
}

/* === BUTTON ENHANCEMENTS === */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(212, 165, 116, 0.3);
}

.btn:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 14px;
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

/* === RESPONSIVE ENHANCEMENTS === */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-detailed-grid {
    grid-template-columns: 1fr;
  }
  
  .section-featured,
  .section-why-us {
    padding: 2.5rem 1.5rem;
  }
}

/* === SUBTLE ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal:nth-child(1) { animation-delay: 0.1s; }
.reveal:nth-child(2) { animation-delay: 0.2s; }
.reveal:nth-child(3) { animation-delay: 0.3s; }

/* === SMOOTH SCROLL REVEAL === */
.reveal.active {
  opacity: 1;
}


/* ========================================
   ENHANCED PACKAGE CARDS - MODERN & CLICKABLE
   ======================================== */

.package-card {
  cursor: pointer !important;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.package-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(212, 165, 116, 0.25) !important;
}

.package-card[aria-checked="true"] {
  border: 3px solid #d4a574 !important;
  background: linear-gradient(135deg, #fffbf5 0%, #fef8f0 100%) !important;
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15),
              0 20px 40px rgba(212, 165, 116, 0.3) !important;
}

.package-select-btn {
  width: 100%;
  padding: 1rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

/* Make badges more prominent */
.package-badge {
  font-size: 4rem !important;
  animation: float 3s ease-in-out infinite;
}

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

.package-popular-badge {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

/* Ensure grid layout works */
.package-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 2rem !important;
  margin: 2rem 0 !important;
}

@media (max-width: 768px) {
  .package-grid {
    grid-template-columns: 1fr !important;
  }
}


/* === HERO VIDEO STYLES === */
.hero-video-container {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 1.5rem 1rem 1rem;
  pointer-events: none;
}

.hero-video-text {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .hero-video-container {
    height: 200px;
  }
  
  .hero-video-text {
    font-size: 0.75rem;
    padding: 0.75rem 0.5rem;
  }
}

/* Video loading state */
.hero-video:not([poster]) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}


/* === FORM VALIDATION STYLES === */
.form-error {
  color: var(--color-error);
  font-size: var(--font-size-sm);
  margin-top: 0.25rem;
  display: block;
}

.form-input-error {
  border-color: var(--color-error) !important;
  background-color: var(--color-error-bg);
}

.form-input-error:focus {
  outline-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Lazy loading fade-in animation */
.lazy-loaded {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
