/* ===== AUREA Honey — Global Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #D4A843;
  --gold-light: #E8C876;
  --gold-dark: #B8922F;
  --bg-dark: #0D0A06;
  --bg-card: #1A1409;
  --bg-card-light: #231B10;
  --text-cream: #F5E6C8;
  --text-muted: #9A8B73;
  --border-gold: rgba(212,168,67,0.2);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-cream);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:100;
  padding: 1rem 2rem;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.navbar.scrolled {
  background: rgba(13,10,6,0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); text-decoration: none;
}
.nav-links a {
  color: var(--text-cream); text-decoration: none;
  font-size: 0.9rem; font-weight: 400;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2px; background:var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width:100%; }

.btn-buy {
  background: var(--gold); color: var(--bg-dark);
  padding: 0.6rem 1.5rem; border-radius: 4px;
  font-weight: 600; font-size: 0.85rem;
  text-decoration: none; transition: all 0.3s;
  border: 2px solid var(--gold);
}
.btn-buy:hover { background: transparent; color: var(--gold); }

/* Mobile Menu */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--gold);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width:768px) {
  .hamburger { display:flex; }
  .nav-links {
    position:fixed; top:0; right:-100%; width:70%; height:100vh;
    background: rgba(13,10,6,0.98); backdrop-filter:blur(16px);
    flex-direction:column !important; align-items:center !important;
    justify-content:center; gap:2rem !important;
    transition: right 0.4s;
  }
  .nav-links.open { right:0; }
  .nav-links a { font-size:1.2rem; }
  .btn-buy-mobile { display:block !important; }
  .btn-buy-desktop { display:none !important; }
}

/* ===== BUTTONS ===== */
.btn-gold {
  display:inline-block; background:var(--gold); color:var(--bg-dark);
  padding: 0.85rem 2.2rem; border-radius:4px; font-weight:600;
  font-size:0.9rem; text-decoration:none; transition:all 0.3s;
  border:2px solid var(--gold);
}
.btn-gold:hover { background:transparent; color:var(--gold); }
.btn-outline {
  display:inline-block; background:transparent; color:var(--text-cream);
  padding: 0.85rem 2.2rem; border-radius:4px; font-weight:500;
  font-size:0.9rem; text-decoration:none; transition:all 0.3s;
  border:2px solid var(--border-gold);
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  text-align:center; overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background: url('images/hero-bg.png') center/cover no-repeat;
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(13,10,6,0.4) 0%, rgba(13,10,6,0.7) 50%, var(--bg-dark) 100%);
}
.hero-content { position:relative; z-index:1; max-width:700px; padding:0 1.5rem; }
.hero-subtitle { font-size: 0.75rem; letter-spacing: 4px; color: var(--gold); margin-bottom: 1rem; font-weight:500; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.15; color: var(--text-cream); margin-bottom: 1.2rem; }
.hero-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; max-width:540px; margin-inline:auto; }

/* ===== SECTION TITLES ===== */
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--text-cream); text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { font-size: 0.9rem; color: var(--text-muted); text-align: center; max-width: 500px; margin: 0 auto 3rem; line-height: 1.6; }

/* ===== PRODUCT CARDS (Index) ===== */
.product-card {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(212,168,67,0.1); }
.product-img { width:100%; height:260px; object-fit:cover; transition: transform 0.5s; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-info { padding: 1.2rem 1.4rem; }
.product-name { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--text-cream); margin-bottom:0.4rem; }
.product-desc { font-size:0.8rem; color:var(--text-muted); line-height:1.5; margin-bottom:1rem; }
.product-price { font-family:'Playfair Display',serif; font-size:1.3rem; color:var(--gold); font-weight:600; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border-gold); padding: 1.2rem 0; cursor:pointer; }
.faq-question { display:flex; justify-content:space-between; align-items:center; font-size:0.92rem; color:var(--text-cream); font-weight:500; }
.faq-question svg { transition:transform 0.3s; color:var(--gold); flex-shrink:0; width:18px; }
.faq-item.active .faq-question svg { transform:rotate(180deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.3s; }
.faq-item.active .faq-answer { max-height:200px; }
.faq-answer p { padding-top:0.8rem; font-size:0.82rem; color:var(--text-muted); line-height:1.6; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-card); border-top: 1px solid var(--border-gold); }
.footer-link { color: var(--text-muted); text-decoration:none; font-size:0.85rem; transition: color 0.3s; }
.footer-link:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity:0; transform:translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-left { opacity:0; transform:translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity:1; transform:translateX(0); }
.fade-right { opacity:0; transform:translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity:1; transform:translateX(0); }

