/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables */
:root {
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --secondary: #f5f5f5;
  --text: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Primary color rgba variants */
  --primary-rgba-02: rgba(220, 38, 38, 0.2);
  --primary-rgba-03: rgba(220, 38, 38, 0.3);
  --primary-rgba-01: rgba(220, 38, 38, 0.1);
  --primary-rgba-15: rgba(220, 38, 38, 0.15);
  --primary-dark-rgba-03: rgba(185, 28, 28, 0.3);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

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

.btn-secondary:hover {
  background: var(--secondary);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--secondary);
}

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

.btn-white:hover {
  background: var(--secondary);
}

.btn-white-outline {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

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

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.1);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.2s;
  white-space: nowrap;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-adana {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95em;
  opacity: 0.9;
}

.logo-text {
  color: var(--primary);
  font-weight: 700;
}

.logo-bio {
  color: #22c55e;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
  padding: 0 0.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1em;
}

.logo-bio::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22c55e, #16a34a, transparent);
  opacity: 0.6;
  border-radius: 2px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav > a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.desktop-nav > a:hover {
  color: var(--primary);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.dropbtn:hover {
  color: var(--primary);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  background: var(--white);
  min-width: 16rem;
  border-radius: 0.375rem;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  z-index: 1000;
}

/* Invisible bridge to prevent menu from closing when moving mouse */
.dropdown-content::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background: var(--secondary);
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

/* Dropdown gap fix - prevents menu from closing when moving mouse */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.5rem;
  z-index: 1001;
}

/* Dropdown gap fix - prevents menu from closing when moving mouse */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}

.dropdown-scroll {
  max-height: 24rem;
  overflow-y: auto;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 1rem 0;
}

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

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.mobile-menu details {
  margin: 0.5rem 0;
}

.mobile-menu summary {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.mobile-menu .submenu {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-menu .submenu a {
  padding: 0.25rem 0;
  font-size: 0.875rem;
}

.submenu-scroll {
  max-height: 16rem;
  overflow-y: auto;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-cta .btn {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  justify-content: center;
}

.mobile-cta .btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 4px var(--primary-rgba-02);
}

.mobile-cta .btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 8px var(--primary-dark-rgba-03);
}

.mobile-cta .btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.mobile-cta .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-rgba-03) 0%, var(--primary-dark-rgba-03) 100%);
}

.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 48rem;
  padding: 0 1rem;
}

.slide-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.slide-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slider-nav.prev {
  left: 1rem;
}

.slider-nav.next {
  right: 1rem;
}

/* Hero (fallback) */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 6rem 0;
}

.hero-content {
  max-width: 48rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Features */
.features {
  padding: 4rem 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary-rgba-01);
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Page Banner */
.page-banner {
  background: #111827;
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

.page-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.page-banner p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 48rem;
  margin: 0 auto;
}

/* About Page Styles */
.about-content {
  padding: 2rem 0 4rem;
  background: var(--white);
}

.about-text {
  max-width: 60rem;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 60rem;
  margin: 3rem auto;
  padding: 0 1rem;
}

.about-feature-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-rgba-15);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.about-feature-icon svg {
  width: 24px;
  height: 24px;
}

.about-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.about-feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.about-cta {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.2);
  margin: 4rem auto 0;
  max-width: 60rem;
}

.about-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.about-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-buttons .btn-white-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

.about-cta-buttons .btn-white-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.about-cta-buttons .btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

