/* ===================================
   MOBILE-FIRST RESPONSIVE STYLES
   =================================== */

/* ===================================
   MOBILE BASE STYLES (320px - 767px)
   =================================== */
@media (max-width: 767px) {

/* Reset and Base */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Ensure all images are visible on mobile */
.hero,
.about-image img,
.service-image img,
.portfolio-item img,
.testimonial-header img,
.menu-card img,
.package-card img,
.benefit-card img,
.why-us-card img,
.contact-card img {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Force all img tags to be visible */
img {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Container */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography - Mobile First */
.section-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-red);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ===================================
   MOBILE NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--color-white);
  flex-direction: column;
  padding: 5rem 1.5rem 2rem;
  box-shadow: var(--shadow-2xl);
  transition: left 0.3s ease;
  z-index: var(--z-modal);
  overflow-y: auto;
}

.nav-menu.active {
  left: 0;
}

.nav-menu li {
  width: 100%;
  border-bottom: 1px solid var(--color-gray-200);
}

.nav-menu a {
  display: block;
  color: var(--color-text);
  font-weight: 500;
  font-size: 1rem;
  padding: 1rem 0;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-red);
}

.nav-buttons {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--z-modal);
}

.menu-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay */
.nav-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ===================================
   MOBILE HERO SECTION
   =================================== */
.hero {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 300px;
  max-height: 500px;
  background: url('bg.JPG') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 0;
  display: block;
}

/* Ensure hero background image is visible */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('bg.JPG') center/cover no-repeat;
  z-index: -1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 280px;
}

/* Scroll Indicator */
.scroll-indicator {
  display: none;
}

/* ===================================
   MOBILE SECTION SPACING
   =================================== */
.about-section,
.why-us-section,
.services-section,
.portfolio-section,
.testimonials-section,
.contact-section,
.packages-section,
.packages-benefits,
.cta-section,
.menu-section {
  padding: 2.5rem 0;
}

/* ===================================
   MOBILE ABOUT SECTION
   =================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-image {
  order: -1;
  max-width: 100%;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.about-content {
  text-align: left;
}

.about-content h2 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.95rem;
  color: var(--color-gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-red);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.highlight-item span:last-child {
  font-size: 0.875rem;
  color: var(--color-gray-700);
  font-weight: 500;
}

/* ===================================
   MOBILE WHY CHOOSE US
   =================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.why-us-card {
  background: var(--color-white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
}

.why-us-icon {
  width: 48px;
  height: 48px;
  background: var(--color-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.why-us-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
}

.why-us-card h3 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.why-us-card p {
  color: var(--color-gray-600);
  line-height: 1.6;
  font-size: 0.875rem;
}

/* ===================================
   MOBILE SERVICES
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
}

.service-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-content {
  padding: 1rem;
  position: relative;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--color-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-white);
}

.service-card h3 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.service-link {
  color: var(--color-red);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

/* ===================================
   MOBILE PORTFOLIO
   =================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 0.875rem;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-red);
  color: var(--color-red);
  background: var(--color-white);
}

.filter-btn.active {
  background: var(--color-red);
  color: var(--color-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(155, 28, 28, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:active .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:active .portfolio-overlay h4 {
  transform: translateY(0);
}

.portfolio-overlay p {
  color: var(--color-white);
  font-size: 0.75rem;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay p,
.portfolio-item:active .portfolio-overlay p {
  transform: translateY(0);
}

/* ===================================
   MOBILE TESTIMONIALS
   =================================== */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.testimonial-card {
  flex: 1 1 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 4rem;
  font-family: var(--font-primary);
  color: var(--color-red);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-header img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-red);
}

.testimonial-info h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 0.25rem;
}

.testimonial-rating {
  color: var(--color-red);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.testimonial-text {
  color: var(--color-gray-700);
  line-height: 1.7;
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  color: var(--color-gray-700);
  font-weight: 500;
}

.testimonial-badge svg {
  width: 16px;
  height: 16px;
}

/* ===================================
   MOBILE CONTACT SECTION
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--color-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-white);
}

.contact-details h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 0.25rem;
}

.contact-details a,
.contact-details p {
  color: var(--color-gray-700);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}

.contact-form h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 1rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(155, 28, 28, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===================================
   MOBILE FOOTER
   =================================== */
.footer {
  background: var(--color-red);
  color: var(--color-white);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin: 0 auto;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-white);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.footer-social a:hover svg {
  fill: var(--color-red);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-align: center;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(3px);
}

.footer-contact {
  text-align: center;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.footer-contact a {
  color: var(--color-white);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ===================================
   MOBILE BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-red);
  border: 2px solid var(--color-red);
}

.btn-secondary:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  min-height: 40px;
}

/* ===================================
   MOBILE WHATSAPP FLOAT
   =================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: var(--z-fixed);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ===================================
   MOBILE PACKAGES
   =================================== */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.package-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 320px;
}

.package-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-red);
}

.package-card.featured {
  border: 2px solid var(--color-red);
  box-shadow: var(--shadow-md);
}

.package-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.package-header {
  padding: 1rem;
  background: var(--color-red);
  color: var(--color-white);
  text-align: center;
  position: relative;
}

.package-header h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.package-tagline {
  font-size: 0.8rem;
  opacity: 0.9;
}

.package-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.package-guests {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.package-guests h4 {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-red);
  margin-bottom: 0.25rem;
}

.package-features {
  flex: 1;
}

.package-features ul {
  list-style: none;
}

.package-features li {
  padding: 0.375rem 0;
  color: var(--color-gray-700);
  font-size: 0.875rem;
  line-height: 1.5;
}

