/*
Theme Name: Tetraa Theme
Theme URI: https://tetrapizza.com/
Author: King
Description: Custom theme generated from your original HTML/CSS/JS (Tetraa Pizza)
Version: 1.0.0
Text Domain: tetraa-theme
*/

/* ===== From index.html ===== */


        :root {
  --bg: #ffffff;
  --accent-red: #e11d30;
  --accent-gold: #fbbf24;
  --text: #111827;
  --muted: #6b7280;
  --card: #ffffff;
  --border: rgba(148, 163, 184, 0.35);
  --radius-xl: 1.5rem;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  background-image: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), url("assets/pizza-sketch-bg.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.35rem 0.75rem 4rem;
}

/* ================= HEADER / NAV ================= */

/* ================== HEADER / NAV ================== */

header {
  padding: 0.75rem 0;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
  transition: transform 0.18s ease;
}

header.scrolled {
  transform: translateY(-2px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(249, 250, 251, 0.96);
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
}

/* روابط الناف بار + اللغة */
.main-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.main-nav-links a {
  color: var(--muted);
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
  white-space: nowrap;
}

.main-nav-links a:hover {
  color: var(--text);
  background-color: #e5e7eb;
  transform: translateY(-1px);
}

.main-nav-links a.active {
  background-color: #111827;
  color: #f9fafb;
}

/* أزرار الاتصال والواتساب */
.nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: 0.4rem;
}

.nav-cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.45);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.nav-cta span {
  font-size: 1.1rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.6);
  filter: brightness(1.03);
}

/* واتساب أخضر */
.nav-cta.nav-cta--whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

.nav-cta.nav-cta--whatsapp:hover {
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.6);
  filter: brightness(1.03);
}



/* دلفرينا */
.nav-cta.nav-cta--delverina{
  background: linear-gradient(135deg, #111827, #374151);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.35);
}
.nav-cta.nav-cta--delverina:hover{
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.5);
  filter: brightness(1.03);
}
.nav-delverina-logo{
  height: 18px;
  width: auto;
  display: inline-block;
}
/* سويتش اللغة */
.lang-switch {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  font-size: 0.8rem;
  background-color: #f9fafb;
}

.lang-btn {
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
}

.lang-btn.active {
  background: #111827;
  color: #f9fafb;
}

/* زر الهامبرجر */
.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background-color: #111827;
  color: #f9fafb;
  display: none; /* مخفي في الدسكتوب */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: absolute;
  inset-inline-end: 0.6rem;
  top: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f9fafb;
  border-radius: 999px;
}

/* ================== ديسكتوب كبير ================== */
@media (min-width: 1180px) {
  .main-nav {
    flex-direction: row;
    justify-content: center;
  }

  .main-nav-links { display: inline-flex; }
  .nav-cta-group  { display: inline-flex; }
  .nav-toggle     { display: none; }
}

/* ================== آيباد / تابلت (الأهم لحالتك) ================== */
@media (min-width: 900px) and (max-width: 1179px) {
  .main-nav{
    width: 100%;
    max-width: 1000px;
    padding: 0.35rem 0.6rem;
    gap: 0.55rem;
  }

  .main-nav-links{
    display: inline-flex;
    gap: 0.45rem;
  }

  .main-nav-links a{
    padding: 0.26rem 0.55rem;
    font-size: 0.80rem;
  }

  .lang-switch{
    transform: scale(.92);
    transform-origin: center;
  }

  /* CTA سطر واحد + تصغير */
  .nav-cta-group{
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-inline-start: 0.2rem;
    flex-wrap: nowrap;      /* سطر واحد */
  }

  .nav-cta{
    padding: 0.32rem 0.70rem;
    font-size: 0.74rem;
    white-space: nowrap;    /* يمنع كسر النص داخل الزر */
  }

  .nav-delverina-logo{
    height: 16px;
    width: auto;
  }

  .nav-toggle{ display:none; }
}

/* ================== جوال / تابلت صغير ================== */
@media (max-width: 899px) {
  .main-nav {
    width: 100%;
    max-width: 480px;
    flex-direction: column;
    align-items: stretch;

    padding: 0.65rem 0.9rem 0.8rem;
    padding-inline-end: 3.25rem; /* مساحة للهامبرجر عشان ما يتداخل */
  }

  /* زر الهامبرجر يظهر */
  .nav-toggle {
    display: flex;
    order: 1;
  }

  /* CTA سطر واحد + تصغير */
  .nav-cta-group {
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.40rem;
    margin-inline-start: 0;
    flex-wrap: nowrap;     /* سطر واحد */
  }

  .nav-cta {
    padding: 0.32rem 0.70rem;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .nav-delverina-logo{
    height: 16px;
    width: auto;
  }

  /* الروابط واللغة منسدلة */
  .main-nav-links {
    order: 3;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }

  .main-nav-links a { text-align: center; }

  .lang-switch {
    align-self: center;
    margin-top: 0.15rem;
  }

  /* لما تفتح القائمة */
  .main-nav.nav-open .main-nav-links { display: flex; }
  .main-nav.nav-open { border-radius: 1.5rem; }
}

/* ================= HERO ================= */

.hero {
  padding: 1.6rem 0 3rem;
  position: relative;
  overflow: visible;
}

.hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 220px;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.18;
  pointer-events: none;
}

.hero::before {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.24), transparent 60%);
  top: -40px;
  right: -60px;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3), transparent 60%);
  bottom: -80px;
  left: -40px;
}

.hero-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

@media (min-width: 900px) {
  .hero-layout {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    align-items: center;
    gap: 3rem;
    direction: ltr;
  }
}

/* العمود الأيسر */

.hero-visual-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  position: relative;
}

.tuesday-offer,
.cheese-offer {
  font-weight: 800;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.6rem auto 1.4rem;
  position: relative;
  z-index: 4;
  box-shadow: 0 16px 40px rgba(248, 113, 113, 0.25);
}

.tuesday-offer {
  font-size: clamp(1.3rem, 2.3vw, 1.3rem);
  color: #991b1b;
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.96), rgba(255, 237, 213, 0.96));
}

.cheese-offer {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  color: #b45309;
  background: linear-gradient(135deg, rgba(254, 249, 195, 0.96), rgba(254, 243, 199, 0.96));
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.25);
}

/* الذيول */

.tuesday-offer::before,
.tuesday-offer::after,
.cheese-offer::before,
.cheese-offer::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: inherit;
  box-shadow: inherit;
  opacity: 0.96;
  border: 2px solid rgba(0, 0, 0, 0.03);
}

.tuesday-offer::before {
  width: 20px;
  height: 20px;
  bottom: -12px;
  right: 26px;
}

.tuesday-offer::after {
  width: 12px;
  height: 12px;
  bottom: -24px;
  right: 10px;
}

.cheese-offer::before {
  width: 20px;
  height: 20px;
  bottom: -12px;
  left: 24px;
}

.cheese-offer::after {
  width: 12px;
  height: 12px;
  bottom: -24px;
  left: 8px;
}

/* تموضع على الديسكتوب */

