/* ============================================
  شركة بيان - تنسيق الحدائق وزراعة النخيل
   ============================================ */

:root {
  --green-dark: #1a3d2b;
  --green-main: #2d6a4f;
  --green-mid: #4a7c59;
  --green-light: #74b88a;
  --green-pale: #d8f3dc;
  --gold: #c9a227;
  --gold-light: #f0c94d;
  --dark: #0f1f17;
  --dark-card: #152b1f;
  --text-main: #1a1a1a;
  --text-mid: #4a5568;
  --text-light: #6b7280;
  --white: #ffffff;
  --off-white: #f4f9f4;
  --border: rgba(45,106,79,0.15);
  --shadow: 0 8px 32px rgba(26,61,43,0.12);
  --shadow-strong: 0 20px 60px rgba(26,61,43,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: var(--white);
  color: var(--text-main);
  direction: rtl;
  overflow-x: hidden;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.palm-loader svg { width: 80px; height: 100px; animation: palmSway 1.5s ease-in-out infinite alternate; }
@keyframes palmSway { from { transform: rotate(-8deg); } to { transform: rotate(8deg); } }
.preloader-text { color: var(--white); font-size: 1.6rem; font-weight: 700; margin: 16px 0 12px; letter-spacing: 2px; }
.preloader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin: 0 auto; overflow: hidden; }
.preloader-fill { height: 100%; width: 0; background: var(--gold); border-radius: 2px; animation: fillBar 2s ease forwards; }
@keyframes fillBar { to { width: 100%; } }

/* ===== PARTICLES ===== */
#particles-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: var(--green-light); opacity: 0.06;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.06; }
  90% { opacity: 0.06; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ===== NAVBAR ===== */
#mainNavbar {
  background: transparent;
  transition: var(--transition);
  padding: 14px 0;
  z-index: 1000;
}
#mainNavbar.scrolled {
  background: rgba(15,31,23,0.96);
  backdrop-filter: blur(16px);
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.brand-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
}
.brand-icon.small { width: 34px; height: 34px; font-size: 1rem; }
.brand-name { display: block; font-size: 1.1rem; font-weight: 800; color: var(--white); line-height: 1; }
.brand-sub { display: block; font-size: 0.65rem; color: var(--green-light); opacity: 0.9; line-height: 1; margin-top: 2px; }
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.85rem; font-weight: 600;
  padding: 6px 10px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light) !important;
  background: rgba(255,255,255,0.08);
}
.btn-nav-cta {
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: var(--white) !important; border: none;
  padding: 8px 20px; border-radius: 30px;
  font-weight: 700; font-size: 0.85rem;
  transition: var(--transition);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45,106,79,0.4); }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.toggler-icon span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar-toggler { border: none; background: transparent; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a2218 40%, #1a3d2b 100%);
  overflow: hidden;
}
.hero-video-bg { position: absolute; inset: 0; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(74,124,89,0.15) 0%, transparent 70%); }
.hero-shapes .shape {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), transparent);
  opacity: 0.08;
}
.shape-1 { width: 600px; height: 600px; top: -200px; left: -150px; animation: morphShape 12s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; right: -100px; animation: morphShape 15s ease-in-out infinite reverse; }
.shape-3 { width: 300px; height: 300px; top: 30%; right: 20%; animation: morphShape 10s ease-in-out infinite 3s; }
@keyframes morphShape {
  0%, 100% { border-radius: 50%; transform: scale(1) rotate(0deg); }
  50% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: scale(1.1) rotate(15deg); }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-light); padding: 8px 18px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
}
.text-accent { color: var(--gold-light); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 28px; max-width: 560px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85); padding: 6px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important; border: none;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,162,39,0.4); }
.btn-hero-outline {
  background: transparent; color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 30px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.hero-card-float { position: relative; width: 100%; aspect-ratio: 1; max-width: 420px; }
.circle-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(116,184,138,0.2);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.r1 { width: 320px; height: 320px; animation: spin 20s linear infinite; }
.r2 { width: 220px; height: 220px; animation: spin 15s linear infinite reverse; }
.r3 { width: 130px; height: 130px; animation: spin 10s linear infinite; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.circle-icon-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--white);
  box-shadow: 0 0 40px rgba(74,124,89,0.4);
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); padding: 12px 18px; border-radius: 14px;
  display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600;
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card i { font-size: 1.2rem; color: var(--gold-light); }
.card-1 { top: 10%; right: 5%; animation-delay: 0s; }
.card-2 { bottom: 25%; left: 0; animation-delay: 1.5s; }
.card-3 { top: 55%; right: 5%; animation-delay: 0.8s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; z-index: 2;
}
.scroll-dot {
  width: 20px; height: 32px; border: 2px solid rgba(255,255,255,0.3); border-radius: 10px;
  position: relative;
}
.scroll-dot::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--gold-light); border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%, 100% { top: 5px; } 50% { top: 14px; } }

