@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1a2e5e;
  --navy-d: #0f1d3d;
  --red: #cc2936;
  --red-d: #a01e29;
  --gold: #d4a017;
  --gold-l: #f0c040;
  --bg: #f8f5f0;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-l: #666666;
  --border: #e0d5c8;
  --font-ar: 'Cairo', sans-serif;
  --font-es: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-es); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.7; }
body.lang-ar { font-family: var(--font-ar); direction: rtl; text-align: right; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.section-tag {
  display: inline-block;
  background: rgba(212,160,23,0.15);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-title.centered { text-align: center; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-l);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.section-subtitle.centered { text-align: center; margin-left: auto; margin-right: auto; }

.lang-ar .section-title, .lang-ar .section-subtitle, .lang-ar .section-tag { font-family: var(--font-ar); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-whatsapp i { font-size: 1.25em; }
.nav-whatsapp i { font-size: 1.15em; }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 700; }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* === Language Toggle === */
.lang-toggle { display: flex; align-items: center; background: rgba(255,255,255,0.15); border-radius: 50px; padding: 3px; gap: 2px; }
.lang-btn { padding: 6px 14px; border-radius: 50px; border: none; background: transparent; color: rgba(255,255,255,0.8); cursor: pointer; font-size: 0.85rem; font-weight: 600; transition: var(--transition); font-family: inherit; }
.lang-btn.active { background: var(--white); color: var(--navy); }

/* === Navigation === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: var(--transition); padding: 18px 0;
}
.navbar.scrolled { background: var(--navy); padding: 12px 0; box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; border: 2px solid var(--gold); }
.nav-logo-name { font-family: var(--font-display); font-size: 1rem; color: var(--white); font-weight: 700; line-height: 1.2; }
.nav-logo-sub { font-size: 0.65rem; color: var(--gold-l); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; padding: 8px 12px; border-radius: var(--radius-sm); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.15); color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-whatsapp { background: #25D366; color: white; padding: 8px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.nav-whatsapp:hover { background: #128C7E; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* === Mobile Menu === */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 1001; padding: 100px 32px 40px; flex-direction: column; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.15rem; font-weight: 600; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 12px; }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; color: var(--white); font-size: 1.8rem; cursor: pointer; background: none; border: none; line-height: 1; }
.lang-ar .mobile-menu-close { right: auto; left: 24px; }
.mobile-lang { display: flex; gap: 12px; margin-top: 24px; }
.mobile-lang button { padding: 10px 24px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.3); background: transparent; color: white; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: inherit; }
.mobile-lang button.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.mobile-wa { display: flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 16px 24px; border-radius: 50px; font-weight: 700; font-size: 1rem; margin-top: 16px; border-bottom: none !important; }