/* Honey drip decoration */
.honey-drip { position: absolute; top:0; width:3px; background: linear-gradient(to bottom, var(--gold), transparent); border-radius: 0 0 3px 3px; animation: drip 3s ease-in-out infinite; }
@keyframes drip { 0%,100% { height:40px; opacity:0.4; } 50% { height:80px; opacity:0.8; } }

/* Floating particles */
.particle { position:absolute; width:4px; height:4px; background: var(--gold); border-radius:50%; opacity:0; animation: float-particle 6s ease-in-out infinite; }
@keyframes float-particle { 0% { opacity:0; transform:translateY(0); } 50% { opacity:0.6; } 100% { opacity:0; transform:translateY(-100px); } }

/* ===== ABOUT US PAGE ===== */
.about-hero { position: relative; height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.about-hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1587049352846-4a222e784d38?w=1600&q=80') center/cover; filter: brightness(0.35); z-index: 0; }
.quote-block { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; color: var(--gold); border-left: 3px solid var(--gold); padding-left: 1.5rem; line-height: 1.6; }
.badge-certified { display: inline-flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; background: var(--bg-card); border: 1px solid var(--gold); border-radius: 50px; }
.badge-number { font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.badge-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; line-height: 1.2; }

.principle-card { padding: 2.5rem; background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: 16px; text-align: center; transition: all 0.3s; }
.principle-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.principle-icon { width: 60px; height: 60px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; color: var(--gold); background: rgba(212,168,67,0.1); border-radius: 50%; }
.principle-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.8rem; color: var(--text-cream); }
.principle-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.team-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 5/6; }
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.team-card:hover img { transform: scale(1.08); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,10,6,0.95) 0%, rgba(13,10,6,0.2) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; opacity: 0; transition: opacity 0.4s; }
.team-card:hover .team-overlay { opacity: 1; }
.team-role { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 0.5rem; }
.team-name { font-size: 1.5rem; font-weight: 600; color: var(--text-cream); margin-bottom: 0.8rem; }
.team-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.cta-section { background: radial-gradient(circle at center, rgba(212, 168, 67, 0.15) 0%, transparent 70%); text-align: center; padding: 5rem 2rem; border: 1px solid var(--gold); border-radius: 20px; }

/* ===== APIARY / SHOP PAGE ===== */
.apiary-hero { padding: 6rem 2rem 4rem; text-align: center; background: radial-gradient(circle at top, rgba(212, 168, 67, 0.1) 0%, transparent 70%); }
.filter-tab { padding: 0.7rem 1.6rem; border-radius: 30px; border: 1px solid var(--border-gold); color: var(--text-muted); font-size: 0.8rem; font-weight: 500; transition: all 0.3s; cursor: pointer; background: transparent; }
.filter-tab:hover, .filter-tab.active { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }

.shop-card { background: var(--bg-card); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-gold); transition: all 0.4s; }
.shop-card:hover { transform: translateY(-10px); border-color: var(--gold); }
.shop-card-img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.6s; }
.shop-card:hover .shop-card-img { transform: scale(1.1); }
@media (max-width: 640px) { .shop-card-img { aspect-ratio: 4/3; } }
.shop-card-body { padding: 1.5rem; }
.shop-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.shop-card-name { font-size: 1.1rem; font-weight: 600; color: var(--text-cream); font-family: 'Playfair Display', serif; }
.shop-card-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.shop-card-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 1.5rem; }
.btn-cart { width: 100%; padding: 0.8rem; border: 1px solid var(--gold); border-radius: 8px; color: var(--gold); font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.3s; background: transparent; cursor: pointer; }
.btn-cart:hover { background: var(--gold); color: var(--bg-dark); }
.btn-cart svg { width: 16px; height: 16px; }

.promo-card { background: var(--bg-card-light); border-radius: 20px; overflow: hidden; border: 1px solid var(--border-gold); }
.promo-gift { background: linear-gradient(135deg, var(--gold-dark) 0%, #1a1409 100%); padding: 2.5rem; border-radius: 20px; text-align: center; }
.promo-gift h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-cream); }
.promo-gift p { font-size: 0.9rem; color: var(--text-cream); opacity: 0.8; margin-bottom: 2rem; }
.btn-explore { display: inline-block; padding: 0.8rem 2rem; border: 1px solid white; border-radius: 6px; color: white; text-decoration: none; font-size: 0.8rem; font-weight: 600; transition: all 0.3s; }
.btn-explore:hover { background: white; color: black; }

