/* === OPTIMIZED CSS FOR THE TAM BURGER WEBSITE === */
:root {
  --primary-color: #1C2B22;
  --secondary-color: #F1EEDC;
  --accent-color: #F1EEDC;
  --text-color: #F1EEDC;
  --bg-dark: rgba(0,0,0,0.7);
  --bg-card: rgba(0,0,0,0.55);
  --transition: all 0.3s ease;
}

/* Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background: none;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('../images/burger-hero.jpg') no-repeat center center/cover;
  z-index: -1;
}

a { 
  color: inherit; 
  text-decoration: none; 
  transition: var(--transition); 
}

ul { 
  list-style: none; 
}

img { 
  max-width: 100%; 
  height: auto; 
}

/* Layout */
section {
  padding: 4rem 0;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

/* Card Styles */
.card, 
.feature, 
.menu-item, 
.value-item, 
.info-card, 
.cta-card, 
.contact-card {
  background: var(--bg-card);
  border: 1.5px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  color: var(--text-color);
  border-radius: 16px;
  margin: 1rem auto;
  padding: 2rem;
  max-width: 100%;
  height: 100%;
}

/* Info Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
  justify-items: center;
  width: 100%;
}

/* Ensure menu items have consistent width */
.menu-item.card {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.info-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-card .info-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  line-height: 1;
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.info-card p, 
.info-card small {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* CTA Card */
.cta-card {
  background: rgba(10, 10, 10, 0.4);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Buttons */
.cta-button {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  gap: 0.6rem;
}

.logo img {
  height: 40px;
  width: 40px;
  display: block;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  background: var(--secondary-color);
  padding: 2px;
  object-fit: cover;
}

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

.nav-links a {
  font-weight: 500;
  color: var(--accent-color);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--secondary-color);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  margin: 5px 0;
  transition: var(--transition);
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  margin-top: 80px;
  background: none;
  color: #fff;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.feature {
  text-align: center;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.feature-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Page Header */
.page-header {
  margin-top: 100px;
  padding: 0 0.5rem 2rem 0.5rem;
  background: none;
  box-shadow: none;
}

.page-header .container {
  background: rgba(10, 10, 10, 0.4);
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  position: relative;
}

.page-header .container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: inherit;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* Discount Banner */
.discount-banner {
  padding: 0.8rem 0;
}

.discount-banner .container {
  max-width: 900px;
}

.discount-banner strong {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.discount-banner .call-cta {
  display: inline-block;
  background: #34C759; /* iOS Phone green */
  color: #fff;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-right: 0.6rem;
  border: 2px solid #2EBF57;
  box-shadow: 0 4px 12px rgba(52, 199, 89, 0.35);
}

.discount-banner .call-cta:hover {
  background: #2EBF57;
  color: #fff;
}

.discount-banner .call-cta i {
  margin-right: 0.45rem;
}

.discount-banner .call-sub {
  display: inline-block;
  margin: 0 0.4rem 0 0;
  background: #E53935; /* red background */
  color: #fff; /* white text */
  font-weight: 900;
  font-size: 1.05rem; /* slightly larger */
  padding: 0.35rem 0.75rem;
  border: 3px solid #FF9800; /* orange thick border */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.25);
}

/* Pickup Banner */
.pickup-banner {
  padding: 0.9rem 0 1rem;
  background: linear-gradient(90deg, rgba(255,215,0,0.20), rgba(255,215,0,0.08));
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.pickup-banner .container {
  max-width: 900px;
}

.pickup-banner strong {
  display: block;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #ffd700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.pickup-banner .pickup-sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-items: center;
  margin-bottom: 3rem;
}

.about-content {
  text-align: left;
  max-width: 500px;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  width: 100%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 3rem 0 2rem 0;
}

.mission-vision-grid .card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  justify-items: center;
  align-items: stretch;
}

.values-grid .value-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Page Header */
.page-header {
  padding: 2rem 0 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.discount-banner {
  width: 100%;
  padding: 0.5rem 0;
  margin: 0 auto;
  font-size: 0.9rem;
}

.discount-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.call-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #e63946;
  color: white !important;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  font-size: 1rem;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.call-cta i {
  font-size: 1.1em;
  margin-right: 0.2rem;
}

.call-cta:hover {
  background: #c1121f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.discount-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #ffd700;
  font-weight: 500;
  flex: 1;
  max-width: 320px;
}

.discount-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.4;
  color: #ffd700;
  font-size: 0.95rem;
}

.discount-line i {
  font-size: 1.1em;
  color: #ffd700;
  opacity: 0.9;
  width: 20px;
  text-align: center;
}

.discount-line strong {
  font-weight: 700;
  color: #fff;
  margin-left: 0.2rem;
}

.discount-note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.2rem;
  color: #aaa;
  font-size: 0.85rem;
}

.discount-note i {
  font-size: 1em;
  color: #aaa;
  width: 20px;
  text-align: center;
}

.discount-note small {
  color: #aaa;
  font-size: 0.85em;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .discount-content {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    align-items: center;
    width: 100%;
  }
  
  .discount-banner .call-cta {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .call-cta {
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 1.2rem;
    margin: 0 auto;
  }
  
  .discount-text {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }
  
  .discount-line,
  .discount-note {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  
  .discount-line {
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .discount-note {
    margin-top: 0.5rem;
  }
}

/* Menu Section */
.menu-section {
  padding: 2rem 0;
}

.menu-categories {
  margin-bottom: 3rem;
}

.category-btn {
  font-size: 1.18rem;
  font-weight: 600;
  padding: 0.7em 2em;
  border-radius: 2em;
  margin: 0 0.5em 1em 0;
  background: rgba(255,255,255,0.08);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.category-btn.active, 
.category-btn:hover {
  background: var(--secondary-color);
  color: #222;
  border-color: var(--secondary-color);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  justify-items: center;
  align-items: center;
}

.menu-item.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.menu-item .item-image {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: relative;
  min-height: 56px;
}

.item-badge-row {
  height: 2.2em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.2em;
}

.item-badge-row:empty {
  height: 2.2em;
}

.coming-soon {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}

.menu-item .item-badge {
  margin: 0 auto;
  left: unset;
  right: unset;
  position: static;
  background: linear-gradient(90deg, #ffd700 0%, #ffb300 100%);
  color: #1a3522;
  font-size: 0.93rem;
  font-weight: 800;
  padding: 0.22em 0.85em;
  border-radius: 1.5em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 1.5px 0 #fffbe6 inset;
  border: 2.5px solid #fffbe6;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(255,255,255,0.18), 0 1px 0 #fffbe6;
  text-transform: uppercase;
  min-width: 60px;
  text-align: center;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.15s;
}

.menu-item .item-badge:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* Side Dish Emoji Styles */
.menu-item .item-emoji {
  font-size: 3.5rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-item .item-emoji:hover {
  transform: scale(1.05) rotate(5deg);
  background: rgba(255, 255, 255, 0.15);
}

.burger-image, .drink-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  line-height: 0;
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.burger-image:hover {
  transform: scale(1.05);
}

.menu-item .item-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.1rem;
  flex-grow: 1;
  justify-content: space-between;
}

.menu-item .item-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.menu-item .item-details p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin: 0.7rem 0;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  min-height: 60px;
  text-align: center;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  padding-bottom: 0.7rem;
  width: 100%;
}

.menu-item .item-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 0.8rem;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}

.menu-item .item-price .old-price {
  position: relative;
  display: inline-block;
  font-size: 0.85em;
  color: #fff;
  margin-bottom: 0.1rem;
  font-weight: 500;
  opacity: 0.8;
}

.menu-item .item-price .old-price::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background-color: #ff4d4d;
  transform: translateY(-50%);
}

.menu-item .item-price .price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  order: 2;
  width: 100%;
}

.menu-item .item-price .new-price,
.menu-item .item-price .pickup-price {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  padding: 0.2em 0.7em;
  font-size: 0.9em;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  min-width: max-content;
}

.menu-item .item-price .new-price {
  color: #fff;
  background: linear-gradient(90deg, rgba(255,215,0,0.2), rgba(255,215,0,0.08));
  border: 1px solid rgba(255,215,0,0.25);
}

.menu-item .item-price .new-price::before {
  content: '📞 -20%';
  color: #ffd700;
  font-size: 0.88em;
  margin-right: 0.3em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.menu-item .item-price .pickup-price {
  color: #fff;
  background: rgba(52, 199, 89, 0.12);
  border: 1px solid rgba(52, 199, 89, 0.35);
}

.menu-item .item-price .pickup-price::before {
  content: 'GEL AL -30%';
  color: #34c759;
  font-size: 0.88em;
  margin-right: 0.3em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  white-space: nowrap;
}

@keyframes shine {
  100% {
    transform: translateX(100%);
  }
}

.menu-item .item-price .new-price::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  animation: shine 2s infinite;
}

.menu-item .item-price .pickup-price::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  animation: shine 2s 0.5s infinite;
}

@media (max-width: 768px) {
  .menu-item .item-price .price-row {
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
  }
  
  .menu-item .item-price .new-price,
  .menu-item .item-price .pickup-price {
    width: 100%;
    justify-content: center;
    padding: 0.25em 0.8em;
  }
}

/* Form Styles */
.modern-form {
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.modern-form label {
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.2rem;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border 0.2s;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
  border-color: var(--secondary-color);
}

.modern-form textarea {
  resize: vertical;
  min-height: 40px;
}

.modern-form .submit-btn {
  background: var(--secondary-color);
  color: #222;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modern-form .submit-btn:hover {
  background: #fff;
  color: var(--secondary-color);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 2rem auto 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question .fa-chevron-down {
  transition: transform 0.3s ease;
}

.faq-item[open] > .faq-question .fa-chevron-down {
  transform: rotate(180deg);
}

.faq-answer-content {
  padding: 0.2rem 1.5rem 1.2rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  width: 100%;
}

.contact-section .container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.contact-card h2 {
  color: white;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-list li {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.contact-list i {
  color: var(--accent-color);
  font-size: 1.4rem;
  min-width: 30px;
  text-align: center;
}

.contact-list a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-list a:hover {
  color: var(--accent-color);
}

.contact-social {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-social span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.1rem;
  text-align: center;
  width: 100%;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.social-icon {
  color: var(--text-color);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin: 0 auto;
}

.social-icon:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-card h2 {
  text-align: center;
  color: white;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-bottom: 1rem;
  width: fit-content;
  display: block;
}

.contact-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  text-align: center;
  max-width: 100%;
  width: fit-content;
}

.contact-list li {
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  width: 100%;
}

.contact-list i {
  color: var(--secondary-color);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.contact-social {
  text-align: center;
  margin: 2rem auto 0;
  width: 100%;
}

.contact-social > span {
  display: block;
  margin: 0 auto 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  width: fit-content;
}

/* Map Section */
.map-section {
  padding: 2rem 0 4rem;
  width: 100%;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 400px; /* Fixed height for better control */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  position: relative;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  border-radius: 12px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .map-container {
    margin: 2rem -1rem;
    width: calc(100% + 2rem);
    border-radius: 0;
  }
  
  .map-container iframe {
    border-radius: 0;
  }
}

/* Timeline */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 3rem 0;
  position: relative;
  padding: 0 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-color);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  margin: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 4px solid var(--primary-color);
}

.timeline-content {
  margin-top: 2rem;
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-section {
  text-align: left;
  padding: 0 1rem;
}

.footer-section h3 {
  color: var(--secondary-color);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-section h3::before {
  content: '';
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  background: var(--secondary-color);
  background-image: url('../images/logo.png');
  background-size: 32px 32px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

/* Hide the large footer logo image */
.footer-logo {
  display: none !important;
}

.footer-logo-container {
  display: none !important;
}

.footer-section p {
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section ul li a {
  color: var(--secondary-color);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.social-links a {
  color: var(--secondary-color);
  font-size: 1.5rem;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* CTA Section */
.cta-section .cta-button {
  display: block;
  margin: 2rem auto 0 auto;
  width: fit-content;
}

.cta-section p {
  margin-bottom: 2rem;
}

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

.animate-fadeInUp { 
  animation: fadeInUp 0.8s ease-out forwards; 
}

/* Responsive Design */
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .about-content, .about-image {
    text-align: center;
    max-width: 100%;
    justify-content: center;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .mission-vision-grid .card {
    align-items: center;
    text-align: center;
  }
  
  .timeline {
    flex-direction: column;
    padding-left: 20px;
  }
  
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 4px;
    width: 4px;
    height: 100%;
  }
  
  .timeline-item {
    text-align: left;
    padding-left: 30px;
    margin-bottom: 1.5rem;
    flex: none;
    width: 100%;
  }
  
  .timeline-dot {
    top: 0;
    left: 0;
    transform: none;
  }
  
  .timeline-item:hover .timeline-dot {
    transform: scale(1.2);
  }
  
  .timeline-content {
    margin-top: 0;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary-color);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 140px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hamburger {
    display: block;
    position: fixed;
    top: 25px;
    right: 20px;
  }
  
  .features, .values-grid, .team-grid, .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-list li {
    font-size: 1rem;
  }
  
  .contact-social {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .map-container {
    margin: 1.5rem -1rem;
    width: calc(100% + 2rem);
    border-radius: 0;
    padding-top: 75%;
  }
  
  .map-container iframe {
    height: 100%;
    border-radius: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section h3 {
    justify-content: center;
  }
  
  .footer-section h3::before {
    display: none;
  }
  
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .page-header .container {
    padding: 1rem 0.7rem;
  }
  
  .map-container {
    border-radius: 12px;
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .footer-section {
    text-align: center !important;
    margin: 0 auto;
  }
  
  .menu-item .item-badge {
    font-size: 0.88rem;
    min-width: 48px;
    padding: 0.18em 0.6em;
  }
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .modern-form {
    padding: 1.2rem 0.5rem;
  }
  
  .contact-section .info-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .contact-section .info-card {
    padding: 1.2rem 0.7rem;
  }
}

@media (min-width: 769px) {
  .features, .values-grid, .team-grid, .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Footer Instagram Logo Styling */
.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0;
}

.footer-instagram:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