/* === Hero === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--navy-d); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,29,61,0.92) 0%, rgba(204,41,54,0.3) 50%, rgba(15,29,61,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 130px 24px 80px; max-width: 900px; margin: 0 auto; }
.hero-logo { width: 140px; height: 140px; border-radius: 50%; object-fit: contain; margin: 0 auto 28px; border: 4px solid var(--gold); box-shadow: 0 0 60px rgba(212,160,23,0.4); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,164,0,0.2); border: 1px solid #00a000; color: #4cdf4c; padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 24px; letter-spacing: 1px; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.15; margin-bottom: 8px; text-shadow: 2px 2px 12px rgba(0,0,0,0.4); }
.hero-title-ar { font-family: var(--font-ar); font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; color: var(--gold-l); margin-bottom: 20px; }
.hero-tagline { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto 16px; line-height: 1.8; }
.hero-tagline-ar { font-family: var(--font-ar); font-size: 1rem; color: rgba(255,255,255,0.7); margin: 0 auto 32px; max-width: 580px; }
.hero-notice {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 10px 28px; border-radius: 50px; font-weight: 800; font-size: 0.9rem;
  margin-bottom: 40px; letter-spacing: 0.5px;
  animation: glow 2.5s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212,160,23,0); }
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); text-align: center; cursor: pointer; }
.hero-scroll span { display: block; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.hero-scroll svg { width: 22px; height: 22px; animation: bounceY 2s ease-in-out infinite; }
@keyframes bounceY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* === Services Section === */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 48px; }
.service-card { background: var(--bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-media { position: relative; height: 240px; overflow: hidden; background: var(--navy); }
.service-card-media video { width: 100%; height: 100%; object-fit: cover; }
.service-slideshow { position: absolute; inset: 0; }
.service-slideshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: slideFade 9s linear infinite; }
.service-slideshow img:nth-child(1) { animation-delay: 0s; }
.service-slideshow img:nth-child(2) { animation-delay: 3s; }
.service-slideshow img:nth-child(3) { animation-delay: 6s; }
@keyframes slideFade { 0%, 33% { opacity: 1; } 40%, 100% { opacity: 0; } }
.service-card-media-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,29,61,0.85) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 20px; }
.service-card-icon { width: 48px; height: 48px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.service-card-body { padding: 24px; }
.service-card-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.service-card-title-ar { font-family: var(--font-ar); font-size: 1.05rem; color: var(--red); margin-bottom: 12px; }
.service-card-desc { color: var(--text-l); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.service-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.btn-service-navy, .btn-service-red {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 16px 24px; border-radius: 14px;
  font-size: 1rem; font-weight: 700; cursor: pointer; border: none;
  text-decoration: none; font-family: inherit; position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-service-navy { background: linear-gradient(135deg, #1a2e5e 0%, #0f1d3d 60%, #2a4080 100%); color: #fff; box-shadow: 0 6px 24px rgba(26,46,94,0.45); }
.btn-service-red  { background: linear-gradient(135deg, #cc2936 0%, #a01e28 60%, #e03545 100%); color: #fff; box-shadow: 0 6px 24px rgba(204,41,54,0.45); }
.btn-service-navy:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(26,46,94,0.6); }
.btn-service-red:hover  { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(204,41,54,0.6); }
.btn-service-navy::before, .btn-service-red::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-service-navy:hover::before, .btn-service-red:hover::before { left: 150%; }
.btn-service-icon { font-size: 1.2rem; opacity: 0.9; flex-shrink: 0; }
.btn-service-text { flex: 1; text-align: center; letter-spacing: 0.3px; }
.btn-service-arrow { font-size: 0.9rem; flex-shrink: 0; transition: transform 0.3s ease; }
.btn-service-navy:hover .btn-service-arrow,
.btn-service-red:hover .btn-service-arrow { transform: translateX(5px); }
.tag { background: rgba(26,46,94,0.08); color: var(--navy); padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.tag-halal { background: rgba(0,164,0,0.1); color: #006400; }

/* === Halal Section === */
.halal-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%); color: var(--white); text-align: center; padding: 80px 0; }
.halal-icon { width: 110px; height: 110px; background: linear-gradient(135deg, #006400, #00a000); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; font-size: 2.8rem; border: 4px solid var(--gold); box-shadow: 0 0 50px rgba(0,164,0,0.25); }
.halal-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 8px; }
.halal-title-ar { font-family: var(--font-ar); color: var(--gold-l); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 24px; }
.halal-desc { max-width: 680px; margin: 0 auto 40px; color: rgba(255,255,255,0.82); line-height: 1.85; }
.halal-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.halal-point { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.08); padding: 16px 22px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.12); }
.halal-point-icon { width: 40px; height: 40px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1.1rem; flex-shrink: 0; }
.halal-point-text { font-size: 0.9rem; font-weight: 600; }
.halal-point-text span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 400; font-family: var(--font-ar); margin-top: 2px; }

/* === Video Gallery === */
.video-gallery { background: var(--bg); }
.gallery-tabs { display: flex; gap: 8px; justify-content: center; margin: 32px 0; flex-wrap: wrap; }
.gallery-tab { padding: 10px 24px; border-radius: 50px; border: 2px solid var(--navy); background: transparent; color: var(--navy); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: inherit; }
.gallery-tab.active, .gallery-tab:hover { background: var(--navy); color: var(--white); }
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 9/16; background: var(--navy-d); cursor: pointer; }
.gallery-item video, .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover video, .gallery-item:hover > img { transform: scale(1.05); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,29,61,0.65) 0%, rgba(15,29,61,0.15) 55%, transparent 100%); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.gallery-item:hover .gallery-item-overlay { background: linear-gradient(to top, rgba(15,29,61,0.88) 0%, rgba(15,29,61,0.35) 100%); }
.play-btn { width: 56px; height: 56px; background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1.3rem; box-shadow: 0 0 0 6px rgba(255,255,255,0.2); transition: var(--transition); }
.gallery-item:hover .play-btn { background: var(--gold); color: var(--navy); transform: scale(1.12); box-shadow: 0 0 0 8px rgba(212,160,23,0.25); }

/* === Occasions === */
.occasions { background: var(--white); }
.occasions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin: 40px 0; }
.occasion-card { text-align: center; padding: 28px 16px; border-radius: var(--radius); background: var(--bg); border: 2px solid transparent; transition: var(--transition); cursor: default; }
.occasion-card:hover { border-color: var(--gold); background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow); }
.occasion-icon { font-size: 2.4rem; margin-bottom: 14px; }
.occasion-title { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.occasion-title-ar { font-family: var(--font-ar); font-size: 0.88rem; color: var(--red); }

/* === Delivery Section === */
.delivery-section { background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%); color: var(--white); text-align: center; padding: 80px 0; }
.delivery-icon { font-size: 3.5rem; margin-bottom: 20px; }
.delivery-title { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 10px; }
.delivery-title-ar { font-family: var(--font-ar); color: rgba(255,255,255,0.85); font-size: clamp(1.2rem, 2.5vw, 1.7rem); margin-bottom: 20px; }
.delivery-desc { font-size: 1rem; color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 32px; line-height: 1.8; }
.delivery-features { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 32px; }
.delivery-feature { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); padding: 10px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; }

