@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --coffee-dark: #2C1A16;
  --coffee-medium: #5D4037;
  --coffee-light: #8D6E63;
  --coffee-cream: #D7CCC8;
  --black: #121212;
  --cream: #FAF6F0;
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-light: #F5F5F5;
  --gold: #C9A66B;
  --gold-light: #E6C88A;
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 25px rgba(201, 166, 107, 0.3);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background-color: var(--gold); color: var(--white); }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; color: var(--coffee-dark); line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* PRELOADER */
.preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--coffee-dark); display: flex; justify-content: center; align-items: center;
  z-index: 9999; transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { text-align: center; color: var(--white); }
.preloader-logo { width: 100px; height: 100px; object-fit: contain; margin: 0 auto 1.5rem; animation: pulse-logo 2s ease-in-out infinite; }
@keyframes pulse-logo { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(201, 166, 107, 0.5)); } 50% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(201, 166, 107, 0.8)); } }
.preloader-content p { font-family: 'Playfair Display', serif; font-size: 1.3rem; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }

/* SCROLL PROGRESS */
.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); background-size: 200% 100%; animation: shimmer 2s infinite linear; width: 0%; z-index: 1001; transition: width 0.1s; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* NAVIGATION */
header {
  background-color: rgba(18, 18, 18, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  color: var(--white); padding: 1rem 0; position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--transition);
}
header.scrolled { padding: 0.6rem 0; background-color: rgba(18, 18, 18, 0.95); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
nav { max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }
.logo { display: flex; align-items: center; gap: 0.8rem; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
.logo img { width: 50px; height: 50px; object-fit: contain; border-radius: 8px; transition: var(--transition); }
.logo:hover img { transform: rotate(10deg) scale(1.1); }
.logo span { color: var(--white); font-style: italic; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { color: var(--white); font-weight: 500; font-size: 0.95rem; position: relative; padding: 0.5rem 0; letter-spacing: 0.5px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background-color: var(--gold); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--white); transition: var(--transition); }
.menu-toggle:hover { color: var(--gold); transform: scale(1.1); }

/* HERO */
.hero {
  background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(44, 26, 22, 0.85)), url('images/back.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  color: var(--white); text-align: center; padding: 14rem 2rem 10rem; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.hero::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; background: linear-gradient(to top, var(--cream), transparent); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-tagline { display: inline-block; padding: 0.5rem 1.8rem; background: rgba(201, 166, 107, 0.15); border: 1px solid var(--gold); color: var(--gold); border-radius: 50px; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; animation: fadeInDown 1s ease-out; backdrop-filter: blur(5px); }
.hero h1 { font-size: 5rem; color: var(--white); margin-bottom: 1.5rem; animation: fadeInUp 1s ease-out 0.2s backwards; font-weight: 700; line-height: 1.1; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p { font-size: 1.3rem; max-width: 700px; margin: 0 auto 2.5rem; animation: fadeInUp 1s ease-out 0.4s backwards; opacity: 0.95; font-weight: 300; }
.hero .btn-group { animation: fadeInUp 1s ease-out 0.6s backwards; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--gold); font-size: 1.5rem; animation: bounce 2s infinite; opacity: 0.8; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-15px); } 60% { transform: translateX(-50%) translateY(-7px); } }

/* HERO - TRUE FULL SCREEN EDGE-TO-EDGE */
.hero {
  background: linear-gradient(rgba(18, 18, 18, 0.6), rgba(44, 26, 22, 0.8)), url('images/back.jpg');
  background-size: cover; 
  background-position: center; 
  background-attachment: fixed;
  color: var(--white); 
  text-align: center; 
  width: 100%;
  max-width: 100vw; /* Forces edge-to-edge width */
  min-height: 100vh; 
  height: 100dvh; /* Perfect full height on mobile browsers */
  position: relative; 
  overflow: hidden;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  padding: 0; /* REMOVED all padding from the background container */
  margin: 0;
}

.hero::before { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 100%; 
  height: 150px; 
  background: linear-gradient(to top, var(--cream), transparent); 
  z-index: 1; 
}

.hero-content { 
  position: relative; 
  z-index: 2; 
  max-width: 900px; 
  width: 100%;
  padding: 0 2rem; /* Padding moved HERE so text doesn't touch screen edges on mobile */
}

.hero-tagline { 
  display: inline-block; 
  padding: 0.5rem 1.8rem; 
  background: rgba(201, 166, 107, 0.15); 
  border: 1px solid var(--gold); 
  color: var(--gold); 
  border-radius: 50px; 
  font-size: 0.85rem; 
  letter-spacing: 3px; 
  text-transform: uppercase; 
  margin-bottom: 1.5rem; 
  animation: fadeInDown 1s ease-out; 
  backdrop-filter: blur(5px); 
}

.hero h1 { 
  font-size: 5rem; 
  color: var(--white); 
  margin-bottom: 1.5rem; 
  animation: fadeInUp 1s ease-out 0.2s backwards; 
  font-weight: 700; 
  line-height: 1.1; 
  text-shadow: 0 4px 20px rgba(0,0,0,0.3); 
}

.hero h1 span { 
  color: var(--gold); 
  font-style: italic; 
}

.hero p { 
  font-size: 1.3rem; 
  max-width: 700px; 
  margin: 0 auto 2.5rem; 
  animation: fadeInUp 1s ease-out 0.4s backwards; 
  opacity: 0.95; 
  font-weight: 300; 
}

.hero .btn-group { 
  animation: fadeInUp 1s ease-out 0.6s backwards; 
  display: flex; 
  gap: 1rem; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.scroll-indicator { 
  position: absolute; 
  bottom: 40px; 
  left: 50%; 
  transform: translateX(-50%); 
  z-index: 2; 
  color: var(--gold); 
  font-size: 1.5rem; 
  animation: bounce 2s infinite; 
  opacity: 0.8; 
}


/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 2.5rem; background: var(--coffee-medium); color: var(--white); border-radius: 50px; font-weight: 600; transition: var(--transition); border: 2px solid var(--coffee-medium); position: relative; overflow: hidden; z-index: 1; font-size: 0.95rem; letter-spacing: 0.5px; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: 0.5s; z-index: -1; }
.btn:hover::before { left: 100%; }
.btn:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(93, 64, 55, 0.4); border-color: var(--coffee-dark); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-color: var(--gold); color: var(--black); font-weight: 700; }
.btn-gold:hover { box-shadow: var(--shadow-glow); border-color: var(--gold-light); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-dark { background: transparent; color: var(--coffee-dark); border: 2px solid var(--coffee-dark); }
.btn-outline-dark:hover { background: var(--coffee-dark); color: var(--white); }

/* SECTIONS */
section { padding: 7rem 2rem; max-width: 1320px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; position: relative; }
.section-tag::before, .section-tag::after { content: '—'; margin: 0 10px; color: var(--coffee-light); }
.section-title { font-size: 3.2rem; margin-bottom: 1rem; color: var(--coffee-dark); position: relative; display: inline-block; }
.section-title::after { content: ''; display: block; width: 80px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--coffee-medium)); margin: 1rem auto 0; border-radius: 2px; }
.section-subtitle { font-size: 1.15rem; color: var(--coffee-medium); max-width: 700px; margin: 1.5rem auto 0; font-weight: 300; }