@media (min-width: 900px) {
  .hero-visual-left {
    align-items: flex-start;
    position: relative;
  }

  .hero-logo {
    max-width: 330px;
    margin-top: -25.8rem;
    margin-bottom: 0.8rem;
    transform: translateX(-150px);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.1));
    margin-left: -5%;
  }

  .tuesday-offer {
    position: absolute;
    top: -160px;
    right: 150px;
    left: auto;
    margin: 0;
    max-width: 18rem;
    justify-content: center;
    text-align: center;
    animation: tuesday-pop 1s ease-out forwards, tuesday-float 4s ease-in-out 1s infinite;
    border: 2px solid rgba(255, 255, 255, 0.8);
  }

  .cheese-offer {
    position: absolute;
    top: -150px;
    right: -155px;
    left: auto;
    margin: 0;
    max-width: 17rem;
    justify-content: center;
    text-align: center;
    animation: tuesday-pop 1s ease-out forwards, tuesday-float 4s ease-in-out 1s infinite;
    border: 2px solid rgba(255, 255, 255, 0.8);
  }
}

.hero-text-right {
  width: 100%;
  text-align: right;
}

@media (min-width: 900px) {
  .hero-text-right {
    padding-right: 0;
    margin-right: -1.5rem;
    justify-self: end;
    margin-top: 7.2rem;
  }
}

.hero-title {
  font-size: clamp(2rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 0.2rem;
  max-width: 32rem;
  margin-left: auto;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text);
  max-width: 32rem;
  margin-top: 0.6rem;
  margin-left: auto;
}

.hero-extra-wrap {
  margin-top: 0.7rem;
  max-width: 32rem;
  margin-left: auto;
}

.hero-extra {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.hero-extra strong {
  color: var(--accent-red);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.7rem;
  margin-top: 20rem;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(248, 113, 113, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 18px 40px rgba(248, 113, 113, 0.5);
}

.btn-secondary {
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background-color: #ffffffee;
  color: var(--muted);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}

.btn-secondary:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.25);
  transform: translateY(-1px);
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  margin-top: 0.6rem;
  max-width: 27rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero-layout {
    gap: 1.8rem;
  }

  .hero-text-right {
    text-align: center;
    padding-right: 0;
  }

  .hero-title,
  .hero-subtitle,
  .hero-extra-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-note {
    text-align: center;
  }
}

/* البيتزا الدوارة */

.pizza-orbit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}

.pizza-orbit {
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 14px solid #fee2e2;
  background: radial-gradient(circle, #fee2e2 0, #fecaca 45%, #fee2e2 100%);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.35), 0 0 0 22px rgba(248, 250, 252, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pizza-spin 26s linear infinite;
  overflow: hidden;
  position: relative;
}

.pizza-orbit::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.pizza-orbit img {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

@keyframes pizza-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 1.6rem;
  }

  .hero-layout {
    gap: 1.8rem;
  }

  .hero-visual-left {
    align-items: center;
  }

  .hero-logo {
    order: 1;
    margin-top: 0.8rem;
  }

  .tuesday-offer {
    order: 2;
    margin-top: 1rem;
  }

  .cheese-offer {
    order: 3;
    margin-top: 0.5rem;
  }

  .pizza-orbit-wrapper {
    order: 4;
    margin-top: 1rem;
  }

  .pizza-orbit {
    width: 310px;
    height: 310px;
  }
}

/* أنيميشن الفقاعات */

@keyframes tuesday-pop {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateX(-6px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateX(-10%) scale(1);
  }
}

@keyframes tuesday-float {
  0% {
    transform: translate(-10%, 0) scale(1);
    box-shadow: 0 16px 40px rgba(248, 113, 113, 0.35);
  }
  50% {
    transform: translate(-10%, -6px) scale(1.03);
    box-shadow: 0 22px 50px rgba(248, 113, 113, 0.5);
  }
  100% {
    transform: translate(-10%, 0) scale(1);
    box-shadow: 0 16px 40px rgba(248, 113, 113, 0.35);
  }
}

/* =============== SECTION FRAME / MENU =============== */

section {
  margin-top: 2.5rem;
}

.section-frame {
  position: relative;
  background: radial-gradient(circle at top, #ffffff, #f9fafb);
  border-radius: 1.8rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 1.4rem 1.25rem 1.6rem;
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

.section-header p {
  font-size: 0.85rem;
  color: var(--muted);
}

.card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 1.05rem 1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.card-list li {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.23rem;
}

.card-list li::before {
  content: "•";
  color: var(--accent-red);
  margin-top: 0.05rem;
}

.branch {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.branch strong {
  font-size: 0.9rem;
}

.branch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.branch-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.btn-ghost {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted);
  transition: background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}

.btn-ghost:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.25);
  transform: translateY(-1px);
}

/* MENU */

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.menu-row-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.7rem;
}

.menu-row-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

.menu-row-header span {
  font-size: 0.78rem;
  color: var(--muted);
}

.menu-strip {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
  background: radial-gradient(circle at top, #f9fafb, #ffffff);
  padding: 1.4rem 1.4rem 1.6rem;
  overflow: visible;
  user-select: auto;
  cursor: default;
}

.menu-strip .menu-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.menu-strip.no-scroll {
  overflow: visible;
  cursor: default;
}

.menu-strip.no-scroll .menu-track {
  justify-content: center;
}

.menu-card {
  width: 200px;
  height: 300px;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(248, 113, 113, 0.35) inset;
  border-color: rgba(248, 113, 113, 0.5);
}

.menu-card-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}

.menu-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.menu-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.25s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}

.menu-card-body {
  padding: 0.75rem 0.9rem 0.9rem;
  font-size: 0.85rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-body h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  font-weight: 800;
}

.menu-card-body p {
  font-size: 0.78rem;
  color: var(--muted);
}

.menu-card-tag {
  position: absolute;
  top: -12px;
  left: 14px;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.9);
  color: #f9fafb;
  font-size: 0.68rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.5);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .menu-card {
    width: 210px;
    height: 330px;
  }

  .menu-card-img {
    height: 160px;
  }
}

/* تبويب المنيو */

.menu-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  margin-top: 0.6rem;
}

.menu-category-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
  transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}

.menu-category-btn:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  color: #111827;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.25);
  transform: translateY(-1px);
}

.menu-category-btn.active {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  color: #f9fafb;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(248, 113, 113, 0.45);
  transform: translateY(-1px);
}

.menu-row {
  display: none;
  margin-top: 1.4rem;
}

.menu-row.active {
  display: block;
}

/* ================= FOOTER ================= */
/* ================= FOOTER ================= */

footer {
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding: 1.1rem 1.25rem 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
}

.footer-copy {
  width: 100%;
  text-align: right;
}

.footer-copy span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* سوشال ميديا */
.footer-socials {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-socials-label span {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.footer-socials-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.footer-socials-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background-color 0.12s ease,
              color 0.12s ease,
              transform 0.12s ease,
              box-shadow 0.12s ease;
}

.footer-socials-link i {
  line-height: 1;
}

.footer-socials-link:hover {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  color: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.45);
}

/* ===== صف تطبيق دلفرينا + البادجات ===== */
.footer-apps {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* سطر كامل للنص */
.footer-apps-text {
  flex: 0 0 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* سطر كامل للّوقو */
.footer-apps-logo {
  flex: 0 0 100%;
  height: 30px;
  width: auto;
  display: block;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
  object-fit: contain;

}

/* سطر ثالث: قوقل بلاي + أبل جنب بعض */
.footer-app-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background-color: #ffffff;
  transition: background-color 0.12s ease,
              box-shadow 0.12s ease,
              transform 0.12s ease,
              border-color 0.12s ease;
}

.footer-app-link img {
  height: 30px;
  max-width: 170px;
  display: block;
  transition: transform 0.12s ease;
}

.footer-app-link:hover {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.45);
  transform: translateY(-1px);
}

