/* =====================================================
   style.css — Maulana Haidar Ali
   Visual clone of maulanahussainali.com
   ===================================================== */

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── VARIABLES ────────────────────────────────────── */
:root {
  --green:      #1a6b3c;
  --green-dark: #0f4a28;
  --green-mid:  #228b4e;
  --gold:       #d4a017;
  --gold-light: #f0c040;
  --red:        #c0392b;
  --white:      #ffffff;
  --cream:      #f9f6f0;
  --gray-light: #f5f5f5;
  --gray:       #888;
  --text:       #333333;
  --text-light: #666666;
  --border:     #e0e0e0;
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
}

/* ── TOP BAR ──────────────────────────────────────── */
.top-bar {
  background: var(--green-dark);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}
.top-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-left a { color: #fff; display: flex; align-items: center; gap: 6px; font-weight: 600; }
.top-bar-left a:hover { color: var(--gold-light); }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-right a {
  color: #fff; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: background 0.3s;
}
.top-bar-right a:hover { background: var(--gold); }
.top-bar-ticker {
  color: rgba(255,255,255,0.8); font-size: 12px; overflow: hidden;
  flex: 1; min-width: 200px;
}
.ticker-text {
  display: inline-block;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}

/* ── HEADER ───────────────────────────────────────── */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: 80px;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon-box {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold-light); font-family: serif; font-weight: 700;
  flex-shrink: 0;
}
.logo-text-box { line-height: 1.2; }
.logo-text-box .logo-name { font-size: 18px; font-weight: 700; color: var(--green-dark); }
.logo-text-box .logo-sub  { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* MAIN NAV */
nav.main-nav { display: flex; align-items: center; gap: 0; }
nav.main-nav ul { display: flex; align-items: center; gap: 0; }
nav.main-nav ul li { position: relative; }
nav.main-nav ul li a {
  display: block; padding: 28px 16px;
  font-size: 14px; font-weight: 600; color: var(--text);
  transition: color 0.3s; white-space: nowrap;
  border-bottom: 3px solid transparent;
}
nav.main-nav ul li a:hover,
nav.main-nav ul li a.active { color: var(--green); border-bottom-color: var(--green); }

/* Dropdown */
nav.main-nav ul li .dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 220px; border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-lg); z-index: 999;
  border-top: 3px solid var(--green);
}
nav.main-nav ul li:hover .dropdown { display: block; }
nav.main-nav ul li .dropdown li a {
  padding: 11px 18px; border-bottom: 1px solid var(--border);
  font-size: 13.5px; color: var(--text); font-weight: 500;
}
nav.main-nav ul li .dropdown li:last-child a { border-bottom: none; }
nav.main-nav ul li .dropdown li a:hover { color: var(--green); background: var(--gray-light); border-bottom-color: var(--border); }

.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 25px !important;
  border-bottom: none !important; font-size: 13.5px !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; background: var(--white); border-top: 2px solid var(--green);
  padding: 16px 20px; flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 16px; font-size: 15px; font-weight: 600; color: var(--text); border-radius: 8px; transition: all 0.2s; }
.mobile-nav a:hover { background: var(--gray-light); color: var(--green); }

