/* VENDSCOOP Premium Editorial Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300..800&family=Inter:wght@300..700&display=swap');

/* --- 1. CORE DESIGN SYSTEM & VARIABLES --- */
:root {
  --bg-cream: #FAF8F5;          /* Warm luxury ivory/alabaster base */
  --text-dark: #120F13;         /* Deep rich near-black charcoal */
  --text-muted: #6E6872;        /* Soft neutral grey for detailed description copy */
  --primary-berry: #A93E58;     /* Mature, elegant raspberry berry accent */
  --primary-berry-hover: #8D3046;
  --accent-bronze: #C4A484;     /* Warm sand/bronze highlight */
  --accent-rose: #FFF0F3;       /* Soft blush backing overlay */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --glass-bg: rgba(250, 248, 245, 0.85);
  --glass-border: rgba(18, 15, 19, 0.06);
  --border-fine: 1px solid rgba(18, 15, 19, 0.08);
  
  --shadow-sm: 0 4px 10px rgba(18, 15, 19, 0.02);
  --shadow-md: 0 12px 30px -10px rgba(18, 15, 19, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(18, 15, 19, 0.08);
}

/* --- 2. GLOBAL RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: rgba(18, 15, 19, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-berry);
}

/* Section Standard Padding */
section {
  padding: 120px 8% 100px 8%;
  position: relative;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header standard alignment */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px auto;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-rose);
  color: var(--primary-berry);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* Text & Button Elements */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-berry) 20%, var(--accent-bronze) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-button {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  cursor: pointer;
  border: 1px solid var(--text-dark);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: var(--border-fine);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

/* --- 3. STICKY NAV HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 8%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

header.scrolled {
  padding: 16px 8%;
  box-shadow: 0 4px 30px rgba(18, 15, 19, 0.03);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--primary-berry);
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-berry);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.menu-toggle {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* --- 4. HERO SECTION --- */
#hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  background: radial-gradient(circle at 85% 20%, rgba(196, 164, 132, 0.08) 0%, transparent 60%), radial-gradient(circle at 15% 85%, rgba(169, 62, 88, 0.05) 0%, transparent 60%), var(--bg-cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.hero-content h1 {
  font-size: 4.4rem;
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.35rem;
  color: var(--primary-berry);
  font-weight: 600;
  margin-top: -5px;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-img {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(18, 15, 19, 0.05);
}

#about {
  background: radial-gradient(circle at 5% 30%, rgba(169, 62, 88, 0.04) 0%, transparent 50%), radial-gradient(circle at 95% 70%, rgba(196, 164, 132, 0.06) 0%, transparent 50%), white;
  border-top: var(--border-fine);
  border-bottom: var(--border-fine);
}

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

.about-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
  border: 1px solid rgba(18, 15, 19, 0.05);
}

.about-mascot-img {
  width: 100%;
  display: block;
}

.about-speech-bubble {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(360deg, rgba(18, 15, 19, 0.85) 0%, rgba(18, 15, 19, 0) 100%);
  padding: 40px 24px 20px 24px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.about-speech-bubble i {
  color: var(--accent-bronze);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-content h3 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: var(--border-fine);
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-stat-item .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 850;
  line-height: 1;
  color: var(--primary-berry);
  letter-spacing: -0.03em;
}

.about-stat-item .stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- 5b. ABOUT ROBOTIC SPECS --- */
.about-specs-header {
  margin-top: 80px;
  text-align: center;
  margin-bottom: 40px;
}

.about-specs-header h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.about-specs-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.about-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.spec-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(18, 15, 19, 0.05);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(169, 62, 88, 0.2);
}

.spec-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50px;
  background-color: rgba(169, 62, 88, 0.06);
  color: var(--primary-berry);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.3rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.spec-card:hover .spec-icon-wrapper {
  background-color: var(--primary-berry);
  color: white;
}

.spec-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

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

/* --- 6. HOW IT WORKS SECTION (TIMELINE STEP CARD) --- */

#how-it-works {
  background: radial-gradient(circle at 50% 10%, rgba(196, 164, 132, 0.06) 0%, transparent 50%), radial-gradient(circle at 90% 90%, rgba(169, 62, 88, 0.04) 0%, transparent 50%), var(--bg-cream);
  padding: 100px 0;
}

