/* ============================================================
   HARAZONE ENERGY — Modern CSS
   Colors: primary #dd4454 | dark #09445a | navy #042b3d
   Fonts: Poppins, Work Sans
   ============================================================ */

:root {
  --primary:    #dd4454;
  --primary-dk: #c0392b;
  --dark:       #09445a;
  --navy:       #042b3d;
  --light-bg:   #f4f7f9;
  --white:      #ffffff;
  --text:       #333333;
  --text-muted: #6c7a89;
  --border:     #e2e8ed;
  --shadow:     0 8px 40px rgba(9,68,90,.12);
  --shadow-sm:  0 2px 16px rgba(9,68,90,.08);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --nav-h:      80px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul { list-style: none; }

/* ── Preloader ─────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-ring {
  width: 56px; height: 56px;
  border: 4px solid rgba(255,255,255,.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(4,43,61,.35);
  height: 65px;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1.1;
}
.nav-logo-text .sub {
  font-size: .68rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-menu a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 6px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { left: 1rem; right: 1rem; }
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: .5rem 1.4rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dk) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem .6rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  z-index: 1002;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.22); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open { background: rgba(221,68,84,.25); border-color: rgba(221,68,84,.4); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4,43,61,.55);
  backdrop-filter: blur(2px);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.active { opacity: 1; }

/* Mobile slide-in drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: -8px 0 40px rgba(0,0,0,.35);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.drawer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
}
.drawer-logo img { border-radius: 6px; }
.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.drawer-close:hover { background: rgba(221,68,84,.3); border-color: rgba(221,68,84,.4); }

/* Drawer nav links */
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  flex: 1;
}
.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
}
.drawer-link:hover {
  color: var(--white);
  background: rgba(221,68,84,.12);
  padding-left: 2rem;
}
.drawer-link svg { opacity: .45; flex-shrink: 0; }
.drawer-link--cta {
  margin-top: .75rem;
  color: var(--primary);
  font-weight: 600;
  background: rgba(221,68,84,.08);
}
.drawer-link--cta:hover { background: rgba(221,68,84,.2); color: #ff6b7a; }

/* Drawer footer */
.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.drawer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  transition: color var(--transition);
}
.drawer-contact-item:hover { color: rgba(255,255,255,.85); }

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4,43,61,.75) 0%,
    rgba(9,68,90,.55) 50%,
    rgba(221,68,84,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--primary);
}
.hero-title {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 680px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp .8s .5s forwards;
}
.hero-title span { color: var(--primary); }
.hero-desc {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp .8s .7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp .8s .9s forwards;
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
  border: none;
}
.hero-dot.active { width: 28px; background: var(--primary); }
.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.2); }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221,68,84,.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--navy);
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); }

/* ── Section Helpers ──────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before, .section-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--primary);
  width: 24px;
}
.section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-title span { color: var(--primary); }
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.divider-line {
  width: 56px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin-bottom: 2rem;
}

/* ── About ────────────────────────────────────────────────── */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-title { text-align: left; }
.about-text .section-tag { justify-content: flex-start; }
.about-text .section-tag::before { display: none; }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.85;
  font-size: .97rem;
}
.about-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text);
  font-size: .92rem;
  line-height: 1.6;
}
.about-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: .45rem;
  background: var(--primary);
  border-radius: 50%;
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.about-gallery .img-main {
  grid-column: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}
.about-gallery .img-sub {
  border-radius: var(--radius);
  overflow: hidden;
  height: 170px;
}
.about-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-gallery .img-main:hover img,
.about-gallery .img-sub:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: .85rem 2rem;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(221,68,84,.35);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ── Stats ────────────────────────────────────────────────── */
#stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(221,68,84,.08);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-num {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-num span { font-size: .65em; }
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Services ─────────────────────────────────────────────── */
#services { background: var(--light-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(221,68,84,.1), rgba(9,68,90,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: background var(--transition), transform var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-5deg) scale(1.08);
}
.service-card h5 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.service-card p { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.7; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.service-link:hover { gap: .75rem; }
.service-link svg { width: 14px; height: 14px; }

/* ── Partners ─────────────────────────────────────────────── */
#partners { background: var(--white); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  min-height: 120px;
}
.partner-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(221,68,84,.2);
}
.partner-card img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(60%) opacity(.75);
  transition: filter var(--transition);
  margin: 0 auto;
}
.partner-card:hover img { filter: grayscale(0%) opacity(1); }

