
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

    :root {
      --chai-primary: #5A3F2A;
      --chai-accent: #D96A20;
      --chai-bg: #F4E0D0;
      --chai-light: #fffaf5;
      --chai-dark: #3b2c22;
      --chai-cream: #f9eee3;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--chai-primary);
      background-color: var(--chai-bg);
      line-height: 1.6;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

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

    @keyframes steamRise {
      0% {
        opacity: 0.8;
        transform: translateY(0) scale(1);
      }
      100% {
        opacity: 0;
        transform: translateY(-30px) scale(1.5);
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

    /* Header */
    .header {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 100;
      transition: all 0.3s ease;
    }
    
    .header.scrolled {
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    }

    .header-content {
      max-width: 1200px;
      margin: auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--chai-primary);
      font-family: 'Playfair Display', serif;
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo::before {
      content: '☕';
      font-size: 1.5rem;
      animation: float 3s ease-in-out infinite;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    .nav-menu a {
      text-decoration: none;
      font-weight: 600;
      color: var(--chai-primary);
      transition: all 0.3s;
      position: relative;
      padding: 0.5rem 0;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--chai-accent);
      transition: all 0.3s;
      transform: translateX(-50%);
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .nav-menu a:hover {
      color: var(--chai-accent);
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 101;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--chai-primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #fff 0%, #fffaf5 100%);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 99;
        overflow-y: auto;
        display: flex !important;
      }

      .nav-menu.active {
        right: 0 !important;
      }

      .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(217, 106, 32, 0.1);
        margin: 0;
      }

      .nav-menu a {
        display: block;
        padding: 1.2rem 0.5rem;
        font-size: 1.05rem;
        color: var(--chai-primary);
        transition: all 0.3s ease;
      }

      .nav-menu a:hover {
        padding-left: 1rem;
        color: var(--chai-accent);
      }
    }

    /* Hero Section */
    .hero-section {
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .hero-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(90, 63, 42, 0.7), rgba(59, 44, 34, 0.8));
    }

    .hero-overlay {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 1rem;
      animation: fadeInUp 1s ease;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(10px);
      padding: 0.6rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.3);
      animation: fadeInUp 1.2s ease;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
    }

    .hero-overlay h2 {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
      text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
      line-height: 1.1;
      animation: fadeInUp 1.4s ease;
    }

    .hero-overlay p {
      font-size: 1.4rem;
      margin-bottom: 2.5rem;
      opacity: 0.95;
      animation: fadeInUp 1.6s ease;
      font-weight: 400;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      animation: fadeInUp 1.8s ease;
    }

    .btn-primary,
    .btn-secondary {
      padding: 1.1rem 2.8rem;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.4s ease;
      font-size: 1.1rem;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before,
    .btn-secondary::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn-primary:hover::before,
    .btn-secondary:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-primary {
      background: var(--chai-accent);
      color: white;
      border: none;
      box-shadow: 0 4px 15px rgba(217, 106, 32, 0.4);
    }

    .btn-primary:hover {
      background: #c05c1a;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(217, 106, 32, 0.6);
    }

    .btn-secondary {
      border: 2px solid white;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      color: white;
    }

    .btn-secondary:hover {
      background: white;
      color: var(--chai-primary);
      transform: translateY(-3px);
    }

    /* About Section */
  .about-full {
  width: 100%;
  min-height: 90vh;
  background: linear-gradient(135deg, #fffaf5 0%, #f9eee3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.about-full::before {
  content: '☕';
  position: absolute;
  font-size: 15rem;
  opacity: 0.03;
  right: -5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  box-sizing: border-box;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D96A20, #f07b2f);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(217, 106, 32, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--chai-primary, #b54e1a);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--chai-dark, #5a4633);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* === FEATURE ICONS === */
.feature-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  min-width: 120px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.feature-item:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 25px rgba(217, 106, 32, 0.2);
}

.feature-emoji {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.feature-item span:last-child {
  font-weight: 600;
  color: var(--chai-dark, #5a4633);
  font-size: 0.9rem;
  text-align: center;
}

/* === 500+ CUSTOMERS CARD === */
.image-overlay-card {
  background: white;
  padding: 1.4rem 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  transition: all 0.4s ease;
  animation: fadeInUp 1.2s ease;
}

.image-overlay-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 10px 25px rgba(217, 106, 32, 0.2);
}

.overlay-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--chai-accent, #D96A20);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.3rem;
}

.overlay-text {
  font-size: 0.85rem;
  color: var(--chai-dark, #5a4633);
  font-weight: 600;
  text-align: center;
}

/* === ABOUT IMAGE === */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.03) rotate(1deg);
}

/* === RESPONSIVE LAYOUT === */
@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 4rem;
  }

  .about-text {
    padding-right: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .about-full {
    padding: 6rem 4rem;
  }

  .about-text h2 {
    font-size: 3rem;
  }

  .about-content {
    max-width: 1400px;
  }
}