.how-editorial-box {
  background: radial-gradient(circle at 0% 50%, rgba(196, 164, 132, 0.15) 0%, rgba(18, 15, 19, 0.0) 80%), #120F13;
  border-radius: 28px;
  padding: 70px;
  box-shadow: var(--shadow-lg);
  color: white;
  position: relative;
  overflow: hidden;
}

.how-editorial-box .section-header h2 {
  color: white;
}

.how-editorial-box .section-header p {
  color: rgba(250, 248, 245, 0.7);
}

.how-editorial-box .hero-badge {
  background-color: rgba(255, 255, 255, 0.04) !important;
  color: var(--accent-bronze) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.how-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.steps-list::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background-color: rgba(18, 15, 19, 0.08);
  z-index: 1;
}

.step-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid rgba(18, 15, 19, 0.1);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  color: var(--primary-berry);
  transition: all 0.3s ease;
}

.step-card:hover .step-num {
  background-color: var(--primary-berry);
  color: white;
  border-color: var(--primary-berry);
  transform: scale(1.05);
}

.step-info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

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

/* Video Preview Card */
.video-preview-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 9 / 16;
  max-width: 340px;
  margin: 0 auto;
  border: 1px solid rgba(18, 15, 19, 0.05);
  cursor: pointer;
}

.video-thumb-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-preview-card:hover .video-thumb-img {
  transform: scale(1.04);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 15, 19, 0.15) 0%, rgba(18, 15, 19, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 30px;
  text-align: center;
  z-index: 2;
}

.play-pulse-btn {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--primary-berry);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 0 0 0 rgba(169, 62, 88, 0.6);
  animation: playPulse 2s infinite;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.video-preview-card:hover .play-pulse-btn {
  transform: scale(1.08);
  background-color: var(--text-dark);
  box-shadow: 0 0 0 0 rgba(18, 15, 19, 0.6);
}

.video-overlay h4 {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.video-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- 7. VIDEO POPUP MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(18, 15, 19, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  position: relative;
  background: white;
  padding: 6px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  max-width: 440px;
  width: 90%;
  aspect-ratio: 9 / 16;
  max-height: 82vh;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background-color: #000;
}

.modal-close-btn {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--text-dark);
  color: white;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  z-index: 2002;
}

.modal-close-btn:hover {
  background-color: var(--primary-berry);
  transform: scale(1.08) rotate(90deg);
}

/* --- 8. LOCATIONS SECTION (EDITORIAL DISPLAY BOX) --- */
#locations {
  background: radial-gradient(circle at 90% 10%, rgba(169, 62, 88, 0.04) 0%, transparent 50%), radial-gradient(circle at 10% 80%, rgba(196, 164, 132, 0.06) 0%, transparent 50%), white;
  border-top: var(--border-fine);
  border-bottom: var(--border-fine);
  padding: 100px 0;
}

.locations-editorial-box {
  background: radial-gradient(circle at 100% 50%, rgba(196, 164, 132, 0.15) 0%, rgba(18, 15, 19, 0.0) 80%), #120F13;
  border-radius: 28px;
  padding: 70px;
  box-shadow: var(--shadow-lg);
  color: white;
  position: relative;
  overflow: hidden;
}

.locations-editorial-box .section-header h2 {
  color: white;
}

.locations-editorial-box .section-header p {
  color: rgba(250, 248, 245, 0.7);
}

.locations-editorial-box .hero-badge {
  background-color: rgba(255, 255, 255, 0.04) !important;
  color: var(--accent-bronze) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 40px;
}

.locations-editorial-box .location-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.locations-editorial-box .location-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.location-badge {
  position: absolute;
  top: 30px;
  right: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #38E54D;
  display: inline-block;
  box-shadow: 0 0 10px rgba(56, 229, 77, 0.6);
  animation: playPulse 2s infinite;
}

.locations-editorial-box .location-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
}

.locations-editorial-box .location-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(250, 248, 245, 0.65);
}

.location-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-info-item i {
  color: var(--accent-bronze);
  width: 14px;
}

.locations-editorial-box .location-btn {
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: transparent;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
}

.locations-editorial-box .location-btn:hover {
  background-color: white;
  color: var(--text-dark);
}

/* --- 9. GALLERY SECTION (NEW HORIZONTAL SHOWCASE) --- */
#gallery {
  background: radial-gradient(circle at 50% 50%, rgba(196, 164, 132, 0.06) 0%, transparent 70%), var(--bg-cream);
  overflow: hidden;
}

