.branch-info-container {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 25px 0;
}

.branch-section-title {
  text-align: center;
  font-size: 2.5em;
  margin: 10px 0;
  color: #2c1810;
  position: relative;
}

.branch-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  border-radius: 2px;
}
.branch-info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #8b4513;
  height: 100%;
}

.branch-info-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #2c1810;
  display: flex;
  align-items: center;
  gap: 10px;
}

.branch-info-card p {
  margin-bottom: 8px;
  color: black;
}

.branch-info-card strong {
  color: #2c1810;
}
/* ==============  Menu ============= */
.menu-section {
  background: rgba(255, 255, 255, 0.95) !important;
  padding: 25px 0;
}
.menu-card-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.branch-menu-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.branch-tab-btn {
  padding: 12px 25px;
  border: 2px solid #8b4513;
  background: transparent;
  color: #8b4513;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.branch-tab-btn.active,
.branch-tab-btn:hover {
  background: #8b4513;
  color: white;
}

.branch-menu-content {
  display: none;
}

.branch-menu-content.active {
  display: block;
}

.branch-menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.branch-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: white;
}

.branch-menu-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.branch-menu-item-info h4 {
  color: #2c1810;
  margin-bottom: 5px;
}

.branch-menu-item-info p {
  color: #666;
  font-size: 0.9em;
}

.branch-menu-price {
  font-size: 1.2em;
  font-weight: bold;
  color: #8b4513;
}

/* ================== Current Offers & Promotions =================== */
.offers-section {
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  color: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.offer-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.offer-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.offer-card:hover .offer-icon {
  transform: scale(1.2);
}

.offer-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: white;
  font-weight: 600;
}

.offer-card p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  flex-grow: 1;
}

.offer-validity {
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9em;
  margin-top: auto;
}

.offer-validity span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 25px;
  }
}
/* ============ Photo ============== */
/* ===========  Customer Review  =============== */
.reviews-section {
  color: white;
  padding: 40px;
  text-align: center;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid #8b4513;
  height: calc(100% - 30px);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background-color: #8b4513;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 15px;
}

.reviewer-info h4 {
  margin: 0;
  color: #2c1810;
  font-size: 1.1em;
}

.stars {
  color: #ffd700;
  font-size: 1em;
  letter-spacing: 2px;
  margin-top: 5px;
}

.review-content {
  color: #555;
  line-height: 1.6;
}

.review-content p {
  margin-bottom: 15px;
  font-style: italic;
}

.review-date {
  font-size: 0.8em;
  color: #888;
  text-align: right;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #2c1810;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1em;
}
/* contact-section */
.contact-section {
  color: white;
  padding: 40px;
  text-align: center;
}
/* Contact Section */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.contact-info-col {
  flex: 0 0 40%;
  padding: 0 15px;
}

.contact-form-col {
  flex: 0 0 60%;
  padding: 0 15px;
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid #8b4513;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #8b4513;
}

.contact-card h3 {
  color: #2c1810;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.contact-card p {
  color: #555;
  margin-bottom: 5px;
}

.contact-detail {
  color: #888;
  font-size: 0.9em;
  margin-top: 10px;
}

.contact-form-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #8b4513;
  height: 100%;
}

.contact-form-card h3 {
  color: #2c1810;
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.6em;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #8b4513;
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #8b4513;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #d2691e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}


