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

:root {
  --primary: #1A169B;
  --primary-dark: #120E6B;
  --yellow: #FACF01;
  --yellow-dark: #F0C805;
  --orange: #FF8800;
  --orange-stroke: #D47100;
  --white: #ffffff;
  --bg: #F6F6F6;
  --text-dark: #1D1D1D;
  --text-mid: #454545;
  --text-light: #A9A9A9;
  --input-bg: #F6F7F9;
  --radius-lg: 48px;
  --radius-md: 40px;
  --radius-pill: 30px;
  --radius-sm: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 16px 24px 24px rgba(142, 147, 153, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--bg);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

/* ========== TOP STATUS BAR ========== */
.top-bar {
  background: var(--primary);
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-center {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.top-bar-icons a {
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.top-bar-icons a:hover {
  opacity: 1;
}

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand .logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s;
  padding: 8px 0;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow-dark);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-icons a {
  color: var(--primary);
  font-size: 18px;
  transition: color 0.3s;
}

.nav-icons a:hover {
  color: var(--yellow-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: 0.3s;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
  text-align: center;
}

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

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 207, 1, 0.35);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

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

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

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

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

.btn-sm {
  padding: 8px 22px;
  font-size: 13px;
}

/* ========== SECTION TITLES ========== */
.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--text-mid);
  font-size: 15px;
}

/* ========== HERO SECTION (Home) ========== */
.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 0 150px 150px;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-content {
  flex: 1;
  color: var(--white);
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero-content p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.9;
}

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

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image .main-dish {
  width: 370px;
  height: 370px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--yellow);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.hero-side-dishes {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 14px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hero-side-dishes .side-dish {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange-stroke);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Scroll indicator dots */
.hero-dots {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.hero-dots span {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--white);
  opacity: 0.5;
}

.hero-dots span.active {
  height: 18px;
  background: var(--yellow);
  opacity: 1;
}

/* ========== PAGE HERO (About / Contact / Menu) ========== */
.page-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 0 0 150px 150px;
}

.page-hero .hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding-top: 60px;
  padding-bottom: 80px;
}

.page-hero h1 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.9;
}

.page-hero-image {
  max-width: 660px;
  margin: 20px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.page-hero-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ========== FEATURED DISHES (Home) ========== */
.featured-dishes {
  padding: 70px 0;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.dish-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.dish-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dish-card .card-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}

.dish-card .badge-discount {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 52px;
  height: 52px;
  background: var(--orange);
  border: 2px solid var(--orange-stroke);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  z-index: 1;
}

.dish-card .card-body {
  padding: 18px 20px 10px;
}

.dish-card .card-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.dish-card .card-body p {
  font-size: 13px;
  color: var(--text-mid);
}

.dish-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid #eee;
}

.dish-card .price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.dish-card .price small {
  font-size: 13px;
  font-weight: 600;
}

.dish-card .star-rating {
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ========== APP DOWNLOAD SECTION ========== */
.app-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.app-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 450px;
  box-shadow: var(--shadow-lg);
}

.app-card .app-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.app-card .app-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-card .app-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(26,22,155,0.85) 35%, rgba(0,0,0,0.9) 100%);
}

.app-card .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 40px;
}

.app-content {
  flex: 1;
  color: var(--white);
}

.app-content h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
}

.app-content p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.9;
}

.app-buttons {
  display: flex;
  gap: 14px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 22px;
  border-radius: 14px;
  color: var(--white);
  transition: background 0.3s;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.store-btn i { font-size: 26px; }

.store-btn .store-text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
}

.store-btn .store-text strong { font-size: 15px; }

.app-phones {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: flex-end;
}

.phone-mockup {
  width: 160px;
  height: 330px;
  background: #111;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-mockup.phone-tall { height: 360px; }

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== RESERVATION / CTA ========== */
.reservation-section {
  padding: 70px 0;
}

.reservation-box {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.reservation-box h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.reservation-box p {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 28px;
  opacity: 0.8;
}

/* ========== CATEGORIES / GALLERY ========== */
.categories-section {
  padding: 70px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card .overlay {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.7) 100%);
  padding: 20px;
  color: var(--white);
}

.category-card .overlay h3 {
  font-size: 15px;
  font-weight: 700;
}

.category-card .cat-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  color: var(--text-dark);
  padding: 6px 18px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
}

/* ========== CHEF SECTION ========== */
.chef-section {
  padding: 70px 0;
}

.chef-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chef-card .chef-image {
  flex: 0 0 40%;
}

.chef-card .chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-card .chef-content {
  flex: 1;
  padding: 40px;
}

.chef-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.chef-content p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.9;
}

/* ========== YELLOW STRIP ========== */
.yellow-strip {
  background: var(--yellow);
  padding: 40px 0;
  text-align: center;
}

.yellow-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.yellow-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
}

.yellow-strip-item i {
  font-size: 28px;
}

.yellow-strip-item span {
  font-size: 15px;
  font-weight: 700;
}

/* ========== ABOUT PAGE ========== */
.about-story {
  padding: 60px 0;
  text-align: center;
}

.about-story h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-story h2 i {
  margin-left: 8px;
  color: var(--yellow);
}

.about-story p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.9;
}

/* Timeline */
.timeline-section { padding: 60px 0; }

.timeline {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 30%; right: 30%;
  height: 3px;
  background: var(--primary);
  opacity: 0.15;
}

.timeline-item {
  text-align: center;
  max-width: 240px;
  position: relative;
  z-index: 1;
}

.timeline-item .year-badge {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  background: var(--primary);
  padding: 6px 28px;
  border-radius: 25px;
  margin-bottom: 16px;
}

