/* ===================================================
   Upsarpanch Chai & Cafe - Premium Party Catalogue Styles
   Palette: Warm Espresso, Caramel, Amber Gold & Cream
   Fully Mobile-First, Touch-Optimized & 100% Responsive
   =================================================== */

:root {
  --primary: #d97706;
  --primary-light: #f59e0b;
  --primary-dark: #b45309;
  --primary-glow: rgba(245, 158, 11, 0.25);
  
  --secondary: #e11d48;
  --secondary-glow: rgba(225, 29, 72, 0.25);
  
  --bg-dark: #120f0c;
  --bg-card-dark: #1e1914;
  --bg-card-dark-hover: #29221b;
  --bg-light: #faf7f2;
  --bg-card-light: #ffffff;
  
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --text-light: #f3f4f6;
  --text-light-muted: #9ca3af;
  
  --accent-gold: #fbbf24;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1eb857;
  
  --border-dark: rgba(245, 158, 11, 0.18);
  --border-light: rgba(0, 0, 0, 0.08);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.35);
  
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.55;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Typography & Helpers */
h1, h2, h3, h4, h5 {
  color: inherit;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: break-word;
}

p {
  overflow-wrap: break-word;
  word-break: break-word;
}

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

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

.gradient-text {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--primary-light) !important;
}