/* STATS */
.stats-section {
  background: linear-gradient(rgba(44, 26, 22, 0.95), rgba(18, 18, 18, 0.98)), url('images/home background-back.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  color: var(--white); padding: 6rem 2rem; max-width: 100%; position: relative;
}
.stats-section::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDQwaDQwVjBIMHY0MHptMjAtMjBoMjB2MjBIMjBWMjB6TTAgMjBoMjB2MjBIMFYyMHoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMiIvPjwvZz48L3N2Zz4='); opacity: 0.5; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.stat-item { padding: 2.5rem 1rem; background: rgba(255,255,255,0.03); border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(5px); transition: var(--transition); }
.stat-item:hover { transform: translateY(-10px); background: rgba(255,255,255,0.06); border-color: var(--gold); }
.stat-item i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; color: var(--coffee-cream); }

/* CARDS */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.card { background: var(--white); padding: 3rem 2.5rem; border-radius: 20px; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.03); }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), var(--coffee-medium)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
.card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: 1rem; color: var(--coffee-dark); font-size: 1.4rem; }
.card-icon { width: 75px; height: 75px; background: linear-gradient(135deg, var(--coffee-medium), var(--coffee-dark)); color: var(--white); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.5rem; transition: var(--transition); box-shadow: 0 10px 20px rgba(93, 64, 55, 0.2); }
.card:hover .card-icon { transform: scale(1.1) rotate(5deg); background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); }

