:root {
  --main: #00529b;
  --main-700: #0a66c2;
  --main-600: #1277d1;
  --primary: #ffffff;
  --secondary: #000000;
  --tertiary: #f3f2ee;
  --quaternary: #797977;

  /* Enhanced color palette */
  --accent-gold: #f59e0b;
  --accent-emerald: #10b981;
  --gradient-start: #667eea;
  --gradient-end: #764ba2;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);

  /* Chat theme overrides */
  --chat--color-primary: #0a66c2;
  --chat--color-secondary: #1277d1;
  --chat--color-dark: #101330;
  --chat--color-light: #f2f4f8;
  --chat--toggle--background: #007bff;
  --chat--toggle--size: 56px;
  --chat--window--width: 380px;
  --chat--window--height: 560px;

  /* Design tokens */
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(10, 102, 194, 0.3);
  --text-muted: #4b5563;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  background-attachment: fixed;
  color: #0e2240;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Responsive base font sizing */
html {
  font-size: clamp(15px, 1.2vw + 8px, 18px);
}

body,
p,
li {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
}

/* Animated background gradient */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(10, 102, 194, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animation delays */
.stagger-1 {
  transition-delay: 0.1s !important;
}

.stagger-2 {
  transition-delay: 0.2s !important;
}

.stagger-3 {
  transition-delay: 0.3s !important;
}

.stagger-4 {
  transition-delay: 0.4s !important;
}

/* Floating animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(10, 102, 194, 0.4);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 0 20px 5px rgba(10, 102, 194, 0.2);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Navbar - Glassmorphism */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 7%;
  background: rgba(10, 102, 194, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 102, 194, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  padding: 0.8rem 7%;
}

.navbar .navbar-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: transform 0.3s ease;
}

.navbar .navbar-logo:hover {
  transform: scale(1.02);
}

.navbar .navbar-logo span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

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

.navbar .navbar-nav a {
  color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  font-size: clamp(0.95rem, 0.8rem + 0.3vw, 1.1rem);
  margin: 0 0.8rem;
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.navbar .navbar-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), #fbbf24);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar .navbar-nav a:hover::after {
  width: 80%;
}

.navbar .navbar-extra {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .navbar-extra a {
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .navbar-extra a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

#hamburger-menu {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url("../img/header-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 102, 194, 0.85) 0%,
      rgba(10, 102, 194, 0.6) 40%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

/* Animated particles/shapes in hero */
.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  top: 10%;
  right: 10%;
  border-radius: 50%;
  animation: floatSlow 8s ease-in-out infinite;
  z-index: 1;
}

.hero .content {
  padding: 1.4rem 7%;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
  max-width: 750px;
  animation: slideInUp 1s ease-out;
}

.hero .content h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 4rem);
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero .content p {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero .content q {
  display: inline-block;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-style: italic;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--accent-gold);
}

/* Enhanced highlight badges */
.hero .content .highlight {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.hero .content .highlight-blue {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.95), rgba(18, 119, 209, 0.95));
  color: #ffffff;
}

.hero .content .highlight-white {
  background: rgba(255, 255, 255, 0.95);
  color: #0e2240;
}

/* Section styling */
.about,
.menu,
.products,
.contact,
.service {
  padding: 5rem 7% 3rem;
  text-align: center;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Section divider - Enhanced */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(10, 102, 194, 0.3) 20%,
      rgba(10, 102, 194, 0.8) 50%,
      rgba(10, 102, 194, 0.3) 80%,
      transparent 100%);
  margin: 1rem auto 2rem;
  width: 85%;
  border-radius: 2px;
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--main-700);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(10, 102, 194, 0.5);
}

/* Section headings */
.about h2,
.menu h2,
.products h2,
.contact h2,
.service h2 {
  text-align: center;
  font-size: clamp(2rem, 2vw + 1.2rem, 3rem);
  margin-bottom: 1rem;
  color: var(--main-700);
  position: relative;
  display: inline-block;
}

.about h2::after,
.menu h2::after,
.products h2::after,
.contact h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--main-700), var(--accent-gold));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.about h2 span,
.menu h2 span,
.contact h2 span {
  color: var(--secondary);
}

.about p,
.menu p,
.products p,
.contact p,
.service p {
  text-align: center;
  max-width: 50rem;
  margin: 0.75rem auto 0;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.8;
}

/* Card Grid Layout */
.about .row,
.menu .row,
.products .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-items: center;
}

/* Enhanced Cards - Glassmorphism */
.menu-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
  max-width: 350px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: left 0.5s ease;
}

.menu-card:hover::before {
  left: 100%;
}

.menu-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 102, 194, 0.3);
}

.menu-card img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover img {
  transform: scale(1.05);
}

.menu-card-title {
  margin: 1rem auto 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
}

.menu-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--main-700);
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), rgba(18, 119, 209, 0.1));
  border-radius: 20px;
}

.menu-card-desc {
  max-width: 36rem;
  margin: 0.5rem auto 0;
  color: #64748b;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  line-height: 1.6;
}

/* Products Section */
.products h2 {
  color: var(--secondary);
}

.products h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--main);
}

/* Service Section (Kost) */
.service {
  padding: 4rem 7% 2rem;
  text-align: center;
}

.service h2 {
  font-size: 2.2rem;
  color: var(--secondary);
}

.service h2 span {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}

.service .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem 1.5rem;
  max-width: 52rem;
  margin: 2rem auto;
  text-align: left;
}

.service .features li {
  list-style: none;
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.service .features li:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 102, 194, 0.3);
}

.service .features li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--main-700), var(--accent-emerald));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
}