.gallery-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.gallery-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 10px 40px 10px;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-slide-card {
  position: relative;
  min-width: calc(33.333% - 20px);
  width: calc(33.333% - 20px);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 15, 19, 0.05);
  scroll-snap-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  cursor: pointer;
}

.gallery-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(360deg, rgba(18, 15, 19, 0.9) 0%, rgba(18, 15, 19, 0) 100%);
  padding: 30px 24px 20px 24px;
  color: white;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-slide-caption h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.gallery-slide-caption p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.gallery-slide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-berry);
}

.gallery-slide-card:hover .gallery-slide-img {
  transform: scale(1.04);
}

.gallery-slide-card:hover .gallery-slide-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Navigation Buttons */
.gallery-nav-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--border-fine);
  color: var(--text-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-nav-btn:hover {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  border-color: var(--text-dark);
  transform: scale(1.08);
}

.prev-btn {
  left: -25px;
}

.next-btn {
  right: -25px;
}

/* Indicators */
.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.gallery-indicators .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(18, 15, 19, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-indicators .dot.active {
  background-color: var(--primary-berry);
  width: 24px;
  border-radius: 5px;
}

/* --- 10. FRANCHISE QUERY SECTION (EDITORIAL BOX) --- */
#franchise {
  background-color: var(--bg-cream);
  padding: 100px 0;
}

.franchise-editorial-box {
  background: radial-gradient(circle at 100% 50%, rgba(196, 164, 132, 0.15) 0%, rgba(18, 15, 19, 0.0) 80%), #120F13;
  border-radius: 28px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.franchise-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  color: white;
}

.franchise-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-bronze);
}

.franchise-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
}

.franchise-left p {
  color: rgba(250, 248, 245, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-enquire {
  background: white;
  color: var(--text-dark) !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-enquire i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-enquire:hover {
  background: var(--accent-bronze);
  color: white !important;
}

.btn-enquire:hover i {
  transform: translateX(4px);
}

.franchise-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.franchise-benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.3s ease;
}

.franchise-benefit-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.benefit-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-bronze);
  font-style: italic;
  line-height: 1;
  width: 25px;
  flex-shrink: 0;
}

.benefit-desc {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.benefit-desc h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}

.benefit-desc p {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.65);
  line-height: 1.5;
}

/* --- 3b. FLAVOR CRAFT MENU SHOWCASE --- */
#menu {
  background-color: var(--bg-cream);
  padding: 100px 0;
  border-bottom: var(--border-fine);
}

.menu-showcase-box {
  background: radial-gradient(circle at 0% 50%, rgba(196, 164, 132, 0.15) 0%, rgba(18, 15, 19, 0.0) 80%), #120F13;
  border-radius: 28px;
  padding: 70px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.menu-showcase-header {
  text-align: center;
  margin-bottom: 50px;
}

.menu-showcase-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.menu-showcase-header p {
  color: rgba(250, 248, 245, 0.75);
  font-size: 1.05rem;
}

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

.menu-column-card {
  background: white;
  border: 1px solid rgba(18, 15, 19, 0.05);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(18, 15, 19, 0.02);
  display: flex;
  flex-direction: column;
}

.menu-column-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(169, 62, 88, 0.2);
}

.menu-col-icon {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: rgba(169, 62, 88, 0.06);
  color: var(--primary-berry);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.menu-column-card:hover .menu-col-icon {
  background-color: var(--primary-berry);
  color: white;
}

.menu-column-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.menu-col-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(18, 15, 19, 0.05);
}

.menu-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-item-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.menu-item-list li i {
  color: var(--primary-berry);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.menu-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.menu-item-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Franchise Lead Form Card */
.franchise-form-card {
  background: white;
  padding: 45px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: var(--border-fine);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

/* Minimalist border inputs */
.form-control {
  background: transparent;
  border-bottom: 1.5px solid rgba(18, 15, 19, 0.15);
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  width: 100%;
}

.form-control::placeholder {
  color: #BAB6BD;
}

.form-control:focus {
  border-bottom-color: var(--primary-berry);
}

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

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23120f13' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 25px;
  cursor: pointer;
}

.submit-btn {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  border: 1px solid var(--text-dark);
  border-radius: 4px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background-color: transparent;
  color: var(--text-dark);
}

/* Success Form popup */
.form-success-message {
  display: none;
  background-color: var(--accent-rose);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid rgba(169, 62, 88, 0.1);
  animation: popIn 0.5s ease forwards;
}

.form-success-message i {
  font-size: 2.2rem;
  color: var(--primary-berry);
  margin-bottom: 10px;
}

.form-success-message h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-success-message p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- 11. CONTACT SECTION --- */
#contact {
  background: radial-gradient(circle at 10% 20%, rgba(196, 164, 132, 0.06) 0%, transparent 60%), radial-gradient(circle at 90% 80%, rgba(169, 62, 88, 0.04) 0%, transparent 60%), white;
  border-top: var(--border-fine);
  padding: 100px 0 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  text-align: left;
}