/* ========== PREMIUM GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1.2rem;
}

/* Featured large images - strategic placement */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(11) { grid-column: span 2; }
.gallery-item:nth-child(16) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(21) { grid-column: span 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(201, 166, 107, 0) 0%, 
    rgba(201, 166, 107, 0) 50%, 
    rgba(44, 26, 22, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 26, 22, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(0.85);
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
}

/* Gallery caption */
.gallery-caption {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: var(--white);
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.gallery-caption p {
  font-size: 0.95rem;
  opacity: 0.9;
  color: var(--gold-light);
  font-weight: 300;
}

/* View icon on hover */
.gallery-view-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--coffee-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5) rotate(-180deg);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item:hover .gallery-view-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Image number badge */
.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(201, 166, 107, 0.95);
  color: var(--black);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-badge {
  opacity: 1;
  transform: translateY(0);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 2rem;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
  animation: zoomIn 0.4s ease;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.lightbox-caption h4 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.lightbox-caption p {
  color: var(--coffee-cream);
  font-size: 1rem;
  opacity: 0.8;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 9999;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(201, 166, 107, 0.4);
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  backdrop-filter: blur(10px);
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ========== RESPONSIVE GALLERY ========== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(11) { grid-column: span 1; }
  .gallery-item:nth-child(16) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(21) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 0.8rem;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(11) { grid-column: span 2; }
  .gallery-item:nth-child(16) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(21) { grid-column: span 2; }
  
  .gallery-caption { bottom: 15px; left: 15px; right: 15px; }
  .gallery-caption h4 { font-size: 1.2rem; }
  .gallery-caption p { font-size: 0.85rem; }
  .gallery-view-icon { width: 40px; height: 40px; top: 15px; right: 15px; font-size: 1rem; }
  .gallery-badge { top: 15px; left: 15px; font-size: 0.65rem; padding: 0.3rem 0.8rem; }
  
  .lightbox-nav { width: 45px; height: 45px; }
  .lightbox-close { width: 45px; height: 45px; top: 15px; right: 15px; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(11),
  .gallery-item:nth-child(16),
  .gallery-item:nth-child(21) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* TIKTOK SECTION (UI/UX FIXED) */
.tiktok-section { background-color: var(--black); max-width: 100%; padding: 7rem 2rem; position: relative; overflow: hidden; }
.tiktok-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(201, 166, 107, 0.05) 0%, transparent 70%); animation: rotate 30s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.tiktok-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; justify-items: center; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.tiktok-item { 
  width: 100%; max-width: 350px; background: #000; border-radius: 20px; overflow: hidden; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.4); transition: var(--transition); 
  border: 2px solid rgba(255,255,255,0.1); position: relative;
}
.tiktok-item::before {
  content: ''; position: absolute; inset: -2px; border-radius: 22px; padding: 2px;
  background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: var(--transition); z-index: 2; pointer-events: none;
}
.tiktok-item:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 30px 60px rgba(201, 166, 107, 0.2); border-color: var(--gold); }
.tiktok-item:hover::before { opacity: 1; }
.tiktok-item blockquote { margin: 0 !important; width: 100% !important; min-width: unset !important; }

/* TESTIMONIALS */
.testimonials-section { background-color: var(--white); max-width: 100%; padding: 7rem 2rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
.testimonial { background: var(--cream); padding: 3rem; border-radius: 20px; position: relative; transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); }
.testimonial::before { content: '"'; position: absolute; top: 20px; right: 30px; font-family: 'Playfair Display', serif; font-size: 6rem; color: var(--gold); opacity: 0.15; line-height: 1; }
.testimonial:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.testimonial .quote-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.testimonial p { font-style: italic; color: var(--text-dark); margin-bottom: 2rem; line-height: 1.8; font-size: 1.05rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 55px; height: 55px; border-radius: 50%; background: linear-gradient(135deg, var(--coffee-medium), var(--gold)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.2rem; box-shadow: 0 5px 15px rgba(201, 166, 107, 0.3); }
.author-info h5 { color: var(--coffee-dark); font-family: 'Poppins', sans-serif; font-size: 1.05rem; margin-bottom: 0.2rem; }
.author-info span { font-size: 0.85rem; color: var(--coffee-medium); }
.stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 2px; }

/* MISSION & VISION */
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.mv-card { background: linear-gradient(135deg, var(--coffee-dark), var(--black)); color: var(--white); padding: 3.5rem; border-radius: 24px; box-shadow: var(--shadow-md); transition: var(--transition); position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.mv-card::before { content: ''; position: absolute; top: -50%; right: -50%; width: 300px; height: 300px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); opacity: 0.1; transition: var(--transition); }
.mv-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.mv-card:hover::before { opacity: 0.2; transform: scale(1.2); }
.mv-card i { font-size: 3rem; color: var(--gold); margin-bottom: 1.5rem; }
.mv-card h3 { color: var(--gold); margin-bottom: 1.5rem; font-size: 2rem; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2.5rem; }
.team-member { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); text-align: center; border: 1px solid rgba(0,0,0,0.03); }
.team-member:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.team-img { width: 100%; height: 300px; background: linear-gradient(135deg, var(--coffee-medium), var(--coffee-dark)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 5rem; position: relative; overflow: hidden; }
.team-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.team-img i { position: relative; z-index: 1; transition: var(--transition); }
.team-member:hover .team-img i { transform: scale(1.2); color: var(--gold); }
.team-info { padding: 2rem 1.5rem; }
.team-info h4 { color: var(--coffee-dark); font-size: 1.4rem; margin-bottom: 0.3rem; }
.team-info span { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

/* CONTACT */
.contact-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
.contact-info-item { margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.8rem; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-sm); transition: var(--transition); border-left: 4px solid transparent; }
.contact-info-item:hover { transform: translateX(10px); box-shadow: var(--shadow-md); border-left-color: var(--gold); }
.contact-info-item .icon-box { width: 55px; height: 55px; background: linear-gradient(135deg, var(--coffee-medium), var(--coffee-dark)); color: var(--white); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; transition: var(--transition); }
.contact-info-item:hover .icon-box { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); transform: rotate(10deg); }
.contact-info-item strong { display: block; color: var(--coffee-dark); margin-bottom: 0.3rem; font-size: 1.05rem; font-family: 'Poppins', sans-serif; }
.contact-info-item p { color: var(--text-dark); font-size: 0.95rem; }

/* SOCIAL LINKS */
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 55px; height: 55px; color: var(--white); border-radius: 50%; transition: var(--transition); font-size: 1.3rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.social-links a::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.2); transform: translateY(100%); transition: var(--transition); }
.social-links a:hover::before { transform: translateY(0); }
.social-links a:hover { transform: translateY(-6px) scale(1.1); box-shadow: var(--shadow-md); }
.social-links a.facebook { background: #1877F2; }
.social-links a.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-links a.tiktok { background: #000000; }
.social-links a.youtube { background: #FF0000; }
.social-links a.whatsapp { background: #25D366; }

/* HOURS TABLE */
.hours-table { width: 100%; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 1.5rem; border: 1px solid rgba(0,0,0,0.03); }
.hours-table div { display: flex; justify-content: space-between; padding: 1.2rem 1.8rem; border-bottom: 1px solid rgba(0,0,0,0.04); transition: var(--transition); }
.hours-table div:last-child { border-bottom: none; }
.hours-table div:hover { background-color: rgba(201, 166, 107, 0.05); padding-left: 2rem; }
.hours-table div span:first-child { font-weight: 600; color: var(--coffee-dark); }
.hours-table div span:last-child { color: var(--coffee-medium); font-weight: 500; }
.hours-table div.today { background-color: rgba(201, 166, 107, 0.1); border-left: 4px solid var(--gold); font-weight: 600; }

/* FORM */
form { display: flex; flex-direction: column; gap: 1.5rem; }
form input, form textarea { width: 100%; padding: 1.2rem 1.5rem; border: 2px solid #e8e4dc; border-radius: 12px; font-family: inherit; font-size: 1rem; transition: var(--transition); background-color: var(--white); }
form input:focus, form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.15); transform: translateY(-2px); }
form textarea { resize: vertical; min-height: 140px; }
form button { cursor: pointer; border: none; font-size: 1.05rem; margin-top: 0.5rem; }

.map-container { width: 100%; height: 350px; background-color: #eee; border-radius: 16px; overflow: hidden; margin-top: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.05); }
.map-container iframe { width: 100%; height: 100%; border: 0; transition: var(--transition); filter: grayscale(20%); }
.map-container:hover iframe { filter: grayscale(0%); transform: scale(1.02); }

/* FOOTER */
footer { background: linear-gradient(135deg, var(--black), var(--coffee-dark)); color: var(--text-light); padding: 6rem 2rem 2rem; margin-top: 4rem; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), var(--coffee-medium), var(--gold)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; max-width: 1320px; margin: 0 auto 4rem; }
.footer-col h4 { color: var(--gold); margin-bottom: 2rem; font-size: 1.3rem; position: relative; padding-bottom: 1rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background-color: var(--gold); border-radius: 2px; }
.footer-about p { opacity: 0.8; margin: 1.5rem 0; font-size: 0.95rem; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul li a { color: var(--text-light); opacity: 0.7; font-size: 0.95rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col ul li a::before { content: '→'; opacity: 0; transform: translateX(-10px); transition: var(--transition); color: var(--gold); }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); transform: translateX(5px); }
.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; font-size: 0.95rem; opacity: 0.85; transition: var(--transition); }
.footer-contact-item:hover { opacity: 1; transform: translateX(5px); }
.footer-contact-item i { color: var(--gold); margin-top: 0.3rem; width: 20px; }
.footer-social { display: flex; gap: 1rem; margin-top: 2rem; }
.footer-social a { width: 45px; height: 45px; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 1rem; border: 1px solid rgba(255,255,255,0.1); }
.footer-social a:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.footer-social a.facebook { background: #1877F2; }
.footer-social a.instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.footer-social a.tiktok { background: #000000; }
.footer-social a.youtube { background: #FF0000; }
.footer-social a.whatsapp { background: #25D366; }
.footer-bottom { max-width: 1320px; margin: 0 auto; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.9rem; opacity: 0.6; }

/* FLOATING WHATSAPP */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; background: #25D366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); z-index: 999; transition: var(--transition); animation: pulse 2s infinite; border: 3px solid var(--white); }
.whatsapp-float:hover { transform: scale(1.15) rotate(15deg); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6); }
@keyframes pulse { 0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); } 70% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); } }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 30px; left: 30px; width: 55px; height: 55px; background: var(--coffee-dark); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 998; box-shadow: var(--shadow-md); border: 2px solid rgba(255,255,255,0.1); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--black); transform: translateY(-5px); border-color: var(--gold); }