.about-cta-buttons .btn-white:hover {
  background: var(--secondary);
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem auto;
  }

  .about-feature-card {
    padding: 0;
  }

  .about-feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .about-feature-card h3 {
    font-size: 1.25rem;
  }

  .about-cta h2 {
    font-size: 2rem;
  }

  .about-cta p {
    font-size: 1rem;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-cta-buttons .btn-white-outline,
  .about-cta-buttons .btn-white {
    width: 100%;
    max-width: 300px;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 42rem;
  margin: 0 auto;
}

/* Services */
.services {
  padding: 4rem 0;
  background: var(--secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-content .btn {
  width: 100%;
}

/* Floating CTA Buttons */
.floating-cta {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 998;
}

.floating-cta .btn {
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
}

/* CTA */
.cta {
  padding: 4rem 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Regions */
.regions {
  padding: 4rem 0;
  background: var(--white);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.region-item {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}

.region-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

/* Menu Samples */
.menu-samples {
  padding: 4rem 0;
  background: var(--secondary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s;
}

.menu-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.menu-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.menu-card-content {
  padding: 1.5rem;
  text-align: center;
}

.menu-card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.menu-card-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.menu-quantity-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.menu-quantity-buttons .btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  flex: 1;
  min-width: 80px;
}

.menu-card .btn {
  width: 100%;
}

.hidden-service,
.hidden-menu {
  display: none;
}

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

.menu-cta {
  text-align: center;
}

/* Footer */
.footer {
  background: #1f2937;
  color: var(--white);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-col p {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
}

/* WhatsApp link in footer - green background, white text */
.footer-contact a[href*="wa.me"],
.footer-contact a[href*="whatsapp"] {
  background: #25D366;
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-contact a[href*="wa.me"]:hover,
.footer-contact a[href*="whatsapp"]:hover {
  background: #20ba5a;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Visitor Counter */
.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: #9ca3af;
}

.visitor-counter .counter-label {
  color: #9ca3af;
}

.visitor-counter .counter-value {
  font-weight: 600;
  color: var(--primary);
}

.visitor-counter .counter-today {
  color: #9ca3af;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid #374151;
}

/* Responsive */
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .header-cta {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero h1 {
    font-size: 3.75rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 450px;
  }

  .slide-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0.75rem;
  }

  .slide-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .slide-subtitle {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .slide-content p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .slide-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .slide-buttons .btn {
    width: 100%;
  }

  .menu-quantity-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu-quantity-buttons .btn-sm {
    width: 100%;
  }

  .menu-card img {
    height: 10rem;
  }

  .slider-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .slider-nav.prev {
    left: 0.5rem;
  }

  .slider-nav.next {
    right: 0.5rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .page-banner {
    padding: 2rem 0 1.5rem;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .page-banner p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.875rem;
  }

  .cta-content h2 {
    font-size: 1.875rem;
  }

  .services-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .visitor-counter {
    font-size: 0.75rem;
    padding: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .visitor-counter .counter-today {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #374151;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    left: 1rem;
    right: auto;
    width: 3rem;
    height: 3rem;
  }

  .floating-cta {
    bottom: 1.5rem;
    right: 1rem;
    left: auto;
    gap: 1rem;
    flex-direction: column;
  }

  .floating-cta .btn {
    min-width: 120px;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-text,
  .logo-bio {
    font-size: inherit;
  }

}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: var(--secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-left,
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.contact-card-red {
  background: var(--primary);
  color: var(--white);
  width: 100%;
}

.contact-card-red h2,
.contact-card-red h3,
.contact-card-red p {
  color: var(--white);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-card-red h2,
.contact-card-red h3 {
  color: var(--white);
}

.contact-phone {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.contact-phone:hover {
  color: var(--primary-dark);
}

.contact-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.contact-card-red .contact-note {
  color: rgba(255, 255, 255, 0.9);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
  width: 100%;
  margin-top: 1rem;
}

.btn-whatsapp:hover {
  background: #20ba5a;
}

.contact-address {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.9375rem;
}

.contact-hours {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card-red .contact-hours {
  color: var(--white);
}

.contact-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.contact-cta-buttons .btn {
  flex: 1;
  min-width: 150px;
}

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

.btn-white:hover {
  background: var(--secondary);
}

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

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

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.contact-regions {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.9375rem;
}

@media (max-width: 968px) {
  .contact-section {
    padding: 2rem 0;
  }

  .contact-section .container {
    padding: 0 1rem;
  }

  .contact-section .section-header {
    padding: 0;
    margin-bottom: 2rem;
  }

  .contact-section .section-header h1 {
    font-size: 2rem;
  }

  .contact-section .section-header p {
    font-size: 0.9375rem;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    max-width: 100%;
    padding: 0;
  }

  .contact-left,
  .contact-right {
    gap: 1.25rem;
  }

  .contact-card {
    padding: 1.5rem;
    width: 100%;
  }

  .contact-card h3 {
    font-size: 1.125rem;
  }

  .contact-card h2 {
    font-size: 1.5rem;
  }

  .contact-card-red {
    width: 100% !important;
  }

  .contact-phone {
    font-size: 1.5rem;
    word-break: break-all;
  }

  .contact-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-cta-buttons .btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .contact-hours {
    font-size: 1.25rem;
  }

  .contact-regions {
    font-size: 0.875rem;
  }

  .btn-whatsapp {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .page-banner {
    padding: 2rem 0;
  }

  .page-banner h1 {
    font-size: 1.875rem;
  }

  .page-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 1.5rem 0;
  }

  .contact-section .container {
    padding: 0 0.75rem;
  }

  .contact-section .section-header {
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .contact-section .section-header h1 {
    font-size: 1.75rem;
  }

  .contact-section .section-header p {
    font-size: 0.875rem;
  }

  .page-banner {
    padding: 1.5rem 0;
  }

  .page-banner h1 {
    font-size: 1.5rem;
  }

  .page-banner p {
    font-size: 0.9375rem;
  }

  .contact-grid {
    gap: 1rem;
    padding: 0;
  }

  .contact-card {
    padding: 1.25rem;
    width: 100%;
  }

  .contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .contact-card h2 {
    font-size: 1.25rem;
  }

  .contact-phone {
    font-size: 1.25rem;
    word-break: break-all;
  }

  .contact-icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.75rem;
  }

  .contact-note {
    font-size: 0.8125rem;
  }

  .contact-hours {
    font-size: 1.125rem;
  }

  .contact-regions {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  .contact-list li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
  }

  .contact-address {
    font-size: 0.875rem;
  }

  .btn-whatsapp {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.125rem;
    gap: 0.125rem;
  }

  .logo-text,
  .logo-bio {
    font-size: inherit;
  }

  .logo-bio::before {
    height: 1.5px;
  }

  .about-content {
    padding: 2rem 0;
  }

  .about-text {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .about-text p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

  .about-features {
    gap: 1rem;
    margin: 2rem auto;
  }

  .about-feature-card {
    padding: 0;
  }

  .whatsapp-float {
    bottom: 1.25rem;
    left: 0.75rem;
    right: auto;
    width: 2.75rem;
    height: 2.75rem;
  }

  .floating-cta {
    bottom: 1.25rem;
    right: 0.75rem;
    left: auto;
    gap: 0.875rem;
  }

  .floating-cta .btn {
    min-width: 110px;
    padding: 0.6875rem 0.875rem;
    font-size: 0.75rem;
  }

  .about-feature-card h3 {
    font-size: 1.125rem;
  }

  .about-feature-card p {
    font-size: 0.875rem;
  }

  .about-cta {
    padding: 2rem 1rem;
    margin: 2rem auto 0;
  }

  .about-cta h2 {
    font-size: 1.5rem;
  }

  .about-cta p {
    font-size: 0.9375rem;
  }
}

/* Print */
@media print {
  .whatsapp-float,
  .visitor-counter,
  .header-cta,
  .mobile-menu-btn {
    display: none;
  }
}
