/* ===== GLOBAL STYLES ===== */
:root {
  --bg: #fffdf7;
  --text-main: #333;
  --text-muted: #666;

  /* Fun Bold Palette */
  --blue: #007BFF;
  --blue-light: #00A8FF;
  --orange: #FF7A00;
  --orange-light: #FF9F1C;
  --green: #4CD964;
  --yellow: #FFC400;

  --card-radius: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.7;
}

.container {
  width: min(1100px, 100% - 2rem);
  margin: auto;
}

/* ====== SECTIONS ====== */
.section {
  padding: 3rem 0;
}

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

.section-header h2 {
  font-size: 2.3rem;
  font-weight: 900;
  text-align: center;
  color: #1F2A3B; /* strong dark navy */
  letter-spacing: -1px;
  position: relative;
  margin-bottom: 1rem;
}



.section-header p {
  margin: 0 auto;
  color: var(--text-muted);
  max-width: 450px;
  font-size: 1rem;
}

/* ===== BRANCH CARDS  ===== */
.branches-section {
  direction: rtl;
  background: radial-gradient(circle at top right, #eef6ff 0, #fffdf7 60%);
}

.branches-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.branch-card {
  position: relative;
  border-radius: var(--card-radius);
  padding: 1.5rem;
  /* lighter shadow */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
  color: #fff;
  border: none;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* BRANCH 1*/
.branch-1 {
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.78) 0%,
    rgba(0, 168, 255, 0.68) 100%
  );
}

/* BRANCH 2 */
.branch-2 {
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.8) 0%,
    rgba(255, 159, 28, 0.7) 100%
  );
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.branch-card::before,
.branch-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.branch-card::before {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.6);
  top: -30px;
  left: -30px;
}

.branch-card::after {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.22);
  bottom: -40px;
  right: -30px;
  opacity: 0.7;
}

.branch-header {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .5rem;
}

.branch-chip {
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
  font-size: .8rem;
  white-space: nowrap;
  font-weight: 700;
}

.branch-chip-main {
  background: rgba(255,255,255,0.28);
  color: #fff;
}

.branch-chip-status {
  position: relative;
  z-index: 5;      
  background: #4CD964; 
  font-weight: 700;
  padding: 0.22rem 0.8rem;
  border-radius: 999px;
  border: none;
  box-shadow: none;
  font-size: .82rem;
}
.branch-title {
  margin: .3rem 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.branch-address {
  margin: 0;
  font-size: .95rem;
  color: rgba(255,255,255,.92);
}

.branch-info-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.3rem;
}

.branch-info-list li {
  display: flex;
  gap: .4rem;
  margin-bottom: .4rem;
  color: rgba(255,255,255,0.92);
  font-size: .95rem;
}

.branch-info-icon {
  font-size: 1.2rem;
}

.btn-branch {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: .2s ease;
}

.btn-branch.primary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-branch.primary:hover {
  background: #fff;
  color: #000;
}

.branch-badge-icon {
  position: absolute;
  left: 1.4rem;
  bottom: 1.3rem;
  font-size: 1.8rem;
  opacity: .95;
}

.branches-note {
  margin-top: 1.5rem;
  text-align: right;
  color: #555;
  font-size: .95rem;
}

@media (max-width: 900px) {
  .branches-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .branch-card {
    padding: 1.3rem;
  }
}

/* ===== PAYMENT METHODS ===== */
.payments-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  justify-items: center;
}

.payment-card {
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.payment-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #e5e7eb;
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  z-index: 2;
}

.payment-card-card .payment-icon-wrap {
  border-color: #FF6A3D;
}

.payment-card-digital .payment-icon-wrap {
  border-color: #87CEFA;
}

.payment-card-cash .payment-icon-wrap {
  border-color: #4CD964;
}

.payment-icon-img {
  width: 65%;
  height: 65%;
  object-fit: contain;
}


.payment-content {
  margin-top: -22px;
  background: #ffffff;
  border-radius: 20px;
  padding: 2.3rem 1.4rem 1.2rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  width: 100%;
  max-width: 320px;
  border-top: 4px solid transparent;
  text-align: right;
  transition: .2s ease;
}


.payment-card-card .payment-content {
  border-top-color: #FF6A3D;
}

.payment-card-cash .payment-content {
  border-top-color: #4CD964;
}

.payment-card-digital .payment-content {
  border-top-color: #87CEFA;
}

.payment-content h3 {
  margin: 0 0 .4rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1f2937;
}


.payment-text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.55;
}


.payment-pill {
  display: inline-block;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: #FFE57F;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1f2937;
  box-shadow: 0 5px 14px rgba(0,0,0,0.13);
}