/* ===== WELLNESS PAGE ===== */
.wellness-hero { padding: 8rem 2rem 6rem; text-align: center; position: relative; }
.wellness-hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(212, 168, 67, 0.08) 0%, transparent 70%); z-index: 0; }
.benefit-card { background: var(--bg-card); border-radius: 24px; overflow: hidden; border: 1px solid var(--border-gold); }
.benefit-tag { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.5rem 1rem; background: rgba(212, 168, 67, 0.1); border-radius: 30px; color: var(--gold); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; margin-bottom: 1.5rem; }
.benefit-tag svg { width: 16px; height: 16px; }
.benefit-title { font-size: 2.2rem; font-family: 'Playfair Display', serif; color: var(--text-cream); margin-bottom: 1.5rem; }
.benefit-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
.benefit-img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

.stat-card { padding: 3rem 2rem; background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: 16px; }
.stat-number { font-size: 3rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.stat-label { font-size: 1rem; font-weight: 600; color: var(--text-cream); margin-bottom: 1rem; }
.stat-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-hero { padding: 8rem 2rem 4rem; text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.contact-testimonial-card { background: var(--bg-card); padding: 3rem 2rem; border-radius: 20px; border: 1px solid var(--border-gold); text-align: center; transition: all 0.3s; }
.contact-testimonial-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.avatar-wrapper { width: 80px; height: 80px; margin: 0 auto 1.5rem; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); }
.avatar-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.contact-container { max-width: 1200px; margin: 4rem auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media (max-width: 968px) { .contact-container { grid-template-columns: 1fr; } }

.contact-form-box { background: var(--bg-card); border: 1px solid var(--border-gold); padding: 3rem; border-radius: 20px; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 0.5rem; font-weight: 600; }
.form-input { width:100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border-gold); border-radius: 6px; padding: 0.8rem 1rem; color: var(--text-cream); font-size:0.88rem; font-family:'Inter',sans-serif; transition: border-color 0.3s; outline:none; }
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-muted); }
.form-input-line { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border-gold); padding: 0.8rem 0; color: var(--text-cream); outline: none; transition: border-color 0.3s; font-family:'Inter',sans-serif; font-size:0.88rem; }
.form-input-line:focus { border-color: var(--gold); }
.form-input-line::placeholder { color: var(--text-muted); }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.info-card { padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: 16px; }
.info-card-title { display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.info-card-content { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.map-box { position: relative; height: 300px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-gold); }
.map-placeholder { width: 100%; height: 100%; background: #121212; background-image: radial-gradient(circle at 50% 50%, #1a1409 0%, #0d0a06 100%); }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 8px rgba(212, 168, 67, 0.2), 0 0 0 16px rgba(212, 168, 67, 0.1); }

.subscribe-section { max-width: 800px; margin: 4rem auto 8rem; text-align: center; padding: 5rem 2rem; background: linear-gradient(to bottom, var(--bg-card) 0%, transparent 100%); border: 1px solid var(--border-gold); border-radius: 30px; }
.sub-input-group { display: flex; max-width: 500px; margin: 2.5rem auto 0; border-bottom: 1px solid var(--gold); }
.sub-input { flex: 1; background: transparent; border: none; padding: 1rem; color: var(--text-cream); outline: none; font-family:'Inter',sans-serif; }
.sub-input::placeholder { color: var(--text-muted); }
.btn-sub { padding: 1rem 2rem; color: var(--gold); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; background: transparent; border: none; cursor: pointer; }

/* ===== SERVICES PAGE ===== */
.service-hero { padding: 7rem 2rem 5rem; text-align: center; }
.grid-services { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 1.5rem; max-width: 1200px; margin: 0 auto; padding: 0 2rem 4rem; }
.bulk-card { grid-column: span 2; }
.service-card { background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: 16px; overflow: hidden; position: relative; transition: all 0.4s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(212, 168, 67, 0.12); }
.service-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0.45; transition: opacity 0.4s, transform 0.6s; }
.service-card:hover .service-img { opacity: 0.6; transform: scale(1.05); }
.service-content { position: relative; z-index: 10; padding: 2.5rem; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(13,10,6,0.95) 0%, rgba(13,10,6,0.4) 60%, transparent 100%); }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text-cream); margin-bottom: 0.8rem; }
.service-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; max-width: 320px; }

