/* ================================
   LE GANDHI – Design System
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --color-dark-red: #8a0000;
  --color-deep-red: #6b0000;
  --color-gold: #d4a843;
  --color-gold-light: #e8c97a;
  --color-cream: #f5f0e8;
  --color-cream-dark: #e8dfd2;
  --color-dark: #1a1a1a;
  --color-dark-alt: #2a2020;
  --color-dark-card: #2a1a1a;
  --color-text-light: #f5f0e8;
  --color-text-muted: #b8a99a;
  --color-white: #ffffff;
  --color-overlay: rgba(26, 26, 26, 0.85);
  --color-instagram: #E1306C;
  --color-instagram-orange: #F77737;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 16px 48px rgba(138, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(212, 168, 67, 0.15);

  /* Transitions */
  --transition-fast: 0.25s ease;
  --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ================================
   RESET & BASE
   ================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark);
  color: var(--color-text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-med);
  background: transparent;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 75px;
  width: auto;
  transition: all var(--transition-fast);
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(212, 168, 67, 0.25));
  transform: perspective(600px) rotateY(-2deg);
}

.nav-logo img:hover {
  filter: drop-shadow(3px 6px 10px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 18px rgba(212, 168, 67, 0.4));
  transform: perspective(600px) rotateY(0deg) scale(1.05);
}

.header.scrolled .nav-logo img {
  height: 55px;
}

/* Hero Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 26, 26, 0.5) 0%,
      rgba(138, 0, 0, 0.25) 40%,
      rgba(26, 26, 26, 0.8) 100%);
  z-index: 1;
}

.hero-audio-toggle {
  position: absolute;
  bottom: 80px;
  left: 30px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(212, 168, 67, 0.4);
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  color: var(--color-gold);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.hero-audio-toggle:hover {
  background: rgba(138, 0, 0, 0.6);
  border-color: var(--color-gold);
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-cream);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-med);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2px;
  border: 1px solid rgba(212, 168, 67, 0.3);
}

.lang-btn {
  padding: 6px 14px;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 18px;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--color-gold);
  color: var(--color-dark);
}

.lang-btn:hover:not(.active) {
  color: var(--color-cream);
}

/* Social Icons (Header) */
.nav-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-social a {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.nav-social a:hover {
  color: var(--color-instagram);
  transform: scale(1.15);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* CTA button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-med);
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-dark-red), var(--color-deep-red));
  color: var(--color-cream);
  box-shadow: 0 4px 20px rgba(138, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(138, 0, 0, 0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-dark);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-instagram {
  background: linear-gradient(135deg, var(--color-instagram-orange), var(--color-instagram));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 26, 26, 0.6) 0%,
      rgba(138, 0, 0, 0.3) 40%,
      rgba(26, 26, 26, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--color-cream);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

/* ================================
   SECTION COMMON
   ================================ */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-cream);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark {
  background: var(--color-dark);
}

.section-alt {
  background: var(--color-dark-alt);
}

/* ================================
   SPECIALTIES (Cards)
   ================================ */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.specialty-card {
  background: var(--color-dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-med);
  border: 1px solid rgba(212, 168, 67, 0.1);
  position: relative;
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 168, 67, 0.3);
}

.specialty-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.specialty-card:hover .specialty-card-img {
  transform: scale(1.08);
}

.specialty-card-body {
  padding: 24px;
}

.specialty-card-title {
  font-size: 1.3rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.specialty-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.specialty-card-img-wrapper {
  overflow: hidden;
  height: 220px;
}

/* ================================
   STORY / ABOUT SECTION
   ================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.story-content h2 {
  font-size: 2.4rem;
  color: var(--color-cream);
  margin-bottom: 24px;
}

.story-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.story-content .highlight {
  color: var(--color-gold);
  font-weight: 600;
}

/* ================================
   MENU PREVIEW
   ================================ */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-preview-card {
  background: rgba(42, 26, 26, 0.6);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-med);
}

.menu-preview-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.menu-preview-card h3 {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.menu-preview-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-cream);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-gold);
  display: block;
  line-height: 0.5;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--color-gold);
  font-weight: 600;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(212, 168, 67, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--color-gold);
  width: 32px;
  border-radius: 6px;
}