/* ── CTA Section ──────────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 60%, rgba(221,68,84,.3) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
#cta::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(221,68,84,.15);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.cta-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 2.5rem; }

/* ── Contact / Footer ─────────────────────────────────────── */
#footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-logo img { height: 48px; width: auto; }
.footer-logo .name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo .sub {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
}
.footer-desc { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.8; margin-bottom: 1.75rem; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: .75rem;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--primary);
}
.contact-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-item { display: flex; align-items: flex-start; gap: .85rem; }
.contact-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(221,68,84,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: .85rem;
}
.contact-text { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; }
.contact-text a { color: rgba(255,255,255,.6); }
.contact-text a:hover { color: var(--primary); }

/* Contact Form */
.contact-form-modern .form-row { display: flex; gap: 1rem; margin-bottom: 1rem; }
.contact-form-modern .form-group { flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.contact-form-modern label {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-form-modern input,
.contact-form-modern textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.contact-form-modern input::placeholder,
.contact-form-modern textarea::placeholder { color: rgba(255,255,255,.25); }
.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,.09);
}
.contact-form-modern textarea { resize: vertical; min-height: 110px; }
.contact-form-modern .mb-1 { margin-bottom: 1rem; }

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }
.fade-up-d5 { transition-delay: .5s; }
.fade-up-d6 { transition-delay: .6s; }
.fade-up-d7 { transition-delay: .7s; }
.fade-up-d8 { transition-delay: .8s; }

/* ── Toast notification ───────────────────────────────────── */
.toast-msg {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: #1e7e34;
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.toast-msg.show { transform: translateY(0); opacity: 1; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-grid > *:last-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-gallery { order: -1; }
  .about-gallery .img-main { height: 220px; }
  .about-gallery .img-sub  { height: 140px; }
  .about-badge { bottom: -1rem; font-size: .78rem; padding: .7rem 1.4rem; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  /* show overlay shell on mobile — pointer-events only when .active */
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.active { pointer-events: auto; }
}

@media (max-width: 700px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid > *:last-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-modern .form-row { flex-direction: column; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions a { text-align: center; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-dots { bottom: 1.25rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery .img-main { grid-column: span 1; }
  .section-header { margin-bottom: 2.5rem; }
}

/* ── Anti-bot honeypot (invisible pour les humains) ──────────── */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */
#contact {
  position: relative;
  background: linear-gradient(160deg, #07202f 0%, #042234 50%, #0c1c27 100%);
  overflow: hidden;
  padding: 6rem 0 7rem;
}

/* Subtle dot-grid background texture */
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Background glow orbs */
.co-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.co-orb-a {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(221,68,84,.22) 0%, transparent 70%);
  top: -160px; left: -180px;
}
.co-orb-b {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(9,68,90,.5) 0%, transparent 70%);
  bottom: -100px; right: -140px;
}

/* ── Section header ──────────────────────────────────────────── */
.co-head {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.co-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(221,68,84,.12);
  border: 1px solid rgba(221,68,84,.3);
  color: #f87b87;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}
.co-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: coPulse 2s ease-in-out infinite;
}
@keyframes coPulse {
  0%,100% { opacity: .4; transform: scale(.85); }
  50%      { opacity: 1;  transform: scale(1.1); }
}
.co-title {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.co-title span { color: var(--primary); }
.co-desc { color: rgba(255,255,255,.5); font-size: .95rem; }

/* ── Floating card ───────────────────────────────────────────── */
.co-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  border-radius: 24px;
  overflow: hidden;
  /* glowing border via box-shadow */
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 20px 60px rgba(0,0,0,.55),
    0 4px 16px rgba(0,0,0,.35);
}

/* ── LEFT INFO PANEL ─────────────────────────────────────────── */
.co-info {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, #1c0d10 0%, #3a1018 40%, #2a0b12 70%, #1a0a0f 100%);
}

/* Mesh overlay */
.co-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(221,68,84,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221,68,84,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Brand chip */
.co-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .45rem .9rem .45rem .5rem;
  margin-bottom: 2rem;
}
.co-brand-chip img { border-radius: 50%; width: 28px; height: 28px; object-fit: cover; }
.co-brand-chip span {
  font-family: 'Work Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.co-info-body { position: relative; z-index: 2; flex: 1; }

.co-info-title {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.co-info-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 280px;
}

/* Detail rows */
.co-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.co-row {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .85rem;
  line-height: 1.55;
  transition: transform .22s ease;
}
a.co-row:hover { transform: translateX(5px); }

.co-row-ic {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(221,68,84,.2);
  border: 1px solid rgba(221,68,84,.25);
  display: flex; align-items: center; justify-content: center;
  color: #f87b87;
  font-size: .8rem;
  transition: background .22s, border-color .22s;
}
a.co-row:hover .co-row-ic { background: rgba(221,68,84,.35); border-color: rgba(221,68,84,.4); }

.co-row-body { display: flex; flex-direction: column; padding-top: .1rem; }
.co-row-body em {
  font-style: normal;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .15rem;
}

/* Social buttons */
.co-socials { display: flex; gap: .6rem; }
.co-soc {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: background .22s, border-color .22s, color .22s, transform .22s;
}
.co-soc:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px); }

/* Guarantee badge pinned at bottom */
.co-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 2.25rem;
  background: rgba(221,68,84,.15);
  border: 1px solid rgba(221,68,84,.3);
  border-radius: 50px;
  padding: .55rem 1.1rem;
  font-size: .75rem;
  font-weight: 600;
  color: #f87b87;
  align-self: flex-start;
}
.co-badge i { font-size: .8rem; }

/* Decorative arcs */
.co-arc {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(221,68,84,.15);
  pointer-events: none;
}
.co-arc-1 { width: 360px; height: 360px; bottom: -150px; right: -140px; }
.co-arc-2 { width: 220px; height: 220px; bottom: -80px; right: -80px; border-color: rgba(221,68,84,.22); }

/* ── RIGHT FORM PANEL ────────────────────────────────────────── */
.co-form-side {
  background: #fff;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
}

.co-form-head { margin-bottom: 2rem; }
.co-form-head h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f2233;
  margin-bottom: .35rem;
}
.co-form-head p { font-size: .82rem; color: #94a3b8; }
.co-form-head p span { color: var(--primary); font-weight: 700; }

/* Form grid */
.co-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

/* Individual field */
.co-field { display: flex; flex-direction: column; gap: .5rem; }
.co-field--full { grid-column: 1 / -1; }

.co-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
}
.co-label span { color: var(--primary); }