.footer-app-link:hover img {
  transform: translateY(-1px) scale(1.02);
}

/* تصغير بسيط في الجوال */
@media (max-width: 480px) {
  .footer-app-link img {
    height: 26px;
  }
}



/* ================= FAB BUTTONS ================= */

.call-fab,
.whatsapp-fab {
  position: fixed;
  left: 16px;
  z-index: 40;
}

.call-fab {
  bottom: 16px;
}

.whatsapp-fab {
  bottom: 90px;
}

.call-fab button {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, #fee2e2 0, #f97316 30%, #e11d30 60%, #7f1d1d 100%);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1.9rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}

.call-fab button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(248, 250, 252, 0.8);
  opacity: 0.9;
}

.call-fab button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.7);
}

.call-fab-label {
  position: absolute;
  right: 78px;
  bottom: 10px;
  background-color: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
}

.whatsapp-fab button {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, #bbf7d0 0, #22c55e 30%, #16a34a 60%, #065f46 100%);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1.9rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}

.whatsapp-fab button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(248, 250, 252, 0.8);
  opacity: 0.9;
}

.whatsapp-fab button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.8);
}

.whatsapp-fab-label {
  position: absolute;
  right: 78px;
  bottom: 10px;
  background-color: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .call-fab-label,
  .whatsapp-fab-label {
    display: none;
  }
}





      


/* ===== From about.html ===== */

    :root {
  --bg: #ffffff;
  --accent-red: #e11d30;
  --accent-gold: #fbbf24;
  --text: #111827;
  --muted: #6b7280;
  --card: #ffffff;
  --border: rgba(148, 163, 184, 0.35);
  --radius-xl: 1.5rem;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  background-image: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), url("assets/pizza-sketch-bg.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.35rem 0.75rem 4rem;
}

/* ========= HEADER & NAV (نفس الرئيسية) ========= */

header {
  padding: 0.75rem 0;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
  transition: transform 0.18s ease;
}

header.scrolled {
  transform: translateY(-2px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(249, 250, 251, 0.96);
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
}

/* روابط الناف بار + اللغة */
.main-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.main-nav-links a {
  color: var(--muted);
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
  white-space: nowrap;
}

.main-nav-links a:hover {
  color: var(--text);
  background-color: #e5e7eb;
  transform: translateY(-1px);
}

.main-nav-links a.active {
  background-color: #111827;
  color: #f9fafb;
}

/* أزرار الاتصال والواتساب */
.nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: 0.4rem;
}

.nav-cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.45);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.nav-cta span {
  font-size: 1.1rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.6);
  filter: brightness(1.03);
}

/* واتساب أخضر */
.nav-cta.nav-cta--whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

.nav-cta.nav-cta--whatsapp:hover {
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.6);
  filter: brightness(1.03);
}



/* دلفرينا */
.nav-cta.nav-cta--delverina{
  background: linear-gradient(135deg, #111827, #374151);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.35);
}
.nav-cta.nav-cta--delverina:hover{
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.5);
  filter: brightness(1.03);
}
.nav-delverina-logo{
  height: 18px;
  width: auto;
  display: inline-block;
}
/* سويتش اللغة */
.lang-switch {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  font-size: 0.8rem;
  background-color: #f9fafb;
}

.lang-btn {
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
}

.lang-btn.active {
  background: #111827;
  color: #f9fafb;
}

/* زر الهامبرجر */
.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background-color: #111827;
  color: #f9fafb;
  display: none; /* مخفي في الدسكتوب */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: absolute;
  inset-inline-end: 0.6rem;
  top: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f9fafb;
  border-radius: 999px;
}

/* ================== ديسكتوب (لابتوب/PC) ================== */
@media (min-width: 900px) {
  .main-nav {
    flex-direction: row;
    justify-content: center;
  }

  .main-nav-links {
    display: inline-flex;
  }

  .nav-cta-group {
    display: inline-flex;
  }

  .nav-toggle {
    display: none; /* لا يظهر في الديسكتوب */
  }
}

/* ================== جوال / تابلت ================== */
/* ================== جوال / تابلت ================== */
@media (max-width: 899px) {
  .main-nav {
    width: 100%;
    max-width: 480px;
    flex-direction: column;
    align-items: stretch;

    /* مهم: نخلي مساحة لزر الهامبرجر (لأنه positioned absolute عندك) */
    padding: 0.65rem 0.9rem 0.8rem;
    padding-inline-end: 3.25rem; /* في RTL = يسار، يمنع تداخل الأزرار مع الهامبرجر */
  }

  /* زر الهامبرجر يظهر */
  .nav-toggle {
    display: flex;
    order: 1;
  }

  /* أزرار الاتصال/واتساب/دلفرينا: سطر واحد + تصغير */
  .nav-cta-group {
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.45rem;
    margin-inline-start: 0;

    /* مهم: سطر واحد */
    flex-wrap: nowrap;
  }

  .nav-cta {
    padding: 0.34rem 0.78rem;
    font-size: 0.76rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
  }

  .nav-cta span {
    font-size: 0.95rem;
    margin-inline-start: 0.15rem;
  }

  /* لو زر دلفرينا فيه لوقو داخل الزر */
  .nav-delverina-logo {
    width: 18px;
    height: 18px;
  }

  /* الروابط واللغة منسدلة */
  .main-nav-links {
    order: 3;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }

  .main-nav-links a {
    text-align: center;
  }

  .lang-switch {
    align-self: center;
    margin-top: 0.15rem;
  }

  /* لما نفتـح القائمة */
  .main-nav.nav-open .main-nav-links {
    display: flex;
  }
}