.text-success {
  color: #10b981 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-light {
  color: var(--text-light-muted) !important;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

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

/* Universal Buttons - Fully Mobile Friendly */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  min-height: 48px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  font-family: inherit;
  text-align: center;
  user-select: none;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover, .btn-whatsapp:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

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

.btn-outline:hover, .btn-outline:active {
  background: var(--primary-light);
  color: #ffffff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.btn-glass:hover, .btn-glass:active {
  background: rgba(255, 255, 255, 0.25);
}

.btn-lg {
  padding: 14px 24px;
  min-height: 52px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 8px 16px;
  min-height: 38px;
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.pulse-btn {
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Top Announcement Bar */
.top-announcement {
  background: #191410;
  color: #fce7cf;
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-contact a {
  color: var(--accent-gold);
  font-weight: 600;
  padding: 2px 4px;
}

.dot-separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Main Sticky Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 3px 8px rgba(217, 119, 6, 0.3);
  flex-shrink: 0;
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #2b1f17;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b3e34;
  padding: 4px 6px;
}

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

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, #1f1812 0%, #120f0c 100%);
  color: #ffffff;
  padding: 45px 0 55px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.celebration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 16px;
  max-width: 100%;
}

.hero-title {
  font-size: clamp(1.75rem, 4.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: #fed7aa;
  font-style: italic;
  margin-bottom: 22px;
  padding-left: 12px;
  border-left: 3px solid var(--primary-light);
}

.hero-pricing-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  width: fit-content;
  max-width: 100%;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-shrink: 0;
}

.price-main .currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.price-main .amount {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.price-main .price-label {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
}

.price-desc {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tag-free {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  width: fit-content;
}

.price-desc small {
  color: var(--text-light-muted);
  font-size: 0.8rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: #cbd5e1;
}

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

.trust-item i {
  color: var(--accent-gold);
}

/* Hero Party Visual Card */
.hero-card-preview {
  display: flex;
  justify-content: center;
  width: 100%;
}

.party-visual-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
}

.tag-exclusive {
  background: rgba(225, 29, 72, 0.2);
  border: 1px solid rgba(225, 29, 72, 0.4);
  color: #fda4af;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.duration-badge {
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.visual-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.grid-feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  transition: var(--transition);
}

.grid-feature.highlight-food {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.08);
}

.grid-feature.highlight-cake {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.08);
}

.feat-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.grid-feature h4 {
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #ffffff;
}

.grid-feature p {
  font-size: 0.72rem;
  color: var(--text-light-muted);
}

.cake-free {
  color: #34d399;
  font-weight: 700;
}

.visual-footer {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 14px;
  text-align: center;
}

.deal-highlight {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.extra-note {
  font-size: 0.78rem;
  color: #94a3b8;
}

/* Sections Global */
.section {
  padding: 55px 0;
  width: 100%;
  overflow: hidden;
}

.section-dark {
  background: #14100c;
  color: #ffffff;
}

.section-light {
  background: #f5efe6;
}

.section-heading {
  margin-bottom: 34px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
  margin-bottom: 6px;
}

.section-title {
  font-size: clamp(1.45rem, 3.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: clamp(0.88rem, 2.2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Inclusions Grid */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

.inclusion-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 0;
}

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

.inclusion-card.highlight-border {
  border: 2px solid var(--primary-light);
  background: linear-gradient(180deg, #fffcf7 0%, #ffffff 100%);
}

.inclusion-card.highlight-gift {
  border: 2px solid #10b981;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: #f3f4f6;
  color: #4b5563;
}

.badge-hot {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}

.badge-free {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.inclusion-icon-wrapper {
  margin-bottom: 14px;
}

.big-emoji {
  font-size: 2.3rem;
  display: inline-block;
}

.inclusion-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #1f1712;
}

.inclusion-card p {
  color: #574b41;
  font-size: 0.88rem;
  margin-bottom: 14px;
  flex-grow: 1;
}

.inclusion-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
}

.inclusion-features li {
  font-size: 0.84rem;
  color: #3e322a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inclusion-features li i {
  color: #10b981;
  flex-shrink: 0;
}

.food-serving-breakdown {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  background: #fdf8f3;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(217, 119, 6, 0.15);
  margin-top: auto;
}

.food-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
}

.food-qty {
  background: var(--primary-light);
  color: white;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.cake-value-tag {
  background: #ecfdf5;
  border: 1px dashed #059669;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
}

.cake-value-tag span {
  font-size: 0.78rem;
  color: #047857;
  text-decoration: line-through;
}

.cake-value-tag strong {
  font-size: 0.88rem;
  color: #065f46;
}

/* Calculator Section */
.calculator-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  box-sizing: border-box;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.input-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fce7cf;
  margin-bottom: 8px;
}

.occasion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f3f4f6;
  padding: 8px 14px;
  min-height: 42px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
}

.chip:hover, .chip.active {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #ffffff;
  font-weight: 600;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.counter-btn {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.counter-btn:hover, .counter-btn:active {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: scale(1.05);
}

.guest-display {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 90px;
}

.guest-display span {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
  line-height: 1;
}

.guest-display small {
  font-size: 0.72rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
}

.note-sub {
  font-size: 0.8rem;
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.1);
  border: 1px dashed rgba(245, 158, 11, 0.3);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  line-height: 1.4;
}

/* Custom Input - 16px to prevent iOS zoom */
.custom-input {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  min-height: 48px;
  box-sizing: border-box;
  min-width: 0;
}

.custom-input:focus {
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 10px var(--primary-glow);
}

.section-light .custom-input {
  background: #ffffff;
  border-color: #d1d5db;
  color: #1f2937;
}

.section-light .custom-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

.calc-summary {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.badge-status {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #e2e8f0;
  gap: 8px;
}

.strikethrough {
  text-decoration: line-through;
  color: #94a3b8;
}

.badge-free-sm {
  text-decoration: none;
  background: #10b981;
  color: white;
  font-size: 0.68rem;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 800;
}

.calculated-food-preview {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.calculated-food-preview h4 {
  font-size: 0.84rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.serving-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.serving-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.78rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
}

.total-text span {
  font-size: 0.92rem;
  font-weight: 600;
  display: block;
  color: #f1f5f9;
}

.total-text small {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

.total-amount {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-gold);
}

/* Time Slots Grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
  width: 100%;
}

.slot-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  text-align: center;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  min-width: 0;
}

.slot-card:hover, .slot-card:active {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.slot-card.active {
  border-color: var(--primary-light);
  background: #fffbf2;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.slot-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.badge-popular {
  color: #dc2626;
  font-weight: 800;
}

.slot-time {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.slot-tag {
  font-size: 0.78rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.slot-selection-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  padding: 10px 18px;
  text-align: center;
  max-width: fit-content;
  margin: 0 auto;
  font-size: 0.9rem;
  box-sizing: border-box;
}

/* ===================================================
   INSTANT BOOKING & INQUIRY SECTION (Mobile-Perfect)
   =================================================== */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.booking-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.booking-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 14px;
  width: 100%;
}

.booking-header-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.booking-header h2 {
  font-size: clamp(1.15rem, 3.2vw, 1.35rem);
  color: #1f1712;
  margin-bottom: 4px;
}

.booking-header p {
  font-size: clamp(0.78rem, 2.2vw, 0.86rem);
  color: #6b7280;
  line-height: 1.4;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
}

.form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  overflow-wrap: break-word;
}

.booking-notice-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 14px;
  border-radius: var(--radius-sm);
  width: 100%;
  box-sizing: border-box;
}

.notice-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

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

.notice-content strong {
  font-size: 0.84rem;
  color: #92400e;
  display: block;
  margin-bottom: 2px;
}

.notice-content p {
  font-size: 0.8rem;
  color: #b45309;
  line-height: 1.4;
}

.form-action-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
  width: 100%;
  box-sizing: border-box;
}

.form-action-group .btn {
  width: 100%;
  padding: 14px 18px;
  min-height: 52px;
  font-size: clamp(0.9rem, 2.6vw, 1.02rem);
  text-align: center;
  box-sizing: border-box;
}

/* Booking Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.quick-call-card {
  background: linear-gradient(135deg, #2a2017, #191410);
  color: white;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border-dark);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.call-badge {
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 10px;
}

.quick-call-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.quick-call-card p {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-light);
  color: #ffffff;
  padding: 12px 20px;
  min-height: 48px;
  border-radius: var(--radius-full);
  font-size: clamp(1.1rem, 3.5vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  white-space: normal;
}

.call-button:hover, .call-button:active {
  background: var(--primary-dark);
  transform: scale(1.02);
}

.call-timing {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
}

.package-recap-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  border: 1px solid var(--border-light);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.package-recap-box h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #1f2937;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 6px;
}

.package-recap-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-recap-box li {
  font-size: 0.84rem;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-recap-box li i {
  color: #10b981;
  flex-shrink: 0;
}

/* ===================================================
   RULES & GUIDELINES CARDS (Mobile-Perfect)
   =================================================== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.rule-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px 18px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.rule-card.rule-warning {
  border-color: #fca5a5;
  background: #fff5f5;
}

.rule-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.rule-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #1f2937;
}

.rule-warning h3 {
  color: #b91c1c;
}

.rule-card p {
  font-size: 0.84rem;
  color: #6b7280;
  line-height: 1.45;
}

/* ===================================================
   LOCATION & DIRECTION SECTION (Mobile-Perfect)
   =================================================== */
.location-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.location-info {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.cafe-address {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fce7cf;
  margin-bottom: 8px;
}

.address-desc {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  margin-bottom: 20px;
  line-height: 1.45;
}

.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.loc-item i {
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.loc-item strong {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
}

.loc-item span, .loc-item a {
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

.location-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.location-btns .btn {
  white-space: normal;
  text-align: center;
  box-sizing: border-box;
}

.location-map-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.map-placeholder {
  background: #1f1812;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
  width: 100%;
  box-sizing: border-box;
}

.big-store-icon {
  font-size: 3.5rem;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.map-art h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 4px;
}

.map-art p {
  color: var(--text-light-muted);
  font-size: 0.86rem;
  margin-bottom: 16px;
}

/* Footer */
.main-footer {
  background: #0d0b09;
  color: #9ca3af;
  padding: 24px 0;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.footer-left h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

/* UPI Advance Payment Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  color: #1f2937;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
  animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #f3f4f6;
  border: none;
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
}

.modal-header {
  text-align: center;
  margin-bottom: 16px;
}

.modal-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.modal-header h3 {
  font-size: 1.2rem;
  color: #111827;
}

.modal-header p {
  font-size: 0.82rem;
  color: #6b7280;
}

.upi-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
}

.upi-qr-mockup {
  margin-bottom: 12px;
}

.qr-frame {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  background: #ffffff;
  border: 2px dashed #d1d5db;
  border-radius: var(--radius-sm);
}

.qr-icon {
  font-size: 3.5rem;
  color: #1f2937;
  margin-bottom: 4px;
}

.qr-frame span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
}

.upi-id-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin: 8px auto 12px;
  max-width: fit-content;
}

.upi-id-badge strong {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #111827;
}

.btn-copy {
  background: var(--primary-light);
  color: white;
  border: none;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 28px;
}

.upi-instruction {
  font-size: 0.78rem;
  color: #6b7280;
}

/* Floating Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(18, 15, 12, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 14px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
  gap: 10px;
  box-sizing: border-box;
}

.sticky-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  min-height: 48px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  box-sizing: border-box;
}

.sticky-call {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex: 0.8;
}

.sticky-book {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  flex: 1.2;
}

/* Confetti Canvas */
#confettiCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* ===================================================
   RESPONSIVE BREAKPOINTS (Mobile-First Optimizations)
   =================================================== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  
  .celebration-badge {
    margin: 0 auto 16px;
  }
  
  .hero-tagline {
    border-left: none;
    padding-left: 0;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-pricing-pill {
    margin: 0 auto 24px;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-trust-badges {
    justify-content: center;
  }
  
  .calculator-box {
    grid-template-columns: 1fr;
  }
  
  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Large Mobile & Tablets Portrait (max-width: 768px) */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .main-header {
    padding: 8px 0;
  }
  
  .top-announcement {
    padding: 6px 0;
    font-size: 0.78rem;
  }

  .top-announcement .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .top-contact {
    font-size: 0.78rem;
  }

  .section {
    padding: 45px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .slots-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .slot-card {
    padding: 14px;
    min-height: 80px;
  }

  /* Booking Form Mobile Overhaul */
  .booking-card {
    padding: 22px 16px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-action-group .btn {
    width: 100%;
  }

  .quick-call-card {
    padding: 20px 16px;
  }

  .package-recap-box {
    padding: 18px 16px;
  }

  /* Rules Grid 1 Column on Mobile */
  .rules-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rule-card {
    padding: 18px 16px;
  }

  /* Location Mobile Overhaul */
  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-btns {
    flex-direction: column;
    width: 100%;
  }

  .location-btns .btn {
    width: 100%;
  }

  .map-placeholder {
    padding: 26px 16px;
  }

  .mobile-sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .main-footer {
    padding: 24px 0 10px;
  }

  .main-footer .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Small Smartphone Screens (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .brand-text h1 {
    font-size: 1.15rem;
  }

  .brand-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }

  .header-actions .btn-outline span {
    display: none;
  }

  .header-actions .btn-outline {
    padding: 8px 12px;
    min-height: 38px;
  }

  .header-actions .btn-primary {
    padding: 8px 14px;
    min-height: 38px;
    font-size: 0.85rem;
  }

  .hero-section {
    padding: 30px 0 40px;
  }

  .hero-pricing-pill {
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px;
  }

  .price-main {
    justify-content: center;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .party-visual-card {
    padding: 16px 12px;
  }

  .visual-icons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .grid-feature {
    padding: 10px 6px;
  }

  .grid-feature h4 {
    font-size: 0.8rem;
  }

  .grid-feature p {
    font-size: 0.68rem;
  }

  .calculator-box {
    padding: 18px 14px;
  }

  .guest-counter {
    justify-content: center;
    width: 100%;
  }

  .chip {
    padding: 6px 12px;
    font-size: 0.78rem;
    min-height: 38px;
  }

  .total-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* Booking Card on Small Screens */
  .booking-card {
    padding: 18px 12px;
    border-radius: var(--radius-md);
  }

  .booking-header {
    flex-direction: row;
    gap: 10px;
  }

  .booking-notice-card {
    padding: 10px;
  }

  .call-button {
    font-size: 1.1rem;
    padding: 10px 14px;
  }
}

/* Extra Small Screens / Budget Phones (max-width: 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .brand-text h1 {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  .price-main .amount {
    font-size: 2rem;
  }

  .counter-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.4rem;
  }

  .guest-display {
    padding: 6px 14px;
    min-width: 70px;
  }

  .visual-icons-grid {
    grid-template-columns: 1fr;
  }

  .sticky-btn {
    font-size: 0.82rem;
    padding: 10px 6px;
  }

  .booking-card {
    padding: 14px 10px;
  }
}

/* Print / PDF Brochure Mode */
@media print {
  .top-announcement,
  .main-header,
  .hero-cta-group,
  .mobile-sticky-bar,
  #confettiCanvas,
  .modal-overlay,
  #proceedToBookBtn,
  .counter-btn,
  .calculator-box input,
  .booking-card form button,
  .header-actions {
    display: none !important;
  }

  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt;
    padding: 0 !important;
  }

  .section, .hero-section {
    padding: 15px 0 !important;
    background: #ffffff !important;
    color: #000000 !important;
  }

  .hero-title, .section-title, h1, h2, h3 {
    color: #000000 !important;
  }

  .inclusion-card, .party-visual-card, .calculator-box, .booking-card {
    box-shadow: none !important;
    border: 1px solid #cccccc !important;
    break-inside: avoid;
  }
}