/* ===== TICKER ===== */
.ticker-section { background: var(--green-main); overflow: hidden; padding: 14px 0; }
.ticker-wrap { overflow: hidden; white-space: nowrap; }
.ticker-move {
  display: inline-block; animation: tickerScroll 30s linear infinite;
}
.ticker-move span {
  display: inline-block; padding: 0 40px;
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600;
}
.ticker-move span i { color: var(--gold-light); margin-left: 6px; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
section { padding: 90px 0; position: relative; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green-main);
  padding: 6px 18px; border-radius: 30px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.3; margin-bottom: 16px; color: var(--text-main); }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 580px; margin: 0 auto; }

/* ===== ABOUT ===== */
.section-about { background: var(--off-white); }
.about-img-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); }
.about-main-img { width: 100%; height: 400px; object-fit: cover; display: block; }
.about-badge-float {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--white); border-radius: 12px; padding: 12px 18px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.9rem; color: var(--green-main);
  box-shadow: var(--shadow);
}
.about-badge-float i { color: var(--gold); font-size: 1.3rem; }
.about-side-cards { display: flex; gap: 12px; margin-top: 16px; }
.about-mini-card {
  flex: 1; background: var(--white); border-radius: var(--radius);
  padding: 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
}
.about-mini-card i { font-size: 1.5rem; color: var(--green-main); }
.about-mini-card strong { display: block; font-weight: 800; color: var(--text-main); }
.about-mini-card small { color: var(--text-light); font-size: 0.8rem; }
.about-text { color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.about-feature-item { display: flex; gap: 14px; align-items: flex-start; }
.af-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; color: var(--green-main); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.about-feature-item strong { font-weight: 700; color: var(--text-main); display: block; margin-bottom: 2px; }
.about-feature-item p { color: var(--text-light); font-size: 0.9rem; margin: 0; line-height: 1.6; }
.btn-primary-green {
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: var(--white) !important; border: none;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-primary-green:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(45,106,79,0.35); }

/* ===== STATS ===== */
.section-stats {
  background: linear-gradient(135deg, var(--green-dark), var(--dark));
  color: var(--white); position: relative; overflow: hidden;
}
.stats-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(116,184,138,0.06) 1px, transparent 0);
  background-size: 40px 40px;
}
.stat-card { padding: 30px 20px; }
.stat-icon { font-size: 2.5rem; color: var(--gold-light); margin-bottom: 12px; }
.stat-num { font-size: 3rem; font-weight: 900; color: var(--white); display: inline-block; line-height: 1; }
.stat-plus { display: inline-block; font-size: 2rem; font-weight: 900; color: var(--gold-light); vertical-align: super; }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin-top: 6px; font-weight: 600; }

