/* ============ Tokens ============ */
:root{
  color-scheme: light;
  --primary: #D69700;
  --primary-dark: #B27D00;
  --primary-tint: #FEF7E6;
  --bg: #FFFFFF;
  --bg-soft: #F7F7F9;
  --surface: #FFFFFF;
  --surface-elevated: #FFFFFF;
  --surface-muted: #F7F7F9;
  --text-dark: #222222;
  --text-gray: #777777;
  --footer-bg: #161616;
  --header-bg: rgba(255, 255, 255, 0.85);
  --drawer-bg: rgba(255, 255, 255, 0.96);
  --glass-border: rgba(255, 255, 255, 0.4);
  --overlay-bg: rgba(0, 0, 0, 0.25);
  --input-bg: #F7F7F9;
  --input-border: #eaeaea;
  --footer-social-bg: #2a2a2a;
  --footer-muted: #aaa;
  --footer-line: #2c2c2c;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --shadow-soft: 0 20px 45px rgba(30,10,30,0.08);
  --shadow-card: 0 12px 30px rgba(30,10,30,0.06);
  --container: 1180px;
}

html[data-theme="dark"]{
  color-scheme: dark;
  --primary: #E0A622;
  --primary-dark: #BE8500;
  --primary-tint: rgba(224, 166, 34, 0.16);
  --bg: #0E1117;
  --bg-soft: #151A23;
  --surface: #181E28;
  --surface-elevated: #202734;
  --surface-muted: #111722;
  --text-dark: #F3F5F8;
  --text-gray: #B8C0CC;
  --footer-bg: #080A0E;
  --header-bg: rgba(16, 20, 28, 0.9);
  --drawer-bg: rgba(16, 20, 28, 0.98);
  --glass-border: rgba(255, 255, 255, 0.12);
  --overlay-bg: rgba(0, 0, 0, 0.5);
  --input-bg: #111722;
  --input-border: #2A3444;
  --footer-social-bg: #1A202B;
  --footer-muted: #9EA7B5;
  --footer-line: #202734;
  --shadow-soft: 0 22px 50px rgba(0,0,0,0.34);
  --shadow-card: 0 14px 34px rgba(0,0,0,0.24);
}

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

html{ scroll-behavior: smooth; }

body{
  font-family: 'Tajawal', sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background .25s ease, color .25s ease;
}

.container{
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

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

.accent{ color: var(--primary); }

/* ============ Reveal Animation ============ */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ============ Header ============ */
.site-header{
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 3000;
  display: flex;
  justify-content: center;
  transition: top .35s ease;
}
.header-inner{
  position: relative;
  z-index: 3004;
  width: 90%;
  max-width: 1180px;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img{
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(138,36,120,.2);
}
.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name{
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-dark);
  transition: color 0.3s;
}
.brand:hover .brand-name {
  color: var(--primary);
}
.brand-sub{
  font-size: .72rem;
  color: var(--text-gray);
  font-weight: 600;
  margin-top: 1px;
}

.header-left{
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle{
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.theme-toggle:hover{
  transform: translateY(-2px);
  background: var(--primary);
  color: #fff;
}
.theme-icon{
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.moon-icon{ display: none; }
html[data-theme="dark"] .sun-icon{ display: none; }
html[data-theme="dark"] .moon-icon{ display: block; }

.btn-cta{
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  font-size: .88rem;
  text-align: center;
}
.btn-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(214,151,0,.15);
  background: var(--primary);
  color: #fff;
}

.menu-btn{
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--primary-tint);
  display: flex; flex-direction: column; align-items:center; justify-content:center;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 3005;
  transition: background 0.3s ease;
}
.menu-btn:hover {
  background: var(--primary);
}
.menu-btn:hover span{ background: #fff; }
.menu-btn span{
  width: 18px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-btn.active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menu-btn.active span:nth-child(2){ opacity: 0; }
.menu-btn.active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.nav-links{
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--drawer-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 40px;
  gap: 18px;
  z-index: 3003;
  pointer-events: none;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 28px 0 0 28px;
}
.nav-links.open{
  right: 0;
  pointer-events: auto;
}
.nav-links a{
  position: relative;
  z-index: 1;
  display: block;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover{
  background: var(--primary-tint);
  color: var(--primary);
}

.nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--overlay-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 3001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open{
  overflow: hidden;
}

.desktop-only { display: none; }
.mobile-only { display: block; }
@media (max-width: 899px) {
  .mobile-only.btn-cta {
    display: block !important;
    margin-top: 12px;
    color: #fff !important;
    background: var(--primary) !important;
    border: none !important;
  }
}

@media (min-width: 900px) {
  .desktop-only.btn-cta{
    display: inline-block;
  }
}

/* ============ Hero ============ */
.hero{
  position: relative;
  min-height: 100svh;
  padding: 130px 0 58px;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.08) 45%, rgba(0,0,0,.58));
  pointer-events: none;
  z-index: 1;
}
.hero-inner{
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 188px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.hero-desc{
  color: #fff;
  font-size: 1.05rem;
  max-width: 640px;
  margin-top: auto;
  margin-bottom: 34px;
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}

.hero-video-wrap{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #111;
}

.btn-primary{
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(214,151,0,.22);
  transition: transform .25s ease, box-shadow .25s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(214,151,0,.28);
}
.btn-primary.large{ padding: 18px 52px; font-size: 1.05rem; }
.btn-primary.full{ width: 100%; text-align:center; }

.chips-wrap{
  margin-top: 44px;
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}
.chips{
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 10px 0;
  direction: ltr;
  animation: infiniteScroll 25s linear infinite;
}
.chips:hover {
  animation-play-state: paused;
}
@keyframes infiniteScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% - 8px), 0, 0);
  }
}
.chip-link{
  white-space: nowrap;
  background: var(--surface);
  color: var(--text-dark);
  font-size: .88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  display: inline-block;
  text-decoration: none;
}
.chip-link:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(214, 151, 0, 0.15);
}