.payment-card-cash .payment-pill {
  background: #FFCC80;
}

.payment-card-digital .payment-pill {
  background: #DB7093;
}

.payment-card:hover .payment-content {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.payment-card:hover .payment-icon-wrap {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
}


@media (max-width: 900px) {
  .payments-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT / SOCIAL  ===== */
.contact-info-section {
  background: #f9fafb;
}

.contact-info-section .section-header p {
  max-width: 480px;
  margin-top: 0.4rem;
}

.contact-info-strip {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0; 
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-label {
  font-size: 0.78rem;
  color: #6b7280;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.contact-item-phone .contact-icon {
  background: rgba(76, 217, 100, 0.15);
}

.contact-item-facebook .contact-icon {
  background: rgba(24, 119, 242, 0.15);
}

.contact-item-instagram .contact-icon {
  background: rgba(225, 48, 108, 0.15);
}

.contact-item:hover .contact-value {
  text-decoration: underline;
}

.contact-item:hover .contact-icon {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}


@media (max-width: 600px) {
  .contact-info-strip {
    justify-content: flex-start;
  }

  .contact-item {
    width: 100%;
  }
}

.delivery-banner {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  background: #ffffff;
  border-right: 6px solid #4CD964; /* soft green accent */
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.delivery-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.delivery-text h2 {
  margin: 0 0 .2rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1f2937;
}

.delivery-text p {
  margin: 0;
  font-size: .9rem;
  color: #4b5563;
}

/* ===== HERO   ===== */


.hero-section {
  background: radial-gradient(circle at top right, #c4e2ff 0, #ffe5d0 70%);
  padding: 3.2rem 0 3rem;
}

.hero-logo {
  width: 140px;
  max-width: 40%;
  margin-bottom: 1rem;
  display: block;
  margin-right: 0; 
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
  animation: heroLogoPop 0.8s ease forwards;
}

@media (max-width: 600px) {
  .hero-logo {
    width: 100px;       
    max-width: 50%;      
    margin-bottom: 0.7rem;
  }
}

@keyframes heroLogoPop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text-block {
  text-align: right;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.hero-text-block h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #1f2937;
}

.hero-subtitle {
  margin: 0 0 1.4rem;
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.hero-btn-primary {
  background: linear-gradient(120deg, #ff6a3d, #ffb347);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  border: none;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.hero-btn-ghost {
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  color: #1f2937;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.7);
}

.hero-btn-ghost:hover {
  background: #ffffff;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero-chip {
  font-size: 0.82rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  color: #4b5563;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.18);
}

.hero-bubble-main {
  width: 150px;
  height: 150px;
  font-size: 3rem;
}

.hero-bubble-small {
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
  position: absolute;
}

.hero-bubble-1 {
  top: 12%;
  right: 10%;
  background: #fee2e2;
}

.hero-bubble-2 {
  bottom: 8%;
  left: 12%;
  background: #e0f2fe;
}

.hero-badge {
  position: absolute;
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
  color: #111827;
}

.hero-badge-age {
  top: 15%;
  left: 8%;
}

.hero-badge-delivery {
  bottom: 15%;
  right: 6%;
}

.hero-bubble-main {
  animation: heroFloat 4.5s ease-in-out infinite;
}

.hero-bubble-small {
  animation: heroFloatSmall 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes heroFloatSmall {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }
}

/* ===== GALLERY ===== */
.gallery-section {
  background: radial-gradient(circle at top left, #eef6ff 0, #fffdf7 60%);
}

.gallery-section .section-header p {
  max-width: 480px;
  margin-top: 0.4rem;
}

.gallery-carousel {
  margin-top: 1.8rem;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.gallery-track {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* 16:9 */
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.08);
}

.gallery-prev {
  right: 12px;
}

.gallery-next {
  left: 12px;
}

.gallery-dots {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease, transform 0.1s ease;
}

.gallery-dot.active {
  width: 24px;
  background: #ff6a3d;
  transform: translateY(-1px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-carousel {
    border-radius: 16px;
  }

  .gallery-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .gallery-dot {
    width: 8px;
    height: 8px;
  }

  .gallery-dot.active {
    width: 18px;
  }
}

.about-section {
  background: #ffffff;
  padding: 3rem 1rem;
}

.about-section .section-header h2 {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: right;
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.mv-block {
  flex: 1;
  min-width: 260px;
  max-width: 420px;
  background: #f9fafb;
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.mv-block h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #1f2937;
  margin-bottom: 0.8rem;
}

.mv-block p,
.mv-block ul {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
}

.mv-block ul {
  list-style: disc inside;
}

.mv-block ul li {
  margin-bottom: 0.6rem;
}