:root {
  --sea-blue: #00a8cc;
  --sea-light: #e0f7fa;
  --sky-blue: #0288d1;
  --sand-yellow: #ffb703;
  --coral-orange: #fb8500;
  --dark-text: #023047;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #f4fbfd;
  color: var(--dark-text);
  overflow-x: hidden;
}

.highlight { color: var(--sea-blue); }
.highlight-yellow { color: var(--sand-yellow); }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 8%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i { color: var(--sea-blue); }
.logo span { color: var(--coral-orange); font-size: 0.9rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--sea-blue);
  border-bottom: 2px solid var(--sea-blue);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-btn {
  background: #25d366;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-btn.phone-btn {
  background: var(--sky-blue);
}

.menu-toggle {
  display: none;
  font-size: 1.1rem;
  color: var(--dark-text);
  cursor: pointer;
  width: 38px;
  height: 38px;
  background: var(--sea-light);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1620') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(2, 48, 71, 0.3) 0%, rgba(2, 48, 71, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.2rem;
  margin: 1.2rem 0;
  font-weight: 900;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary { background: var(--sea-blue); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn:hover { transform: translateY(-3px); }

/* Features & Sections */
.features, .menu-section, .services-section, .social-section {
  padding: 5rem 8%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { font-size: 2.3rem; font-weight: 900; }
.section-header p { color: #546e7a; margin-top: 0.5rem; }

.cards-container, .menu-grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card, .menu-card, .service-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 168, 204, 0.08);
  border: 1px solid var(--sea-light);
  transition: 0.3s;
}

.card:hover, .menu-card:hover, .service-card:hover {
  transform: translateY(-8px);
  border-color: var(--sea-blue);
}

.icon-box, .service-icon {
  width: 65px;
  height: 65px;
  background: var(--sea-light);
  color: var(--sea-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
}

.menu-icon {
  font-size: 2.5rem;
  color: var(--coral-orange);
  margin-bottom: 1rem;
}

.card h3, .menu-card h3, .service-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.card p, .menu-card p, .service-card p { color: #607d8b; font-size: 0.95rem; line-height: 1.6; }

/* Clickable Menu Card */
.clickable {
  cursor: pointer;
}

.view-more {
  display: block;
  margin-top: 15px;
  color: var(--coral-orange);
  font-weight: bold;
  font-size: 0.9rem;
}

/* Modal Popup */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 48, 71, 0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-align: right;
}

.modal-content h2 {
  font-size: 1.4rem;
  color: var(--dark-text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-content h2 i { color: var(--coral-orange); }

.close-modal {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #888;
}

.meals-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meal-item {
  padding: 12px 15px;
  background-color: #f8fbfd;
  border-right: 4px solid var(--coral-orange);
  border-radius: 8px;
}

.meal-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
}

.meal-info i { color: var(--coral-orange); }

/* Social Section */
.social-section {
  background: var(--dark-text);
  text-align: center;
}

.section-header.white h2, .section-header.white p { color: #fff; }

.social-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.social-card:hover { transform: translateY(-3px); }
.social-card.instagram { background: #e1306c; }
.social-card.facebook { background: #1877f2; }
.social-card.tiktok { background: #000000; border: 1px solid rgba(255, 255, 255, 0.2); }

footer {
  background: #011627;
  color: #90a4ae;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .menu-toggle { display: flex; }
  .desktop-only { display: none; }

  .nav-links {
    position: absolute;
    top: 110%;
    left: 5%;
    width: 220px;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: none;
    text-align: right;
  }

  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; }

  .nav-btn-mobile {
    display: block;
    background: #25d366;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
  }

  .nav-btn-mobile.phone-btn { background: var(--sky-blue); }
  .hero h1 { font-size: 2.2rem; }
  .features, .menu-section, .services-section, .social-section { padding: 3rem 5%; }
}