@media (max-width: 520px){
  .hero{
    padding: 108px 0 42px;
  }
  .hero-inner{
    min-height: calc(100svh - 150px);
  }
  .hero-desc{
    font-size: .98rem;
    margin-bottom: 24px;
  }
  .chips-wrap{
    margin-top: 32px;
  }
}

/* ============ Section basics ============ */
section{ padding: 90px 0; }
.section-title{
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.section-title.center{ text-align: center; }
.section-text{
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 20px;
}
.section-text.center{
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

/* ============ About ============ */
.about{ background: var(--bg); }
.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.about-media img{
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.stat-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stat-card{
  background: var(--surface-elevated);
  border-radius: 22px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease;
}
.stat-card:hover{ transform: translateY(-4px); }
.stat-num{
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.stat-label{ font-size: .82rem; color: var(--text-gray); font-weight: 600; }

/* ============ Why ============ */
.why{ background: var(--bg-soft); }
.why-question{
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px 32px;
  text-align: center;
  margin-bottom: 44px;
}
.why-question h2{
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
}
.why-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.why-card{
  background: var(--surface);
  border-radius: 26px;
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease;
}
.why-card:hover{ transform: translateY(-4px); }
.why-icon{
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.why-icon svg{ width: 26px; height: 26px; }
.why-card h3{ font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.why-card p{ color: var(--text-gray); font-size: .92rem; }

/* ============ Services ============ */
.services{ background: var(--bg); }
.service-block{
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 80px;
}
.service-block:last-child{ margin-bottom: 0; }
.service-media{
  position: relative;
}
.service-media img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.service-media img.service-image-contain{
  height: auto;
  max-height: 550px;
  object-fit: contain;
}
.service-float-card{
  position: absolute;
  bottom: -22px;
  right: 20px;
  left: 20px;
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 18px 24px;
  box-shadow: var(--shadow-soft);
}
.service-float-card h3{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.service-float-card p{ font-size: .85rem; color: var(--text-gray); }
.service-copy{ padding-top: 20px; }
.feature-list, .check-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}
.feature-list li{
  position: relative;
  padding-right: 26px;
  font-weight: 600;
  font-size: .95rem;
}
.feature-list li::before{
  content: "";
  position: absolute;
  right: 0; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.check-list li{
  position: relative;
  padding-right: 30px;
  font-weight: 600;
  font-size: .93rem;
}
.check-list li::before{
  content: "✓";
  position: absolute;
  right: 0; top: -1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: .7rem;
  display: flex; align-items:center; justify-content:center;
}

/* ============ Goals ============ */
.goals{ background: var(--bg-soft); }
.goals-intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
.goals-media {
  position: relative;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.slider-wrapper .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}
.slider-wrapper .slide.active {
  opacity: 1;
  z-index: 2;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 58%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--glass-border);
  color: var(--text-dark);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  padding: 0;
  line-height: 1;
}
.slider-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.slider-btn.prev {
  left: 12px;
}
.slider-btn.next {
  right: 12px;
}
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.slider-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slider-dots .dot:hover {
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
}
.slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.25);
}
.goals-vision-mission {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intro-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease;
  text-align: right;
}
.intro-card:hover {
  transform: translateY(-4px);
}
.intro-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.intro-icon svg { width: 22px; height: 22px; }
.intro-card h3 {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.intro-card p {
  color: var(--text-gray);
  font-size: .9rem;
  line-height: 1.6;
}
.goals-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.goal-card{
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease;
  text-align: center;
}
.goal-card:hover{ transform: translateY(-4px); }
.goal-icon{
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 20px;
}
.goal-icon svg{ width: 28px; height: 28px; }
.goal-card h3{
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.goal-card p{
  color: var(--text-gray);
  font-size: .92rem;
  line-height: 1.6;
}

/* ============ CTA ============ */
.cta{ background: var(--bg); }
.cta-inner{
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xl);
  padding: 60px 30px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.cta-inner p{
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.8;
}
.cta-inner .btn-primary{
  background: var(--surface);
  color: var(--primary);
}

/* ============ Contact ============ */
.contact{ background: var(--bg-soft); }
.contact-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.contact-card{
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease;
}
.contact-card:hover{ transform: translateY(-4px); }
.contact-icon{
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 18px;
}
.contact-icon svg{ width: 26px; height: 26px; }
.contact-card h3{ font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.contact-card p{ color: var(--text-gray); font-size: .9rem; margin-bottom: 12px; }
.contact-value{
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
  direction: ltr;
}
.contact-value-block{
  display: block;
}
.contact-value-spaced{
  margin-bottom: 4px;
}
.contact-value-whatsapp{
  color: #25D366;
}
.contact-location{
  font-size: .95rem;
  margin-top: 14px;
  display: inline-block;
}
.contact-map-btn {
  display: block;
  width: max-content;
  margin: 12px auto 0;
  font-size: 0.82rem;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 700;
  transition: all 0.25s ease;
  text-decoration: none;
}
.contact-map-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(214, 151, 0, 0.2);
}

.contact-form{
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-soft);
}
.contact-form h3{
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.form-row{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  border-radius: 16px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-dark);
  resize: none;
  margin-bottom: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A2478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 18px center;
  background-size: 16px;
  padding-left: 45px;
  cursor: pointer;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--primary);
}
.form-status{
  margin-top: 14px;
  font-size: .9rem;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  min-height: 1.2em;
}

/* ============ Footer ============ */
.site-footer{
  background: var(--footer-bg);
  color: #fff;
  border-radius: 48px 48px 0 0;
  padding: 70px 0 30px;
  margin-top: 40px;
}
.footer-inner{ text-align: center; }
.footer-logo-img{
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
}
.footer-name{ font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; }
.footer-desc{
  color: var(--footer-muted);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: .92rem;
}
.footer-social{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}
.footer-social a,
.footer-social-placeholder{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--footer-social-bg);
  display: flex; align-items:center; justify-content:center;
  color: var(--footer-muted);
  transition: background .2s ease, color .2s ease;
}
.footer-social-placeholder{
  opacity: .72;
}
.footer-social a:hover{ background: var(--primary); color: #fff; }
.footer-social a[aria-label="Facebook"]:hover {
  background: #1877F2;
}
.footer-social a[aria-label="WhatsApp"]:hover {
  background: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.footer-social a[aria-label="Instagram"]:hover {
  background: #E4405F;
}
.footer-social a[aria-label="LinkedIn"]:hover {
  background: #0A66C2;
}
.footer-social a[aria-label="X"]:hover {
  background: #000000;
}
.footer-social svg{ width: 18px; height: 18px; }
.footer-divider{
  border: none;
  border-top: 1px solid var(--footer-line);
  margin-bottom: 24px;
}
.footer-bottom p{
  font-size: .8rem;
  color: #888;
  margin-bottom: 6px;
}
.footer-license{ color: #666 !important; }

/* ============ Desktop ============ */
@media (min-width: 900px){
  .header-inner{ padding: 10px 24px; }
  .desktop-only { display: inline-block; }
  .mobile-only { display: none; }
  .menu-btn{ display: none; }
  .nav-links{
    position: static;
    flex-direction: row;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    width: auto;
    height: auto;
    gap: 6px;
    z-index: auto;
    border-radius: 0;
    pointer-events: auto;
  }
  .nav-links a{
    padding: 8px 16px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    border-radius: 0;
    background: transparent;
    transition: color .3s ease;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .nav-links a:hover {
    background: transparent;
    color: var(--primary);
  }

  .about-grid{
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
  }
  .about-media img{ height: 460px; }
  .stat-grid{ grid-template-columns: repeat(4, 1fr); }

  .why-grid{ grid-template-columns: repeat(4, 1fr); }

  .service-block{
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .service-block.reverse{ flex-direction: row-reverse; }
  .service-media, .service-copy{ flex: 1; }
  .service-media img{ height: 420px; }
  .service-copy{ padding-top: 0; }
  .feature-list, .check-list{ grid-template-columns: repeat(2, 1fr); }

  .goals-grid{ grid-template-columns: repeat(3, 1fr); }

  .goals-intro {
    flex-direction: row;
    align-items: stretch;
    gap: 50px;
  }
  .goals-media, .goals-vision-mission {
    flex: 1;
  }
  .slider-container {
    height: 100%;
    min-height: 380px;
  }

  .form-row{ grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px){
  .hero{ padding-top: 138px; }
}

/* ============ Back to Top Button ============ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 151, 0, 0.25);
  transform: scale(0.8);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(214, 151, 0, 0.35);
}
.back-to-top svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
