/* ===== BASE STYLES & VARIABLES ===== */
:root {
  /* Color Palette */
  --color-red: #c41e3a;
  --color-red-light: #e84c4c;
  --color-beige: #f5f1e8;
  --color-sand: #e6dfd3;
  --color-dark-brown: #2c2416;
  --color-soft-black: #1a1a1a;
  --color-olive: #8a8635;
  --color-copper: #b87333;
  --color-white: #ffffff;
  --color-light-gray: #f8f9fa;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
  
  /* Borders & Shadows */
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ===== RESET & GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-soft-black);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark-brown);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-red);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-padding {
  padding: var(--section-padding);
}

.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* ===== TYPOGRAPHY ===== */
.display-1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.display-2 {
  font-size: 2.8rem;
  font-weight: 600;
}

.display-3 {
  font-size: 2.2rem;
  font-weight: 600;
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .display-1 { font-size: 2.5rem; }
  .display-2 { font-size: 2.2rem; }
  .display-3 { font-size: 1.8rem; }
  .lead { font-size: 1.1rem; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-red);
  color: var(--color-white);
  border: 2px solid var(--color-red);
}

.btn-primary:hover {
  background-color: var(--color-red-light);
  border-color: var(--color-red-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-red);
  border: 2px solid var(--color-red);
}

.btn-secondary:hover {
  background-color: var(--color-red);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-dark-brown);
  border: 2px solid var(--color-dark-brown);
}

.btn-outline:hover {
  background-color: var(--color-dark-brown);
  color: var(--color-white);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* ===== MENU CATEGORIES NAVIGATION ===== */
.menu-category-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 10px;
}

.menu-category-nav::-webkit-scrollbar {
  height: 6px;
}

.menu-category-nav::-webkit-scrollbar-track {
  background: transparent;
}

.menu-category-nav::-webkit-scrollbar-thumb {
  background: var(--color-red);
  border-radius: 3px;
}

.menu-category-btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: 0.95rem;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark-brown);
}

.logo span {
  color: var(--color-red);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-red);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle::after {
  content: '▾';
  font-size: 0.8em;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-white);
  min-width: 200px;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--color-dark-brown);
}

.dropdown-item:hover {
  background-color: var(--color-light-gray);
  color: var(--color-red);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-dark-brown);
}

/* ===== HERO SECTIONS ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  color: var(--color-white);
  margin-top: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTION STYLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-red);
  margin: 15px auto;
}

.section-subtitle {
  color: var(--color-olive);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* ===== PROFILE PAGE STYLES (profile.php) ===== */
body.profile-page {
  background: #f8f8f8 url('../img/bg-auth.jpg') no-repeat center center fixed;
  background-size: cover;
}
.profile-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 248, 248, 0.92);
  padding: 2rem 1rem;
}
.profile-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  max-width: 500px;
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.profile-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.form-footer {
  text-align: center;
  font-size: 1rem;
  margin-top: 1rem;
}
.profile-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.profile-avatar-inner {
  display: inline-flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-beige);
  border: 2px solid var(--color-red);
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(196,30,58,0.07);
}
.profile-avatar-inner i {
  font-size: 2.5rem;
  color: var(--color-red);
}
.profile-form .form-group {
  margin-bottom: 1.2rem;
}
.profile-form label {
  font-weight: 500;
}
.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form input[type="tel"],
.profile-form input[type="password"] {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
  transition: border 0.2s;
}
.profile-form input:disabled {
  background: #f5f1e8;
  color: #aaa;
}
.profile-form small {
  color: #888;
  font-size: 0.85rem;
}
.profile-form button {
  width: 100%;
  margin-top: 10px;
}
.profile-form h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--color-dark-brown);
}
@media (max-width: 600px) {
  .profile-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    max-width: 98vw;
    border-radius: 10px;
  }
  .profile-title {
    font-size: 1.4rem;
  }
}

/* ===== AUTH PAGES STYLES (reset-password, forgot-password, etc.) ===== */
body.auth-page.login-bg {
  background: #222 url('../img/restaurant_dining/login_bg.jpeg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}
body.auth-page.signup-bg {
  background: #222 url('../img/restaurant_dining/sign_up_bg.jpeg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

body.auth-page.login-bg::before,
body.auth-page.signup-bg::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 20, 20, 0.68); /* true dark overlay, image still visible */
  z-index: 0;
  pointer-events: none;
}
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}
.auth-card {
  background: #9e9e9eb1;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.auth-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.form-footer {
  text-align: center;
  font-size: 1rem;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  .auth-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    max-width: 98vw;
    border-radius: 10px;
  }
  .auth-title {
    font-size: 1.4rem;
  }
}