/* (اختياري) شكل الناف لما تفتح القائمة */
@media (max-width: 899px) {
  .main-nav.nav-open {
    border-radius: 1.5rem;
  }
}

    /* ABOUT HERO – صورة البيتزا */
    .about-hero {
      position: relative;
      min-height: 55vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #f9fafb;
      padding: 3.5rem 1rem 3rem;
      background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)),
        url("assets/about-hero-pizza.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .about-hero-inner {
      max-width: 760px;
    }

    .about-hero-title {
      font-size: clamp(2rem, 3.2vw, 2.6rem);
      font-weight: 800;
      margin-bottom: 0.7rem;
    }

    .about-hero-title span {
      background: linear-gradient(135deg, var(--accent-gold), #ffffff);
      background-clip: text;
      color: transparent;
    }

    .about-hero-text {
      font-size: 0.98rem;
      opacity: 0.95;
    }

    .about-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.8rem;
      border-radius: 999px;
      border: 1px solid rgba(249, 250, 251, 0.7);
      background-color: rgba(15, 23, 42, 0.65);
      font-size: 0.78rem;
      margin-bottom: 0.8rem;
    }

    /* MAIN – بدون خلفية (شفافة) عشان تظهر الباترون تحت */
    .about-main {
      padding: 2.2rem 0 3.5rem;
    }

    .about-intro-card {
      max-width: 900px;
      margin: -2rem auto 2.2rem;
      background-color: #ffffff;
      border-radius: 1.6rem;
      border: 1px solid #e5e7eb;
      box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
      padding: 1.6rem 1.5rem;
      position: relative;
    }

    .about-intro-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid rgba(248, 113, 113, 0.33);
      opacity: 0.4;
      pointer-events: none;
    }

    .about-intro-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .about-intro-text {
      font-size: 0.92rem;
      color: var(--muted);
    }

    .about-intro-text strong {
      color: var(--accent-red);
    }

    /* 3 بلوكات */
    .about-highlights {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    @media (max-width: 900px) {
      .about-highlights {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .about-item {
      background-color: var(--card);
      border-radius: 1.5rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      padding: 0.9rem 0.9rem 1.1rem;
      text-align: right;
    }

    .about-item-img {
      width: 100%;
      border-radius: 1.2rem;
      overflow: hidden;
      margin-bottom: 0.7rem;
      background-color: #0f172a;
    }

    .about-item-img img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .about-item-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
    }

    .about-item-text {
      font-size: 0.86rem;
      color: var(--muted);
    }

    .about-item-text strong {
      color: var(--accent-red);
    }

    /* ====== NEW: PRO SECTIONS (انطلاقة/رسالة/ثقافة...) ====== */
    .about-pro-sections {
      max-width: 1100px;
      margin: 1.6rem auto 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.2rem;
    }

    @media (max-width: 900px) {
      .about-pro-sections {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .about-pro-card {
      background-color: #ffffff;
      border-radius: 1.5rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      padding: 1.05rem 1.05rem 1.1rem;
      position: relative;
      overflow: hidden;
    }

    .about-pro-card::before {
      content: "";
      position: absolute;
      inset: -30%;
      background: radial-gradient(circle at 30% 20%, rgba(248, 113, 113, 0.16), transparent 45%);
      pointer-events: none;
    }

    .about-pro-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      margin-bottom: 0.55rem;
      position: relative;
    }

    .about-pro-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.26rem 0.75rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.45);
      background: rgba(249, 250, 251, 0.92);
      color: #111827;
      font-size: 0.78rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .about-pro-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(248, 113, 113, 0.35);
      background: linear-gradient(135deg, rgba(225, 29, 48, 0.12), rgba(249, 115, 22, 0.08));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-red);
      font-size: 1.15rem;
      flex: 0 0 auto;
    }

    .about-pro-title {
      font-size: 1.05rem;
      font-weight: 900;
      margin: 0;
      position: relative;
    }

    .about-pro-text {
      font-size: 0.88rem;
      color: var(--muted);
      position: relative;
    }

    .about-pro-text strong {
      color: var(--accent-red);
    }

/* ================= FOOTER ================= */

footer {
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding: 1.1rem 1.25rem 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
}

.footer-copy {
  width: 100%;
  text-align: right;
}

.footer-copy span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* سوشال ميديا */
.footer-socials {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-socials-label span {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.footer-socials-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.footer-socials-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background-color 0.12s ease,
              color 0.12s ease,
              transform 0.12s ease,
              box-shadow 0.12s ease;
}

.footer-socials-link i {
  line-height: 1;
}

.footer-socials-link:hover {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  color: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.45);
}

/* ===== صف تطبيق دلفرينا + البادجات ===== */
.footer-apps {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* سطر كامل للنص */
.footer-apps-text {
  flex: 0 0 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* سطر كامل للّوقو */
.footer-apps-logo {
  flex: 0 0 100%;
  height: 30px;
  width: auto;
  display: block;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
  object-fit: contain;

}

/* سطر ثالث: قوقل بلاي + أبل جنب بعض */
.footer-app-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background-color: #ffffff;
  transition: background-color 0.12s ease,
              box-shadow 0.12s ease,
              transform 0.12s ease,
              border-color 0.12s ease;
}

.footer-app-link img {
  height: 30px;
  max-width: 170px;
  display: block;
  transition: transform 0.12s ease;
}

.footer-app-link:hover {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.45);
  transform: translateY(-1px);
}

.footer-app-link:hover img {
  transform: translateY(-1px) scale(1.02);
}

/* تصغير بسيط في الجوال */
@media (max-width: 480px) {
  .footer-app-link img {
    height: 26px;
  }
}



    /* FAB للاتصال بالرقم الموحد */
   /* CALL & WHATSAPP FAB */
.call-fab,
.whatsapp-fab {
  position: fixed;
  left: 16px;
  z-index: 40;
}

/* موضع كل دائرة */
.call-fab {
  bottom: 16px;
}

.whatsapp-fab {
  bottom: 90px; /* فوق دائرة الاتصال */
}

/* زر الاتصال (نفس اللي عندك تقريباً) */
.call-fab button {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, #fee2e2 0, #f97316 30%, #e11d30 60%, #7f1d1d 100%);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1.9rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}

.call-fab button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(248, 250, 252, 0.8);
  opacity: 0.9;
}

.call-fab button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.7);
}

.call-fab-label {
  position: absolute;
  right: 78px;
  bottom: 10px;
  background-color: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
}

/* دائرة الواتساب */
.whatsapp-fab button {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, #bbf7d0 0, #22c55e 30%, #16a34a 60%, #065f46 100%);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1.9rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}

.whatsapp-fab button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(248, 250, 252, 0.8);
  opacity: 0.9;
}

.whatsapp-fab button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.8);
}

.whatsapp-fab-label {
  position: absolute;
  right: 78px;
  bottom: 10px;
  background-color: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .call-fab-label,
  .whatsapp-fab-label {
    display: none;
  }
}

  


/* ===== From branches.html ===== */

    :root {
      --bg: #ffffff;
      --accent-red: #e11d30;
      --accent-gold: #fbbf24;
      --text: #111827;
      --muted: #6b7280;
      --card: #ffffff;
      --border: rgba(148, 163, 184, 0.35);
      --radius-xl: 1.5rem;
      --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
    }

    * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg);
      background-image: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), url("assets/pizza-sketch-bg.png");
      background-repeat: no-repeat;
      background-size: 100% auto;
      background-position: center top;
      background-attachment: fixed;
      color: var(--text);
      line-height: 1.7;
      min-height: 100vh;
      position: relative;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0.35rem 0.75rem 4rem;
    }

    /* HEADER (موحّد مع الصفحات الأخرى) */
    /* ========= رأس الصفحة + الناف بار (نفس الرئيسية بالضبط) ========= */

header {
  padding: 0.75rem 0;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
  transition: transform 0.18s ease;
}

header.scrolled {
  transform: translateY(-2px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(249, 250, 251, 0.96);
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
}

/* روابط الناف بار + اللغة */
.main-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.main-nav-links a {
  color: var(--muted);
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
  white-space: nowrap;
}

.main-nav-links a:hover {
  color: var(--text);
  background-color: #e5e7eb;
  transform: translateY(-1px);
}

.main-nav-links a.active {
  background-color: #111827;
  color: #f9fafb;
}

/* أزرار الاتصال والواتساب */
.nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: 0.4rem;
}

.nav-cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.45);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.nav-cta span {
  font-size: 1.1rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.6);
  filter: brightness(1.03);
}

/* واتساب أخضر */
.nav-cta.nav-cta--whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

.nav-cta.nav-cta--whatsapp:hover {
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.6);
  filter: brightness(1.03);
}



