/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0D1B2A;
  --blue:    #1B4F8A;
  --bright:  #2563EB;
  --gold:    #F4A522;
  --gold2:   #FCD34D;
  --white:   #FFFFFF;
  --light:   #F0F4F8;
  --muted:   #94A3B8;
  --text:    #1E293B;
  --radius:  14px;
  --shadow:  0 8px 32px rgba(13,27,42,0.18);
  --trans:   0.4s cubic-bezier(0.4,0,0.2,1);
}

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

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: var(--gold); color: var(--navy); }

/* ===== UTILITY ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--light); }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,165,34,0.12);
  color: var(--gold);
  border: 1px solid rgba(244,165,34,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.2; margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-sub {
  font-size: 1.05rem; color: #64748B;
  max-width: 580px; margin-bottom: 56px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: var(--trans);
  border: 2px solid transparent; white-space: nowrap;
}

.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 24px rgba(244,165,34,0.35);
}
.btn-primary:hover {
  background: var(--gold2); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(244,165,34,0.5);
}

.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--bright); color: var(--white);
  box-shadow: 0 4px 24px rgba(37,99,235,0.3);
}
.btn-blue:hover {
  background: #1d4ed8; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.45);
}

/* ===== ANIMATE ON SCROLL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: var(--trans);
}

#navbar.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-text {
  font-weight: 800; font-size: 1.1rem; color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span { color: var(--gold); display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; padding: 6px 14px;
  border-radius: 8px; transition: var(--trans);
}
.nav-links a:hover { color: var(--gold); background: rgba(244,165,34,0.1); }

.nav-cta { margin-left: 8px; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--trans);
}

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(13,27,42,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-size: 1.4rem; font-weight: 700; padding: 12px 32px;
  border-radius: 12px; transition: var(--trans); text-align: center;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(244,165,34,0.1); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 2rem; cursor: pointer; padding: 8px;
}

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('img3.jpeg');
  background-size: cover; background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.92) 0%,
    rgba(27,79,138,0.75) 50%,
    rgba(13,27,42,0.88) 100%
  );
}

.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.5); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,165,34,0.15);
  border: 1px solid rgba(244,165,34,0.4);
  color: var(--gold); padding: 8px 20px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 24px;
  animation: fadeDown 0.8s ease 0.2s both;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-name {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.05; margin-bottom: 8px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-name em {
  font-style: normal; color: var(--gold);
  position: relative; display: inline-block;
}
.hero-name em::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 3px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: underline-expand 0.8s ease 1.2s both;
}
@keyframes underline-expand { to { transform: scaleX(1); } }

.hero-title {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85); font-weight: 500;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--white); font-weight: 700;
  line-height: 1.5; margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-tagline strong { color: var(--gold); }

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.75s both;
}
.hero-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.8s ease 0.9s both;
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; animation: bounce-scroll 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--gold);
}
.stat-item {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden;
  transition: var(--trans);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(244,165,34,0.06); }
.stat-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: var(--trans);
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-num {
  font-size: 2.2rem; font-weight: 900; color: var(--gold);
  display: block; line-height: 1;
}
.stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-frame img {
  width: 100%; display: block;
  transition: transform 0.6s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--navy);
  padding: 16px 22px; border-radius: 16px;
  font-weight: 800; font-size: 1rem; text-align: center;
  box-shadow: 0 8px 24px rgba(244,165,34,0.4);
  line-height: 1.2;
}
.about-img-badge span { display: block; font-size: 0.7rem; font-weight: 600; opacity: 0.7; }
.about-deco {
  position: absolute; top: -16px; left: -16px;
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid var(--gold); opacity: 0.3;
}
.about-deco2 {
  position: absolute; top: -30px; left: -30px;
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--blue); opacity: 0.2;
}

.about-text p { color: #475569; margin-bottom: 16px; font-size: 1.05rem; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 28px 0;
}
.about-hl {
  display: flex; align-items: center; gap: 10px;
  background: var(--light); border-radius: 10px; padding: 12px 16px;
  font-size: 0.88rem; font-weight: 600; color: var(--navy);
}
.about-hl svg { color: var(--gold); flex-shrink: 0; }

.about-location {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.9rem; margin-bottom: 28px;
}
.about-location svg { color: var(--gold); }

/* ===== EXPERTISE ===== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.exp-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid #E2E8F0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: var(--trans); cursor: default;
  position: relative; overflow: hidden;
}
.exp-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--gold);
  transform: scaleY(0); transform-origin: top; transition: var(--trans);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.exp-card:hover::before { transform: scaleY(1); }

.exp-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--bright));
  box-shadow: 0 4px 14px rgba(37,99,235,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 20px;
  color: var(--white);
  transition: var(--trans);
}
.exp-icon i { color: #ffffff !important; }
.exp-card:hover .exp-icon {
  background: linear-gradient(135deg, var(--gold), #e08c10);
  box-shadow: 0 4px 18px rgba(244,165,34,0.3);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}
.exp-card h3 {
  font-size: 1.08rem; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.exp-card p { font-size: 0.9rem; color: #64748B; line-height: 1.7; }

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.project-card {
  background: var(--navy); border-radius: var(--radius);
  overflow: hidden; transition: var(--trans);
  box-shadow: var(--shadow);
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(13,27,42,0.3); }
.project-card-img {
  height: 200px; overflow: hidden; position: relative;
}
.project-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.project-card:hover .project-card-img img { transform: scale(1.08); }
.project-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
}
.project-card-body { padding: 24px; }
.project-card-client {
  font-size: 0.78rem; color: var(--gold); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.project-card-body h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--white);
  margin-bottom: 10px; line-height: 1.4;
}
.project-card-body p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.project-result {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem; color: var(--gold); font-weight: 600;
}

/* ===== PARTNERSHIP SECTION ===== */
.partnership-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 100px 0;
}
.partnership-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F4A522' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.partnership-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.partnership-img {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  position: relative;
}
.partnership-img img { width: 100%; display: block; }
.partnership-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.6) 0%, transparent 60%);
}
.partnership-img-caption {
  position: absolute; bottom: 20px; left: 20px;
  color: var(--white); font-size: 0.82rem;
  font-weight: 600; opacity: 0.85;
}