.package-footer {
  padding: 0.75rem 1rem;
  background: var(--color-gray-50);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ===================================
   MOBILE PACKAGES BENEFITS
   =================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--color-white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
  text-align: center;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--color-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
}

.benefit-card h3 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===================================
   MOBILE CTA SECTION
   =================================== */
.cta-section {
  background: var(--color-red);
  padding: 2.5rem 0;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.cta-buttons .btn {
  width: 100%;
  max-width: 300px;
}

/* ===================================
   MOBILE MENU PAGE
   =================================== */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.menu-sidebar {
  position: static;
  max-height: none;
  overflow-y: visible;
  background: var(--color-red);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.menu-sidebar.mobile-tabs {
  display: flex;
  flex-direction: column;
}

.menu-sidebar.mobile-tabs .sidebar-header {
  display: none;
}

.menu-sidebar.mobile-tabs .menu-nav {
  display: flex;
  overflow-x: auto;
  gap: 0.5rem;
  padding: 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-sidebar.mobile-tabs .menu-nav::-webkit-scrollbar {
  display: none;
}

.menu-sidebar.mobile-tabs .menu-nav-btn {
  flex-shrink: 0;
  padding: 0.625rem 1rem;
  white-space: nowrap;
  font-size: 0.875rem;
}

.menu-sidebar.mobile-tabs .nav-icon {
  display: none;
}

.menu-controls {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box input {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 0.875rem;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(155, 28, 28, 0.1);
}

.search-box svg {
  position: absolute;
  right: 0.875rem;
  color: var(--color-gray-400);
}

.filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 0.5rem 0.875rem;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-tag:hover,
.filter-tag.active {
  border-color: var(--color-red);
  color: var(--color-red);
}

.filter-tag.active {
  background: var(--color-red);
  color: var(--color-white);
}

.menu-category {
  display: none;
  animation: fadeInUp 0.5s ease;
}

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

.category-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.category-header h2 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.category-header p {
  color: var(--color-gray-600);
  font-size: 0.9rem;
}

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

.menu-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-red);
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-red);
}

.menu-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.menu-card-header {
  margin-bottom: 1rem;
  padding-right: 80px;
}

.menu-card-header h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  color: var(--color-red);
  margin-bottom: 0.375rem;
}

.menu-type {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

.menu-items {
  list-style: none;
  margin-bottom: 1rem;
}

.menu-items li {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-gray-700);
  line-height: 1.6;
  font-size: 0.875rem;
}

.menu-items li:last-child {
  border-bottom: none;
}

.menu-items li strong {
  color: var(--color-red);
  font-weight: 600;
}

.menu-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-items-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.menu-item {
  background: var(--color-white);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
}

.menu-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-red);
  transform: translateY(-2px);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.item-header h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: var(--color-red);
  margin: 0;
}

.item-badge {
  padding: 0.25rem 0.625rem;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
}

.menu-item p {
  color: var(--color-gray-600);
  line-height: 1.6;
  margin: 0;
  font-size: 0.875rem;
}

/* ===================================
   MOBILE PAGE HEADER
   =================================== */
.page-header {
  background: url('food.jpg') center/cover no-repeat;
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.page-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--color-white);
  position: relative;
  z-index: 2;
}

/* ===================================
   MOBILE MODAL
   =================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-2xl);
  animation: slideUp 0.4s ease;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: var(--color-gray-100);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: rotate(90deg);
}

.modal-header {
  padding: 1.5rem 1rem;
  background: var(--color-red);
  color: var(--color-white);
  text-align: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header h2 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.modal-header p {
  opacity: 0.9;
  font-size: 0.9rem;
}

.modal-body {
  padding: 1.5rem 1rem;
}

.modal-body h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  color: var(--color-red);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body ul {
  list-style: none;
  margin-bottom: 1rem;
}

.modal-body li {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-gray-700);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.modal-body li::before {
  content: '✓';
  color: var(--color-red);
  font-weight: bold;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.modal-footer {
  padding: 1rem;
  background: var(--color-gray-50);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Fade Animations */
.fade-up,
.fade-left,
.fade-right {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ===================================
   MOBILE SCROLLBAR
   =================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-red);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-red-dark);
}

/* ===================================
   MOBILE SELECTION
   =================================== */
::selection {
  background: var(--color-red);
  color: var(--color-white);
}

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

/* ===================================
   MOBILE FOCUS STYLES
   =================================== */
:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

/* ===================================
   LANDSCAPE MOBILE
   =================================== */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 400px;
  }

  .page-header {
    padding: 5rem 0 2.5rem;
    margin-top: 50px;
  }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .navbar,
  .whatsapp-float,
  .scroll-indicator,
  .hero-buttons,
  .portfolio-filters,
  .testimonials-slider,
  .menu-controls,
  .menu-sidebar {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    text-decoration: underline;
  }
}

/* ===================================
   HIGH CONTRAST MODE
   =================================== */
@media (prefers-contrast: high) {
  .btn-primary,
  .btn-secondary {
    border: 2px solid #000;
  }
}

/* ===================================
   REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===================================
   DARK MODE (Optional)
   =================================== */
@media (prefers-color-scheme: dark) {
  /* Uncomment if dark mode is desired
  :root {
    --color-white: #1a1a1a;
    --color-gray-50: #2a2a2a;
    --color-gray-100: #333333;
    --color-gray-800: #f5f5f5;
    --color-gray-700: #e5e5e5;
  }

  body {
    background: var(--color-white);
    color: var(--color-gray-800);
  }
  */
}

} /* End of mobile media query */