/* ================================
   INSTAGRAM FEED SECTION
   ================================ */
.instagram-section {
  background: var(--color-dark);
  padding: 80px 0;
}

.instagram-section .section-title {
  margin-bottom: 40px;
}

.insta-profile-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(42, 26, 26, 0.5);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-lg);
  padding: 16px 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.insta-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gold);
  object-fit: cover;
  background: var(--color-dark-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
}

.insta-profile-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.insta-name {
  text-align: left;
}

.insta-name strong {
  display: block;
  color: var(--color-cream);
  font-size: 1rem;
}

.insta-name span {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.insta-stats {
  display: flex;
  gap: 20px;
}

.insta-stat {
  text-align: center;
}

.insta-stat-num {
  display: block;
  color: var(--color-cream);
  font-weight: 700;
  font-size: 1.1rem;
}

.insta-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.insta-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 4px;
  cursor: pointer;
}

.insta-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

.insta-grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(138, 0, 0, 0.0);
  transition: background var(--transition-fast);
}

.insta-grid-item:hover img {
  transform: scale(1.1);
}

.insta-grid-item:hover::after {
  background: rgba(138, 0, 0, 0.3);
}

.insta-grid-item .insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 2;
  color: var(--color-white);
  font-size: 1.4rem;
}

.insta-grid-item:hover .insta-overlay {
  opacity: 1;
}

.insta-load-more {
  text-align: center;
  margin-top: 32px;
}

/* ================================
   LOCATION / FIND US
   ================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(138, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-text h4 {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.location-text p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(212, 168, 67, 0.15);
}

.location-map iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: linear-gradient(to bottom, var(--color-dark-alt), #111);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-dark-red);
  color: var(--color-cream);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-col p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
  color: var(--color-text-muted);
}

.newsletter-input:focus {
  border-color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-credit {
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: var(--color-gold);
}

/* ================================
   MENU PAGE
   ================================ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(138, 0, 0, 0.2), var(--color-dark));
}

.menu-category {
  margin-bottom: 16px;
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.menu-category-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(42, 26, 26, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.menu-category-toggle:hover {
  background: rgba(42, 26, 26, 0.7);
}

.menu-category-title {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin: 0;
  padding: 0;
  border: none;
  display: inline-block;
}

.menu-toggle-icon {
  color: var(--color-gold);
  font-size: 1rem;
  transition: transform var(--transition-med);
}

.menu-category.accordion-open .menu-toggle-icon {
  transform: rotate(180deg);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 24px;
  overflow: hidden;
  transition: max-height var(--transition-med), padding var(--transition-med);
}

.menu-category.accordion-open .menu-items {
  padding: 24px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  background: rgba(42, 26, 26, 0.4);
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.menu-item:hover {
  border-color: rgba(212, 168, 67, 0.25);
  background: rgba(42, 26, 26, 0.7);
}

.menu-item-info h4 {
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.menu-item-info p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.menu-item-price {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  margin-left: 16px;
}

/* ================================
   GALLERY PAGE
   ================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(138, 0, 0, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--color-dark-red);
}

/* ================================
   CONTACT / RESERVATION PAGE
   ================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: var(--color-cream);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4a843'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

/* ================================
   FAQ Section (SEO)
   ================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(42, 26, 26, 0.4);
  border: none;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: rgba(42, 26, 26, 0.7);
}

.faq-icon {
  color: var(--color-gold);
  font-size: 1.3rem;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ================================
   CONTACT PAGE & FORMS
   ================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-cream);
  background: rgba(42, 26, 26, 0.6);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-fast);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
  background: rgba(42, 26, 26, 0.8);
}

/* Select dropdown styling */
.form-select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a843' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: #1a1a1a;
  color: var(--color-cream);
  padding: 12px 16px;
  font-family: var(--font-body);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Date and time input fixes for dark theme */
.form-input[type="date"],
.form-input[type="time"] {
  color-scheme: dark;
}

