/* =====================================================
   MALUMTA CONSULTANCY SERVICES LTD — STYLESHEET
   ===================================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --blue: #1a3a6b;
  --blue-mid: #1e4d99;
  --blue-light: #2e6ac6;
  --orange: #e87722;
  --orange-light: #f59c3c;
  --gradient: linear-gradient(135deg, var(--blue) 0%, #1e4d99 50%, var(--orange) 100%);
  --gradient-subtle: linear-gradient(135deg, #eef3fb 0%, #fff8f2 100%);
  --bg: #f8f9fc;
  --surface: #ffffff;
  --surface-alt: #f0f4fa;
  --border: #e2e8f0;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 62px;
  --header-height: 72px;
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- DARK THEME ---- */
[data-theme="dark"] {
  --bg: #0d1525;
  --surface: #152040;
  --surface-alt: #1a2a50;
  --border: #243358;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --gradient-subtle: linear-gradient(135deg, #152040 0%, #1a2040 100%);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; display: block; border-radius: var(--radius-sm); }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---- UTILITY ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 48px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: #d06010; border-color: #d06010; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,119,34,0.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-sm:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ---- FADE-IN ANIMATIONS ---- */
.fade-in, .fade-in-left, .fade-in-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-left  { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   STICKY WRAPPER
   ============================================ */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
  padding: 0;
}

/* ============================================
   SITE HEADER — increased padding for larger logo
   ============================================ */
.site-header {
  position: relative;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  padding-top: 18px;
  padding-bottom: 18px;
  height: auto;
  min-height: unset;
  margin: 0;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  z-index: 0;
}

/* ============================================
   HEADER INNER — 3-column grid
   ============================================ */
.header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  justify-self: start;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }

/* FIXED: increased logo size */
.logo-img {
  height: 72px;
  width: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0 18px;
  height: 42px;
  width: 340px;
  transition: border-color var(--transition), box-shadow var(--transition);
  justify-self: center;
}
.header-search:focus-within {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(46, 106, 198, 0.12);
}
.header-search i { color: var(--text-muted); font-size: 0.85rem; flex-shrink: 0; }
.header-search input {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  outline: none;
  width: 100%;
  line-height: 1;
}
.header-search input::placeholder { color: var(--text-muted); }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--text-primary);
  cursor: pointer;
  outline: none;
  height: 38px;
  transition: border-color var(--transition);
}
.lang-select:focus { border-color: var(--blue-light); }

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface-alt);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.theme-toggle:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: var(--header-height);
  z-index: 999;
  background: var(--blue);
  box-shadow: 0 2px 12px rgba(26,58,107,0.25);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(26,58,107,0.35); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  position: relative;
}