/* ── HERO SLIDER ──────────────────────────────────── */
.hero-section { position: relative; overflow: hidden; }
.slider-container { position: relative; width: 100%; aspect-ratio: 2/3; max-height: 92vh; overflow: hidden; }
.slider-track { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.77,0,0.18,1); }
.slide {
  min-width: 100%; height: 100%; position: relative;
  display: flex; align-items: flex-end;
}
.slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,40,20,0.75) 0%, rgba(10,40,20,0.2) 60%, transparent 100%);
  z-index: 1;
}
.slide-caption {
  position: relative; z-index: 2;
  padding: 40px 48px 56px; max-width: 680px;
}
.slide-caption h2 { font-size: clamp(24px,4vw,48px); color: #fff; font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.slide-caption p  { color: rgba(255,255,255,0.85); font-size: clamp(13px,1.8vw,17px); line-height: 1.7; margin-bottom: 24px; }
.slide-btns       { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-green {
  background: var(--green); color: #fff; padding: 12px 28px; border-radius: 30px;
  font-size: 14px; font-weight: 700; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,107,60,0.4); }
.btn-gold {
  background: var(--gold); color: #fff; padding: 12px 28px; border-radius: 30px;
  font-size: 14px; font-weight: 700; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
}
.btn-gold:hover { background: #b8860b; transform: translateY(-2px); }
.btn-wa {
  background: #25D366; color: #fff; padding: 12px 28px; border-radius: 30px;
  font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-wa:hover { background: #1eba58; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7);
  padding: 11px 26px; border-radius: 30px; font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* Slider controls */
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(6px);
  color: #fff; font-size: 22px; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-prev:hover, .slider-next:hover { background: var(--green); }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--gold); width: 26px; border-radius: 5px; }

/* ── STATS BAR ────────────────────────────────────── */
.stats-bar { background: var(--green-dark); padding: 20px 0; }
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
}
.stat-item {
  display: flex; align-items: center; gap: 10px;
  color: #fff; padding: 8px 28px;
  border-right: 1px solid rgba(255,255,255,0.2);
  font-size: 14px; font-weight: 600;
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-icon { color: var(--gold-light); font-size: 20px; }
.stat-item .stat-num  { font-size: 22px; font-weight: 800; color: var(--gold-light); line-height: 1; }
.stat-item .stat-lbl  { font-size: 12px; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── SECTIONS ─────────────────────────────────────── */
.section { padding: 72px 20px; }
.section-gray { background: var(--gray-light); }
.section-green { background: var(--green-dark); }
.container { max-width: 1200px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-label {
  display: inline-block; background: rgba(26,107,60,0.1); color: var(--green);
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 12px;
  border: 1px solid rgba(26,107,60,0.2);
}
.section-title h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 700; color: var(--green-dark); line-height: 1.2; margin-bottom: 14px; }
.section-title p  { font-size: 15px; color: var(--text-light); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.title-line {
  width: 60px; height: 4px; background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px; margin: 14px auto 0;
}

/* ── ABOUT SECTION ────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green); color: #fff;
  padding: 18px 22px; border-radius: 14px; text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .big { font-size: 32px; font-weight: 800; line-height: 1; color: var(--gold-light); }
.about-img-badge .sm  { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.about-content .section-label { margin-bottom: 10px; }
.about-content h2 { font-size: clamp(24px,3vw,38px); color: var(--green-dark); margin-bottom: 8px; line-height: 1.25; }
.about-content h3 { font-size: 18px; color: var(--green); margin-bottom: 16px; }
.about-content p  { font-size: 15px; color: var(--text-light); line-height: 1.85; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.about-feat {
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-light); border-radius: 10px; padding: 12px 16px;
  font-size: 13.5px; font-weight: 600; color: var(--text);
  border-left: 3px solid var(--green);
}
.about-feat .icon { color: var(--green); font-size: 18px; flex-shrink: 0; }
.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ── SERVICES GRID ────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: all 0.35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.service-card-img { height: 200px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,40,20,0.5));
}
.service-card-body { padding: 20px 22px 22px; }
.service-card-body h3 { font-size: 17px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.service-card-body h4 { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.service-card-body p  { font-size: 13.5px; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
.service-card-body a.call-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--green); font-size: 14px; font-weight: 700;
  border: 2px solid var(--green); border-radius: 25px; padding: 8px 18px;
  transition: all 0.3s;
}
.service-card-body a.call-link:hover { background: var(--green); color: #fff; }

/* ── WHY CHOOSE US ────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border-radius: 14px; padding: 30px 20px;
  text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: var(--shadow-lg); }
.why-icon-box {
  width: 72px; height: 72px; margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(26,107,60,0.1), rgba(26,107,60,0.05));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 32px; border: 2px solid rgba(26,107,60,0.15);
}
.why-card h4 { font-size: 15px; font-weight: 700; color: var(--green-dark); }

/* ── GALLERY ROW ──────────────────────────────────── */
.gallery-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(10,40,20,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 15px; font-weight: 700; text-align: center; padding: 12px; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testi-card {
  background: var(--white); border-radius: 14px; padding: 30px;
  box-shadow: var(--shadow); border: 1px solid var(--border); position: relative;
}
.testi-card::before {
  content: '"'; font-size: 80px; color: var(--green); opacity: 0.08;
  position: absolute; top: 10px; left: 20px; line-height: 1; font-family: Georgia, serif;
}
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.testi-card p { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; font-weight: 700;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 15px; font-weight: 700; color: var(--green-dark); }
.testi-role { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ── CONTACT SECTION ──────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: 30px; font-weight: 700; color: var(--green-dark); margin-bottom: 16px; }
.contact-info p  { font-size: 14.5px; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--gray-light); border-radius: 12px; padding: 16px;
}
.cd-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.cd-text h4 { font-size: 13px; font-weight: 700; color: var(--green-dark); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.cd-text a, .cd-text span { font-size: 14px; color: var(--text-light); }
.cd-text a:hover { color: var(--green); }
.cta-btns-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FORM ─────────────────────────────────────────── */
.form-wrap {
  background: var(--white); border-radius: 16px; padding: 36px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-wrap h3 { font-size: 24px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.form-wrap > p { font-size: 13.5px; color: var(--text-light); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 700; color: var(--green-dark); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--gray-light); transition: all 0.3s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(26,107,60,0.08); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--green); color: #fff;
  border: none; border-radius: 10px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.3s; font-family: inherit;
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { font-size: 11.5px; color: var(--gray); text-align: center; margin-top: 10px; }
.form-msg { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; text-align: center; display: none; }
.form-msg.success { background: #d4edda; color: #155724; display: block; }
.form-msg.error   { background: #f8d7da; color: #721c24; display: block; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item.open { border-color: var(--green); }
.faq-q {
  padding: 18px 22px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 600; color: var(--green-dark); background: #fff;
  user-select: none;
}
.faq-q .faq-ico { width: 26px; height: 26px; border-radius: 50%; background: var(--gray-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--green); transition: transform 0.3s; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--text-light); line-height: 1.8; background: #fff; }
.faq-item.open .faq-a { display: block; }

/* ── AWARDS ───────────────────────────────────────── */
.awards-grid { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.award-item { text-align: center; max-width: 220px; }
.award-item img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); }

/* ── BLOG GRID ────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 20px; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 17px; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; line-height: 1.3; }
.blog-card-body p  { font-size: 13.5px; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--gray); display: flex; gap: 14px; margin-bottom: 14px; }
.blog-read-more { color: var(--green); font-size: 13.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.blog-read-more:hover { color: var(--green-dark); }

/* ── SERVICES PAGE FULL LIST ──────────────────────── */
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── ABOUT PAGE ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 60px 20px; text-align: center; color: #fff;
}
.page-hero h1 { font-size: clamp(28px,4vw,48px); font-weight: 700; margin-bottom: 10px; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: #fff; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); text-align: center;
  border: 1px solid var(--border); transition: all 0.3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card-img { height: 220px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-body { padding: 18px; }
.team-card-body h3 { font-size: 17px; font-weight: 700; color: var(--green-dark); margin-bottom: 5px; }
.team-card-body span { font-size: 13px; color: var(--green); }

/* ── FLOATING & STICKY ────────────────────────────── */
.float-wa {
  position: fixed; bottom: 90px; right: 20px; z-index: 990;
  background: #25D366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); animation: pulse-wa 2.5s infinite;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse-wa { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.45)} 50%{box-shadow:0 4px 28px rgba(37,211,102,.7),0 0 0 10px rgba(37,211,102,.08)} }

.sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 989;
  background: var(--green-dark); padding: 10px 16px 14px; border-top: 2px solid var(--green);
}
.sticky-bar-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.s-btn {
  padding: 9px 6px; border-radius: 10px; font-size: 11px; font-weight: 700;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; font-family: inherit;
}
.s-btn span:first-child { font-size: 18px; }
.s-wa   { background: #25D366; color: #fff; }
.s-call { background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--green-dark); }
.s-form { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: #0a2015; color: rgba(255,255,255,0.75); padding: 60px 20px 0; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 44px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .logo-icon-box { width: 50px; height: 50px; font-size: 20px; }
.footer-brand p { font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-arabic { font-family: serif; font-size: 18px; color: var(--gold); opacity: 0.5; }
footer h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.7px; }
footer ul li { margin-bottom: 9px; }
footer ul li a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color 0.3s; display: flex; align-items: center; gap: 6px; }
footer ul li a::before { content: '›'; color: var(--green); font-size: 16px; }
footer ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item .fci { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.55); font-size: 13.5px; text-decoration: none; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── PAGE-SPECIFIC: BLOG ──────────────────────────── */
.blog-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.sidebar-widget { background: var(--white); border-radius: 14px; padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 24px; }
.sidebar-widget h3 { font-size: 17px; font-weight: 700; color: var(--green-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--green); }
.recent-post { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.recent-post:last-child { border-bottom: none; }
.recent-post img { width: 65px; height: 65px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.recent-post h4 { font-size: 13.5px; font-weight: 600; color: var(--green-dark); line-height: 1.4; margin-bottom: 4px; }
.recent-post span { font-size: 11.5px; color: var(--gray); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: var(--gray-light); color: var(--text-light); font-size: 12px; padding: 5px 12px; border-radius: 20px; border: 1px solid var(--border); transition: all 0.2s; }
.tag:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid, .services-full-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,2fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .top-bar-ticker { display: none; }
  .stats-bar-inner { gap: 0; }
  .stat-item { padding: 8px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 50%; justify-content: center; }
  .slide-caption { padding: 24px 20px 36px; }
  .services-grid, .services-full-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-inner { height: 68px; }
  .about-img-badge { right: 10px; bottom: -15px; }
  .sticky-bar { display: block; }
  .float-wa { bottom: 86px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 52px 16px; }
  .form-wrap { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-btns-row { flex-direction: column; }
  .about-features { grid-template-columns: 1fr; }
}


/* HIDE BY DEFAULT (DESKTOP) */
.mobile-marquee {
  display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .mobile-marquee {
    display: block;
    background: #000;
    overflow: hidden;
    border-bottom: 1px solid #222;
  }

  .marquee-track {
    white-space: nowrap;
    display: inline-block;
    animation: scrollMobile 25s linear infinite;
  }

  .marquee-track span {
    color: #d4af37;
    font-size: 12px;
    padding: 6px 0;
    display: inline-block;
  }

}

/* SCROLL ANIMATION */
@keyframes scrollMobile {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
  
  .hero {
  background: url('../images/banner-desktop.jpg') center/cover no-repeat;
}

/* MOBILE IMAGE */
@media (max-width: 768px) {
  .hero {
    background: url('../images/banner-mobile.jpg') center/cover no-repeat;
  }
}
}