/* ============ RESET & VARIABLES ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #0e2b21;
  --green-2: #14382b;
  --gold: #c69130;
  --gold-2: #d3a446;
  --text-dark: #16261e;
  --text-body: #59665d;
  --cream: #f4ecd8;
  --card-border: #ece7dd;
  --shadow: 0 10px 26px rgba(20, 40, 30, 0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

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

/* ============ HEADER / NAVBAR — Premium Luxury ============ */
:root {
  --header-h: clamp(190px, 15.6vw, 300px);
}

.site-header {
  position: relative;
  width: 100%;
  height: var(--header-h);
  background: transparent;
  z-index: 30;
  overflow: visible;
}

.header-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 44px;
  padding-bottom: 22%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  direction: ltr;
}

/* -------- حاوية التحكم: القائمة + اللغة -------- */
.header-controls {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 14px;
  direction: ltr;
  position: relative;
}

/* -------- زر تبديل اللغة الدائري الطافي -------- */
.lang-fab {
  position: absolute;
  top: calc(100% + 12px);
  left: 44px;
  z-index: 40;
  width: clamp(44px, 3.6vw, 52px);
  height: clamp(44px, 3.6vw, 52px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 45, 36, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 154, 43, .55);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
  cursor: pointer;
  padding: 0;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: clamp(12.5px, 1vw, 14px);
  letter-spacing: .5px;
  line-height: 1;
  transition: background .22s ease, border-color .22s ease, transform .22s ease, color .22s ease;
}
.lang-fab:hover {
  background: rgba(200, 154, 43, .92);
  border-color: #f6e6ad;
  color: #0b2d24;
  transform: translateY(-2px) scale(1.05);
}
.lang-fab:active { transform: translateY(0) scale(1); }
.lang-code { pointer-events: none; }

/* -------- زر القائمة (زجاجي) -------- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: clamp(52px, 5vw, 70px);
  height: clamp(52px, 5vw, 70px);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
  transition: background .2s ease, border-color .2s ease;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, .16);
  border-color: var(--gold);
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 3px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------- روابط التنقل (قائمة منسدلة) -------- */
.main-nav {
  display: none;
  align-items: center;
  gap: 6px;
  direction: inherit;
}
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: #0b2d24;
  border: 1px solid rgba(230, 196, 120, .3);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  z-index: 60;
}

.nav-link {
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 9px;
  text-align: center;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover { background: rgba(255, 255, 255, .08); color: var(--gold-2); }
.nav-link.active { background: var(--gold); color: #fff; }
.nav-link.active:hover { background: var(--gold-2); }

/* -------- النص المركزي -------- */
.header-title-block {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  direction: inherit;
  line-height: 1.28;
}
.header-h1 {
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(20px, 2.55vw, 40px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}
.header-h2 {
  color: #c89a2b;
  font-weight: 800;
  font-size: clamp(17px, 2.1vw, 33px);
  margin-top: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}
.header-h3 {
  color: #f2f0ea;
  font-weight: 600;
  font-size: clamp(11px, 1vw, 16px);
  margin-top: clamp(4px, .8vw, 12px);
  letter-spacing: .2px;
}

/* -------- الشعار -------- */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 3;
  justify-self: end;
  width: clamp(150px, 10vw, 190px);
  height: clamp(150px, 10vw, 190px);
  border-radius: 50%;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .3));
  transition: transform .25s ease;
}
.logo:hover { transform: translateY(-2px) scale(1.03); }
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: normal;
  border: 0;
}


/* ============ HERO ============ */
.hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(var(--header-h) * -0.40);
  padding-top: calc(var(--header-h) * 0.40);
  z-index: 1;
}

.hero-img {
  position: absolute;
  top: 0; bottom: 0;
  width: 38%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-img-left {
  left: 0;
  background-image: url('assets/images/hero_left.jpg');
}
.hero-img-left::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, var(--cream) 92%);
}
.hero-img-right {
  right: 0;
  background-image: url('assets/images/hero_right.jpg');
}
.hero-img-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to left, transparent, var(--cream) 92%);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 18px 20px 26px;
  max-width: 660px;
}

.hero-title { line-height: 1.15; }
.hero-title span { display: block; font-weight: 800; }
.line-dark {
  color: var(--green);
  font-size: 46px;
  font-weight: 800;
}
.line-gold {
  color: var(--gold);
  font-size: 46px;
  font-weight: 800;
  margin-top: 2px;
}
.hero-sub {
  color: var(--green);
  font-size: 27px;
  font-weight: 700;
  margin-top: 14px;
}
.hero-desc {
  color: #4c584f;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto;
}

/* المميزات الدائرية */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin-top: 26px;
}
.hf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hf-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: rgba(255,255,255,.35);
  transition: transform .25s ease;
}
.hf-circle svg { width: 30px; height: 30px; }
.hf-circle.filled {
  background: var(--green);
  border-color: var(--green);
  color: var(--gold);
}
.hf-item:hover .hf-circle { transform: translateY(-4px); }
.hf-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