.partnership-content .section-title { color: var(--white); }
.partnership-content .section-sub { color: rgba(255,255,255,0.6); }
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px;
}
.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white); padding: 10px 20px;
  border-radius: 10px; font-size: 0.88rem; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  transition: var(--trans);
}
.trust-badge:hover { background: rgba(244,165,34,0.15); border-color: var(--gold); }
.trust-badge i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* ===== PARCOURS / TIMELINE ===== */
.timeline {
  position: relative; padding-left: 32px; max-width: 760px; margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), var(--blue), var(--gold));
  border-radius: 2px;
}
.timeline-item {
  position: relative; margin-bottom: 48px;
  padding-left: 28px;
}
.timeline-item::before {
  content: ''; position: absolute; left: -40px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}
.timeline-item:hover::before { transform: scale(1.3); transition: var(--trans); }
.timeline-date {
  display: inline-block;
  background: rgba(244,165,34,0.12); color: var(--gold);
  border: 1px solid rgba(244,165,34,0.3);
  padding: 3px 12px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 10px;
}
.timeline-title {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin-bottom: 4px;
}
.timeline-org {
  font-size: 0.9rem; color: var(--bright); font-weight: 600;
  margin-bottom: 8px;
}
.timeline-desc { font-size: 0.9rem; color: #64748B; }

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative; transition: var(--trans);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-quote {
  font-size: 4rem; color: var(--gold); opacity: 0.2;
  line-height: 0.8; font-family: Georgia, serif;
  position: absolute; top: 20px; left: 28px;
}
.testi-text {
  font-size: 1rem; color: #475569; line-height: 1.75;
  font-style: italic; margin-bottom: 24px; padding-top: 20px;
  position: relative; z-index: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--bright));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testi-role { font-size: 0.82rem; color: var(--muted); }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-top: 2px; }

/* ===== CONTACT ===== */
.contact-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.contact-section::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,165,34,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start; position: relative; z-index: 1;
}
.contact-info .section-title { color: var(--white); }
.contact-info .section-sub { color: rgba(255,255,255,0.55); }

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-item-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(244,165,34,0.15);
  border: 1px solid rgba(244,165,34,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
  color: var(--gold) !important;
}
.contact-item-icon i { color: var(--gold) !important; font-size: 1.1rem; }
.contact-item-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.contact-item-value {
  color: var(--white); font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: var(--trans);
}
a.contact-item-value:hover { color: var(--gold); }

.contact-socials {
  display: flex; gap: 12px; margin-top: 32px;
}
.social-link {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; font-size: 1rem;
  transition: var(--trans);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px; padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 14px 16px;
  color: var(--white); font-size: 0.95rem; font-family: inherit;
  transition: var(--trans); outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(244,165,34,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
  text-decoration: none; box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: var(--trans); animation: wa-pulse 3s infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ===== FOOTER ===== */
footer {
  background: #07111c; padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-text { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-text strong { color: var(--gold); }
.footer-back {
  color: rgba(255,255,255,0.4); font-size: 0.85rem; text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: var(--trans);
}
.footer-back:hover { color: var(--gold); }

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none; text-align: center; padding: 20px;
  color: #4ade80; font-weight: 600; font-size: 1rem;
  background: rgba(74,222,128,0.1); border-radius: 10px;
  border: 1px solid rgba(74,222,128,0.2);
  margin-top: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
  .partnership-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 420px; margin: 0 auto; }
  .expertise-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .partnership-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-badge { bottom: -12px; right: -8px; }

  /* --- Hero mobile --- */
  #hero { min-height: 100svh; align-items: flex-start; }
  .hero-content { padding-top: 100px; padding-bottom: 40px; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; margin-bottom: 16px; }
  .hero-name { font-size: 2.6rem; margin-bottom: 10px; }
  .hero-name em::after { display: none; }
  .hero-title { font-size: 0.9rem; margin-bottom: 14px; }
  .hero-tagline { font-size: 1rem; margin-bottom: 20px; }
  .hero-pills { gap: 8px; margin-bottom: 28px; }
  .hero-pill { font-size: 0.78rem; padding: 5px 12px; }
  .hero-actions {
    flex-direction: row; flex-wrap: wrap;
    gap: 10px; align-items: flex-start;
  }
  .hero-actions .btn {
    padding: 12px 20px; font-size: 0.85rem;
    flex: 1 1 auto; justify-content: center;
    min-width: 140px;
  }
  .hero-scroll { bottom: 20px; }
}

@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 1.8rem; }
  .contact-form { padding: 24px; }
  .hero-name { font-size: 2.2rem; }
  .hero-actions .btn { min-width: 120px; font-size: 0.82rem; }
}