.custom-branding-section { max-width: 1200px; margin: 2rem auto 6rem; padding: 0 2rem; }
.branding-card { background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.journey-section { text-align: center; padding: 6rem 2rem; background: radial-gradient(circle at center, rgba(212, 168, 67, 0.05) 0%, transparent 70%); }

@media (max-width: 1024px) {
  .grid-services { grid-template-columns: 1fr 1fr; }
  .bulk-card { grid-column: span 2; }
}
@media (max-width: 868px) {
  .branding-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-services { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .bulk-card { grid-column: span 1; }
}

/* Dynamic Active Link Styling */
.nav-active { color: var(--gold) !important; text-decoration: underline !important; text-underline-offset: 6px; }

/* =================================================================
   RESPONSIVE MEDIA QUERIES — All Pages
   ================================================================= */

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {

  /* Navbar */
  .navbar { padding: 0.8rem 1.5rem; }
  .navbar.scrolled { padding: 0.5rem 1.5rem; }
  .nav-links { gap: 1.2rem !important; }
  .nav-links a { font-size: 0.82rem; }
  .btn-buy { padding: 0.5rem 1rem; font-size: 0.78rem; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-title { font-size: clamp(2rem, 4.5vw, 3rem); }
  .hero-desc { font-size: 0.88rem; }

  /* Section Titles */
  .section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }

  /* Product Cards */
  .product-img { height: 220px; }

  /* About Page */
  .about-hero { height: 60vh; }
  .quote-block { font-size: 1rem; }
  .team-card { aspect-ratio: 4/5; }

  /* Wellness */
  .benefit-title { font-size: 1.8rem; }
  .benefit-img { min-height: 320px; }
  .stat-number { font-size: 2.4rem; }
  .stat-card { padding: 2rem 1.5rem; }

  /* Services */
  .grid-services { gap: 1rem; grid-auto-rows: 260px; }
  .service-content { padding: 1.8rem; }
  .service-title { font-size: 1.3rem; }
  .branding-card { min-height: 350px; }

  /* Contact */
  .contact-container { gap: 2.5rem; }
  .contact-form-box { padding: 2rem; }
  .info-card { padding: 1.5rem; }

  /* Footer */
  .footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ===== SMALL TABLET / PHABLET (max-width: 768px) ===== */
@media (max-width: 768px) {

  /* Navbar (mobile hamburger already handled above) */
  .navbar { padding: 0.7rem 1rem; }

  /* Hero */
  .hero { min-height: 75vh; }
  .hero-content { padding: 0 1rem; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.65rem; letter-spacing: 3px; }
  .hero-desc { font-size: 0.85rem; max-width: 100%; }

  /* Section Titles */
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.82rem; }

  /* Product Cards */
  .product-img { height: 200px; }
  .product-info { padding: 1rem; }
  .product-name { font-size: 1rem; }
  .product-price { font-size: 1.1rem; }

  /* FAQ */
  .faq-question { font-size: 0.85rem; }
  .faq-answer p { font-size: 0.78rem; }

  /* About Page */
  .about-hero { height: 50vh; }
  .quote-block { font-size: 0.95rem; padding-left: 1rem; }
  .badge-certified { padding: 0.8rem 1rem; }
  .badge-number { font-size: 1.4rem; }
  .principle-card { padding: 1.8rem; }
  .principle-title { font-size: 1.05rem; }
  .principle-desc { font-size: 0.8rem; }
  .team-card { aspect-ratio: 3/4; }
  .team-name { font-size: 1.2rem; }

  /* Apiary / Shop */
  .apiary-hero { padding: 5rem 1rem 3rem; }
  .filter-tab { padding: 0.55rem 1.2rem; font-size: 0.75rem; }
  .shop-card-img { aspect-ratio: 3/2; }
  .shop-card-body { padding: 1.2rem; }
  .shop-card-name { font-size: 1rem; }
  .shop-card-price { font-size: 1rem; }
  .shop-card-tag { font-size: 0.65rem; margin-bottom: 0.8rem; }
  .promo-card { border-radius: 16px; }
  .promo-gift { padding: 1.8rem; }
  .promo-gift h3 { font-size: 1.4rem; }

  /* Wellness */
  .wellness-hero { padding: 5rem 1rem 3rem; }
  .benefit-card { border-radius: 16px; }
  .benefit-title { font-size: 1.6rem; }
  .benefit-desc { font-size: 0.82rem; }
  .benefit-img { min-height: 280px; }
  .stat-card { padding: 1.8rem 1.2rem; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.9rem; }
  .stat-desc { font-size: 0.75rem; }

  /* Contact */
  .contact-hero { padding: 5rem 1rem 3rem; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-testimonial-card { padding: 2rem 1.5rem; }
  .avatar-wrapper { width: 60px; height: 60px; }
  .contact-form-box { padding: 1.8rem; border-radius: 16px; }
  .info-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .info-card { padding: 1.2rem; }
  .map-box { height: 220px; border-radius: 16px; }
  .subscribe-section { padding: 3rem 1.5rem; border-radius: 20px; margin-bottom: 4rem; }
  .sub-input-group { flex-direction: column; border-bottom: none; gap: 0.8rem; }
  .sub-input { border-bottom: 1px solid var(--gold); padding: 0.8rem; }
  .btn-sub { padding: 0.8rem; border: 1px solid var(--gold); border-radius: 4px; }

  /* Services */
  .service-hero { padding: 5rem 1rem 3rem; }
  .service-content { padding: 1.5rem; }
  .service-title { font-size: 1.2rem; }
  .service-desc { font-size: 0.78rem; }
  .custom-branding-section { margin: 1.5rem auto 4rem; padding: 0 1rem; }
  .journey-section { padding: 4rem 1.5rem; }

  /* Buttons */
  .btn-gold { padding: 0.7rem 1.6rem; font-size: 0.82rem; }
  .btn-outline { padding: 0.7rem 1.6rem; font-size: 0.82rem; }
  .btn-buy { font-size: 0.78rem; padding: 0.5rem 1rem; }

  /* CTA */
  .cta-section { padding: 3rem 1.5rem; border-radius: 16px; }

  /* Animations — reduce on mobile */
  .fade-up { transform: translateY(20px); }
  .fade-left { transform: translateX(-20px); }
  .fade-right { transform: translateX(20px); }
}

/* ===== MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {

  /* Body */
  body { font-size: 14px; }

  /* Navbar */
  .navbar { padding: 0.6rem 0.8rem; }
  .nav-logo { font-size: 1.3rem; }
  .nav-links.open { width: 85%; }
  .nav-links a { font-size: 1.1rem; }

  /* Hero */
  .hero { min-height: 65vh; }
  .hero-content { padding: 0 0.5rem; }
  .hero-title { font-size: 1.7rem; line-height: 1.2; }
  .hero-subtitle { font-size: 0.6rem; letter-spacing: 2px; margin-bottom: 0.6rem; }
  .hero-desc { font-size: 0.8rem; line-height: 1.6; }

  /* Section Titles */
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.78rem; margin-bottom: 2rem; }

  /* Product Cards */
  .product-img { height: 180px; }
  .product-info { padding: 0.8rem; }
  .product-name { font-size: 0.92rem; }
  .product-desc { font-size: 0.75rem; }
  .product-price { font-size: 1rem; }

  /* FAQ */
  .faq-item { padding: 0.8rem 0; }
  .faq-question { font-size: 0.8rem; }
  .faq-answer p { font-size: 0.75rem; }

  /* About Page */
  .about-hero { height: 40vh; }
  .quote-block { font-size: 0.85rem; padding-left: 0.8rem; border-left-width: 2px; }
  .badge-certified { padding: 0.6rem 0.8rem; flex-direction: column; text-align: center; gap: 0.5rem; }
  .badge-number { font-size: 1.2rem; }
  .badge-label { font-size: 0.6rem; }
  .principle-card { padding: 1.5rem; border-radius: 12px; }
  .principle-icon { width: 48px; height: 48px; margin-bottom: 1rem; }
  .principle-title { font-size: 1rem; margin-bottom: 0.5rem; }
  .principle-desc { font-size: 0.75rem; }
  .team-card { aspect-ratio: 1; border-radius: 12px; }
  .team-overlay { padding: 1.2rem; }
  .team-role { font-size: 0.6rem; }
  .team-name { font-size: 1.1rem; margin-bottom: 0.4rem; }
  .team-desc { font-size: 0.72rem; }
  .cta-section { padding: 2.5rem 1.2rem; border-radius: 14px; }

  /* Apiary / Shop */
  .apiary-hero { padding: 4rem 0.8rem 2rem; }
  .filter-tab { padding: 0.5rem 0.9rem; font-size: 0.7rem; }
  .shop-card { border-radius: 12px; }
  .shop-card-img { aspect-ratio: 3/2; }
  .shop-card-body { padding: 1rem; }
  .shop-card-name { font-size: 0.92rem; }
  .shop-card-price { font-size: 0.92rem; }
  .shop-card-tag { font-size: 0.6rem; margin-bottom: 0.8rem; }
  .btn-cart { padding: 0.6rem; font-size: 0.72rem; }
  .promo-gift { padding: 1.5rem; border-radius: 14px; }
  .promo-gift h3 { font-size: 1.2rem; }
  .promo-gift p { font-size: 0.8rem; }

  /* Wellness */
  .wellness-hero { padding: 4rem 0.8rem 2rem; }
  .benefit-card { border-radius: 14px; }
  .benefit-tag { font-size: 0.65rem; padding: 0.4rem 0.8rem; }
  .benefit-title { font-size: 1.3rem; margin-bottom: 1rem; }
  .benefit-desc { font-size: 0.78rem; line-height: 1.7; }
  .benefit-img { min-height: 220px; }
  .stat-card { padding: 1.5rem 1rem; border-radius: 12px; }
  .stat-number { font-size: 1.6rem; margin-bottom: 0.3rem; }
  .stat-label { font-size: 0.82rem; margin-bottom: 0.6rem; }
  .stat-desc { font-size: 0.7rem; }

  /* Contact */
  .contact-hero { padding: 4rem 0.8rem 2rem; }
  .contact-testimonial-card { padding: 1.5rem 1rem; border-radius: 14px; }
  .avatar-wrapper { width: 50px; height: 50px; margin-bottom: 1rem; }
  .contact-form-box { padding: 1.5rem; border-radius: 14px; }
  .form-label { font-size: 0.65rem; }
  .form-input { padding: 0.7rem 0.8rem; font-size: 0.82rem; }
  .form-input-line { padding: 0.7rem 0; font-size: 0.82rem; }
  .info-card { padding: 1rem; border-radius: 12px; }
  .info-card-title { font-size: 0.7rem; }
  .info-card-content { font-size: 0.78rem; }
  .map-box { height: 180px; border-radius: 14px; }
  .subscribe-section { padding: 2.5rem 1rem; border-radius: 16px; margin-bottom: 3rem; }

  /* Services */
  .service-hero { padding: 4rem 0.8rem 2rem; }
  .grid-services { gap: 0.8rem; grid-auto-rows: 240px; padding: 0 0.8rem 3rem; }
  .service-card { border-radius: 12px; }
  .service-content { padding: 1.2rem; }
  .service-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .service-desc { font-size: 0.72rem; }
  .branding-card { border-radius: 14px; min-height: auto; }
  .custom-branding-section { padding: 0 0.8rem; margin-bottom: 3rem; }
  .journey-section { padding: 3rem 1rem; }

  /* Buttons — touch-friendly */
  .btn-gold { padding: 0.65rem 1.4rem; font-size: 0.78rem; }
  .btn-outline { padding: 0.65rem 1.4rem; font-size: 0.78rem; }
  .btn-explore { padding: 0.65rem 1.4rem; font-size: 0.72rem; }

  /* Footer */
  .footer-link { font-size: 0.78rem; }

  /* Animations — minimal on mobile for perf */
  .fade-up { transform: translateY(15px); }
  .fade-left, .fade-right { transform: translateY(15px); }

  /* Gallery lightbox — mobile friendly */
  .lb-btn { width: 40px; height: 40px; }
  .lb-close { top: 1rem; right: 1rem; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
}

/* ===== EXTRA SMALL (max-width: 360px) ===== */
@media (max-width: 360px) {
  .hero-title { font-size: 1.5rem; }
  .hero-desc { font-size: 0.75rem; }
  .nav-logo { font-size: 1.15rem; }
  .section-title { font-size: 1.25rem; }
  .benefit-title { font-size: 1.15rem; }
  .stat-number { font-size: 1.4rem; }
  .team-name { font-size: 1rem; }
  .btn-gold, .btn-outline { padding: 0.6rem 1.2rem; font-size: 0.72rem; }
  .principle-card { padding: 1.2rem; }
  .service-title { font-size: 1rem; }
}