/* === Order Section === */
.order-section { background: var(--bg); }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.order-info h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 16px; }
.order-info h3 span { display: block; font-family: var(--font-ar); font-size: 1.1rem; color: var(--red); font-weight: 600; margin-top: 4px; }
.order-info p { color: var(--text-l); line-height: 1.8; margin-bottom: 28px; }
.order-methods { display: flex; flex-direction: column; gap: 14px; }
.order-method { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.order-method:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.order-method-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.order-method-icon.wa { background: #25D366; color: white; }
.order-method-icon.insta { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
.order-method-icon.map { background: var(--red); color: white; }
.order-method-label { font-size: 0.75rem; color: var(--text-l); }
.order-method-value { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.order-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.order-form h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 24px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem; transition: var(--transition); background: var(--bg); color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); background: var(--white); }
.form-group textarea { height: 110px; resize: vertical; }

/* === Location === */
.location-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.location-info h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 28px; }
.location-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.location-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.location-text h4 { font-weight: 700; color: var(--navy); margin-bottom: 3px; font-size: 0.95rem; }
.location-text p { color: var(--text-l); font-size: 0.88rem; }
.location-map-card { background: var(--bg); border-radius: var(--radius-lg); padding: 48px 32px; text-align: center; border: 2px dashed var(--border); box-shadow: var(--shadow-sm); }
.location-map-icon { font-size: 4rem; margin-bottom: 20px; }
.location-map-card h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.location-map-card p { color: var(--text-l); margin-bottom: 24px; font-size: 0.9rem; }

/* === Blog Preview === */
.blog-preview { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-header { background: var(--navy); padding: 20px 24px; display: flex; align-items: center; gap: 10px; }
.blog-card-lang { background: var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 800; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; }
.blog-card-cat { color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.blog-card-body { padding: 24px; }
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.45; }
.blog-card-title.ar { font-family: var(--font-ar); font-size: 1.05rem; }
.blog-card-excerpt { font-size: 0.85rem; color: var(--text-l); line-height: 1.7; margin-bottom: 18px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; border-top: 1px solid var(--border); }
.blog-date { font-size: 0.78rem; color: var(--text-l); }
.blog-read { font-size: 0.82rem; font-weight: 700; color: var(--red); display: flex; align-items: center; gap: 4px; transition: var(--transition); }
.blog-read:hover { color: var(--navy); }

/* === Instagram === */
.instagram-section { background: var(--white); text-align: center; padding: 80px 0; }
.instagram-link { display: inline-flex; align-items: center; gap: 14px; background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); color: var(--white); padding: 18px 40px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; margin-top: 32px; transition: var(--transition); }
.instagram-link:hover { opacity: 0.92; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.instagram-handle { font-family: var(--font-ar); font-size: 1.2rem; color: var(--text-l); margin-top: 16px; }

/* === Footer === */
.footer { background: var(--navy-d); color: rgba(255,255,255,0.75); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 58px; height: 58px; border-radius: 50%; object-fit: contain; border: 2px solid var(--gold); }
.footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.footer-desc { font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 1rem; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-col h4 { color: var(--gold-l); font-size: 0.85rem; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold-l); padding-left: 4px; }
.lang-ar .footer-links a:hover { padding-left: 0; padding-right: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 12px; }

/* === Floating WhatsApp === */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.lang-ar .whatsapp-float { right: auto; left: 28px; align-items: flex-start; }
.whatsapp-float-label { background: var(--navy); color: white; padding: 8px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; white-space: nowrap; box-shadow: var(--shadow); opacity: 0; transform: translateX(10px); transition: all 0.4s ease; pointer-events: none; }
.lang-ar .whatsapp-float-label { transform: translateX(-10px); }
.whatsapp-float:hover .whatsapp-float-label { opacity: 1; transform: translateX(0); }
.whatsapp-float-btn { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.7rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45); animation: floatAnim 3s ease-in-out infinite; }
.whatsapp-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); animation: none; }
@keyframes floatAnim { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* === Page Hero (inner pages) === */
.page-hero { position: relative; background: var(--navy); color: var(--white); text-align: center; padding: 140px 0 80px; overflow: hidden; }
.page-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; z-index: 0; pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 10px; }
.page-hero-title-ar { font-family: var(--font-ar); font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--gold-l); margin-bottom: 20px; }
.page-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto; }
.breadcrumb { background: var(--bg); padding: 14px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-l); }
.breadcrumb-list a { color: var(--navy); font-weight: 600; }

