/* ============================================
   GLOBAL APPIARIES - Theme & Variables
   ============================================ */
:root {
  --cream: #FBF9F6;
  --cream-dark: #F5F0E8;
  --cream-darker: #F7F4EF;
  --orange: #E87A3E;
  --orange-hover: #d96b2c;
  --orange-light: #f5a962;
  --brown: #362821;
  --brown-light: #5c4a3d;
  --charcoal: #333;
  --white: #fff;
  --shadow: 0 4px 20px rgba(54, 40, 33, 0.08);
  --shadow-hover: 0 8px 30px rgba(54, 40, 33, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Placeholder images (blank src) - add your image path to src when ready */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream-dark) 0%, #ebe5dc 100%);
  min-height: 200px;
  display: block;
  object-fit: cover;
}
.img-placeholder.card-icon,
.img-placeholder.feature-icon {
  min-height: 48px;
  width: 48px;
  border-radius: 8px;
}
.hero-img.img-placeholder { min-height: 400px; }
.why-img-top.img-placeholder,
.why-img-bottom.img-placeholder { min-height: 180px; }
.flavor-icon-wrap .img-placeholder,
.step-icon-wrap .img-placeholder { min-height: 80px; width: 80px; margin: 0 auto; border-radius: 50%; }
.card-product .img-placeholder { min-height: 220px; aspect-ratio: 1; }
.card-blog .img-placeholder { min-height: 200px; }
.faq-visual .img-placeholder { min-height: 360px; }
.map-placeholder .img-placeholder { min-height: 280px; border-radius: var(--radius); }

/* ============================================
   Header / Nav - Enhanced
   ============================================ */