/* CTA Button - Enhanced */
.cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(1rem, 0.8rem + 0.4vw, 1.2rem) clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  font-weight: 600;
  color: var(--primary);
  background: linear-gradient(135deg, var(--main-700), var(--main-600));
  background-size: 200% 200%;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: gradientShift 3s ease infinite;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.4s ease;
}

.cta:hover::before {
  left: 100%;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(10, 102, 194, 0.45);
}

.cta:active {
  transform: translateY(-1px);
}

/* Notice Section */
.notice {
  padding: 2rem 7%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(20px);
  text-align: center;
  margin: 2rem auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--main-700), var(--accent-gold), var(--main-600));
}

.notice p {
  max-width: 56rem;
  margin: 0.5rem auto;
}

.payments-info {
  font-weight: 600;
  color: var(--main-700);
  font-size: 1.1rem;
}

/* Contact Section */
.contact .row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  background: transparent;
  align-items: start;
}

.contact .row .map {
  width: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.5);
}

.contact .row form {
  padding: 1.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact .row form .output-group h4 {
  width: 100%;
  display: flex;
  align-items: center;
  color: var(--main-700);
  background: transparent;
  padding: 0.5rem 0;
  font-size: clamp(1.3rem, 1rem + 0.6vw, 1.8rem);
  border-bottom: 2px solid rgba(10, 102, 194, 0.2);
  margin-bottom: 1rem;
}

.contact .row form .input-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact .row form .input-group:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(10, 102, 194, 0.2);
  transform: translateX(5px);
}

.contact .row form .input-group i {
  color: var(--main-700);
  min-width: 24px;
}

.contact .row form .input-group h4 {
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.15rem);
  font-weight: 500;
  color: #2d3748;
}

.contact .rowe {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
}

.contact .rowe .about-img {
  max-width: 300px;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.contact .rowe .about-img:hover {
  transform: scale(1.02);
}

.contact .rowe .about-img img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* Footer */
footer {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.95), rgba(0, 82, 155, 0.95));
  text-align: center;
  padding: 2.5rem 7% 3.5rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), #fbbf24, var(--accent-gold));
}

footer .credit {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

footer .credit a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer .credit a:hover {
  color: var(--accent-gold);
}

/* FAQ Chat Widget Styles */
.faq-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  font-family: "Poppins", sans-serif;
}

.faq-chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-700), var(--main-600));
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(10, 102, 194, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

.faq-chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(10, 102, 194, 0.5);
}

.faq-chat-toggle svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.faq-chat-toggle.active svg {
  transform: rotate(90deg);
}

.faq-chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-height: 500px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

.faq-chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.faq-chat-header {
  background: linear-gradient(135deg, var(--main-700), var(--main-600));
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-chat-header-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-chat-header-icon svg {
  width: 24px;
  height: 24px;
}

.faq-chat-header-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.faq-chat-header-text p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  text-align: left;
}

.faq-chat-body {
  padding: 1rem;
  max-height: 350px;
  overflow-y: auto;
}

.faq-chat-welcome {
  text-align: center;
  padding: 1rem 0;
  color: #64748b;
  font-size: 0.95rem;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-question-btn {
  width: 100%;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  text-align: left;
  font-size: 0.95rem;
  color: #334155;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question-btn:hover {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: var(--main-700);
  transform: translateX(5px);
}

.faq-answer {
  display: none;
  padding: 1rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  color: #475569;
  line-height: 1.6;
  animation: slideInUp 0.3s ease;
}

.faq-answer.show {
  display: block;
}

.faq-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  color: var(--main-700);
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-back-btn:hover {
  background: #f1f5f9;
  border-color: var(--main-700);
}

/* Message bubbles styling */
.faq-messages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-message {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  max-width: 85%;
  animation: slideInUp 0.3s ease;
}

.faq-message.bot {
  background: #f1f5f9;
  color: #334155;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.faq-message.user {
  background: linear-gradient(135deg, var(--main-700), var(--main-600));
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1366px) {
  html {
    font-size: 75%;
  }
}

@media (max-width: 992px) {
  .contact .row {
    grid-template-columns: 1fr;
  }

  .contact .row .map {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  #hamburger-menu {
    display: flex;
  }

  .navbar .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 9998;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    color: var(--secondary);
    display: block;
    margin: 0.5rem 0;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
  }

  .navbar .navbar-nav a:hover {
    background: rgba(10, 102, 194, 0.1);
    color: var(--main-700);
  }

  .navbar .navbar-nav a::after {
    display: none;
  }

  .hero {
    background-attachment: scroll;
    min-height: 90vh;
  }

  .hero .content {
    max-width: 100%;
    padding: 7rem 5% 2rem;
  }

  .about .row,
  .menu .row,
  .products .row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-card {
    max-width: 100%;
  }

  .faq-chat-window {
    width: calc(100vw - 40px);
    max-width: 380px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 55%;
  }

  .navbar {
    padding: 1rem 5%;
  }

  .hero .content h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    line-height: 1.2;
  }

  .hero .content p {
    font-size: 1.4rem;
  }

  .hero .content q {
    font-size: 1.1rem;
  }

  .cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .faq-chat-toggle {
    width: 54px;
    height: 54px;
  }

  .faq-chat-window {
    bottom: 70px;
    max-height: 70vh;
  }
}

/* Remove old n8n chat styles - keeping this section clean */
#n8n-chat-widget {
  display: none !important;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

/* Print styles */
@media print {

  .navbar,
  .faq-chat-widget,
  footer {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem;
  }

  body {
    background: white;
  }
}