.nav-brand { font-family: var(--font-display); font-size: 1.2rem; color: #fff; display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.12); }

.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  border: 1px solid var(--border);
  overflow: hidden;
  z-index: 100;
}
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.dropdown li a:hover { background: var(--surface-alt); color: var(--blue); border-left-color: var(--orange); }
.has-dropdown:hover .dropdown { display: block; animation: fadeDown 0.22s ease; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 88vh;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape { position: absolute; border-radius: 50%; opacity: 0.12; animation: float 8s ease-in-out infinite; }
.shape-1 { width: 500px; height: 500px; background: #fff; top: -120px; left: -100px; animation-delay: 0s; }
.shape-2 { width: 350px; height: 350px; background: var(--orange-light); bottom: -80px; right: -60px; animation-delay: 2.5s; }
.shape-3 { width: 220px; height: 220px; background: #fff; top: 40%; right: 15%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-24px) scale(1.04); }
}

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

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
}

.accent-text {
  background: linear-gradient(90deg, var(--orange-light), #ffd180);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   ABOUT
   ============================================ */
.about-section { background: var(--surface); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about-image img { width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.about-text p { color: var(--text-secondary); margin-bottom: 18px; font-size: 1.02rem; }

.about-pillars { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 28px;
  flex: 1;
  min-width: 100px;
}
.pillar i    { font-size: 1.5rem; color: var(--orange); }
.pillar span { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-img-wrap { overflow: hidden; height: 180px; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 0.5s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }

.service-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.service-body h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-primary); margin-bottom: 10px; }
.service-body p  { color: var(--text-secondary); font-size: 0.9rem; flex: 1; margin-bottom: 18px; }

.services-tagline {
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 32px;
  background: var(--surface);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============================================
   MILESTONES
   ============================================ */
..milestones-section { background: var(--gradient); padding: 80px 0; }

.milestones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }

.milestone { padding: 24px; }

.milestone-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.milestone-number::after { content: '+'; }

.milestone-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   PARTNERSHIPS — FIXED: bare logos, no card
   ============================================ */
.partners-section { background: var(--surface); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

/* FIXED: removed background, border, shadow — bare logo only */
.partner-item {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.partner-item:hover {
  background: none;
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-4px);
  opacity: 0.75;
}
.partner-item img {
  border-radius: var(--radius-sm);
  object-fit: contain;
  height: 56px;
  width: 100%;
}

/* ============================================
   FAQs
   ============================================ */
.faqs-section { background: var(--bg); }
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 12px;
}

.faq-icon { color: var(--blue); flex-shrink: 0; transition: transform var(--transition); font-size: 0.85rem; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--orange); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 22px; }
.faq-answer.open { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; }

/* ============================================
   TEAM
   ============================================ */
.team-section { background: var(--surface); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: stretch; max-width: 1000px; margin: 0 auto; }
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-alt);
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 0;
}
.team-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 0 0 4px; }
.team-role { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); font-weight: 600; margin: 0 0 10px; }
.team-bio  { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.team-contacts { display: flex; gap: 0.65rem; align-items: center; justify-content: center; margin-top: auto; }
.team-contact-icon { display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:8px; font-size:.95rem; text-decoration:none; transition:transform .2s,background .2s,color .2s; background:#eff6ff; color:#1a4fba; border:1px solid #dbeafe; }
.team-contact-icon:hover { transform: scale(1.15); }
.whatsapp-icon:hover { background:#25D366; color:#fff; border-color:#25D366; }
.email-icon:hover    { background:#1a4fba; color:#fff; border-color:#1a4fba; }
.phone-icon:hover    { background:#0d2a6e; color:#fff; border-color:#0d2a6e; }
/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--blue); color: #fff; }
.footer-top  { padding: 72px 0 48px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1.6fr; gap: 48px; }

.footer-logo { height: 110px; width: auto; margin-bottom: 16px; border-radius: 6px; object-fit: contain; }

.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; max-width: 280px; }

.footer-contacts { margin-bottom: 20px; }
.footer-contacts p { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.footer-contacts p i  { color: var(--orange-light); }
.footer-contacts a:hover { color: var(--orange-light); }

.social-links { display: flex; gap: 12px; margin-bottom: 0; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #fff;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--orange); transform: translateY(-3px); }

.footer-links h5 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange-light); margin-bottom: 18px; font-weight: 600; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links li a::before { content: '›'; color: var(--orange); }
.footer-links li a:hover   { color: #fff; }

.footer-form h5   { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange-light); margin-bottom: 18px; font-weight: 600; }
.footer-form form { display: flex; flex-direction: column; gap: 12px; }
.form-row         { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.footer-form input,
.footer-form select,
.footer-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.footer-form input:focus,
.footer-form select:focus,
.footer-form textarea:focus { border-color: var(--orange-light); }
.footer-form select option  { background: var(--blue); color: #fff; }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.82rem;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================
   FOOTER ADDRESSES
   ============================================ */
.footer-addresses {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-address-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-address-item i { color: var(--orange-light); font-size: 0.95rem; margin-top: 3px; flex-shrink: 0; }
.footer-address-item div { display: flex; flex-direction: column; gap: 2px; }
.footer-address-item strong { font-size: 0.82rem; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-address-item span  { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-address-item a { display: flex; align-items: flex-start; color: var(--orange-light); transition: color var(--transition), transform var(--transition); flex-shrink: 0; margin-top: 3px; }
.footer-address-item a:hover { color: #fff; transform: scale(1.2); }
.footer-address-item a i { font-size: 0.95rem; }

/* ============================================
   FLOATING CHAT BUTTON
   ============================================ */
.float-chat {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.float-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.float-socials.open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: all; }

.float-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.float-icon:hover { transform: scale(1.12); }
.float-icon.whatsapp  { background: #25d366; }
.float-icon.facebook  { background: #1877f2; }
.float-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-icon.tiktok    { background: #010101; }

.float-main-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  border: none; color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232,119,34,0.5);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.float-main-btn:hover  { background: #d06010; transform: scale(1.08); }
.float-main-btn.active { background: var(--blue); transform: rotate(15deg); }

/* ============================================
   RESPONSIVE — Tablets (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .header-search   { width: 260px; }
  .milestones-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid      { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .footer-form     { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE — Mobile (max 768px)
   ============================================ */
@media (max-width: 768px) {
  .site-header { height: auto; }
  .header-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
    padding: 12px 16px;
  }
  .header-left   { justify-self: start; }
  .header-search { width: 100%; justify-self: stretch; }
  .header-right  { justify-self: end; }

  .navbar    { top: 60px; }
  .nav-brand { display: block; }
  .hamburger { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 4px;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; }

  .has-dropdown .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    border: none;
    border-radius: var(--radius-sm);
    margin-top: 4px;
  }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open  .dropdown { display: block; }

  .section         { padding: 64px 0; }
  .milestones-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid   { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr; gap: 36px; }
  .form-row        { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — Small Mobile (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-ctas       { flex-direction: column; align-items: center; }
  .milestones-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid       { grid-template-columns: 1fr; }
  .partners-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-pillars   { flex-direction: column; }
  .float-chat      { bottom: 16px; right: 16px; }
}
.team-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.team-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
}

.team-section .container {
  position: relative;
  z-index: 1;
}