/* ===== SERVICES ===== */
.section-services { background: var(--white); }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  height: 100%; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap { width: 64px; height: 64px; border-radius: 16px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; overflow: hidden; }
.service-icon { font-size: 1.8rem; color: var(--green-main); position: relative; z-index: 1; }
.service-glow { position: absolute; inset: 0; background: radial-gradient(circle, rgba(74,124,89,0.2), transparent); opacity: 0; transition: var(--transition); }
.service-card:hover .service-glow { opacity: 1; }
.service-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.service-list { list-style: none; padding: 0; margin-bottom: 20px; }
.service-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-mid); padding: 4px 0; }
.service-list li i { color: var(--green-main); font-size: 0.9rem; }
.service-link { color: var(--green-main); font-weight: 700; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { color: var(--gold); gap: 10px; }
.service-featured { background: linear-gradient(135deg, var(--green-dark), var(--green-main)); color: var(--white); border-color: transparent; }
.service-featured h3, .service-featured p, .service-featured .service-list li { color: rgba(255,255,255,0.9); }
.service-featured .service-icon-wrap { background: rgba(255,255,255,0.15); }
.service-featured .service-icon { color: var(--gold-light); }
.service-featured .service-link { color: var(--gold-light); }
.service-featured .service-list li i { color: var(--gold-light); }
.featured-ribbon {
  position: absolute; top: 18px; left: 18px;
  background: var(--gold); color: var(--dark);
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 800;
}

/* ===== PORTFOLIO ===== */
.section-portfolio { background: var(--off-white); }
.portfolio-filters .filter-btn {
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-mid); padding: 8px 20px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); font-family: 'Cairo', sans-serif;
}
.portfolio-filters .filter-btn.active,
.portfolio-filters .filter-btn:hover {
  background: var(--green-main); color: var(--white); border-color: var(--green-main);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.portfolio-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  transition: var(--transition);
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: transparent;
  opacity: 0; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-zoom {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  transform: scale(0.8);
}
.portfolio-item:hover .portfolio-zoom { transform: scale(1); }
.portfolio-zoom:hover { background: var(--gold); border-color: var(--gold); }
.portfolio-item.hide { display: none; }

/* ===== PORTFOLIO MODAL ===== */
.portfolio-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.portfolio-modal.active { opacity: 1; visibility: visible; }
.modal-backdrop-custom { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.modal-content-custom {
  position: relative; z-index: 1; display: flex; align-items: center; gap: 20px;
  max-width: 90vw; max-height: 90vh;
}
.modal-img-wrap { position: relative; }
.modal-img-wrap img {
  max-width: 75vw; max-height: 82vh;
  border-radius: var(--radius-lg); display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease;
}
.modal-close-btn {
  position: absolute; top: -50px; left: 0;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 40px; height: 40px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.modal-close-btn:hover { background: red; }
.modal-nav {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1.2rem; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.modal-nav:hover { background: var(--green-main); }
.modal-title-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 20px 16px 12px;
  color: var(--white); font-weight: 700; font-size: 0.95rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ===== WHY US ===== */
.section-whyus { background: var(--white); }
.whyus-top-wave { height: 60px; background: var(--off-white); clip-path: ellipse(100% 100% at 50% 0); }
.why-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; height: 100%;
  transition: var(--transition); position: relative; overflow: hidden;
}
.why-card:hover { background: var(--green-dark); color: var(--white); transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.why-num {
  font-size: 4rem; font-weight: 900; color: rgba(45,106,79,0.1);
  position: absolute; top: 10px; right: 20px; line-height: 1;
  transition: var(--transition);
}
.why-card:hover .why-num { color: rgba(255,255,255,0.06); }
.why-icon { font-size: 2.5rem; color: var(--green-main); margin-bottom: 16px; display: block; transition: var(--transition); }
.why-card:hover .why-icon { color: var(--gold-light); }
.why-card h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; transition: color 0.3s; }
.why-card:hover h4 { color: var(--white); }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; transition: color 0.3s; }
.why-card:hover p { color: rgba(255,255,255,0.7); }

/* ===== PROCESS ===== */
.section-process { background: var(--off-white); }
.process-timeline { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; align-items: flex-start; gap: 30px;
  padding: 30px 0; position: relative;
}
.process-step:not(:last-child)::after {
  content: ''; position: absolute;
  right: 30px; top: 80px; bottom: -30px; width: 2px;
  background: linear-gradient(to bottom, var(--green-main), transparent);
}
.process-step.reverse { flex-direction: row-reverse; }
.process-step.reverse::after { right: auto; left: 30px; }
.ps-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  box-shadow: 0 8px 20px rgba(45,106,79,0.3);
}
.ps-content { flex: 1; padding: 10px 0; }
.ps-content h4 { font-size: 1.15rem; font-weight: 800; color: var(--text-main); margin-bottom: 8px; }
.ps-content p { color: var(--text-light); line-height: 1.7; font-size: 0.92rem; }
.ps-step-num {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: var(--dark);
  z-index: 2;
}

/* ===== COVERAGE ===== */
.section-coverage { background: var(--white); }
.cities-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.city-tag {
  background: var(--green-pale); color: var(--green-main);
  padding: 8px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition); cursor: default;
}
.city-tag:hover { background: var(--green-main); color: var(--white); }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); }