/* Input wrapper */
.co-input-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 1rem;
  transition: border-color .22s, box-shadow .22s, background .22s;
}
.co-input-wrap:focus-within {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(221,68,84,.09);
}

.co-input-wrap--ta { align-items: flex-start; padding-top: .9rem; }

.co-input-ic {
  flex-shrink: 0;
  font-size: .82rem;
  color: #cbd5e1;
  transition: color .22s;
}
.co-input-ic--ta { margin-top: .05rem; }
.co-input-wrap:focus-within .co-input-ic { color: var(--primary); }

.co-input-wrap input,
.co-input-wrap textarea {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  color: #0f2233;
  padding: .9rem 0;
}
.co-input-wrap textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.co-input-wrap input::placeholder,
.co-input-wrap textarea::placeholder { color: #c1cdd9; }

/* Submit button */
.co-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1.05rem 2rem;
  background: linear-gradient(135deg, #dd4454 0%, #b02535 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 6px 24px rgba(221,68,84,.32);
}
/* Shine sweep on hover */
.co-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.co-submit:hover::before { left: 130%; }
.co-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(221,68,84,.42); }
.co-submit:active { transform: translateY(0); }

.co-submit-arrow { display: flex; align-items: center; transition: transform .25s; }
.co-submit:hover .co-submit-arrow { transform: translateX(5px); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER — simplified 3-column layout
   ═══════════════════════════════════════════════════════════════ */
.footer-grid-simple {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3.5rem;
  padding: 4.5rem 0 3rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — contact section & simplified footer
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .co-card { grid-template-columns: 1fr 1.1fr; }
  .footer-grid-simple { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand-col { grid-column: span 2; }
}

@media (max-width: 900px) {
  .co-card { grid-template-columns: 1fr; }
  .co-info { padding: 3rem 2.5rem; }
  .co-form-side { padding: 3rem 2.5rem; }
  .co-info-title { font-size: 1.65rem; }
  #contact { padding: 5rem 0 5.5rem; }
}

@media (max-width: 700px) {
  .co-form-grid { grid-template-columns: 1fr; }
  .co-info { padding: 2.5rem 1.75rem; }
  .co-form-side { padding: 2.5rem 1.75rem; }
  .co-title { font-size: 1.9rem; }
  .footer-grid-simple { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .footer-brand-col { grid-column: span 1; }
  #contact { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .co-card { border-radius: 18px; }
  .co-info { padding: 2rem 1.5rem; }
  .co-form-side { padding: 2rem 1.5rem; }
}
