/* ===== MFTECH LDA — main.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --g: #00C16A;
  --gd: #009952;
  --gl: #E4FFF3;
  --navy: #09142A;
  --navy2: #112040;
  --navy3: #1C3560;
  --white: #FFFFFF;
  --offwhite: #F5F7FA;
  --border: #E2E8F0;
  --muted: #64748B;
  --text: #1E293B;
  --font-head: 'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --r: 14px;
  --r2: 24px;
  --r3: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
nav.scrolled {
  background: rgba(9,20,42,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 20px 60px rgba(0,0,0,0.3);
}
.nav-wrap { max-width: 1280px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px; background: var(--g); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 14px;
  letter-spacing: -0.5px; position: relative; overflow: hidden;
}
.logo-icon::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
}
.logo-name { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: #fff; letter-spacing: -0.5px; }
.logo-name span { color: var(--g); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
  padding: 8px 18px; border-radius: 100px; transition: all 0.25s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-btn { background: var(--g) !important; color: #fff !important; box-shadow: 0 0 0 0 rgba(0,193,106,0.5); }
.nav-btn:hover { box-shadow: 0 0 20px 4px rgba(0,193,106,0.4) !important; background: var(--gd) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: #fff; font-size: 26px; padding: 4px; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(9,20,42,0.98); backdrop-filter: blur(20px);
  padding: 16px 24px 24px; flex-direction: column; gap: 4px; z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 16px; font-weight: 500; padding: 14px 16px; border-radius: 12px; }
.mobile-menu a:hover { background: rgba(0,193,106,0.15); color: var(--g); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 60% 40%, #0F2550 0%, #09142A 60%, #060E1C 100%);
  display: flex; align-items: center; padding-top: 72px;
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,193,106,0.12); border: 1px solid rgba(0,193,106,0.25);
  border-radius: 100px; padding: 7px 18px; font-size: 12px; color: var(--g);
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px;
  animation: fadeDown 0.8s 0.2s both;
}
.hero-eyebrow i { font-size: 14px; animation: spin 4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: inline-block; animation: slideUp 0.9s cubic-bezier(.16,1,.3,1) both; }
.hero h1 .line:nth-child(1) span { animation-delay: 0.3s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.5s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.7s; }
.hero h1 .accent { color: var(--g); position: relative; }
.hero h1 .accent::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 3px;
  background: var(--g); border-radius: 2px; opacity: 0.5;
  animation: expandW 0.8s 1.4s cubic-bezier(.16,1,.3,1) both; transform-origin: left;
}
@keyframes expandW { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.75;
  margin-bottom: 40px; max-width: 520px; animation: fadeUp 0.9s 0.9s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.9s 1.1s both; }
.btn-hero-p {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--g); color: #fff; padding: 15px 30px; border-radius: 100px;
  font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.3s;
  border: none; cursor: pointer; letter-spacing: -0.2px;
  box-shadow: 0 8px 32px rgba(0,193,106,0.35);
}
.btn-hero-p:hover { background: var(--gd); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,193,106,0.5); }
.btn-hero-s {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07); color: #fff; padding: 15px 30px; border-radius: 100px;
  font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.15); cursor: pointer; backdrop-filter: blur(10px);
}
.btn-hero-s:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.hero-stats {
  display: flex; gap: 36px; margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08); animation: fadeUp 0.9s 1.3s both;
}
.hstat-n { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--g); letter-spacing: -1px; line-height: 1; }
.hstat-l { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.hero-visual { position: relative; }
.hero-img-frame { position: absolute; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.hero-flyer {
  object-fit: cover; border-radius: 28px;
 animation: floatMain 6s ease-in-out infinite, fadeIn 1s 0.5s both;
  transform-style: preserve-3d; transition: transform 0.1s;
}
.hero-badge-float {
  position: absolute; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-radius: 18px; padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hbf1 { top: 60px; right: -10px; animation: floatBadge 5s ease-in-out infinite; }
.hbf2 { bottom: 100px; left: -10px; animation: floatBadge 5s 2s ease-in-out infinite; }
.hbf3 { bottom: 40px; right: 20px; animation: floatBadge 5s 1s ease-in-out infinite; }
.hbf-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.hbf-icon.green { background: var(--gl); } .hbf-icon.green i { color: var(--gd); }
.hbf-icon.blue { background: #EEF2FF; } .hbf-icon.blue i { color: #4F46E5; }
.hbf-icon.amber { background: #FFF8E7; } .hbf-icon.amber i { color: #D97706; }
.hbf-icon i { font-size: 20px; }
.hbf-title { font-size: 11px; color: var(--muted); font-weight: 500; }
.hbf-val { font-size: 15px; font-weight: 800; color: var(--navy); font-family: var(--font-head); }
.orbit-ring {
  position: absolute; border-radius: 50%; border: 1px dashed rgba(0,193,106,0.2);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.or1 { width: 420px; height: 420px; animation: orbitSpin 20s linear infinite; }
.or2 { width: 540px; height: 540px; animation: orbitSpin 30s linear infinite reverse; opacity: 0.5; }
.orbit-dot { position: absolute; width: 8px; height: 8px; background: var(--g); border-radius: 50%; box-shadow: 0 0 12px var(--g); top: -4px; left: 50%; transform: translateX(-50%); }

@keyframes orbitSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes floatMain { 0%,100% { transform: translateY(0) rotateY(-5deg); } 50% { transform: translateY(-16px) rotateY(5deg); } }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeDown { from { opacity:0; transform: translateY(-20px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideUp { from { transform: translateY(110%); } to { transform: translateY(0); } }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--navy); overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 25s linear infinite; padding: 20px 0; }
.marquee-item {
  display: flex; align-items: center; gap: 12px; padding: 0 40px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  color: rgba(255,255,255,0.4); white-space: nowrap; letter-spacing: -0.3px;
}
.marquee-item i { font-size: 18px; color: var(--g); }
.marquee-sep { width: 6px; height: 6px; border-radius: 50%; background: var(--g); opacity: 0.4; flex-shrink: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 110px 0; }
.si { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-size: 12px; font-weight: 700; color: var(--g);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--g); border-radius: 2px; }
.s-title { font-family: var(--font-head); font-size: clamp(30px,4vw,52px); font-weight: 800; color: var(--navy); line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px; }
.s-title.light { color: #fff; }
.s-sub { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 560px; }
.s-sub.light { color: rgba(255,255,255,0.55); }

/* ── SERVICES ── */
.services-bg { background: var(--offwhite); }
.srv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.srv-card {
  background: var(--white); border-radius: var(--r2); padding: 36px;
  border: 1px solid var(--border); transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.srv-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,193,106,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.srv-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.1); border-color: rgba(0,193,106,0.3); }