/* ===== TEAM ===== */
.section-team { background: var(--off-white); }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; text-align: center;
  box-shadow: var(--shadow); transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.team-avatar {
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  padding: 30px 0 20px; font-size: 4rem; color: rgba(255,255,255,0.4);
}
.team-info { padding: 20px; }
.team-info h5 { font-weight: 800; font-size: 1rem; color: var(--text-main); margin-bottom: 4px; }
.team-info span { font-size: 0.82rem; color: var(--text-light); }
.team-socials { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.team-socials a {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--off-white); color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition); text-decoration: none;
}
.team-socials a:hover { background: var(--green-main); color: var(--white); }

/* ===== TESTIMONIALS ===== */
.section-testimonials { background: var(--white); }
.testimonials-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testi-card {
  min-width: calc(33.333% - 16px); background: var(--off-white);
  border-radius: var(--radius-lg); padding: 28px 24px;
  border: 1px solid var(--border);
}
.testi-stars { color: var(--gold); margin-bottom: 12px; font-size: 0.85rem; }
.testi-card p { color: var(--text-mid); line-height: 1.8; font-size: 0.92rem; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
}
.testi-author strong { display: block; font-weight: 700; font-size: 0.9rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.testi-controls button {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--border);
  color: var(--text-mid); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.testi-controls button:hover { background: var(--green-main); color: var(--white); border-color: var(--green-main); }
.testi-dots { display: flex; gap: 6px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: var(--border); cursor: pointer; transition: var(--transition);
}
.testi-dot.active { width: 24px; background: var(--green-main); }

/* ===== PACKAGES ===== */
.section-packages { background: var(--off-white); }
.package-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--border); height: 100%;
  transition: var(--transition); position: relative; overflow: hidden;
}
.package-card:hover { box-shadow: var(--shadow-strong); transform: translateY(-6px); }
.package-popular {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  border-color: transparent; color: var(--white);
}
.popular-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold); color: var(--dark);
  padding: 5px 14px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; gap: 6px;
}
.pkg-header { text-align: center; margin-bottom: 28px; padding-top: 20px; }
.pkg-header i { font-size: 2.5rem; color: var(--green-main); margin-bottom: 12px; display: block; }
.package-popular .pkg-header i { color: var(--gold-light); }
.pkg-header h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.pkg-header p { font-size: 0.85rem; color: var(--text-light); }
.package-popular .pkg-header p { color: rgba(255,255,255,0.7); }
.pkg-features { list-style: none; padding: 0; margin-bottom: 28px; }
.pkg-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-mid);
}
.package-popular .pkg-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.pkg-features li i { color: var(--green-main); font-size: 0.9rem; }
.package-popular .pkg-features li i { color: var(--gold-light); }
.pkg-features li.disabled { opacity: 0.45; }
.pkg-features li.disabled i { color: var(--text-light); }
.btn-pkg {
  width: 100%; background: var(--off-white); border: 1px solid var(--border);
  color: var(--text-main); padding: 12px; border-radius: 50px;
  font-weight: 700; cursor: pointer; transition: var(--transition);
  font-family: 'Cairo', sans-serif;
}
.btn-pkg:hover { background: var(--green-main); color: var(--white); border-color: var(--green-main); }
.btn-pkg-featured {
  width: 100%; background: var(--gold); border: none;
  color: var(--dark); padding: 12px; border-radius: 50px;
  font-weight: 800; cursor: pointer; transition: var(--transition);
  font-family: 'Cairo', sans-serif;
}
.btn-pkg-featured:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ===== FAQ ===== */
.section-faq { background: var(--white); }
.faq-item { margin-bottom: 12px; border: 1px solid var(--border) !important; border-radius: var(--radius) !important; overflow: hidden; }
.faq-btn {
  background: var(--off-white) !important; color: var(--text-main) !important;
  font-weight: 700; font-size: 0.95rem; padding: 18px 20px;
  font-family: 'Cairo', sans-serif;
}
.faq-btn:not(.collapsed) { background: var(--green-dark) !important; color: var(--white) !important; }
.faq-btn::after { filter: invert(0); }
.faq-btn:not(.collapsed)::after { filter: invert(1); }
.faq-body { padding: 16px 20px; color: var(--text-mid); line-height: 1.8; font-size: 0.92rem; }