/* أزرار الهيرو */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 32px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .22s ease;
}
.btn-ic { width: 20px; height: 20px; }
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: var(--green-2); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }

/* أسهم السلايدر */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(14, 43, 33, .55);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 8;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.hero-arrow:hover { background: rgba(14,43,33,.85); }
.hero-arrow svg { width: 22px; height: 22px; }
.arrow-right { right: 16px; }
.arrow-left  { left: 16px; }

/* نقاط السلايدر */
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 8;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(14,43,33,.35);
  cursor: pointer;
  transition: .2s;
}
.dot.active {
  width: 22px;
  border-radius: 5px;
  background: var(--green);
}

/* ============ FEATURES CARDS ============ */
.features {
  padding: 46px 0 30px;
  background: #fff;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 30px 18px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(20,40,30,.10);
}
.card-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 30px; height: 30px; }
.card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 9px;
}
.card-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.75;
}

/* ============ ABOUT ============ */
.about {
  padding: 40px 0 46px;
  background: #fff;
}
.about-inner {
  display: flex;
  align-items: center;
  gap: 44px;
}

.about-media {
  position: relative;
  flex: 1 1 54%;
}
.about-images {
  display: flex;
  gap: 10px;
  height: 268px;
  direction: ltr;
}
.about-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}
.about-img:first-child { flex: 0 0 42%; }
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease;
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.08); background: var(--gold-2); }
.play-btn svg { width: 26px; height: 26px; margin-right: -3px; }

.about-text {
  flex: 1 1 44%;
  text-align: start;
}
.about-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-dark);
}
.about-underline {
  display: block;
  width: 66px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 10px 0 20px;
}
.about-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 2.05;
  margin-bottom: 26px;
}

.about-badges {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid #e7e1d6;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  background: #fff;
}
.badge-ic { width: 22px; height: 22px; color: var(--gold); }

.about-more {
  text-align: center;
  margin-top: 34px;
}
.btn-wide { padding: 14px 46px; }

/* ============ SHARED SECTION TITLE ============ */
.sec-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
}
.sec-underline {
  display: block;
  width: 64px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 11px auto 30px;
}
.sec-desc {
  text-align: center;
  font-size: 15.5px;
  color: var(--text-body);
  max-width: 560px;
  margin: -16px auto 28px;
  line-height: 1.85;
}
.ic-gold { color: var(--gold); }
.ic-green { color: var(--green); }