/* Page hero for subpages */
.page-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: var(--color-dark-alt);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 168, 67, 0.3), transparent);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition-med);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-preview-grid {
    grid-template-columns: 1fr;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 1;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insta-profile-bar {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .insta-name {
    text-align: center;
  }

  .nav-right {
    display: none;
  }

  .nav-links .lang-toggle-mobile {
    display: flex;
  }

  .hero-audio-toggle {
    bottom: 120px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    display: flex !important;
    z-index: 10;
  }

  /* Fix contact form grid on mobile */
  .contact-grid div[style*="grid-template-columns"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .insta-stats {
    gap: 12px;
  }

  .location-item {
    flex-shrink: 0;
  }

  .location-icon {
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   OPENING HOURS BANNER
   ================================ */
.opening-hours-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.opening-hours-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.opening-hours-banner.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.opening-hours-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.opening-hours-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.opening-hours-dot.pulse-green {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: pulseGreen 2s ease-in-out infinite;
}

.opening-hours-dot.pulse-red {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
  animation: pulseRed 2s ease-in-out infinite;
}

@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 16px rgba(34, 197, 94, 0.8), 0 0 32px rgba(34, 197, 94, 0.3); }
}

@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 8px rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 16px rgba(239, 68, 68, 0.8), 0 0 32px rgba(239, 68, 68, 0.3); }
}

.opening-hours-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-cream);
}

.opening-hours-banner.is-open {
  background: rgba(26, 26, 26, 0.95);
  border-bottom-color: rgba(212, 168, 67, 0.2);
}

.opening-hours-banner.is-open .opening-hours-text {
  color: #4ade80; /* Light green */
}

.opening-hours-banner.is-closed {
  background: rgba(26, 26, 26, 0.95);
  border-bottom-color: rgba(212, 168, 67, 0.2);
}

.opening-hours-banner.is-closed .opening-hours-text {
  color: #f87171; /* Light red */
}

.opening-hours-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition-fast), transform var(--transition-fast);
  border-radius: 4px;
}

.opening-hours-close:hover {
  color: var(--color-cream);
  transform: translateY(-50%) scale(1.2);
}

/* Push header down when banner is visible */
.opening-hours-banner.visible ~ .header {
  top: 48px;
}

@media (max-width: 768px) {
  .opening-hours-banner {
    padding: 8px 16px;
  }

  .opening-hours-text {
    font-size: 0.78rem;
  }

  .opening-hours-close {
    right: 8px;
  }

  .opening-hours-banner.visible ~ .header {
    top: 36px;
  }
}

/* ================================
   FLOATING ACTION BUTTONS
   ================================ */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1050;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
  position: relative;
}

.fab-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.fab-whatsapp:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.fab-call {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-dark);
}

.fab-call:hover {
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.5);
}

.fab-instagram {
  background: linear-gradient(135deg, #F58529, #FEDA77, #DD2A7B, #8134AF, #515BD4);
}

.fab-instagram:hover {
  box-shadow: 0 8px 32px rgba(225, 48, 108, 0.5);
}

.fab-tiktok svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: white;
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 16px;
    gap: 12px;
  }

  .fab-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* ================================
   GLOBAL MOBILE OVERFLOW FIX
   ================================ */
html, body {
  overflow-x: hidden;
}

/* ================================
   Language Dropdown
   ================================ */
.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.lang-dropbtn {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 8px 12px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.lang-dropbtn:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--color-gold);
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #1a1a1a;
  min-width: 160px;
  box-shadow: 0px 8px 32px 0px rgba(0,0,0,0.5);
  z-index: 1000;
  border-radius: 8px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  margin-top: 5px;
  max-height: 300px;
  overflow-y: auto;
}

.lang-dropdown-content a {
  color: var(--color-cream);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.85rem;
  transition: background 0.2s ease;
}

.lang-dropdown-content a:hover {
  background-color: rgba(212, 168, 67, 0.1);
  color: var(--color-gold);
}

.lang-dropdown.active .lang-dropdown-content {
  display: block;
}

/* ================================
   Delivery Partners
   ================================ */
.delivery-partners {
  padding: 60px 0;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.delivery-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.delivery-info h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--color-gold);
}