/* SCROLL REVEAL & STAGGER */
.reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 0; transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-scale { transform: scale(0.85); }
.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active { opacity: 1; transform: translate(0, 0) scale(1); }

.grid .card:nth-child(1) { transition-delay: 0.1s; }
.grid .card:nth-child(2) { transition-delay: 0.2s; }
.grid .card:nth-child(3) { transition-delay: 0.3s; }
.grid .card:nth-child(4) { transition-delay: 0.4s; }
.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.4s; }
.tiktok-grid .tiktok-item:nth-child(1) { transition-delay: 0.1s; }
.tiktok-grid .tiktok-item:nth-child(2) { transition-delay: 0.2s; }
.tiktok-grid .tiktok-item:nth-child(3) { transition-delay: 0.3s; }
.tiktok-grid .tiktok-item:nth-child(4) { transition-delay: 0.4s; }
.tiktok-grid .tiktok-item:nth-child(5) { transition-delay: 0.5s; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-container { gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background-color: rgba(18, 18, 18, 0.98); padding: 2rem 0; text-align: center; gap: 1.5rem; animation: fadeInDown 0.4s ease-out; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .hero { padding: 8rem 1.5rem 6rem; background-attachment: scroll; }
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1.1rem; }
  .mission-vision, .contact-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .section-title { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-col ul li a { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-contact-item { justify-content: center; }
  .stat-number { font-size: 2.8rem; }
  .whatsapp-float { width: 60px; height: 60px; bottom: 20px; right: 20px; font-size: 1.8rem; }
  .back-to-top { width: 50px; height: 50px; bottom: 20px; left: 20px; }
  .logo img { width: 40px; height: 40px; }
  .logo { font-size: 1.3rem; }
  .tiktok-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}


/* ========== CHATBOT ========== */
.chatbot-toggle {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1000; /* Increased z-index */
  box-shadow: 0 10px 30px rgba(201, 166, 107, 0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-chat 2s infinite;
}

.chatbot-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(201, 166, 107, 0.6);
}

@keyframes pulse-chat {
  0%, 100% { box-shadow: 0 10px 30px rgba(201, 166, 107, 0.4), 0 0 0 0 rgba(201, 166, 107, 0.6); }
  50% { box-shadow: 0 10px 30px rgba(201, 166, 107, 0.4), 0 0 0 15px rgba(201, 166, 107, 0); }
}

.chatbot-window {
  position: fixed;
  bottom: 190px;
  right: 30px;
  width: 380px;
  height: 550px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  z-index: 1001; /* Increased z-index */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: linear-gradient(135deg, var(--coffee-dark), var(--black));
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.chatbot-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.chatbot-header-info h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  font-family: 'Poppins', sans-serif;
}

.chatbot-header-info p {
  font-size: 0.8rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot-header-info p::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.chatbot-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.chatbot-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--cream);
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--coffee-light);
  border-radius: 3px;
}