/* ============ STATS BAR ============ */
.stats { padding: 8px 0 42px; background: #fff; }
.stats-bar {
  background: var(--green);
  border-radius: 18px;
  padding: 34px 24px;
  display: flex;
  align-items: center;
}
.stat { flex: 1; text-align: center; }
.stat-ic { display: block; color: #fff; margin-bottom: 12px; }
.stat-ic svg { width: 36px; height: 36px; }
.stat-num {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #eaeee9;
  margin-top: 5px;
}
.stat-div {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.14);
  margin: 0 4px;
}

/* ============ GALLERY ============ */
.gallery { padding: 46px 0 34px; background: #fff; }
.gallery-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 420px;
}
.gal-img { border-radius: 14px; overflow: hidden; height: 100%; box-shadow: 0 8px 20px rgba(20,40,30,.08); }
.gal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gal-img:hover img { transform: scale(1.06); }
.gal-big { grid-row: 1 / 3; }
.gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: 0 5px 16px rgba(0,0,0,.14);
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  transition: background .2s ease, color .2s ease;
}
.gal-arrow:hover { background: var(--gold); color: #fff; }
.gal-arrow svg { width: 22px; height: 22px; }
.gal-right { right: -14px; }
.gal-left { left: -14px; }

/* ============ SERVICES ============ */
.services-sec { padding: 40px 0; background: #fff; }
.services-row { display: flex; direction: ltr; }
.service {
  flex: 1;
  text-align: center;
  direction: inherit;
  padding: 8px 22px;
}
.service:not(:last-child) { border-right: 1px solid #ededed; }
.service-ic {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: #f6f2ea;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-ic svg { width: 32px; height: 32px; }
.service h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.75;
}

/* ============ WORK STAGES ============ */
.stages { padding: 24px 0 44px; background: #fff; }
.stages-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  direction: ltr;
  gap: 2px;
}
.stage {
  flex: 1 1 0;
  max-width: 165px;
  text-align: center;
  direction: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stage-icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: #f6f4ef;
  border: 1px solid #ece7dd;
  display: flex; align-items: center; justify-content: center;
}
.stage-icon svg { width: 34px; height: 34px; }
.stage-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-top: -17px;
  border: 3px solid #fff;
  position: relative;
  z-index: 2;
}
.stage h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 12px 0 6px;
}
.stage p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
}
.stage-arrow {
  display: flex;
  align-items: center;
  color: #cfc8ba;
  padding-top: 24px;
  flex: 0 0 auto;
}
.stage-arrow svg { width: 26px; height: 26px; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 34px 0 48px; background: #fff; }
.testi-card {
  background: #fbfaf6;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow);
}
.quote-mark {
  font-size: 64px;
  line-height: .8;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  align-self: flex-start;
  flex: 0 0 auto;
}
.testi-text {
  flex: 1;
  direction: inherit;
  font-size: 16px;
  color: #4c584f;
  line-height: 2;
  text-align: center;
}
.testi-person {
  flex: 0 0 auto;
  direction: inherit;
  text-align: center;
  min-width: 120px;
}
.avatar {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: #ededed;
  color: #b7bdb8;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.avatar svg { width: 40px; height: 40px; margin-top: 6px; }
.t-name { display: block; font-weight: 800; color: var(--text-dark); font-size: 16px; }
.t-role { display: block; font-size: 13px; color: var(--gold); margin-top: 2px; }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.testi-dots .dot { background: rgba(14,43,33,.28); }
.testi-dots .dot.active { background: var(--gold); width: 22px; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--green);
  color: #cfd6d0;
  padding: 46px 0 0;
  margin-top: 10px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr;
  gap: 40px;
  direction: inherit;
  padding-bottom: 40px;
}
.f-head {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}
.fb-logo { width: 120px; height: 120px; object-fit: contain; margin-bottom: 12px; background: transparent; filter: drop-shadow(0 4px 10px rgba(0,0,0,.26)); }
.fb-top { color: var(--gold); font-size: 14px; font-weight: 600; }
.fb-name { color: var(--gold); font-size: clamp(20px, 2.2vw, 27px); font-weight: 800; line-height: 1.45; margin: 4px 0 6px; max-width: 360px; }
.fb-tag { font-size: 13px; color: #b9c1bb; margin-bottom: 16px; }
.fb-desc { font-size: 14px; line-height: 1.9; color: #b9c1bb; max-width: 320px; }

.f-links ul, .f-info { list-style: none; }
.f-links li { margin-bottom: 12px; }
.f-links a { color: #c2cac3; font-size: 15px; transition: color .2s ease; }
.f-links a:hover { color: var(--gold); }

.f-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: #c2cac3;
}
.f-info svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; }

.f-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.f-social a:hover { background: var(--gold); color: #fff; }
.f-social svg { width: 18px; height: 18px; }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #b3bcb5;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .line-dark, .line-gold { font-size: 40px; }
}

@media (max-width: 900px) {
  .about-inner { flex-direction: column; }
  .about-text { text-align: center; }
  .about-underline { margin-left: auto; margin-right: auto; }
  .about-badges { justify-content: center; flex-wrap: wrap; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .line-dark, .line-gold { font-size: 30px; }
  .hero-sub { font-size: 20px; }
  .hero-features { gap: 16px 28px; flex-wrap: wrap; }
  .hf-item { flex: 0 1 38%; }
  .hero-buttons { flex-wrap: wrap; }
  .cards-grid { grid-template-columns: 1fr; }
  .about-images { height: 210px; }
  .header-inner { padding: 0 18px; padding-bottom: 26%; gap: 14px; }
  :root { --header-h: 240px; }
  .header-controls { gap: 9px; }
  .lang-fab { left: 18px; width: 44px; height: 44px; font-size: 12.5px; top: calc(100% - 26px); }
  .hero-content { padding-top: 46px; }
  .gal-arrow { display: none; }
}

@media (max-width: 360px) {
  .header-controls { gap: 7px; }
  .lang-fab { left: 16px; width: 40px; height: 40px; font-size: 11.5px; top: calc(100% - 24px); }
  .nav-toggle { width: 40px; height: 40px; border-radius: 10px; }
}

@media (max-width: 380px) {
  .logo { width: 118px; height: 118px; }
  .header-h1 { font-size: 18px; }
  .header-h2 { font-size: 15px; }
  .header-h3 { font-size: 10px; }
}

/* ---- responsive for new sections ---- */
@media (max-width: 1100px) {
  .gallery-grid { height: 360px; }
  .stages-row { flex-wrap: wrap; gap: 18px; }
  .stage-arrow { display: none; }
  .stage { flex: 1 1 40%; max-width: 200px; }
}
@media (max-width: 900px) {
  .stats-bar { flex-wrap: wrap; gap: 24px 0; }
  .stat { flex: 1 1 50%; }
  .stat-div { display: none; }
  .services-row { flex-wrap: wrap; }
  .service { flex: 1 1 45%; border-right: none !important; margin-bottom: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .sec-title { font-size: 24px; }
  .stat { flex: 1 1 100%; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .gal-big { grid-row: auto; height: 220px; }
  .gal-img { height: 190px; }
  .service { flex: 1 1 100%; }
  .stage { flex: 1 1 100%; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .gal-right { right: 4px; } .gal-left { left: 4px; }
}