/* === ANIMATIONS === */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

    /* Section Headers */
    .section {
      padding: 6rem 1rem;
      text-align: center;
      position: relative;
    }

    .section-header {
      margin-bottom: 4rem;
      animation: fadeInUp 0.8s ease;
    }

    .section-badge {
      display: inline-block;
      background: linear-gradient(135deg, #D96A20, #f07b2f);
      color: white;
      padding: 0.6rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      margin-bottom: 1.2rem;
      font-size: 0.95rem;
      box-shadow: 0 4px 15px rgba(217, 106, 32, 0.3);
    }

    .section h2 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      color: var(--chai-primary);
      font-family: 'Playfair Display', serif;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--chai-dark);
      opacity: 0.8;
    }

    .alt-bg {
      background: linear-gradient(135deg, #fffaf5 0%, #f9eee3 100%);
    }

    .container {
      max-width: 1200px;
      margin: auto;
    }

    /* Menu */
    /* === MENU SECTION === */
#menu.section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D96A20, #f07b2f);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(217, 106, 32, 0.3);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--chai-primary, #b54e1a);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--chai-dark, #5a4633);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === MENU GRID === */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: start;
}

/* === MENU CARD === */
.menu-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.menu-card:nth-child(2) {
  animation-delay: 0.2s;
}
.menu-card:nth-child(3) {
  animation-delay: 0.4s;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(217, 106, 32, 0.15);
  border-color: var(--chai-accent, #D96A20);
}

/* === ICON + TITLE === */
.menu-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.menu-card h3 {
  color: var(--chai-accent, #D96A20);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}

/* === MENU ITEMS === */
.menu-card ul {
  padding: 0;
  margin: 0;
}

.menu-card li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed #d9bfa9;
  color: var(--chai-dark, #5a4633);
  font-size: 1rem;
  transition: all 0.3s;
}

.menu-card li:hover {
  padding-left: 8px;
  color: var(--chai-accent, #D96A20);
}

.menu-card li:last-child {
  border-bottom: none;
}

.menu-card li span:last-child {
  font-weight: 700;
  color: var(--chai-accent, #D96A20);
}

/* === RESPONSIVE TWEAKS === */
@media (min-width: 992px) {
  #menu.section {
    padding: 6rem 4rem;
  }
  .section-header h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  #menu.section {
    padding: 4rem 1.5rem;
  }
  .menu-card {
    padding: 1.8rem 1.2rem;
  }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

    /* Gallery Section */
  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(90, 63, 42, 0.85), transparent);
  opacity: 0;
  padding: 1rem;
  color: white;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1.1rem; font-weight: 600; }

/* === REVIEWS GRID === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--chai-accent, #D96A20);
}
.quote-icon {
  position: absolute;
  top: 25px;
  left: 30px;
  font-size: 4rem;
  color: #f4e7dc;
}
.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--chai-accent, #D96A20);
  object-fit: cover;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.review-stars {
  color: #facc15;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.review-card p {
  color: var(--chai-dark, #5a4633);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.review-card h4 {
  font-weight: 700;
  color: var(--chai-primary, #b54e1a);
  font-size: 1rem;
}

/* === ANIMATIONS === */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section { padding: 4rem 1.5rem; }
  .section-header h2 { font-size: 2rem; }
  .gallery-item img { height: 200px; }
}

/* === FAQ SECTION === */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(217, 106, 32, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--chai-primary);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--chai-accent);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--chai-accent);
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.3rem 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: var(--chai-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.1rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* === CONTACT SECTION === */
.contact-section {
  background: linear-gradient(135deg, var(--chai-primary, #D96A20) 0%, var(--chai-dark, #5a4633) 100%);
  color: white;
  padding: 5rem 1.5rem;
  text-align: left;
}

.contact-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  animation: fadeInLeft 0.8s ease;
}

.contact-info h2 {
  font-size: 2.3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* CONTACT ITEMS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(8px);
}

.contact-icon {
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--chai-accent, #f07b2f);
}

.contact-item-text h4 {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}

.contact-item-text p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* SOCIAL MEDIA */
.social-media {
  margin-top: 2.5rem;
}
.social-media h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}
.social-icon:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MAP */
.map-container {
  margin-top: 2.5rem;
  height: 260px;
  border-radius: 15px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* === FOOTER === */
.footer {
  background: var(--chai-dark, #5a4633);
  color: white;
  text-align: center;
  padding: 2rem 1.5rem;
}
.footer-content {
  max-width: 1000px;
  margin: auto;
}
.footer p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* === MODAL === */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 999;
}
.modal.open {
  display: flex;
}
.modal-box {
  background: white;
  color: var(--chai-dark, #5a4633);
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: modalSlideIn 0.4s ease;
}
.modal-box h3 {
  color: var(--chai-primary, #D96A20);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
}
.modal-box p {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}
.btn-primary {
  background: var(--chai-accent, #f07b2f);
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #d96116;
  transform: translateY(-2px);
}

/* === ANIMATIONS === */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contact-section { padding: 4rem 1rem; }
  .contact-info h2 { font-size: 2rem; }
  .contact-icon { width: 40px; height: 40px; font-size: 1.3rem; }
  .map-container { height: 220px; font-size: 1rem; }
}

/* ====== CHATBOT CONTAINER ====== */
.chatbot-container {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 10px !important;
  z-index: 999999 !important;
  width: 360px;
  font-family: 'Poppins', sans-serif;
  pointer-events: none;
}

.chatbot-container * {
  pointer-events: auto;
}

/*************** FLOAT BUTTON ***************/
.chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--chai-accent) 0%, var(--chai-primary) 100%);
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(217, 106, 32, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.chatbot-toggle:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(217, 106, 32, 0.6);
}

.chatbot-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.chatbot-toggle:hover::before {
  opacity: 1;
}

.chatbot-container.open .chatbot-toggle {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.icon-open { display: none; }
.chatbot-container.open .icon-open { display: block; }
.chatbot-container.open .icon-closed { display: none; }

/*************** CHAT WINDOW ***************/
.chatbot-window {
  display: none;
  flex-direction: column;
  width: 100%;
  height: 420px;
  background: #ede0d4;
  border-radius: 18px;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
  overflow: visible;
  border: 1px solid rgba(90, 63, 42, 0.1);
  animation: slideInUp 0.4s ease;
}

.chatbot-container.open .chatbot-window {
  display: flex;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/*************** HEADER ***************/
.chatbot-header {
  background: linear-gradient(135deg, #7d5a47 0%, #5a3f2a 100%);
  color: white;
  padding: 12px 50px 12px 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 18px 18px 0 0;
  position: relative;
  overflow: visible;
  order: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  min-height: 48px;
}

.chatbot-header::before {
  content: '☕';
  position: absolute;
  font-size: 120px;
  opacity: 0.05;
  right: -20px;
  top: -40px;
  transform: rotate(-15deg);
}

/* Keep left content shrinkable */
.header-left {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 45px);
  overflow: hidden;
}

.header-left h4 {
  font-size: 13px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0px;
  max-width: 100%;
}

.chatbot-status {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  color: #90EE90;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.close-chatbot-btn {
  background: #FF6B35 !important;
  border: 2px solid white !important;
  color: white !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.8) !important;
  z-index: 99999 !important;
  transition: all 0.3s ease !important;
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
  min-width: 30px !important;
  min-height: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.close-chatbot-btn:hover {
  background: #ff5722 !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 5px 25px rgba(255, 87, 34, 0.9) !important;
}

.close-chatbot-btn:active {
  transform: translateY(-50%) scale(0.95) !important;
}

/*************** MESSAGES ***************/
.chatbot-messages {
  padding: 14px;
  flex: 1;
  overflow-y: auto;
  background: #ede0d4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  order: 1;
  max-height: calc(420px - 160px);
}

.chatbot-messages::-webkit-scrollbar {
  width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--chai-accent);
  border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: var(--chai-primary);
}

.message {
  padding: 9px 13px;
  border-radius: 14px;
  max-width: 85%;
  animation: messageSlideIn 0.3s ease;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-message {
  align-self: flex-start;
  background: white;
  color: #5a3f2a;
  border-radius: 16px 16px 16px 4px;
}

.user-message {
  align-self: flex-end;
  background: linear-gradient(135deg, #D96A20, #b54e1a);
  color: white;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 3px 10px rgba(217, 106, 32, 0.3);
}

/*************** INPUT AREA ***************/
.chatbot-input-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 14px;
  background: #ede0d4;
  width: 100%;
  box-sizing: border-box;
  order: 3;
  border-top: 1px solid rgba(90, 63, 42, 0.1);
  flex-shrink: 0;
}

.chatbot-input-area input {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid rgba(90, 63, 42, 0.2);
  border-radius: 25px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: all 0.3s ease;
  background: white;
  color: #5a3f2a;
}

.chatbot-input-area input::placeholder {
  color: rgba(90, 63, 42, 0.45);
  font-size: 13px;
}

.chatbot-input-area input:focus {
  border-color: #D96A20;
  box-shadow: 0 0 0 3px rgba(217, 106, 32, 0.08);
}

/* Make Send button visible on all screen sizes */
.send-btn {
  padding: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #D96A20, #b54e1a);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(217, 106, 32, 0.25);
}

.send-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s ease;
}

.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(217, 106, 32, 0.4);
}

.send-btn:hover svg {
  transform: translateX(2px);
}

.send-btn:active {
  transform: translateY(0);
}

/* Fix for mobiles */
@media (max-width: 480px) {
  .chatbot-window {
    height: 85vh !important;
  }
}

/*************** CLEAR BUTTON ***************/
.chatbot-footer {
  padding: 0 16px 10px;
  display: flex;
  justify-content: center;
  background: #ede0d4;
  order: 2;
}

.clear-btn {
  background: transparent;
  border: none;
  color: #D96A20;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.clear-btn:hover {
  background: rgba(217, 106, 32, 0.08);
  color: #b54e1a;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

/* ========================================= */
/* CHATBOT RESPONSIVE DESIGN - ALL DEVICES */
/* ========================================= */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .chatbot-container {
    width: 380px !important;
    bottom: 20px !important;
    right: 20px !important;
  }

  .chatbot-window {
    height: 500px !important;
  }
}

/* Mobile Landscape & Small Tablets (600px - 768px) */
@media (max-width: 768px) and (min-width: 601px) {
  .chatbot-container {
    width: 360px !important;
    max-width: calc(100vw - 20px) !important;
    bottom: 15px !important;
    right: 15px !important;
  }

  .chatbot-window {
    height: 65vh !important;
    max-height: 550px !important;
  }

  .chatbot-header {
    padding: 12px 14px !important;
  }

  .header-left h4 {
    font-size: 13px !important;
  }

  .chatbot-status {
    font-size: 10px !important;
  }

  .close-chatbot-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 17px !important;
  }
}

/* Mobile Portrait (480px - 600px) */
@media (max-width: 600px) and (min-width: 481px) {
  .chatbot-container {
    width: 95vw !important;
    max-width: 360px !important;
    bottom: 10px !important;
    right: 10px !important;
  }

  .chatbot-window {
    height: 60vh !important;
    max-height: 500px !important;
    width: 100% !important;
    border-radius: 16px !important;
  }

  .chatbot-header {
    padding: 11px 13px !important;
    min-height: 46px !important;
  }

  .header-left h4 {
    font-size: 13px !important;
  }

  .chatbot-status {
    font-size: 9px !important;
  }

  .close-chatbot-btn {
    width: 27px !important;
    height: 27px !important;
    font-size: 16px !important;
  }

  .chatbot-messages {
    padding: 12px !important;
  }

  .message {
    font-size: 13px !important;
    padding: 9px 12px !important;
  }

  .chatbot-input-area {
    padding: 10px 12px !important;
  }

  .chatbot-input-area input {
    font-size: 13.5px !important;
    padding: 10px 13px !important;
  }

  .send-btn {
    width: 41px !important;
    height: 41px !important;
  }

  .clear-btn {
    font-size: 13px !important;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .chatbot-container {
    width: calc(100vw - 20px) !important;
    max-width: 340px !important;
    bottom: 10px !important;
    right: 10px !important;
    left: 10px !important;
    margin: 0 auto !important;
  }

  .chatbot-toggle {
    width: 54px !important;
    height: 54px !important;
    font-size: 22px !important;
  }

  .chatbot-window {
    height: 60vh !important;
    max-height: 480px !important;
    width: 100% !important;
    border-radius: 14px !important;
  }

  .chatbot-header {
    padding: 10px 12px !important;
    min-height: 44px !important;
  }

  .header-left {
    max-width: calc(100% - 35px) !important;
  }

  .header-left h4 {
    font-size: 12.5px !important;
    gap: 3px !important;
  }

  .chatbot-status {
    font-size: 9px !important;
  }

  .close-chatbot-btn {
    width: 26px !important;
    height: 26px !important;
    font-size: 15px !important;
    border: 1.5px solid white !important;
  }

  .chatbot-messages {
    padding: 10px !important;
    gap: 8px !important;
  }

  .message {
    font-size: 12.5px !important;
    padding: 8px 11px !important;
    max-width: 88% !important;
  }

  .chatbot-footer {
    padding: 0 10px 8px !important;
  }

  .clear-btn {
    font-size: 12px !important;
    padding: 5px 14px !important;
  }

  .chatbot-input-area {
    padding: 9px 10px 10px !important;
    gap: 7px !important;
  }

  .chatbot-input-area input {
    font-size: 13px !important;
    padding: 9px 12px !important;
  }

  .send-btn {
    width: 40px !important;
    height: 40px !important;
  }

  .send-btn svg {
    width: 15px !important;
    height: 15px !important;
  }
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 360px) {
  .chatbot-container {
    width: calc(100vw - 16px) !important;
    bottom: 8px !important;
    right: 8px !important;
    left: 8px !important;
  }

  .chatbot-toggle {
    width: 52px !important;
    height: 52px !important;
    font-size: 20px !important;
  }

  .chatbot-window {
    height: 55vh !important;
    max-height: 450px !important;
    border-radius: 12px !important;
  }

  .chatbot-header {
    padding: 9px 11px !important;
    min-height: 42px !important;
  }

  .header-left h4 {
    font-size: 12px !important;
  }

  .chatbot-status {
    font-size: 8.5px !important;
  }

  .close-chatbot-btn {
    width: 24px !important;
    height: 24px !important;
    font-size: 14px !important;
  }

  .chatbot-messages {
    padding: 9px !important;
  }

  .message {
    font-size: 12px !important;
    padding: 7px 10px !important;
  }

  .chatbot-input-area input {
    font-size: 12.5px !important;
    padding: 8px 11px !important;
  }

  .send-btn {
    width: 38px !important;
    height: 38px !important;
  }

  .send-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
}

/* Landscape Mode Fix for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .chatbot-window {
    height: 85vh !important;
    max-height: none !important;
  }

  .chatbot-messages {
    max-height: calc(85vh - 140px) !important;
  }
}

/*************** TYPING INDICATOR ***************/
.typing-indicator {
  font-style: italic;
  opacity: 0.7;
  animation: pulse 1.5s ease-in-out infinite;
}

/*************** SOURCE LINKS ***************/
.source-container {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.source-title {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.source-link {
  font-size: 12px;
  color: #d96a20;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: all 0.2s ease;
}

.source-link:hover {
  color: #b54e1a;
  padding-left: 4px;
  text-decoration: underline;
}


/* ================================================== */
/* ========== COMPREHENSIVE MOBILE STYLES ========== */
/* ================================================== */

@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero-section {
    background-attachment: scroll;
    background-position: center;
    height: auto;
    min-height: 100vh;
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-overlay {
    padding: 0 1rem;
  }

  .hero-overlay h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-overlay p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 2.2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  /* Header Mobile */
  .header {
    position: sticky;
    top: 0;
  }

  .header-content {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo::before {
    font-size: 1.2rem;
  }

  /* Section Headers Mobile */
  .section {
    padding: 3.5rem 1rem;
  }

  .section h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }

  /* About Section Mobile */
  .about-full {
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .feature-icons {
    gap: 1rem;
  }

  .feature-item {
    min-width: 100px;
    padding: 1rem;
  }

  .feature-emoji {
    font-size: 1.5rem;
  }

  .feature-item span:last-child {
    font-size: 0.85rem;
  }

  /* Menu Mobile */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-card {
    padding: 1.5rem 1.2rem;
  }

  .menu-card h3 {
    font-size: 1.2rem;
  }

  .menu-card li {
    font-size: 0.95rem;
    padding: 0.6rem 0;
  }

  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .gallery-item img {
    height: 220px;
  }

  /* Reviews Mobile */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.5rem 1.2rem;
  }

  /* FAQ Mobile */
  .faq-question {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  /* Contact Mobile */
  .contact-section {
    padding: 3rem 1.2rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .contact-item {
    padding: 0.9rem 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .social-icons {
    justify-content: center;
  }

  .map-container {
    height: 250px;
  }

  /* Modal Mobile */
  .modal-box {
    padding: 2rem 1.5rem;
    width: 85%;
  }

  .modal-box h3 {
    font-size: 1.5rem;
  }

  .modal-box p {
    font-size: 0.95rem;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .hero-overlay h2 {
    font-size: 1.8rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section h2 {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .about-text h2 {
    font-size: 1.7rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .contact-info h2 {
    font-size: 1.7rem;
  }

  .feature-icons {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-item {
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .menu-icon {
    font-size: 2.5rem;
  }

  .review-avatar {
    width: 50px;
    height: 50px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .header-content {
    padding: 1rem 2rem;
  }

  .hero-overlay h2 {
    font-size: 3.5rem;
  }

  .hero-overlay p {
    font-size: 1.25rem;
  }

  .section {
    padding: 5rem 2rem;
  }

  .section h2 {
    font-size: 2.5rem;
  }

  .about-text h2 {
    font-size: 2.3rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    padding: 4rem 2rem;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .header-content {
    max-width: 1400px;
  }

  .hero-overlay h2 {
    font-size: 4.5rem;
  }

  .section h2 {
    font-size: 3.2rem;
  }

  .about-text h2 {
    font-size: 3.5rem;
  }

  .menu-grid,
  .gallery-grid,
  .reviews-grid {
    gap: 2.5rem;
  }
}

/* Landscape Mobile Devices */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .hero-overlay h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .hero-overlay p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-badge {
    margin-bottom: 0.8rem;
  }

  .hero-buttons {
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.7rem 1.5rem;
  }
}

/* --- FIX MOBILE NAVBAR OVERFLOW --- */
@media (max-width: 768px) {

    body, html {
        overflow-x: hidden;
    }

    .header-content {
        max-width: 100%;
        width: 100%;
        justify-content: space-between;
    }

    .sidebar {
        width: 250px;        /* Fixed width */
        right: 0;            /* Ensure it stays inside screen */
        left: auto;
        transform: translateX(100%);   /* Hidden by default */
    }

    .sidebar.active {
        transform: translateX(0);      /* Slide in properly */
    }

    /* Fix hero overlay pushing layout */
    .hero-overlay {
        max-width: 100% !important;
        padding: 0 1rem;
    }

    /* Prevent main content from shifting */
    main, section {
        max-width: 100%;
        overflow-x: hidden;
    }
}