/* === Product Grid (inner pages) === */
.products-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 32px 0 40px; }
.filter-btn { padding: 8px 20px; border-radius: 50px; border: 2px solid var(--navy); background: transparent; color: var(--navy); font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: inherit; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card-media { position: relative; height: 280px; background: var(--navy-d); overflow: hidden; cursor: pointer; }
.product-card-media video, .product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card-media:hover video, .product-card-media:hover img { transform: scale(1.04); }
.product-card-media::after { content: '\f065'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff; background: rgba(15,29,61,0.45); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.product-card-media:hover::after { opacity: 1; }
.product-card-body { padding: 20px; }
.product-card-title { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.product-card-title-ar { font-family: var(--font-ar); font-size: 0.9rem; color: var(--red); margin-bottom: 10px; }
.product-card-desc { font-size: 0.85rem; color: var(--text-l); line-height: 1.7; margin-bottom: 14px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }

/* === Blog Post === */
.blog-post-wrap { max-width: 820px; margin: 0 auto; padding: 60px 24px 80px; }
.blog-post-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.blog-post-lang { background: var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 800; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; }
.blog-post-cat { font-size: 0.82rem; color: var(--red); font-weight: 600; }
.blog-post-date { font-size: 0.82rem; color: var(--text-l); }
.blog-post-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 24px; }
.blog-post-title.ar { font-family: var(--font-ar); }
.blog-post-intro { font-size: 1.08rem; color: var(--text-l); line-height: 1.85; border-left: 4px solid var(--gold); padding-left: 20px; margin-bottom: 40px; }
.lang-ar .blog-post-intro { border-left: none; border-right: 4px solid var(--gold); padding-left: 0; padding-right: 20px; }
.blog-post-body h2 { font-size: 1.4rem; color: var(--navy); margin: 36px 0 14px; font-weight: 700; }
.blog-post-body h3 { font-size: 1.1rem; color: var(--navy); margin: 24px 0 10px; font-weight: 600; }
.blog-post-body p { margin-bottom: 18px; line-height: 1.85; color: var(--text); }
.blog-post-body ul { margin: 16px 0 16px 24px; }
.lang-ar .blog-post-body ul { margin-left: 0; margin-right: 24px; }
.blog-post-body li { margin-bottom: 8px; color: var(--text); line-height: 1.7; }
.blog-post-body blockquote { border-left: 4px solid var(--gold); padding: 16px 20px; background: rgba(212,160,23,0.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 28px 0; color: var(--navy); font-style: italic; }
.lang-ar .blog-post-body blockquote { border-left: none; border-right: 4px solid var(--gold); border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.blog-cta { background: linear-gradient(135deg, var(--navy), var(--navy-d)); color: var(--white); padding: 40px; border-radius: var(--radius-lg); text-align: center; margin: 40px 0; }
.blog-cta h3 { font-size: 1.4rem; margin-bottom: 10px; }
.blog-cta p { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 0.95rem; }
.blog-related { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.blog-related h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 24px; font-weight: 700; }

/* === About Page === */
.about-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card { text-align: center; background: var(--white); padding: 32px 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 16px; border: 3px solid var(--gold); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.value-card { padding: 28px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-title span { display: block; font-family: var(--font-ar); font-size: 0.9rem; color: var(--red); margin-top: 2px; }

/* === Fade In === */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* === Language Show/Hide === */
.es-content { display: block; }
.ar-content { display: none; }
.lang-ar .es-content { display: none; }
.lang-ar .ar-content { display: block; }
.es-inline { display: inline; }
.ar-inline { display: none; }
.lang-ar .es-inline { display: none; }
.lang-ar .ar-inline { display: inline; }
.es-flex { display: flex; }
.ar-flex { display: none; }
.lang-ar .es-flex { display: none; }
.lang-ar .ar-flex { display: flex; }

/* Video modal */
.vid-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.vid-modal-close { position: absolute; top: 20px; right: 24px; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }
.vid-modal video { max-width: 100%; max-height: 90vh; border-radius: 8px; }

/* === Responsive === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .order-grid, .about-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .order-grid { gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { gap: 24px; }
}

@media (max-width: 768px) {
  /* Core layout */
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* Navigation */
  .nav-links, .nav-logo-sub { display: none; }
  .hamburger { display: flex; }
  .nav-logo-name { font-size: 0.88rem; }
  .nav-whatsapp { padding: 8px 12px; font-size: 0.78rem; gap: 5px; }

  /* Hero (index) */
  .hero-content { padding: 100px 20px 64px; }
  .hero-logo { width: 100px; height: 100px; }

  /* Page hero (inner pages) */
  .page-hero { padding: 110px 0 56px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card-media { height: 190px; }
  .service-card-body { padding: 18px; }
  .service-card-title { font-size: 1.1rem; }
  .btn-service-navy, .btn-service-red { padding: 13px 16px; font-size: 0.88rem; gap: 8px; border-radius: 12px; }
  .btn-service-icon { font-size: 1rem; }
  .btn-service-arrow { font-size: 0.8rem; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card-media { height: 200px; }
  .product-card-body { padding: 16px; }
  .product-card-title { font-size: 0.95rem; }

  /* Gallery */
  .gallery-tabs {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    gap: 6px;
  }
  .gallery-tabs::-webkit-scrollbar { display: none; }
  .gallery-tab { white-space: nowrap; flex-shrink: 0; padding: 9px 18px; font-size: 0.85rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Products filter */
  .products-filter {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    gap: 8px;
  }
  .products-filter::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; padding: 8px 16px; font-size: 0.82rem; }

  /* Occasions */
  .occasions-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .occasion-card { padding: 18px 10px; }
  .occasion-icon { font-size: 2rem; margin-bottom: 10px; }
  .occasion-title { font-size: 0.88rem; }
  .occasion-title-ar { font-size: 0.8rem; }

  /* Halal */
  .halal-points { flex-direction: column; align-items: stretch; }
  .halal-section { padding: 60px 0; }
  .halal-icon { width: 90px; height: 90px; font-size: 2.3rem; }

  /* Delivery */
  .delivery-section { padding: 60px 0; }
  .delivery-features { gap: 10px; }
  .delivery-feature { padding: 9px 16px; font-size: 0.85rem; }

  /* Order / Form */
  .form-row { grid-template-columns: 1fr; }
  .order-form { padding: 24px; }
  /* Prevent iOS input zoom */
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 36px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Instagram */
  .instagram-link { padding: 16px 28px; font-size: 1rem; }
}

@media (max-width: 480px) {
  /* Core */
  .section { padding: 44px 0; }
  .container { padding: 0 16px; }

  /* Section labels */
  .section-tag { font-size: 0.72rem; padding: 5px 14px; letter-spacing: 1px; }

  /* Navigation */
  .nav-logo img { width: 42px; height: 42px; }
  .nav-logo-name { font-size: 0.8rem; }

  /* Hero (index) */
  .hero-content { padding: 88px 16px 52px; }
  .hero-logo { width: 88px; height: 88px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-notice { font-size: 0.82rem; padding: 9px 22px; }

  /* Page hero */
  .page-hero { padding: 88px 0 44px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card-media { height: 220px; }
  .service-card-body { padding: 20px; }
  .service-card-title { font-size: 1.2rem; }
  .btn-service-navy, .btn-service-red { padding: 15px 20px; font-size: 0.92rem; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .product-card-media { height: 220px; }
  .product-card-body { padding: 18px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .play-btn { width: 44px; height: 44px; font-size: 1.1rem; }

  /* Occasions */
  .occasions-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .occasion-card { padding: 20px 8px; }

  /* Blog */
  .blog-card-body { padding: 18px; }
  .blog-card-footer { padding: 12px 18px; }
  .blog-grid { gap: 16px; }

  /* Floating WhatsApp */
  .whatsapp-float { bottom: 18px; right: 18px; }
  .lang-ar .whatsapp-float { left: 18px; right: auto; }
  .whatsapp-float-btn { width: 52px; height: 52px; font-size: 1.45rem; }

  /* Order form */
  .order-form { padding: 20px 16px; border-radius: 12px; }

  /* Footer */
  .footer { padding: 44px 0 20px; }
  .footer-grid { gap: 24px; }

  /* Halal */
  .halal-section { padding: 44px 0; }
  .halal-icon { width: 80px; height: 80px; font-size: 2rem; }
  .halal-points { gap: 12px; }
  .halal-point { padding: 14px 18px; }

  /* Delivery */
  .delivery-section { padding: 44px 0; }
  .delivery-features { flex-direction: column; align-items: stretch; }
  .delivery-feature { justify-content: center; }

  /* Instagram */
  .instagram-link { width: 100%; justify-content: center; font-size: 0.95rem; padding: 15px 20px; }

  /* Location map card */
  .location-map-card { padding: 32px 20px; }

  /* Blog post */
  .blog-post-wrap { padding: 40px 16px 60px; }
}

/* Touch targets — all tappable elements at least 44px tall */
@media (max-width: 768px) {
  .btn, .gallery-tab, .filter-btn, .nav-whatsapp, .lang-btn { min-height: 44px; }
  .gallery-item { min-height: 120px; }

  /* Notch / home-bar safe area */
  .whatsapp-float { bottom: max(18px, env(safe-area-inset-bottom, 18px)); }
  .mobile-menu { padding-bottom: max(40px, env(safe-area-inset-bottom, 40px)); }
}