.srv-card:hover::before { opacity: 1; }
.srv-card:hover .srv-icon { background: var(--g); box-shadow: 0 12px 32px rgba(0,193,106,0.4); }
.srv-card:hover .srv-icon i { color: #fff; transform: scale(1.1) rotate(-5deg); }
.srv-icon { width: 56px; height: 56px; background: var(--gl); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.4s; }
.srv-icon i { font-size: 28px; color: var(--gd); transition: all 0.4s; }
.srv-title { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 19px; margin-bottom: 12px; letter-spacing: -0.4px; }
.srv-text { font-size: 14px; color: var(--muted); line-height: 1.7; }
.srv-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--g); font-size: 13px; font-weight: 600; margin-top: 20px; opacity: 0; transform: translateX(-8px); transition: all 0.3s; }
.srv-card:hover .srv-arrow { opacity: 1; transform: translateX(0); }

/* ── PACKAGES CAROUSEL ── */
.pkg-bg { background: var(--navy); position: relative; overflow: hidden; padding: 110px 0; }
.pkg-bg::before {
  content: ''; position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,193,106,0.06) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}
.pkg-carousel-wrap { position: relative; overflow: hidden; margin-top: 60px; padding: 20px 0 40px; }
.pkg-carousel-track {
  display: flex; gap: 24px;
  animation: carouselScroll 28s linear infinite;
  width: max-content;
}
.pkg-carousel-wrap:hover .pkg-carousel-track { animation-play-state: paused; }
@keyframes carouselScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.pkg-card {
  flex-shrink: 0; width: 360px;
  background: rgba(255,255,255,0.04); border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,0.08); overflow: hidden;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d; position: relative;
}
.pkg-card.featured { border-color: rgba(0,193,106,0.4); background: rgba(0,193,106,0.05); box-shadow: 0 0 40px rgba(0,193,106,0.15); }
.pkg-card:hover { transform: translateY(-12px) rotateX(2deg); box-shadow: 0 40px 100px rgba(0,0,0,0.5); border-color: rgba(0,193,106,0.5); }
.pkg-badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: var(--g); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0,193,106,0.5);
}
.pkg-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(.4,0,.2,1); filter: brightness(0.92); }
.pkg-card:hover .pkg-img { transform: scale(1.05); filter: brightness(1); }
.pkg-info { padding: 28px; background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.07); }
.pkg-name { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 18px; margin-bottom: 6px; letter-spacing: -0.4px; }
.pkg-price { font-family: var(--font-head); font-weight: 800; color: var(--g); font-size: 26px; letter-spacing: -1px; }
.pkg-price span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.45); }
.pkg-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g); color: #fff; padding: 11px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 700; text-decoration: none; margin-top: 16px; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,193,106,0.3);
}
.pkg-cta:hover { background: var(--gd); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,193,106,0.5); }