/* ===== BLOG ===== */
.section-blog { background: var(--off-white); }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 100%; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.blog-img-wrap { position: relative; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-category {
  position: absolute; top: 14px; right: 14px;
  background: var(--green-main); color: var(--white);
  padding: 5px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.blog-body { padding: 22px; }
.blog-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.blog-body h5 { font-size: 1rem; font-weight: 800; color: var(--text-main); margin-bottom: 10px; line-height: 1.5; }
.blog-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.blog-link { color: var(--green-main); font-weight: 700; font-size: 0.88rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.blog-link:hover { color: var(--gold); gap: 10px; }

/* ===== PARTNERS ===== */
.section-partners { background: var(--white); }
.partners-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.partner-logo {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 32px; min-width: 140px;
  transition: var(--transition); cursor: default;
}
.partner-logo i { font-size: 2rem; color: var(--green-main); }
.partner-logo span { font-size: 0.82rem; font-weight: 700; color: var(--text-mid); }
.partner-logo:hover { border-color: var(--green-main); background: var(--green-pale); }

/* ===== PROMO ===== */
.section-promo {
  position: relative; min-height: 360px;
  display: flex; align-items: center; overflow: hidden;
}
.promo-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-dark), #0a2218);
  background-image: url('Css/2.jpeg');
  background-size: cover; background-position: center;
}
.promo-bg::after { content: ''; position: absolute; inset: 0; background: rgba(15,31,23,0.8); }
.promo-content { position: relative; z-index: 1; color: var(--white); }
.promo-play-icon { font-size: 4rem; color: var(--gold-light); margin-bottom: 16px; display: block; }
.promo-content h2 { font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.promo-content p { font-size: 1.05rem; opacity: 0.75; margin-bottom: 24px; }
.btn-promo-watch {
  background: transparent; border: 2px solid var(--gold-light); color: var(--gold-light);
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  transition: var(--transition); font-family: 'Cairo', sans-serif;
}
.btn-promo-watch:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ===== CONTACT ===== */
.section-contact { background: var(--off-white); }
.contact-info-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  border-radius: var(--radius-lg); padding: 36px 32px; color: var(--white); height: 100%;
}
.contact-info-card h4 { color: var(--white); font-weight: 800; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.ci-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 0.82rem; opacity: 0.7; margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span { color: var(--white); font-weight: 600; text-decoration: none; font-size: 0.92rem; }
.contact-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1rem; transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow); }
.contact-form-card h4 { font-weight: 800; }
.form-group-custom { margin-bottom: 4px; }
.form-group-custom label { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--text-mid); margin-bottom: 6px; }
.form-control-custom {
  width: 100%; background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-family: 'Cairo', sans-serif; font-size: 0.9rem; color: var(--text-main);
  transition: var(--transition); outline: none;
}
.form-control-custom:focus { border-color: var(--green-main); background: var(--white); box-shadow: 0 0 0 4px rgba(45,106,79,0.1); }
textarea.form-control-custom { resize: vertical; }
.btn-contact-submit {
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: var(--white); border: none; padding: 14px 28px; border-radius: 50px;
  font-weight: 800; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition); font-family: 'Cairo', sans-serif;
}
.btn-contact-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(45,106,79,0.35); }
.contact-success-msg {
  background: var(--green-pale); color: var(--green-main); border-radius: var(--radius-sm);
  padding: 14px 18px; margin-top: 14px; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}

/* ===== LIVE CHAT BUBBLE ===== */
.live-chat-bubble {
  position: fixed; bottom: 90px; left: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer; box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition); text-decoration: none;
}
.live-chat-bubble:hover { transform: scale(1.1); }
.chat-pulse {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: rgba(37,211,102,0.3); animation: pulsate 2s ease-out infinite;
}
@keyframes pulsate { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
.chat-tooltip {
  position: absolute; left: 64px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white); white-space: nowrap;
  padding: 6px 12px; border-radius: 8px; font-size: 0.8rem; font-weight: 600;
  opacity: 0; transition: var(--transition); pointer-events: none;
}
.live-chat-bubble:hover .chat-tooltip { opacity: 1; }