.delivery-info p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.delivery-logos {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.delivery-logo img {
  height: 64px;
  width: auto;
  filter: grayscale(1) brightness(2) opacity(0.85);
  transition: all var(--transition-med);
}

.delivery-logo img:hover {
  filter: grayscale(0) brightness(1) opacity(1);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .delivery-grid {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .delivery-logos {
    justify-content: center;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .lang-dropdown {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .delivery-info h2 {
    font-size: 1.5rem;
  }
  .delivery-logos {
    gap: 30px;
  }
  .delivery-logo img {
    height: 24px;
  }
}

/* ================================
   Menu Specials & Legend
   ================================ */
.menu-info-labels {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.menu-info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-cream);
  font-size: 0.95rem;
  font-weight: 500;
}

.menu-info-label i {
  color: #22c55e;
}

.v2-spice-legend {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 30px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding: 15px 30px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(212, 168, 67, 0.2) !important;
  flex-wrap: wrap !important;
  margin: 20px auto !important;
  width: fit-content !important;
  position: relative !important;
}

.v2-spice-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: max-content !important;
  position: static !important;
}

.v2-spice-item span:last-child {
  font-size: 0.95rem !important;
  color: var(--color-cream) !important;
  font-weight: 500 !important;
  position: static !important;
}

.v2-spice-dot {
  width: 15px !important;
  height: 15px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  display: block !important;
  position: static !important;
}

.v2-red { background-color: #ef4444 !important; }
.v2-black { background-color: #1a1a1a !important; border: 1px solid #444 !important; }
.v2-brown { background-color: #92400e !important; }
.v2-blue { background-color: #3b82f6 !important; }

/* ================================
   Menu Category Images
   ================================ */
.menu-category-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background: #111;
}

.menu-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.9;
}

.menu-category:hover .menu-category-image img {
  transform: scale(1.05);
  opacity: 1;
}

@media (max-width: 768px) {
  .menu-category-image {
    height: 180px;
  }
}

/* ========== NEW BADGE & FEATURED CARD ========== */
.badge-new {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FFD700, #FF4500); /* Attractive Gold to Orange-Red */
  color: var(--color-white);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: badgePulse 2s infinite alternate;
}

@keyframes badgePulse {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4); }
  100% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(255, 69, 0, 0.7); }
}

.specialty-card.featured {
  grid-column: 1 / -1; /* ONLY SHAWAMA ON THE TOP */
  max-width: 900px;
  margin: 0 auto 30px auto;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.2);
}

.specialty-card.featured .specialty-card-img-wrapper {
  height: 350px; /* Taller image for the top-only featured item */
}

.specialty-card.featured .specialty-card-img {
  height: 100%;
}

@media (max-width: 992px) {
  .specialty-card.featured {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 768px) {
  .specialty-card.featured {
    grid-column: 1 / -1;
  }
}

/* ================================
   RESERVATION METHOD TOGGLE
   ================================ */
.res-method-toggle {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 28px;
  width: 100%;
  position: relative;
}

.res-method-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.res-method-btn i {
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.res-method-btn:hover:not(.active) {
  color: var(--color-cream);
  background: rgba(255, 255, 255, 0.05);
}

.res-method-btn.active {
  background: linear-gradient(135deg, var(--color-dark-red), var(--color-deep-red));
  color: var(--color-cream);
  box-shadow: 0 4px 18px rgba(138, 0, 0, 0.45);
}

/* WhatsApp active = green */
#btnMethodWA.active {
  background: linear-gradient(135deg, #1da851, #128C7E);
  box-shadow: 0 4px 18px rgba(29, 168, 81, 0.4);
}

#btnMethodWA.active i {
  color: #fff;
}

/* Email active = red-gold */
#btnMethodEmail.active {
  background: linear-gradient(135deg, var(--color-dark-red), var(--color-deep-red));
  box-shadow: 0 4px 18px rgba(138, 0, 0, 0.45);
}

#btnMethodEmail.active i {
  color: var(--color-gold-light);
}

/* Submit button disabled state */
#resSubmitBtn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

@media (max-width: 480px) {
  .res-method-btn {
    font-size: 0.82rem;
    padding: 11px 12px;
    gap: 7px;
  }

  .res-method-btn span {
    display: none;
  }

  .res-method-btn i {
    font-size: 1.3rem;
  }
}