/* ── WHY ── */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
.check-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--offwhite); border-radius: 14px; padding: 16px 20px;
  border: 1px solid var(--border); transition: all 0.3s;
}
.check-item:hover { background: var(--gl); border-color: rgba(0,193,106,0.3); transform: translateX(4px); }
.check-item i { font-size: 20px; color: var(--g); flex-shrink: 0; }
.check-item span { font-size: 14px; font-weight: 600; color: var(--navy); }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
.stat-box { background: var(--white); border-radius: var(--r2); padding: 28px 20px; border: 1px solid var(--border); text-align: center; transition: all 0.3s; }
.stat-box:hover { border-color: rgba(0,193,106,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.stat-box-n { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--g); letter-spacing: -2px; line-height: 1; }
.stat-box-l { font-size: 13px; color: var(--muted); margin-top: 6px; }
.why-visual {
  background: linear-gradient(145deg, var(--g) 0%, #00A55A 40%, var(--gd) 100%);
  border-radius: var(--r3); padding: 44px; min-height: 500px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden; box-shadow: 0 40px 100px rgba(0,193,106,0.25);
}
.why-visual::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.why-visual::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 250px; height: 250px; border-radius: 50%; background: rgba(0,0,0,0.08); }
.wv-title { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -1px; position: relative; z-index: 1; }
.wv-items { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.wv-item { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.18); backdrop-filter: blur(10px); border-radius: 14px; padding: 16px 20px; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.wv-item:hover { background: rgba(255,255,255,0.28); transform: translateX(6px); }
.wv-item i { font-size: 22px; color: #fff; }
.wv-item span { font-size: 15px; font-weight: 600; color: #fff; }

/* ── TESTIMONIALS ── */
.testi-bg { background: var(--offwhite); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.testi-card { background: var(--white); border-radius: var(--r2); padding: 32px; border: 1px solid var(--border); position: relative; overflow: hidden; transition: all 0.4s; }
.testi-card:hover { transform: translateY(-8px); box-shadow: 0 24px 80px rgba(0,0,0,0.09); border-color: rgba(0,193,106,0.3); }
.testi-card::before { content: '\201C'; position: absolute; top: 12px; right: 20px; font-size: 100px; line-height: 1; color: var(--gl); font-family: Georgia, serif; pointer-events: none; }
.t-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.t-stars i { font-size: 15px; color: #F59E0B; }
.t-text { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-av { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff; flex-shrink: 0; }
.t-name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 15px; }
.t-role { font-size: 13px; color: var(--muted); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; margin-top: 60px; }
.contact-form { background: var(--white); border-radius: var(--r3); padding: 48px; border: 1px solid var(--border); box-shadow: 0 4px 60px rgba(0,0,0,0.05); }
.cf-title { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--navy); margin-bottom: 32px; letter-spacing: -0.6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fg label { font-size: 13px; font-weight: 600; color: var(--navy); }
.fg input, .fg select, .fg textarea { padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 14px; font-family: var(--font-body); color: var(--text); outline: none; transition: all 0.2s; background: var(--offwhite); -webkit-appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--g); background: #fff; box-shadow: 0 0 0 4px rgba(0,193,106,0.12); }
.fg textarea { resize: vertical; min-height: 130px; }
.btn-submit { width: 100%; background: var(--g); color: #fff; padding: 16px; border-radius: 14px; font-weight: 700; font-size: 16px; border: none; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-head); box-shadow: 0 8px 32px rgba(0,193,106,0.3); }
.btn-submit:hover { background: var(--gd); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,193,106,0.45); }
.contact-side { display: flex; flex-direction: column; gap: 16px; }
.ci-card { display: flex; align-items: flex-start; gap: 16px; background: var(--white); border-radius: var(--r2); padding: 24px; border: 1px solid var(--border); transition: all 0.3s; }
.ci-card:hover { border-color: rgba(0,193,106,0.3); transform: translateX(6px); }
.ci-ic { width: 50px; height: 50px; background: var(--gl); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-ic i { font-size: 24px; color: var(--gd); }
.ci-lbl { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.ci-val { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); }
.cta-wa { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); border-radius: var(--r2); padding: 36px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.cta-wa h3 { font-family: var(--font-head); color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.cta-wa p { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 22px; line-height: 1.6; }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 13px 26px; border-radius: 100px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 24px rgba(37,211,102,0.35); font-family: var(--font-head); }
.btn-wa:hover { background: #1EBF5A; transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,0.5); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 80px 0 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-tag { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 14px 0 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.fsoc { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s; }
.fsoc:hover { background: var(--g); border-color: var(--g); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,193,106,0.3); }
.fsoc i { font-size: 18px; color: rgba(255,255,255,0.55); }
.fsoc:hover i { color: #fff; }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 14px; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 12px; transition: all 0.2s; }
.footer-col a:hover { color: var(--g); padding-left: 6px; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-links a:hover { color: var(--g); }

/* ── FLOATING ── */
.float-wa { position: fixed; bottom: 104px; right: 28px; z-index: 900; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 8px 30px rgba(37,211,102,0.45); transition: all 0.3s; animation: pulse 2.5s ease-in-out infinite; }
.float-wa:hover { transform: scale(1.12); animation: none; }
.float-wa i { font-size: 28px; color: #fff; }
@keyframes pulse { 0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); } 50% { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); } }
.cb-bubble { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 58px; height: 58px; background: var(--g); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 30px rgba(0,193,106,0.45); transition: all 0.3s; }
.cb-bubble:hover { transform: scale(1.12) rotate(10deg); }
.cb-bubble i { font-size: 26px; color: #fff; }
.cb-notif { position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; background: #EF4444; border-radius: 50%; border: 2px solid var(--navy); font-size: 10px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; }
.chatwin { position: fixed; bottom: 98px; right: 28px; z-index: 900; width: 350px; background: #fff; border-radius: 24px; box-shadow: 0 30px 100px rgba(0,0,0,0.18); overflow: hidden; display: none; flex-direction: column; transform-origin: bottom right; }
.chatwin.open { display: flex; animation: chatPop 0.35s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes chatPop { from { opacity:0; transform:scale(0.8) translateY(20px); } to { opacity:1; transform:scale(1) translateY(0); } }
.chat-head { background: linear-gradient(135deg, var(--g), var(--gd)); padding: 20px; }
.chat-head-row { display: flex; align-items: center; justify-content: space-between; }
.chat-av { display: flex; align-items: center; gap: 12px; }
.chat-av-ico { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.chat-av-ico i { font-size: 20px; color: #fff; }
.chat-av-name { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 15px; }
.chat-av-status { font-size: 12px; color: rgba(255,255,255,0.75); }
.chat-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.7); font-size: 22px; padding: 0; }
.chat-msgs { padding: 16px; display: flex; flex-direction: column; gap: 10px; max-height: 280px; overflow-y: auto; background: #F8FAFC; }
.cm { max-width: 88%; border-radius: 18px; padding: 12px 15px; font-size: 13.5px; line-height: 1.55; }
.cm.bot { background: #fff; color: var(--text); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.cm.user { background: var(--g); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.qr-row { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 16px 14px; background: #F8FAFC; }
.qr { background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 7px 14px; font-size: 12px; cursor: pointer; font-weight: 600; color: var(--navy); transition: all 0.2s; font-family: var(--font-body); }
.qr:hover { background: var(--g); color: #fff; border-color: var(--g); }
.chat-inp { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border); background: #fff; }
.chat-inp input { flex: 1; border: 1.5px solid var(--border); border-radius: 10px; padding: 9px 13px; font-size: 13px; outline: none; font-family: var(--font-body); }
.chat-inp input:focus { border-color: var(--g); }
.chat-inp button { width: 38px; height: 38px; background: var(--g); border: none; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.chat-inp button:hover { background: var(--gd); }
.chat-inp button i { font-size: 17px; color: #fff; }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s !important; } .d2 { transition-delay: 0.2s !important; }
.d3 { transition-delay: 0.3s !important; } .d4 { transition-delay: 0.4s !important; }
.d5 { transition-delay: 0.5s !important; } .d6 { transition-delay: 0.6s !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-inner { padding: 60px 24px; }
  .si { padding: 0 24px; }
  section { padding: 80px 0; }
  .srv-grid, .check-grid, .stats-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .chatwin { width: calc(100vw - 32px); right: 16px; }
  .pkg-card { width: 300px; }
}