/* دلفرينا */
.nav-cta.nav-cta--delverina{
  background: linear-gradient(135deg, #111827, #374151);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.35);
}
.nav-cta.nav-cta--delverina:hover{
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.5);
  filter: brightness(1.03);
}
.nav-delverina-logo{
  height: 18px;
  width: auto;
  display: inline-block;
}
/* سويتش اللغة */
.lang-switch {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  font-size: 0.8rem;
  background-color: #f9fafb;
}

.lang-btn {
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
}

.lang-btn.active {
  background: #111827;
  color: #f9fafb;
}

/* زر الهامبرجر */
.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background-color: #111827;
  color: #f9fafb;
  display: none; /* مخفي في الدسكتوب */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: absolute;
  inset-inline-end: 0.6rem;
  top: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f9fafb;
  border-radius: 999px;
}

/* ================== ديسكتوب (لابتوب/PC) ================== */
@media (min-width: 900px) {
  .main-nav {
    flex-direction: row;
    justify-content: center;
  }

  .main-nav-links {
    display: inline-flex;
  }

  .nav-cta-group {
    display: inline-flex;
  }

  .nav-toggle {
    display: none; /* لا يظهر في الديسكتوب */
  }
}

/* ================== جوال / تابلت ================== */
/* ================== جوال / تابلت ================== */
@media (max-width: 899px) {
  .main-nav {
    width: 100%;
    max-width: 480px;
    flex-direction: column;
    align-items: stretch;

    /* مهم: نخلي مساحة لزر الهامبرجر (لأنه positioned absolute عندك) */
    padding: 0.65rem 0.9rem 0.8rem;
    padding-inline-end: 3.25rem; /* في RTL = يسار، يمنع تداخل الأزرار مع الهامبرجر */
  }

  /* زر الهامبرجر يظهر */
  .nav-toggle {
    display: flex;
    order: 1;
  }

  /* أزرار الاتصال/واتساب/دلفرينا: سطر واحد + تصغير */
  .nav-cta-group {
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.45rem;
    margin-inline-start: 0;

    /* مهم: سطر واحد */
    flex-wrap: nowrap;
  }

  .nav-cta {
    padding: 0.34rem 0.78rem;
    font-size: 0.76rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
  }

  .nav-cta span {
    font-size: 0.95rem;
    margin-inline-start: 0.15rem;
  }

  /* لو زر دلفرينا فيه لوقو داخل الزر */
  .nav-delverina-logo {
    width: 18px;
    height: 18px;
  }

  /* الروابط واللغة منسدلة */
  .main-nav-links {
    order: 3;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }

  .main-nav-links a {
    text-align: center;
  }

  .lang-switch {
    align-self: center;
    margin-top: 0.15rem;
  }

  /* لما نفتـح القائمة */
  .main-nav.nav-open .main-nav-links {
    display: flex;
  }
}

/* (اختياري) شكل الناف لما تفتح القائمة */
@media (max-width: 899px) {
  .main-nav.nav-open {
    border-radius: 1.5rem;
  }
}


    /* HERO TEXT */
    .branches-hero {
      margin-top: 1.8rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .branches-hero h1 {
      font-size: 1.9rem;
      font-weight: 800;
      margin-bottom: 0.2rem;
    }

    .branches-hero h2 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--muted);
      margin-bottom: 0.35rem;
    }

    .branches-hero p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    /* BRANCHES */
    .branches-section {
      margin-top: 1rem;
    }

    .branches-group {
      margin-bottom: 2rem;
    }

    .branches-group-title {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 0.8rem;
      display: flex;
      align-items: baseline;
      gap: 0.4rem;
    }

    .branches-group-title .en {
      font-size: 0.85rem;
      color: var(--muted);
      font-weight: 600;
    }

    .branches-group-title span.badge {
      font-size: 0.75rem;
      padding: 0.1rem 0.6rem;
      border-radius: 999px;
      background: rgba(248, 250, 252, 0.9);
      border: 1px solid #e5e7eb;
      color: var(--muted);
      margin-right: auto;
    }

    .branches-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
      gap: 1rem;
    }

    .branch-card {
      background-color: #ffffff;
      border-radius: 1.25rem;
      border: 1px solid rgba(148, 163, 184, 0.4);
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
      padding: 0.95rem 1rem 1.05rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .branch-card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.14), transparent 55%);
      opacity: 0;
      transition: opacity 0.18s ease;
      pointer-events: none;
    }

    .branch-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
      border-color: rgba(248, 113, 113, 0.55);
    }

    .branch-card:hover::before {
      opacity: 1;
    }

    .branch-name {
      margin-bottom: 0.15rem;
    }

    .branch-name-ar {
      display: block;
      font-size: 1rem;
      font-weight: 800;
    }

    .branch-name-en {
      display: block;
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 600;
    }

    .branch-city {
      font-size: 0.85rem;
      margin-bottom: 0.4rem;
    }

    .branch-city-ar {
      display: block;
      color: var(--muted);
    }

    .branch-city-en {
      display: block;
      font-size: 0.78rem;
      color: #9ca3af;
    }

    .branch-meta {
      font-size: 0.8rem;
      color: #4b5563;
      margin-bottom: 0.7rem;
    }

    .branch-map-link {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      font-size: 0.78rem;
      border: 1px solid #e5e7eb;
      background-color: #f9fafb;
      color: #111827;
      transition: background-color 0.12s ease, border-color 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
    }

    .branch-map-link:hover {
      background: linear-gradient(135deg, var(--accent-red), #f97316);
      color: #f9fafb;
      border-color: transparent;
      box-shadow: 0 12px 26px rgba(248, 113, 113, 0.5);
      transform: translateY(-1px);
    }

    .branch-map-link span.icon {
      font-size: 1rem;
    }

    .branch-map-link span.label-en {
      font-size: 0.75rem;
      opacity: 0.9;
    }

/* ================= FOOTER ================= */

footer {
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding: 1.1rem 1.25rem 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
}

.footer-copy {
  width: 100%;
  text-align: right;
}

.footer-copy span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* سوشال ميديا */
.footer-socials {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-socials-label span {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.footer-socials-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.footer-socials-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background-color 0.12s ease,
              color 0.12s ease,
              transform 0.12s ease,
              box-shadow 0.12s ease;
}

.footer-socials-link i {
  line-height: 1;
}

.footer-socials-link:hover {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  color: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.45);
}

/* ===== صف تطبيق دلفرينا + البادجات ===== */
.footer-apps {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* سطر كامل للنص */
.footer-apps-text {
  flex: 0 0 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* سطر كامل للّوقو */
.footer-apps-logo {
  flex: 0 0 100%;
  height: 30px;
  width: auto;
  display: block;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
  object-fit: contain;

}

/* سطر ثالث: قوقل بلاي + أبل جنب بعض */
.footer-app-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background-color: #ffffff;
  transition: background-color 0.12s ease,
              box-shadow 0.12s ease,
              transform 0.12s ease,
              border-color 0.12s ease;
}

.footer-app-link img {
  height: 30px;
  max-width: 170px;
  display: block;
  transition: transform 0.12s ease;
}

.footer-app-link:hover {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.45);
  transform: translateY(-1px);
}

.footer-app-link:hover img {
  transform: translateY(-1px) scale(1.02);
}

/* تصغير بسيط في الجوال */
@media (max-width: 480px) {
  .footer-app-link img {
    height: 26px;
  }
}



    /* CALL & WHATSAPP FAB */
.call-fab,
.whatsapp-fab {
  position: fixed;
  left: 16px;
  z-index: 40;
}

/* موضع كل دائرة */
.call-fab {
  bottom: 16px;
}

.whatsapp-fab {
  bottom: 90px; /* فوق دائرة الاتصال */
}

/* زر الاتصال (نفس اللي عندك تقريباً) */
.call-fab button {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, #fee2e2 0, #f97316 30%, #e11d30 60%, #7f1d1d 100%);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1.9rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}

.call-fab button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(248, 250, 252, 0.8);
  opacity: 0.9;
}

.call-fab button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.7);
}