.chat-message {
  display: flex;
  gap: 0.8rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot {
  align-items: flex-start;
}

.chat-message.user {
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.chat-message.bot .chat-avatar {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}

.chat-message.user .chat-avatar {
  background: linear-gradient(135deg, var(--coffee-medium), var(--coffee-dark));
  color: var(--white);
}

.chat-bubble {
  max-width: 75%;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-message.bot .chat-bubble {
  background: var(--white);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.chat-message.user .chat-bubble {
  background: linear-gradient(135deg, var(--coffee-medium), var(--coffee-dark));
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.quick-reply-btn {
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--coffee-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.quick-reply-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.chatbot-input {
  padding: 1rem 1.5rem;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 0.8rem;
}

.chatbot-input input {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
}

.chatbot-input input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

.chatbot-input button {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: var(--black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-input button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(201, 166, 107, 0.4);
}

.typing-indicator {
  display: flex;
  gap: 0.3rem;
  padding: 0.5rem 0;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--coffee-light);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
  30% { transform: translateY(-10px); opacity: 1; }
}

/* Responsive Chatbot */
@media (max-width: 768px) {
  .chatbot-window {
    width: calc(100% - 40px);
    height: calc(100vh - 250px);
    bottom: 170px;
    right: 20px;
  }
  
  .chatbot-toggle {
    width: 55px;
    height: 55px;
    bottom: 95px;
    right: 20px;
    font-size: 1.5rem;
  }
}

/* ========== HUTCH PARTNER SECTION ========== */
.hutch-section {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.hutch-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hutch-label {
  font-size: 0.85rem;
  color: var(--coffee-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
}

.hutch-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: grayscale(0%);
}

.hutch-logo:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .hutch-section {
    padding: 2rem 1.5rem;
  }
  .hutch-logo {
    max-width: 150px;
  }
}




/* ============================================
   FULLY RESPONSIVE - ALL DEVICES
   ============================================ */

/* ---------- ULTRA WIDE SCREENS (1440px+) ---------- */
@media (min-width: 1440px) {
  section { max-width: 1400px; }
  .hero h1 { font-size: 5.5rem; }
  .section-title { font-size: 3.5rem; }
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(16) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(11) { grid-column: span 1; }
  .gallery-item:nth-child(21) { grid-column: span 1; }
}

/* ---------- LARGE DESKTOPS (1280px - 1439px) ---------- */
@media (min-width: 1280px) and (max-width: 1439px) {
  .hero h1 { font-size: 5rem; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- MEDIUM DESKTOPS / SMALL LAPTOPS (1024px - 1279px) ---------- */
@media (max-width: 1279px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-container { gap: 3rem; }
  .tiktok-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

/* ---------- TABLETS LANDSCAPE (768px - 1023px) ---------- */
@media (max-width: 1023px) {
  .hero h1 { font-size: 3.5rem; }
  .hero p { font-size: 1.15rem; }
  .section-title { font-size: 2.6rem; }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(11) { grid-column: span 1; }
  .gallery-item:nth-child(16) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(21) { grid-column: span 1; }

  .mission-vision { gap: 2rem; }
  .mv-card { padding: 2.5rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  .video-grid, .tiktok-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

/* ---------- TABLETS PORTRAIT & LARGE PHONES (768px) ---------- */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.98);
    padding: 2rem 0;
    text-align: center;
    gap: 1.5rem;
    animation: fadeInDown 0.4s ease-out;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }

  /* Hero */
  .hero {
    padding: 8rem 1.5rem 6rem;
    background-attachment: scroll;
    min-height: 100vh;
    height: auto;
  }
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1.05rem; }
  .hero-tagline { font-size: 0.75rem; letter-spacing: 2px; padding: 0.4rem 1.2rem; }
  .hero .btn-group { flex-direction: column; align-items: center; }
  .hero .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Sections */
  section { padding: 4rem 1.5rem; }
  .section-title { font-size: 2.2rem; }
  .section-subtitle { font-size: 1rem; }
  .section-header { margin-bottom: 3rem; }
  .section-tag::before, .section-tag::after { margin: 0 5px; }

  /* Grids */
  .grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .mission-vision { grid-template-columns: 1fr; gap: 2rem; }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 0.8rem;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(11) { grid-column: span 2; }
  .gallery-item:nth-child(16) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(21) { grid-column: span 2; }
  .gallery-caption { bottom: 12px; left: 12px; right: 12px; }
  .gallery-caption h4 { font-size: 1.1rem; }
  .gallery-caption p { font-size: 0.8rem; }
  .gallery-view-icon { width: 38px; height: 38px; top: 12px; right: 12px; font-size: 0.9rem; }
  .gallery-badge { top: 12px; left: 12px; font-size: 0.6rem; padding: 0.3rem 0.7rem; }

  /* Stats */
  .stats-section { padding: 4rem 1.5rem; background-attachment: scroll; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2.5rem; }
  .stat-item { padding: 1.5rem 1rem; }

  /* Cards */
  .card { padding: 2rem 1.5rem; }
  .card-icon { width: 60px; height: 60px; font-size: 1.5rem; }

  /* Testimonials */
  .testimonials-section { padding: 4rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonial { padding: 2rem; }
  .testimonial::before { font-size: 4rem; top: 10px; right: 15px; }

  /* Video / TikTok */
  .video-section, .tiktok-section { padding: 4rem 1.5rem; }
  .video-grid, .tiktok-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .video-item, .tiktok-item { max-width: 100%; }

  /* Contact */
  .contact-info-item { padding: 1.2rem; }
  .contact-info-item .icon-box { width: 45px; height: 45px; font-size: 1.1rem; }
  .hours-table div { padding: 1rem 1.2rem; font-size: 0.9rem; }

  /* Footer */
  footer { padding: 4rem 1.5rem 2rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-col ul li a { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-contact-item { justify-content: center; }

  /* Floating Buttons */
  .whatsapp-float { width: 55px; height: 55px; bottom: 20px; right: 20px; font-size: 1.6rem; }
  .back-to-top { width: 45px; height: 45px; bottom: 20px; left: 20px; font-size: 1rem; }

  /* Chatbot */
  .chatbot-toggle { width: 55px; height: 55px; bottom: 90px; right: 20px; font-size: 1.4rem; }
  .chatbot-window {
    width: calc(100% - 30px);
    height: calc(100vh - 200px);
    bottom: 160px;
    right: 15px;
    border-radius: 16px;
  }

  /* Logo */
  .logo img { width: 40px; height: 40px; }
  .logo { font-size: 1.2rem; gap: 0.6rem; }

  /* Lightbox */
  .lightbox-nav { width: 42px; height: 42px; font-size: 1rem; }
  .lightbox-close { width: 42px; height: 42px; top: 12px; right: 12px; font-size: 1.2rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-content img { max-height: 70vh; }

  /* Hutch */
  .hutch-section { padding: 2rem 1.5rem; }
  .hutch-logo { max-width: 150px; }

  /* Form */
  form input, form textarea { padding: 1rem; font-size: 0.95rem; }
  .map-container { height: 250px; }
}

/* ---------- SMALL PHONES (480px - 767px) ---------- */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-tagline { font-size: 0.7rem; padding: 0.35rem 1rem; }
  .scroll-indicator { bottom: 25px; font-size: 1.2rem; }

  section { padding: 3rem 1rem; }
  .section-title { font-size: 1.9rem; }
  .section-subtitle { font-size: 0.95rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 0.6rem;
  }
  .gallery-item { border-radius: 12px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(11) { grid-column: span 2; }
  .gallery-item:nth-child(16) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(21) { grid-column: span 2; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.75rem; }
  .stat-item i { font-size: 2rem; }

  .team-grid { grid-template-columns: 1fr; }
  .team-img { height: 250px; }

  .video-grid, .tiktok-grid { grid-template-columns: 1fr; }
  .video-item, .tiktok-item { max-width: 320px; }

  .btn { padding: 0.85rem 1.8rem; font-size: 0.9rem; }

  .chatbot-window {
    width: calc(100% - 20px);
    height: calc(100vh - 180px);
    bottom: 150px;
    right: 10px;
  }
  .chatbot-toggle { bottom: 85px; right: 15px; width: 50px; height: 50px; font-size: 1.3rem; }
  .whatsapp-float { bottom: 15px; right: 15px; width: 50px; height: 50px; font-size: 1.5rem; }
  .back-to-top { bottom: 15px; left: 15px; width: 42px; height: 42px; }

  .mv-card { padding: 2rem 1.5rem; }
  .mv-card h3 { font-size: 1.5rem; }
  .mv-card i { font-size: 2.5rem; }

  .testimonial { padding: 1.5rem; }
  .testimonial p { font-size: 0.95rem; }
  .author-avatar { width: 45px; height: 45px; font-size: 1rem; }

  .lightbox-content img { max-height: 60vh; }
  .lightbox-caption h4 { font-size: 1.3rem; }
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-close { width: 38px; height: 38px; }

  .map-container { height: 200px; }
}

/* ---------- VERY SMALL PHONES (320px - 479px) ---------- */
@media (max-width: 374px) {
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 0.9rem; }
  .hero-tagline { font-size: 0.65rem; letter-spacing: 1px; }
  
  .logo { font-size: 1rem; }
  .logo img { width: 35px; height: 35px; }

  section { padding: 2.5rem 0.8rem; }
  .section-title { font-size: 1.6rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(11),
  .gallery-item:nth-child(16),
  .gallery-item:nth-child(21) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.8rem; }

  .card { padding: 1.5rem 1.2rem; }
  .card h3 { font-size: 1.2rem; }

  .btn { padding: 0.75rem 1.5rem; font-size: 0.85rem; }

  .chatbot-window {
    width: calc(100% - 16px);
    height: calc(100vh - 170px);
    right: 8px;
    bottom: 145px;
  }

  .footer-grid { gap: 2rem; }
  .footer-col h4 { font-size: 1.1rem; }
}

/* ---------- LANDSCAPE ORIENTATION FIX ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 6rem 2rem 4rem;
  }
  .hero h1 { font-size: 2.5rem; }
  .chatbot-window {
    height: calc(100vh - 120px);
    bottom: 100px;
  }
  .lightbox-content img { max-height: 80vh; }
}

/* ---------- PRINT STYLES ---------- */
@media print {
  header, footer, .whatsapp-float, .back-to-top, .chatbot-toggle, 
  .chatbot-window, .scroll-progress, .scroll-indicator, .preloader,
  .lightbox, .video-section, .tiktok-section { display: none !important; }
  
  .hero { 
    background: none !important; 
    color: #000 !important; 
    padding: 2rem 0;
    min-height: auto;
  }
  .hero h1, .hero p { color: #000 !important; }
  
  body { background: #fff; color: #000; }
  .card { box-shadow: none; border: 1px solid #ddd; }
  section { padding: 2rem 0; }
}

/* ---------- ACCESSIBILITY: REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero { background-attachment: scroll; }
  .stats-section { background-attachment: scroll; }
}

/* ---------- HIGH CONTRAST MODE ---------- */
@media (prefers-contrast: high) {
  .card { border: 2px solid var(--coffee-dark); }
  .btn { border-width: 3px; }
  .gallery-item { border: 2px solid var(--coffee-dark); }
}

/* ---------- DARK MODE SUPPORT ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --cream: #1a1a1a;
    --white: #242424;
    --text-dark: #e0e0e0;
  }
  .card, .testimonial, .contact-info-item, .hours-table,
  form input, form textarea {
    background: #2a2a2a;
    border-color: rgba(255,255,255,0.1);
  }
  .testimonials-section, .hutch-section { background: #1e1e1e; }
  form input, form textarea { color: var(--text-dark); }
}