.timeline-item img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}

.timeline-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Stats */
.stats-section {
  padding: 48px 0;
  background: var(--yellow);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

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

.stat-item .stat-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-item .stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.stat-item .stat-label {
  font-size: 13px;
  color: var(--primary);
  opacity: 0.75;
}

/* Reviews */
.reviews-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.reviews-card {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.reviews-image {
  flex: 0 0 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.reviews-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.reviews-content {
  flex: 1;
}

.reviews-content .stars {
  color: var(--yellow);
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.reviews-content p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.9;
}

.reviews-content .reviewer {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

/* ========== MENU PAGE ========== */
.menu-section { padding: 60px 0; }

/* Category filter pills */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.menu-filters .filter-btn {
  background: var(--white);
  color: var(--text-dark);
  padding: 8px 24px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.menu-filters .filter-btn:hover,
.menu-filters .filter-btn.active {
  background: var(--primary);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 22px 18px 0;
  text-align: center;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.menu-card .badge-discount {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 52px;
  height: 52px;
  background: var(--orange);
  border: 2px solid var(--orange-stroke);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  z-index: 1;
}

.menu-card .card-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.menu-card .star-rating {
  color: var(--yellow);
  font-size: 12px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.menu-card .card-body {
  padding: 0 10px 10px;
}

.menu-card .card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.menu-card .card-body .description {
  font-size: 12px;
  color: var(--text-mid);
}

.menu-card .card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.menu-card .price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.menu-card .price small {
  font-size: 12px;
  font-weight: 600;
}

.menu-card .order-btn {
  background: var(--primary);
  color: var(--white);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s;
}

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

.menu-load-more {
  text-align: center;
  margin-top: 44px;
}

/* ========== CONTACT PAGE ========== */
.map-section { padding: 60px 0; }

.map-section .container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.map-wrapper {
  flex: 1.3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
  background: #e0e0e0;
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
}

.branches-list { flex: 0.7; }

.branches-list h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.branch-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
}

.branch-card img {
  width: 75px;
  height: 55px;
  object-fit: cover;
  border-radius: 10px;
}

.branch-card .branch-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.branch-card .branch-info p {
  font-size: 12px;
  color: var(--text-mid);
}

/* Contact Form & Info */
.contact-details { padding: 60px 0; }

.contact-details .container {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.contact-form-wrapper { flex: 1; }

.contact-form-wrapper h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  direction: rtl;
  background: var(--input-bg);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.contact-info-wrapper { flex: 1; }

.contact-info-box {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 18px;
  text-align: center;
}

.contact-info-box h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-info-box p {
  font-size: 14px;
  color: var(--primary);
  opacity: 0.8;
  line-height: 1.8;
}

.working-hours {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.working-hours .hours-icon {
  text-align: center;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.working-hours h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  text-align: center;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 22, 155, 0.12);
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

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

/* ========== NEWSLETTER (floating above footer) ========== */
.newsletter-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: -70px;
}

.newsletter {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 14px 20px 32px rgba(0, 0, 0, 0.15);
}

.newsletter h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.newsletter p {
  font-size: 13px;
  color: var(--primary);
  opacity: 0.75;
}

.newsletter-form {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-pill);
  overflow: hidden;
  min-width: 360px;
}

.newsletter-form input {
  padding: 12px 22px;
  border: none;
  font-family: inherit;
  font-size: 13px;
  flex: 1;
  direction: rtl;
  background: transparent;
}

.newsletter-form input:focus { outline: none; }

.newsletter-form button {
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 100px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,22,155,0.95), rgba(18,14,107,0.98));
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  text-align: center;
  margin-bottom: 28px;
}

.footer-brand-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-brand-center .footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-nav a {
  font-size: 13px;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--yellow);
}

.footer-social-center {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-social-center a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.3s, color 0.3s;
}

.footer-social-center a:hover {
  background: var(--yellow);
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero { border-radius: 0 0 80px 80px; }
  .page-hero { border-radius: 0 0 80px 80px; }

  .hero-content p { margin: 0 auto 30px; }
  .hero-buttons { justify-content: center; }

  .hero-image .main-dish { width: 280px; height: 280px; }
  .hero-side-dishes { display: none; }
  .hero-dots { display: none; }

  .dishes-grid,
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-card .container {
    flex-direction: column;
    text-align: center;
  }

  .app-buttons { justify-content: center; }

  .chef-card { flex-direction: column; }
  .chef-card .chef-image { flex: unset; height: 300px; }

  .reviews-card { flex-direction: column; }
  .reviews-image { flex: unset; }

  .map-section .container { flex-direction: column; }
  .contact-details .container { flex-direction: column; }

  .newsletter {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form { min-width: unset; width: 100%; }

  .stats-grid { gap: 40px; }
  .timeline::before { display: none; }

  .top-bar { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active { display: flex; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: 28px; }
  .page-hero h1 { font-size: 28px; }
  .hero { border-radius: 0 0 50px 50px; }
  .page-hero { border-radius: 0 0 50px 50px; }

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

  .categories-grid { grid-template-columns: 1fr; }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 14px;
  }

  .newsletter-form button {
    border-radius: 0 0 14px 14px;
  }

  .newsletter-form input { min-width: unset; }

  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .app-phones { flex-wrap: wrap; gap: 10px; }
  .phone-mockup { width: 130px; height: 270px; }

  .menu-card .card-image { width: 160px; height: 160px; }
  .navbar-brand .logo-img { height: 38px; }

  .menu-filters { gap: 8px; }
  .menu-filters .filter-btn { padding: 6px 16px; font-size: 12px; }
}