.call-fab-label {
  position: absolute;
  right: 78px;
  bottom: 10px;
  background-color: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
}

/* دائرة الواتساب */
.whatsapp-fab button {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, #bbf7d0 0, #22c55e 30%, #16a34a 60%, #065f46 100%);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1.9rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}

.whatsapp-fab button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(248, 250, 252, 0.8);
  opacity: 0.9;
}

.whatsapp-fab button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.8);
}

.whatsapp-fab-label {
  position: absolute;
  right: 78px;
  bottom: 10px;
  background-color: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .call-fab-label,
  .whatsapp-fab-label {
    display: none;
  }
}

  


/* ===== From contact.html ===== */

    :root {
      --bg: #ffffff;
      --accent-red: #e11d30;
      --accent-gold: #fbbf24;
      --text: #111827;
      --muted: #6b7280;
      --card: #ffffff;
      --border: rgba(148, 163, 184, 0.35);
      --radius-xl: 1.5rem;
      --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
    }

    * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg);
      background-image: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), url("assets/pizza-sketch-bg.png");
      background-repeat: no-repeat;
      background-size: 100% auto;
      background-position: center top;
      background-attachment: fixed;
      color: var(--text);
      line-height: 1.7;
      min-height: 100vh;
      position: relative;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0.35rem 0.75rem 4rem;
    }

    /* HEADER */
   header {
  padding: 0.75rem 0;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
  transition: transform 0.18s ease;
}

header.scrolled {
  transform: translateY(-2px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(249, 250, 251, 0.96);
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
}

/* روابط الناف بار + اللغة */
.main-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.main-nav-links a {
  color: var(--muted);
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
  white-space: nowrap;
}

.main-nav-links a:hover {
  color: var(--text);
  background-color: #e5e7eb;
  transform: translateY(-1px);
}

.main-nav-links a.active {
  background-color: #111827;
  color: #f9fafb;
}

/* أزرار الاتصال والواتساب */
.nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: 0.4rem;
}

.nav-cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.45);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.nav-cta span {
  font-size: 1.1rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.6);
  filter: brightness(1.03);
}

/* واتساب أخضر */
.nav-cta.nav-cta--whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

.nav-cta.nav-cta--whatsapp:hover {
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.6);
  filter: brightness(1.03);
}



/* دلفرينا */
.nav-cta.nav-cta--delverina{
  background: linear-gradient(135deg, #111827, #374151);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.35);
}
.nav-cta.nav-cta--delverina:hover{
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.5);
  filter: brightness(1.03);
}
.nav-delverina-logo{
  height: 18px;
  width: auto;
  display: inline-block;
}
/* سويتش اللغة */
.lang-switch {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  font-size: 0.8rem;
  background-color: #f9fafb;
}

.lang-btn {
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
}

.lang-btn.active {
  background: #111827;
  color: #f9fafb;
}

/* زر الهامبرجر */
.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background-color: #111827;
  color: #f9fafb;
  display: none; /* مخفي في الدسكتوب */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: absolute;
  inset-inline-end: 0.6rem;
  top: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f9fafb;
  border-radius: 999px;
}

/* ================== ديسكتوب (لابتوب/PC) ================== */
@media (min-width: 900px) {
  .main-nav {
    flex-direction: row;
    justify-content: center;
  }

  .main-nav-links {
    display: inline-flex;
  }

  .nav-cta-group {
    display: inline-flex;
  }

  .nav-toggle {
    display: none; /* لا يظهر في الديسكتوب */
  }
}

/* ================== جوال / تابلت ================== */
/* ================== جوال / تابلت ================== */
@media (max-width: 899px) {
  .main-nav {
    width: 100%;
    max-width: 480px;
    flex-direction: column;
    align-items: stretch;

    /* مهم: نخلي مساحة لزر الهامبرجر (لأنه positioned absolute عندك) */
    padding: 0.65rem 0.9rem 0.8rem;
    padding-inline-end: 3.25rem; /* في RTL = يسار، يمنع تداخل الأزرار مع الهامبرجر */
  }

  /* زر الهامبرجر يظهر */
  .nav-toggle {
    display: flex;
    order: 1;
  }

  /* أزرار الاتصال/واتساب/دلفرينا: سطر واحد + تصغير */
  .nav-cta-group {
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.45rem;
    margin-inline-start: 0;

    /* مهم: سطر واحد */
    flex-wrap: nowrap;
  }

  .nav-cta {
    padding: 0.34rem 0.78rem;
    font-size: 0.76rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
  }

  .nav-cta span {
    font-size: 0.95rem;
    margin-inline-start: 0.15rem;
  }

  /* لو زر دلفرينا فيه لوقو داخل الزر */
  .nav-delverina-logo {
    width: 18px;
    height: 18px;
  }

  /* الروابط واللغة منسدلة */
  .main-nav-links {
    order: 3;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }

  .main-nav-links a {
    text-align: center;
  }

  .lang-switch {
    align-self: center;
    margin-top: 0.15rem;
  }

  /* لما نفتـح القائمة */
  .main-nav.nav-open .main-nav-links {
    display: flex;
  }
}