/* ===== SIGNUP PAGE STYLES (signup.php) ===== */
.auth-logo {
  text-align: center;
  margin-bottom: 30px;
}
.auth-divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}
.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-sand);
}
.auth-divider span {
  background: white;
  padding: 0 15px;
  color: var(--color-olive);
  font-size: 0.9rem;
}
.password-strength {
  margin-top: 5px;
  font-size: 0.85rem;
}
.strength-bar {
  height: 5px;
  background-color: var(--color-sand);
  border-radius: 3px;
  margin-top: 5px;
  overflow: hidden;
}
.strength-fill {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
}
.strength-text {
  font-size: 0.8rem;
  margin-top: 3px;
}
.alert {
  padding: 12px 20px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}
.alert-error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}
.alert-success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

/* ===== LOGIN PAGE STYLES (login.php) ===== */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 43, 43, 0.41);
  padding: 2rem 1rem;
  margin-top: 60px;
}
.auth-logo {
  text-align: center;
}
.auth-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
  transition: border 0.2s;
}
.form-control:focus {
  border-color: #c41e3a;
  outline: none;
}
.auth-divider {
  text-align: center;
  color: #aaa;
  margin: 1.2rem 0 0.5rem 0;
  font-size: 0.95rem;
  position: relative;
}
.auth-divider span {
  background: #fff;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.auth-divider:before {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: #eee;
  z-index: 0;
}
@media (max-width: 600px) {
  .auth-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    max-width: 98vw;
    border-radius: 10px;
  }
  .auth-title {
    font-size: 1.4rem;
  }
  .auth-logo h2 {
    font-size: 1.5rem !important;
  }
  .btn, .btn-primary, .btn-outline {
    font-size: 0.98rem;
    padding: 0.7rem 0.7rem;
  }
  .form-footer {
    font-size: 0.95rem;
  }
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--color-red);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-red);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--color-dark-brown);
}

/* ===== MENU CARDS ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.menu-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.menu-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-content {
  padding: 20px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.menu-title {
  font-size: 1.3rem;
  color: var(--color-dark-brown);
}

.menu-price {
  color: var(--color-red);
  font-weight: 600;
  font-size: 1.2rem;
}

.menu-tag {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  background: var(--color-beige);
  border-radius: var(--border-radius);
  text-align: center;
}

.testimonial-rating {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-dark-brown);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-sand);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--color-red);
  transform: scale(1.2);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ===== Additional Styles for Branches Page ===== */
.branch-tab {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.branch-tab-btn {
    padding: 12px 25px;
    background-color: var(--color-beige);
    border: 2px solid var(--color-beige);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.branch-tab-btn.active {
    background-color: var(--color-red);
    color: white;
    border-color: var(--color-red);
}

.branch-content {
    display: none;
}

.branch-content.active {
    display: block;
}

.branch-highlight {
    border-left: 4px solid var(--color-red);
    padding-left: 20px;
    margin-bottom: 30px;
}

.opening-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 30px;
}

#map {
    width: 100%;
    height: 100%;
}

.coming-soon-card {
    background: linear-gradient(135deg, var(--color-dark-brown) 0%, #3a3429 100%);
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

/* ===== Additional Styles for Contact Page ===== */
.contact-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-tab-btn {
    padding: 12px 25px;
    background-color: var(--color-beige);
    border: 2px solid var(--color-beige);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-tab-btn.active {
    background-color: var(--color-red);
    color: white;
    border-color: var(--color-red);
}

.contact-content {
    display: none;
}

.contact-content.active {
    display: block;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--color-red);
}

.reservation-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-success {
    display: none;
    padding: 40px;
    text-align: center;
    background-color: var(--color-beige);
    border-radius: var(--border-radius);
}

.form-success.active {
    display: block;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 30px;
}

.social-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    color: var(--color-dark-brown);
    transition: all 0.3s ease;
}

.social-contact-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.social-contact-link.whatsapp {
    background-color: #25D366;
    color: white;
}

.social-contact-link.phone {
    background-color: var(--color-red);
    color: white;
}

.social-contact-link.email {
    background-color: var(--color-olive);
    color: white;
}

/* ===== FORM STYLES ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-dark-brown);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-sand);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--color-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* ===== BRANCH CARDS ===== */
.branch-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.branch-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-icon {
  color: var(--color-red);
  font-size: 1.2rem;
  margin-top: 3px;
}

/* ===== OFFER CARDS ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.offer-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.offer-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.offer-content {
  padding: 25px;
}

.offer-title {
  color: var(--color-dark-brown);
  margin-bottom: 10px;
}

.offer-validity {
  color: var(--color-olive);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-dark-brown);
  color: var(--color-beige);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--color-red);
}

.footer-title {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--color-red);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--color-red);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .menu-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }
  
  /* Responsive row layout for branch cards */
  .row {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .col {
    flex: 1 !important;
  }
  
  /* Responsive social contact links */
  .social-contact-links {
    gap: 10px;
  }
  
  .social-contact-link {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  /* Menu categories navigation - more compact */
  .menu-category-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 5px;
  }
  
  .menu-category-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  /* Menu categories navigation - extra compact for small screens */
  .menu-category-nav {
    gap: 8px;
    padding: 0 3px;
  }
  
  .menu-category-btn {
    padding: 7px 10px;
    font-size: 0.8rem;
  }
}