/* ===== CALL BUBBLE ===== */
.call-bubble {
  position: fixed; bottom: 90px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer; box-shadow: 0 6px 20px rgba(201,162,39,0.4);
  transition: var(--transition); text-decoration: none;
}
.call-bubble:hover { transform: scale(1.1); color: var(--dark); }
.call-pulse {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: rgba(201,162,39,0.3); animation: pulsate 2s ease-out infinite;
}
.call-tooltip {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white); white-space: nowrap;
  padding: 6px 12px; border-radius: 8px; font-size: 0.8rem; font-weight: 600;
  opacity: 0; transition: var(--transition); pointer-events: none;
}
.call-bubble:hover .call-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-main); color: var(--white); border: none;
  font-size: 1.1rem; cursor: pointer;
  box-shadow: var(--shadow); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); transform: translateY(-4px); }

/* ===== COOKIE ===== */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--dark-card); color: rgba(255,255,255,0.85);
  padding: 14px 0; font-size: 0.88rem; border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%); transition: transform 0.5s ease;
}
.cookie-notice.show { transform: translateY(0); }
.cookie-notice p { line-height: 1.6; }
.btn-cookie-accept {
  background: var(--green-main); color: var(--white); border: none;
  padding: 8px 22px; border-radius: 30px; font-weight: 700; white-space: nowrap;
  cursor: pointer; transition: var(--transition); font-family: 'Cairo', sans-serif;
}
.btn-cookie-accept:hover { background: var(--gold); color: var(--dark); }

/* ===== NEWSLETTER ===== */
.section-newsletter { background: var(--green-dark); padding: 60px 0; }
.newsletter-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 36px 40px; }
.nl-icon { font-size: 2.5rem; color: var(--gold-light); margin-bottom: 10px; }
.newsletter-card h3 { color: var(--white); font-weight: 800; font-size: 1.4rem; margin-bottom: 6px; }
.newsletter-card p { color: rgba(255,255,255,0.65); }
.nl-form { display: flex; gap: 10px; }
.nl-form .form-control-custom { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }
.nl-form .form-control-custom::placeholder { color: rgba(255,255,255,0.4); }
.btn-nl-submit {
  background: var(--gold); color: var(--dark); border: none;
  padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 800; white-space: nowrap;
  cursor: pointer; transition: var(--transition); font-family: 'Cairo', sans-serif;
  display: flex; align-items: center; gap: 8px;
}
.btn-nl-submit:hover { background: var(--gold-light); }
.nl-success { color: var(--green-light); font-weight: 700; margin-top: 10px; display: flex; align-items: center; gap: 6px; }

/* ===== AWARDS ===== */
.section-awards { background: var(--off-white); }
.awards-row { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.award-item {
  text-align: center; padding: 32px 28px; flex: 1; min-width: 200px; max-width: 260px;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  transition: var(--transition);
}
.award-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.award-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 14px; display: block; }
.award-item h5 { font-weight: 800; font-size: 0.95rem; color: var(--text-main); margin-bottom: 6px; }
.award-item span { font-size: 0.8rem; color: var(--text-light); }

/* ===== VIDEO MODAL ===== */
.video-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.video-modal.active { opacity: 1; visibility: visible; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.9); }
.video-modal-content { position: relative; z-index: 1; width: 700px; max-width: 90vw; background: var(--dark-card); border-radius: var(--radius-lg); overflow: hidden; }
.video-modal-close { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 2; }
.video-modal-close:hover { background: red; }
.video-placeholder { height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); gap: 12px; }
.video-placeholder i { font-size: 4rem; color: var(--gold-light); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-about { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0.9rem; transition: var(--transition);
}
.footer-socials a:hover { background: var(--green-main); color: var(--white); border-color: var(--green-main); }
.footer-title { color: var(--white); font-weight: 800; font-size: 0.95rem; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.87rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.fci { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; }
.fci i { color: var(--green-light); margin-top: 2px; flex-shrink: 0; }
.fci a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.fci a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; font-size: 0.82rem; }
.footer-legal-links { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-legal-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); }
.footer-legal-links a:hover { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  #navMenu { background: rgba(15,31,23,0.97); backdrop-filter: blur(16px); padding: 20px; border-radius: 0 0 16px 16px; }
  .testi-card { min-width: calc(100% - 0px); }
  .process-step, .process-step.reverse { flex-direction: column; }
  .process-step::after, .process-step.reverse::after { display: none; }
  .ps-step-num { display: none; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero-title { font-size: 2.4rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-form { flex-direction: column; }
  .modal-img-wrap img { max-width: 90vw; }
  .modal-nav { display: none; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-btns { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { justify-content: center; }
}