/* (اختياري) شكل الناف لما تفتح القائمة */
@media (max-width: 899px) {
  .main-nav.nav-open {
    border-radius: 1.5rem;
  }
}


    /* CONTACT SECTION */
    main {
      flex: 1;
    }

    .contact-wrapper {
      margin-top: 2.5rem;
    }

    .contact-frame {
      position: relative;
      background: radial-gradient(circle at top, #ffffff, #f9fafb);
      border-radius: 1.8rem;
      border: 1px solid #e5e7eb;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      padding: 1.8rem 1.5rem 2rem;
      overflow: hidden;
    }

    .contact-header {
      margin-bottom: 1.5rem;
    }

    .contact-header h1 {
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 0.4rem;
    }

    .contact-header p {
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 34rem;
    }

    .alert-success {
      margin-top: 0.75rem;
      padding: 0.6rem 0.8rem;
      border-radius: 0.9rem;
      font-size: 0.85rem;
      background-color: #ecfdf3;
      color: #166534;
      border: 1px solid #bbf7d0;
      display: none;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: flex-start;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .contact-card {
      background-color: var(--card);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      padding: 1.4rem 1.25rem 1.5rem;
    }

    .contact-card h2 {
      font-size: 1.1rem;
      margin-bottom: 0.8rem;
      font-weight: 700;
    }

    .contact-card p {
      font-size: 0.86rem;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .contact-info-list {
      list-style: none;
      padding: 0;
      margin-top: 0.4rem;
      font-size: 0.86rem;
      color: var(--muted);
    }

    .contact-info-list li {
      margin-bottom: 0.35rem;
    }

    /* FORM */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
    }

    @media (max-width: 640px) {
      .form-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      font-size: 0.86rem;
    }

    .form-group label {
      font-weight: 600;
    }

    .form-group span {
      color: #dc2626;
      font-size: 0.8rem;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select,
    textarea {
      border-radius: 0.9rem;
      border: 1px solid #e5e7eb;
      padding: 0.7rem 0.85rem;
      font-size: 0.9rem;
      outline: none;
      background-color: #f9fafb;
      transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: #f97316;
      box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.3);
      background-color: #ffffff;
    }

    textarea {
      resize: vertical;
      min-height: 130px;
      max-height: 260px;
    }

    .form-helper {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .form-actions {
      margin-top: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      padding: 0.75rem 1.5rem;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, var(--accent-red), #f97316);
      color: #ffffff;
      font-weight: 800;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
      box-shadow: 0 16px 32px rgba(248, 113, 113, 0.45);
      transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(1.03);
      box-shadow: 0 18px 40px rgba(248, 113, 113, 0.5);
    }

    .form-note {
      font-size: 0.78rem;
      color: var(--muted);
    }

/* ================= FOOTER ================= */

footer {
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding: 1.1rem 1.25rem 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
}

.footer-copy {
  width: 100%;
  text-align: right;
}

.footer-copy span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* سوشال ميديا */
.footer-socials {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-socials-label span {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.footer-socials-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.footer-socials-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background-color 0.12s ease,
              color 0.12s ease,
              transform 0.12s ease,
              box-shadow 0.12s ease;
}

.footer-socials-link i {
  line-height: 1;
}

.footer-socials-link:hover {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  color: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.45);
}

/* ===== صف تطبيق دلفرينا + البادجات ===== */
.footer-apps {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* سطر كامل للنص */
.footer-apps-text {
  flex: 0 0 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* سطر كامل للّوقو */
.footer-apps-logo {
  flex: 0 0 100%;
  height: 30px;
  width: auto;
  display: block;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
  object-fit: contain;

}

/* سطر ثالث: قوقل بلاي + أبل جنب بعض */
.footer-app-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background-color: #ffffff;
  transition: background-color 0.12s ease,
              box-shadow 0.12s ease,
              transform 0.12s ease,
              border-color 0.12s ease;
}

.footer-app-link img {
  height: 30px;
  max-width: 170px;
  display: block;
  transition: transform 0.12s ease;
}

.footer-app-link:hover {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.45);
  transform: translateY(-1px);
}

.footer-app-link:hover img {
  transform: translateY(-1px) scale(1.02);
}

/* تصغير بسيط في الجوال */
@media (max-width: 480px) {
  .footer-app-link img {
    height: 26px;
  }
}




    /* CALL & WHATSAPP FAB */
.call-fab,
.whatsapp-fab {
  position: fixed;
  left: 16px;
  z-index: 40;
}

/* موضع كل دائرة */
.call-fab {
  bottom: 16px;
}

.whatsapp-fab {
  bottom: 90px; /* فوق دائرة الاتصال */
}

/* زر الاتصال (نفس اللي عندك تقريباً) */
.call-fab button {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, #fee2e2 0, #f97316 30%, #e11d30 60%, #7f1d1d 100%);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1.9rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}

.call-fab button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(248, 250, 252, 0.8);
  opacity: 0.9;
}

.call-fab button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.7);
}

.call-fab-label {
  position: absolute;
  right: 78px;
  bottom: 10px;
  background-color: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
}

/* دائرة الواتساب */
.whatsapp-fab button {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, #bbf7d0 0, #22c55e 30%, #16a34a 60%, #065f46 100%);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1.9rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}

.whatsapp-fab button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(248, 250, 252, 0.8);
  opacity: 0.9;
}

.whatsapp-fab button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.8);
}

.whatsapp-fab-label {
  position: absolute;
  right: 78px;
  bottom: 10px;
  background-color: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .call-fab-label,
  .whatsapp-fab-label {
    display: none;
  }
}

  


/* ===== From investor.html ===== */

    :root {
      --bg: #ffffff;
      --accent-red: #e11d30;
      --accent-gold: #fbbf24;
      --text: #111827;
      --muted: #6b7280;
      --card: #ffffff;
      --border: rgba(148, 163, 184, 0.35);
      --radius-xl: 1.5rem;
      --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg);
      background-image: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), url("assets/pizza-sketch-bg.png");
      background-repeat: no-repeat;
      background-size: 100% auto;
      background-position: center top;
      background-attachment: fixed;
      color: var(--text);
      line-height: 1.7;
      min-height: 100vh;
      position: relative;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0.35rem 0.75rem 4rem;
    }

    /* HEADER */
    header {
  padding: 0.75rem 0;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
  transition: transform 0.18s ease;
}

header.scrolled {
  transform: translateY(-2px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(249, 250, 251, 0.96);
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
}

/* روابط الناف بار + اللغة */
.main-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.main-nav-links a {
  color: var(--muted);
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
  white-space: nowrap;
}

.main-nav-links a:hover {
  color: var(--text);
  background-color: #e5e7eb;
  transform: translateY(-1px);
}

.main-nav-links a.active {
  background-color: #111827;
  color: #f9fafb;
}

/* أزرار الاتصال والواتساب */
.nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: 0.4rem;
}

.nav-cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.45);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.nav-cta span {
  font-size: 1.1rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.6);
  filter: brightness(1.03);
}

/* واتساب أخضر */
.nav-cta.nav-cta--whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

.nav-cta.nav-cta--whatsapp:hover {
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.6);
  filter: brightness(1.03);
}



/* دلفرينا */
.nav-cta.nav-cta--delverina{
  background: linear-gradient(135deg, #111827, #374151);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.35);
}
.nav-cta.nav-cta--delverina:hover{
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.5);
  filter: brightness(1.03);
}
.nav-delverina-logo{
  height: 18px;
  width: auto;
  display: inline-block;
}
/* سويتش اللغة */
.lang-switch {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  font-size: 0.8rem;
  background-color: #f9fafb;
}

.lang-btn {
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
}

.lang-btn.active {
  background: #111827;
  color: #f9fafb;
}

/* زر الهامبرجر */
.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background-color: #111827;
  color: #f9fafb;
  display: none; /* مخفي في الدسكتوب */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: absolute;
  inset-inline-end: 0.6rem;
  top: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f9fafb;
  border-radius: 999px;
}

/* ================== ديسكتوب (لابتوب/PC) ================== */
@media (min-width: 900px) {
  .main-nav {
    flex-direction: row;
    justify-content: center;
  }

  .main-nav-links {
    display: inline-flex;
  }

  .nav-cta-group {
    display: inline-flex;
  }

  .nav-toggle {
    display: none; /* لا يظهر في الديسكتوب */
  }
}