.header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(54, 40, 33, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.is-scrolled {
  box-shadow: 0 4px 25px rgba(54, 40, 33, 0.12);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

/* Header Top Bar */
.header-top-bar {
  background: linear-gradient(135deg, var(--brown) 0%, #2a1f1a 100%);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.header-contact-item {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}
.header-contact-item:hover {
  color: var(--orange-light);
  text-decoration: none;
}
.contact-icon {
  font-size: 0.9rem;
}
.btn-whatsapp-header {
  background: #25D366;
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-header:hover {
  background: #1ebc59;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}
.whatsapp-icon {
  font-size: 1rem;
}

.navbar {
  padding: 1rem 0;
  position: relative;
}
.navbar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,122,62,0.3) 50%, transparent 100%);
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.navbar-brand-logo:hover {
  transform: scale(1.05);
  text-decoration: none;
}
.logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.navbar-brand-logo:hover .logo-img {
  transform: rotate(-5deg) scale(1.1);
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--brown) !important;
  font-weight: 500;
  padding: 0.6rem 1.1rem !important;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin: 0 0.2rem;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover::before,
.nav-link.active::before {
  width: 70%;
}
.nav-link:hover {
  color: var(--orange) !important;
  background: rgba(232,122,62,0.08);
}
.nav-link.active {
  color: var(--orange) !important;
  font-weight: 600;
}

.btn-nav {
  margin-left: 0.5rem;
  padding: 0.6rem 1.5rem !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(232,122,62,0.2);
}
.btn-nav:hover {
  box-shadow: 0 4px 15px rgba(232,122,62,0.35);
  transform: translateY(-1px);
}

.navbar-toggler {
  border: 2px solid rgba(54,40,33,0.2);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.navbar-toggler:hover {
  border-color: var(--orange);
  background: rgba(232,122,62,0.1);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(232,122,62,0.2);
  border-color: var(--orange);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(54, 40, 33, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ============================================
   Buttons
   ============================================ */
.btn-accent {
  background: var(--orange);
  color: var(--white) !important;
  border: none;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.btn-accent:hover {
  background: var(--orange-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,122,62,0.4);
}

/* ============================================
   Hero with Video Background
   ============================================ */
.hero {
  position: relative;
  padding: 6rem 0 7rem;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 40, 33, 0.6) 0%, rgba(54, 40, 33, 0.4) 50%, rgba(232, 122, 62, 0.3) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.title-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--orange);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(232, 122, 62, 0.5);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero .btn-accent {
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
  box-shadow: 0 6px 25px rgba(232, 122, 62, 0.5);
}

.hero-img-wrap {
  position: relative;
}
.hero-img {
  max-height: 480px;
  object-fit: contain;
}

/* ============================================
   Section patterns
   ============================================ */
.section {
  padding: 4.5rem 0;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--charcoal);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ============================================
   Services
   ============================================ */
.services { background: var(--cream); }

.services .section-desc { margin-left: auto; margin-right: auto; }

.card-service {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card-service:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-icon-wrap {
  margin-bottom: 1rem;
}
.card-icon {
  height: 56px;
  width: auto;
  max-width: 56px;
}

.card-service .card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.card-service .card-text {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.link-accent {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.link-accent:hover { color: var(--orange-hover); }

/* Carousel */
.carousel-indicators.bottom-indicators {
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-darker);
  border: 1px solid var(--brown-light);
  opacity: 0.6;
}
.carousel-indicators button.active {
  background: var(--orange);
  border-color: var(--orange);
  opacity: 1;
}

#carouselServices,
#carouselFlavors,
#carouselStore,
#carouselBlog {
  position: relative;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-choose { background: var(--cream-dark); }

.why-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-img-top { border-radius: var(--radius); }
.why-img-bottom { border-radius: var(--radius); max-width: 85%; align-self: flex-end; }

.feature-list { margin-top: 1.5rem; }

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.feature-icon-wrap .feature-icon {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin: 0;
}

/* ============================================
   Flavors
   ============================================ */
.flavors { background: var(--cream); }

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}

.card-flavor {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
}
.card-flavor .card-title { font-size: 1.1rem; font-weight: 700; color: var(--brown); }
.card-flavor .card-text { font-size: 0.9rem; margin: 0.75rem 0 1rem; }
.flavor-icon-wrap .img-placeholder { display: block; margin: 0 auto 0.75rem; }

/* ============================================
   Store / Products
   ============================================ */
.store { background: var(--cream-dark); }

.card-product {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card-product:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-product .card-img-top {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-product .card-body { padding: 1.25rem; }

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
/* ============================================
   Enhanced Product Cards with Hover Effects
   ============================================ */
.products-grid { margin-top: 2rem; }

.card-product {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(54, 40, 33, 0.08);
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
  position: relative;
}
.card-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(54, 40, 33, 0.15);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--cream-dark);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: brightness(1);
}
.card-product:hover .product-image {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(54,40,33,0) 0%, rgba(54,40,33,0.7) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card-product:hover .product-overlay {
  opacity: 1;
}

.product-badge {
  background: var(--orange);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(232,122,62,0.4);
  transform: translateY(-10px);
  animation: badgeSlide 0.5s ease forwards;
}

@keyframes badgeSlide {
  to { transform: translateY(0); }
}

.card-product .card-body {
  padding: 1.25rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.75rem;
  text-align: center;
}

.card-product .btn {
  margin-top: 0.5rem;
}

@media (max-width: 576px) {
  .card-product {
    border-radius: 16px;
  }
  .product-image-wrapper {
    height: 200px;
  }
}

/* ============================================
   Chatbot Widget
   ============================================ */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 350px;
  max-width: calc(100vw - 40px);
  height: 500px;
  max-height: calc(100vh - 40px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(54, 40, 33, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  transform: translateY(calc(100% + 20px)) scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.chatbot-widget.active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--brown) 0%, #2a1f1a 100%);
  color: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 20px 20px 0 0;
}
.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.chatbot-header h6 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}
.chatbot-header p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.9;
}
.chatbot-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.chatbot-close:hover {
  background: rgba(255,255,255,0.2);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.chatbot-msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  animation: msgSlide 0.3s ease;
}
@keyframes msgSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bot-msg {
  justify-content: flex-start;
}
.user-msg {
  justify-content: flex-end;
}
.msg-avatar {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.user-msg .msg-avatar {
  order: 2;
  background: var(--brown);
}
.msg-content {
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 18px;
  max-width: 75%;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--charcoal);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.user-msg .msg-content {
  background: var(--orange);
  color: var(--white);
  border-radius: 18px 18px 4px 18px;
}

.chatbot-input-area {
  padding: 1rem;
  background: var(--white);
  border-top: 1px solid rgba(54,40,33,0.1);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.chatbot-input {
  flex: 1;
  border: 1px solid rgba(54,40,33,0.2);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.chatbot-input:focus {
  border-color: var(--orange);
}
.chatbot-send {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.chatbot-send:hover {
  background: var(--orange-hover);
  transform: scale(1.1);
}

.chatbot-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.chatbot-widget.active ~ .chatbot-toggle {
  display: none;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

@media (max-width: 576px) {
  .chatbot-widget {
    width: calc(100vw - 20px);
    height: calc(100vh - 100px);
    left: 10px;
    bottom: 10px;
  }
  .chatbot-toggle {
    left: 10px;
    bottom: 10px;
    width: 55px;
    height: 55px;
  }
}


/* ============================================
   Testimonials
   ============================================ */
.testimonials { background: var(--cream); }

.card-testimonial {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  height: 100%;
  border-left: 4px solid var(--orange);
}

.testimonial-text {
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--brown-light);
  margin: 0;
}

/* ============================================
   Order Steps (orange section)
   ============================================ */
.order-steps {
  background: linear-gradient(160deg, #f5a962 0%, var(--orange) 50%, #d96b2c 100%);
  color: var(--white);
  position: relative;
  padding-top: 5rem;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 Q300,0 600,30 T1200,30 L1200,60 L0,60 Z' fill='%23F5F0E8'/%3E%3C/svg%3E") no-repeat top center;
  background-size: 100% 60px;
}

.order-steps .section-label { color: rgba(255,255,255,0.9); }
.order-steps .section-title { color: var(--white); }
.order-steps .section-desc { color: rgba(255,255,255,0.95); }
.order-steps .title-underline { background: var(--white); }

.card-step {
  border: none;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 2rem;
  height: 100%;
  text-align: center;
  color: var(--white);
  transition: background var(--transition);
}
.card-step:hover { background: rgba(255,255,255,0.25); }

.step-icon-wrap .img-placeholder {
  background: rgba(255,255,255,0.3);
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  opacity: 0.95;
  margin: 0;
}

.order-steps .btn-accent {
  background: var(--white);
  color: var(--orange) !important;
}
.order-steps .btn-accent:hover {
  background: var(--cream);
  color: var(--orange-hover) !important;
}

/* ============================================
   Blog
   ============================================ */
.blog { background: var(--cream); }

.card-blog {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card-blog:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-blog .card-img-top { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.card-blog .card-body { padding: 1.5rem; }

.blog-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brown-light);
  margin-bottom: 0.5rem;
}

.card-blog .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.card-blog .card-text { font-size: 0.9rem; margin: 0; }

/* ============================================
   FAQ + Contact block
   ============================================ */
.faq-contact { background: var(--cream-dark); }

.faq-visual .img-placeholder { border-radius: var(--radius); }

.accordion-faq .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(54,40,33,0.12);
  border-radius: 0;
}
.accordion-faq .accordion-button {
  background: transparent;
  color: var(--brown);
  font-weight: 600;
  padding: 1rem 0;
  box-shadow: none;
}
.accordion-faq .accordion-button:not(.collapsed) { color: var(--orange); }
.accordion-faq .accordion-button::after { filter: none; }
.accordion-faq .accordion-body {
  padding: 0 0 1rem;
  color: var(--charcoal);
  font-size: 0.95rem;
}

/* ============================================
   Contact preview / Contact page
   ============================================ */
.contact-preview,
.contact-page { background: var(--cream-darker); }

.contact-info p {
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}
.contact-info strong { color: var(--brown); }
.contact-info a { color: var(--orange); font-weight: 500; text-decoration: none; }
.contact-info a:hover { color: var(--orange-hover); text-decoration: underline; }

.map-placeholder {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.card-contact-form {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-page .form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.contact-page .form-subtitle {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-form .form-control {
  border: 1px solid rgba(54,40,33,0.2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.contact-form .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,122,62,0.2);
}

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

/* ============================================
   Page hero (About, Contact)
   ============================================ */
.page-hero {
  padding: 6rem 0 3rem;
  background: var(--cream-dark);
  text-align: center;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

/* ============================================
   About page
   ============================================ */
.about-page { background: var(--cream); }

.about-page-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-page-img-1 { border-radius: var(--radius); }
.about-page-img-2 { border-radius: var(--radius); max-width: 80%; align-self: flex-end; }

.about-values { background: var(--cream-dark); }

.cta-section {
  background: var(--cream);
  padding: 3.5rem 0;
}

/* ============================================
   Premium Enhanced Footer
   ============================================ */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 30%, #121212 100%);
  color: #eaeaea;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,122,62,0.5) 50%, transparent 100%);
}

.footer-title {
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
  display: inline-block;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

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

.footer-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1rem;
}
.footer-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(-5px);
}
.footer-list li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-list a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.footer-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.footer-list a:hover {
  color: #ffb347;
  padding-left: 4px;
  text-decoration: none;
}
.footer-list a:hover::after {
  width: 100%;
}

.footer-line {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0.15) 80%, transparent 100%);
  margin: 2.5rem 0 1.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding-top: 1rem;
  position: relative;
}
.footer-copy::before {
  content: '🍯';
  margin-right: 0.5rem;
  opacity: 0.6;
}

.footer-link-inline {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px dotted rgba(255,255,255,0.3);
}
.footer-link-inline:hover {
  color: #ffb347;
  border-bottom-color: #ffb347;
  text-decoration: none;
}

/* Footer Social/Quick Actions */
.footer-quick-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.footer-quick-btn {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-quick-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232,122,62,0.3);
  text-decoration: none;
}

/* ============================================
   Gallery Page
   ============================================ */
.gallery-page { background: var(--cream); }

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--orange);
  background: transparent;
  color: var(--orange);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232,122,62,0.3);
}

.gallery-grid { margin-top: 2rem; }

.gallery-item {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(54,40,33,0.15);
}
.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(54,40,33,0.9) 0%, transparent 100%);
  padding: 1.5rem;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}
.gallery-overlay h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Gallery Modal */
.cert-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}
.cert-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}
.cert-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.cert-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s;
}
.cert-close:hover { transform: scale(1.2); }

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

/* ============================================
   Achievements Page
   ============================================ */
.achievements-page { background: var(--cream-dark); }

.achievement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 2px solid transparent;
}
.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(54,40,33,0.15);
  border-color: var(--orange);
}

