/* ============================================
   MAMA'S TAMALES LA - Premium Restaurant Styles
   ============================================ */

:root {
  --primary: #e85d2c;
  --primary-dark: #c9441f;
  --secondary: #f4a261;
  --accent: #e9c46a;
  --green: #2a9d8f;
  --dark: #1a1a2e;
  --darker: #0f0f1a;
  --dark-card: #16213e;
  --light: #faf3e0;
  --white: #ffffff;
  --gold: #f4d03f;
  --gradient-1: linear-gradient(135deg, #e85d2c, #f4a261, #e9c46a);
  --gradient-2: linear-gradient(135deg, #2a9d8f, #264653);
  --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(232, 93, 44, 0.3);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--darker);
  color: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

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

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

::selection {
  background: var(--primary);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--darker);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ========== SECTION UTILITY ========== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section h2 {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== GLOW BUTTONS ========== */
.btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
  font-family: 'Poppins', sans-serif;
}

.btn-primary-custom {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(232, 93, 44, 0.5);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
  background: var(--glass-bg);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ========== SPLASH SCREEN ========== */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#splash-screen.hide {
  animation: splashFadeOut 1s ease forwards;
}

@keyframes splashFadeOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.1); visibility: hidden; }
}

.splash-slideshow {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: splashZoom 4s ease-in-out;
}

@keyframes splashZoom {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.splash-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.9), rgba(22, 33, 62, 0.85));
  z-index: 1;
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: splashIn 1.2s ease-out;
}

@keyframes splashIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-logo {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.splash-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.splash-subtitle {
  font-size: 4.5rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.splash-loader {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 30px auto 0;
  overflow: hidden;
}

.splash-loader-bar {
  width: 0%;
  height: 100%;
  background: var(--gradient-1);
  border-radius: 10px;
  animation: loadBar 2.5s ease forwards;
}

@keyframes loadBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ========== NAVBAR ========== */
#main-navbar {
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

#main-navbar.scrolled {
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  color: var(--accent);
  font-size: 1.4rem;
}

.brand-accent {
  color: var(--accent);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}

.lang-btn:hover {
  color: var(--accent);
}

.lang-btn.active {
  color: var(--white);
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
  }
}

/* Hamburger */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: heroBgZoom 20s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.85), rgba(26, 26, 46, 0.7), rgba(15, 15, 26, 0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-text {
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  margin: 8px auto 0;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: var(--dark);
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image-main:hover img {
  transform: scale(1.05);
}

.about-image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--dark);
}

.about-image-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gradient-1);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.stat-card {
  text-align: center;
  padding: 20px 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.stat-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ========== VIDEO ROW ========== */
.video-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  width: 100%;
  background: var(--dark-card);
}

.video-card::before {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}

.video-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.video-overlay i {
  font-size: 2.5rem;
  color: var(--white);
  opacity: 0.9;
  transition: var(--transition);
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.video-card:hover .video-overlay i {
  transform: scale(1.15);
  color: var(--accent);
}

.video-card.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

/* ========== SPECIALTIES ========== */
.specialties-section {
  background: var(--darker);
}

.specialty-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  height: 350px;
}

.specialty-img {
  width: 100%;
  height: 100%;
}

.specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.specialty-card:hover .specialty-img img {
  transform: scale(1.1);
}

.specialty-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  transform: translateY(20px);
  transition: var(--transition);
}

.specialty-card:hover .specialty-info {
  transform: translateY(0);
}

.specialty-info h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.specialty-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.specialty-card:hover .specialty-info p {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MENU SECTION ========== */
.menu-section {
  background: var(--dark);
}

.menu-category .category-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 12px;
  margin-right: 16px;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.menu-category h3 {
  font-size: 2rem;
  color: var(--white);
  margin: 0;
}

/* Menu Card */
.menu-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(233, 196, 106, 0.3);
}

.menu-card.horizontal {
  display: flex;
  height: auto;
}

.menu-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.menu-img.horizontal-img {
  width: 200px;
  min-height: 180px;
  height: auto;
  flex-shrink: 0;
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.menu-card:hover .menu-overlay {
  opacity: 1;
}

.menu-order-btn {
  background: var(--gradient-1);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-glow);
}

.menu-card:hover .menu-order-btn {
  transform: translateY(0);
}

.menu-order-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 40px rgba(232, 93, 44, 0.5);
  color: var(--white);
}

.menu-body {
  padding: 20px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.menu-header h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin: 0;
}

.menu-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  background: rgba(233, 196, 106, 0.1);
  padding: 4px 14px;
  border-radius: 20px;
}

.menu-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.6;
}

/* ========== GALLERY ========== */
.gallery-section {
  background: var(--darker);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: var(--dark);
}

.testimonial-swiper {
  padding: 20px 10px 60px;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 196, 106, 0.3);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-author h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Swiper overrides */
.swiper-pagination-bullet {
  background: var(--accent) !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--accent) !important;
}

/* ========== CONTACT ========== */
.contact-section {
  background: var(--darker);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.95rem;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.contact-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--gradient-1);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(233, 196, 106, 0.1);
  color: var(--white);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* ========== FOOTER ========== */
.footer-section {
  background: var(--darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand i {
  font-size: 2rem;
  color: var(--accent);
}

.footer-brand h4 {
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-section h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  width: 46px;
  height: 46px;
  background: var(--gradient-1);
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 70px 0;
  }

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

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .splash-subtitle {
    font-size: 3rem;
  }

  .about-image-secondary {
    width: 180px;
    right: -20px;
    bottom: -20px;
  }

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

  .menu-card.horizontal {
    flex-direction: column;
  }

  .menu-img.horizontal-img {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

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

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .splash-title {
    font-size: 1.2rem;
  }

  .splash-subtitle {
    font-size: 2.2rem;
  }

  .about-image-secondary {
    width: 140px;
    right: -10px;
    bottom: -10px;
  }

  .about-image-secondary img {
    height: 120px;
  }

  .stat-card {
    padding: 16px 8px;
  }

  .testimonial-card {
    padding: 24px;
    min-height: auto;
  }

  .footer-section {
    padding: 40px 0 20px;
  }

  #main-navbar {
    padding: 12px 0;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

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

  .splash-subtitle {
    font-size: 1.6rem;
  }

  .menu-img {
    height: 180px;
  }

  .menu-header h4 {
    font-size: 1rem;
  }

  .menu-category h3 {
    font-size: 1.4rem;
  }

  .navbar-collapse {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
  }
}