/* ================== جوال / تابلت ================== */
/* ================== جوال / تابلت ================== */
@media (max-width: 899px) {
  .main-nav {
    width: 100%;
    max-width: 480px;
    flex-direction: column;
    align-items: stretch;

    /* مهم: نخلي مساحة لزر الهامبرجر (لأنه positioned absolute عندك) */
    padding: 0.65rem 0.9rem 0.8rem;
    padding-inline-end: 3.25rem; /* في RTL = يسار، يمنع تداخل الأزرار مع الهامبرجر */
  }

  /* زر الهامبرجر يظهر */
  .nav-toggle {
    display: flex;
    order: 1;
  }

  /* أزرار الاتصال/واتساب/دلفرينا: سطر واحد + تصغير */
  .nav-cta-group {
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.45rem;
    margin-inline-start: 0;

    /* مهم: سطر واحد */
    flex-wrap: nowrap;
  }

  .nav-cta {
    padding: 0.34rem 0.78rem;
    font-size: 0.76rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
  }

  .nav-cta span {
    font-size: 0.95rem;
    margin-inline-start: 0.15rem;
  }

  /* لو زر دلفرينا فيه لوقو داخل الزر */
  .nav-delverina-logo {
    width: 18px;
    height: 18px;
  }

  /* الروابط واللغة منسدلة */
  .main-nav-links {
    order: 3;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }

  .main-nav-links a {
    text-align: center;
  }

  .lang-switch {
    align-self: center;
    margin-top: 0.15rem;
  }

  /* لما نفتـح القائمة */
  .main-nav.nav-open .main-nav-links {
    display: flex;
  }
}

/* (اختياري) شكل الناف لما تفتح القائمة */
@media (max-width: 899px) {
  .main-nav.nav-open {
    border-radius: 1.5rem;
  }
}

    /* MAIN */
    main {
      flex: 1;
    }

    .contact-wrapper {
      margin-top: 2.5rem;
    }

    .contact-frame {
      position: relative;
      background: radial-gradient(circle at top, #ffffff, #f9fafb);
      border-radius: 1.8rem;
      border: 1px solid #e5e7eb;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      padding: 1.8rem 1.5rem 2rem;
      overflow: hidden;
    }

    .contact-header {
      margin-bottom: 1.5rem;
    }

    .contact-header h1 {
      font-size: 1.7rem;
      font-weight: 800;
      margin-bottom: 0.4rem;
    }

    .contact-header p {
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 38rem;
    }

    .contact-header .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      background-color: #fee2e2;
      color: #b91c1c;
      font-size: 0.78rem;
      margin-top: 0.4rem;
    }

    .alert-success {
      margin-top: 0.75rem;
      padding: 0.6rem 0.8rem;
      border-radius: 0.9rem;
      font-size: 0.85rem;
      background-color: #ecfdf3;
      color: #166534;
      border: 1px solid #bbf7d0;
      display: none;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: flex-start;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .contact-card {
      background-color: var(--card);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      padding: 1.4rem 1.25rem 1.5rem;
    }

    .contact-card h2 {
      font-size: 1.15rem;
      margin-bottom: 0.8rem;
      font-weight: 700;
    }

    .contact-card p {
      font-size: 0.86rem;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .contact-info-list {
      list-style: none;
      padding: 0;
      margin-top: 0.4rem;
      font-size: 0.86rem;
      color: var(--muted);
    }

    .contact-info-list li {
      margin-bottom: 0.35rem;
    }

    .contact-info-list li strong {
      display: block;
      margin-bottom: 0.1rem;
    }

    ul.benefits {
      list-style: disc;
      padding-inline-start: 1.3rem;
      font-size: 0.86rem;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    ul.benefits li {
      margin-bottom: 0.25rem;
    }

    /* FORM */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
    }

    @media (max-width: 640px) {
      .form-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      font-size: 0.86rem;
    }

    .form-group label {
      font-weight: 600;
    }

    .form-group span {
      color: #dc2626;
      font-size: 0.8rem;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select,
    textarea {
      border-radius: 0.9rem;
      border: 1px solid #e5e7eb;
      padding: 0.7rem 0.85rem;
      font-size: 0.9rem;
      outline: none;
      background-color: #f9fafb;
      transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: #f97316;
      box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.3);
      background-color: #ffffff;
    }

    textarea {
      resize: vertical;
      min-height: 130px;
      max-height: 260px;
    }

    .form-helper {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .form-actions {
      margin-top: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      padding: 0.75rem 1.5rem;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, var(--accent-red), #f97316);
      color: #ffffff;
      font-weight: 800;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
      box-shadow: 0 16px 32px rgba(248, 113, 113, 0.45);
      transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(1.03);
      box-shadow: 0 18px 40px rgba(248, 113, 113, 0.5);
    }

    .form-note {
      font-size: 0.78rem;
      color: var(--muted);
    }

    /* ================= FOOTER ================= */
    
footer {
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding: 1.1rem 1.25rem 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
}

.footer-copy {
  width: 100%;
  text-align: right;
}

.footer-copy span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* سوشال ميديا */
.footer-socials {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-socials-label span {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.footer-socials-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.footer-socials-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background-color 0.12s ease,
              color 0.12s ease,
              transform 0.12s ease,
              box-shadow 0.12s ease;
}

.footer-socials-link i {
  line-height: 1;
}

.footer-socials-link:hover {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  color: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.45);
}

/* ===== صف تطبيق دلفرينا + البادجات ===== */
.footer-apps {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* سطر كامل للنص */
.footer-apps-text {
  flex: 0 0 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* سطر كامل للّوقو */
.footer-apps-logo {
  flex: 0 0 100%;
  height: 30px;
  width: auto;
  display: block;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
  object-fit: contain;

}

/* سطر ثالث: قوقل بلاي + أبل جنب بعض */
.footer-app-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background-color: #ffffff;
  transition: background-color 0.12s ease,
              box-shadow 0.12s ease,
              transform 0.12s ease,
              border-color 0.12s ease;
}

.footer-app-link img {
  height: 30px;
  max-width: 170px;
  display: block;
  transition: transform 0.12s ease;
}

.footer-app-link:hover {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.45);
  transform: translateY(-1px);
}

.footer-app-link:hover img {
  transform: translateY(-1px) scale(1.02);
}

/* تصغير بسيط في الجوال */
@media (max-width: 480px) {
  .footer-app-link img {
    height: 26px;
  }
}



    /* CALL & WHATSAPP FAB */
.call-fab,
.whatsapp-fab {
  position: fixed;
  left: 16px;
  z-index: 40;
}

/* موضع كل دائرة */
.call-fab {
  bottom: 16px;
}

.whatsapp-fab {
  bottom: 90px; /* فوق دائرة الاتصال */
}

/* زر الاتصال (نفس اللي عندك تقريباً) */
.call-fab button {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, #fee2e2 0, #f97316 30%, #e11d30 60%, #7f1d1d 100%);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1.9rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}

.call-fab button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(248, 250, 252, 0.8);
  opacity: 0.9;
}

.call-fab button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.7);
}

.call-fab-label {
  position: absolute;
  right: 78px;
  bottom: 10px;
  background-color: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
}

/* دائرة الواتساب */
.whatsapp-fab button {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, #bbf7d0 0, #22c55e 30%, #16a34a 60%, #065f46 100%);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1.9rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}

.whatsapp-fab button::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(248, 250, 252, 0.8);
  opacity: 0.9;
}

.whatsapp-fab button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.8);
}

.whatsapp-fab-label {
  position: absolute;
  right: 78px;
  bottom: 10px;
  background-color: #111827;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .call-fab-label,
  .whatsapp-fab-label {
    display: none;
  }
}

  