.achievement-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

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

.achievement-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.achievement-card p {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.certificates-grid { margin-top: 3rem; }

.certificate-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}
.certificate-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(54,40,33,0.2);
}
.certificate-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.certificate-card:hover img {
  transform: scale(1.08);
}

.certificate-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(54,40,33,0.95) 0%, transparent 100%);
  padding: 1.25rem;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.certificate-card:hover .certificate-overlay {
  transform: translateY(0);
}
.certificate-overlay h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   Enhanced UI Animations & Effects
   ============================================ */
.card-service,
.card-flavor,
.card-product,
.card-blog,
.card-step,
.card-testimonial {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-service:hover,
.card-flavor:hover,
.card-product:hover,
.card-blog:hover {
  transform: translateY(-8px);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced button hover effects */
.btn-accent {
  position: relative;
  overflow: hidden;
}
.btn-accent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-accent:hover::before {
  width: 300px;
  height: 300px;
}

/* Enhanced section labels */
.section-label {
  position: relative;
  display: inline-block;
}
.section-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.section:hover .section-label::after {
  width: 100%;
}

/* Enhanced hero - video background animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Enhanced navbar logo */
.header img {
  transition: transform 0.3s ease;
}
.header img:hover {
  transform: scale(1.05);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
  .header-top-bar { display: none; }
  .logo-text { display: none; }
  .navbar { padding: 0.75rem 0; }
  
  .hero {
    padding: 4rem 0 5rem;
    min-height: 500px;
  }
  .hero-content { text-align: center; margin-bottom: 2rem; }
  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }
  .title-underline { margin-left: auto; margin-right: auto; }

  .why-images { margin-bottom: 1.5rem; }
  .flavors .row { flex-direction: column-reverse; }
  .flavors .section-desc.text-start { text-align: center !important; }
  .flavors .benefit-list { margin-bottom: 1.5rem; }

  .card-product .card-body { padding: 1rem; }
  .product-name { font-size: 0.95rem; }

  .order-steps { padding-top: 4.5rem; }
  .steps-row { flex-direction: column; }

  .faq-contact .row { flex-direction: column-reverse; }
  .faq-visual { margin-bottom: 1.5rem; order: -1; }
  .faq-visual .img-placeholder { min-height: 260px; }

  .contact-preview .row,
  .contact-page .row { flex-direction: column; }
  .map-placeholder { margin-bottom: 1.5rem; }

  .btn-nav { margin-left: 0; margin-top: 0.5rem; }
  .nav-link { margin: 0.2rem 0; }
}

@media (max-width: 767px) {
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.5rem; }

  .card-service,
  .card-flavor,
  .card-product,
  .card-blog,
  .card-step { padding: 1.5rem; }

  .hero {
    min-height: 450px;
    padding: 3rem 0 4rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .col-6.col-md-3 { flex: 0 0 50%; max-width: 50%; }
}

@media (max-width: 575px) {
  .col-6.col-md-3 { flex: 0 0 100%; max-width: 100%; }
  #carouselStore .carousel-inner .row { flex-direction: column; align-items: center; }
  .footer-link { display: block; margin: 0.5rem 0; }
  
  .gallery-card img,
  .certificate-card img { height: 220px; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.85rem; }
  .achievement-card { padding: 2rem 1.5rem; }
  .achievement-icon { font-size: 2.5rem; }
  .cert-modal-content { max-width: 95%; padding: 1rem; }
}