.contact-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
}

.contact-logo .logo-icon {
  font-size: 2.2rem;
}

.contact-desc {
  color: var(--primary-berry);
  font-size: 1.15rem;
  font-family: var(--font-heading);
  margin-top: -15px;
  font-weight: 600;
}

.contact-details p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: left;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 15px;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-cream);
  padding: 18px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: var(--border-fine);
  text-align: left;
  width: 100%;
}

.contact-method-icon {
  background-color: var(--primary-berry);
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method-info h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-method-info p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--bg-cream);
  border: var(--border-fine);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  border-color: var(--text-dark);
  transform: translateY(-4px);
}

/* --- 12. FOOTER --- */
footer {
  background-color: var(--bg-cream);
  border-top: var(--border-fine);
  padding: 40px 8%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  z-index: 10;
}

footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

footer i.fa-heart {
  color: var(--primary-berry);
  animation: playPulse 1.5s infinite;
}

/* --- 13. ANIMATIONS & KEYFRAMES --- */
@keyframes playPulse {
  0% {
    transform: scale(0.96);
    box-shadow: 0 0 0 0 rgba(169, 62, 88, 0.5);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(169, 62, 88, 0);
  }
  100% {
    transform: scale(0.96);
    box-shadow: 0 0 0 0 rgba(169, 62, 88, 0);
  }
}

@keyframes popIn {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- 14. RESPONSIVE DESIGN (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .about-grid, .how-grid, .franchise-editorial-box, .locations-editorial-box, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-visual, .how-visual, .video-preview-card {
    order: 2; /* Move visual down on tablet */
  }
  
  .about-card, .video-preview-card {
    max-width: 360px;
  }
  
  .gallery-slide-card {
    min-width: calc(50% - 15px);
    width: calc(50% - 15px);
  }
  .prev-btn { left: 0px; }
  .next-btn { right: 0px; }

  .about-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-showcase-box {
    padding: 40px 25px;
  }
}


@media (max-width: 768px) {
  #header-cta-btn {
    display: none;
  }

  section {
    padding: 70px 6% 60px 6%;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .gallery-slide-card {
    min-width: 100%;
    width: 100%;
    scroll-snap-align: center;
  }
  .gallery-slider {
    gap: 0px;
    padding: 20px 0 40px 0;
  }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }

  /* Sticky Navigation on Mobile */
  nav {
    display: none; /* JS will toggle active class */
  }
  
  .menu-toggle {
    display: block;
  }
  
  /* Mobile Menu Drawer style */
  nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-cream);
    border-bottom: 2px solid var(--primary-berry);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    gap: 20px;
    animation: popIn 0.3s ease;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-badge {
    align-self: center;
  }
  
  .hero-content h1 {
    font-size: 2.6rem;
  }
  
  .hero-tagline {
    font-size: 1.4rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full-width {
    grid-column: span 1;
  }
  
  .franchise-form-card {
    padding: 25px 20px;
  }

  .franchise-editorial-box, .locations-editorial-box {
    padding: 40px 25px;
    gap: 40px;
  }

  .franchise-left h2 {
    font-size: 2.2rem;
  }

  .franchise-right {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .franchise-benefit-card {
    padding: 20px;
    gap: 15px;
  }

  .contact-details {
    align-items: center;
    text-align: center;
  }

  .contact-details p {
    text-align: center;
  }

  .contact-methods {
    align-items: center;
  }

  .about-stats {
    gap: 15px;
  }

  .about-stat-item .stat-number {
    font-size: 2.2rem;
  }

  .about-specs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-specs-header h4 {
    font-size: 1.5rem;
  }

  .menu-showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .menu-showcase-header h2 {
    font-size: 2rem;
  }

  .menu-showcase-box {
    padding: 30px 20px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}
