/* ══════════════════════════════════════════════════
   LiTME — Styles
   Colors: Navy #00142c | Teal #0dc9ac | White #ffffff
══════════════════════════════════════════════════ */

:root {
  --navy:   #00142c;
  --teal:   #0dc9ac;
  --white:  #ffffff;
  --navy-light: #012040;
  --navy-mid:   #011828;
  --teal-dark:  #0aab92;
  --teal-glow:  rgba(13, 201, 172, 0.18);
  --teal-glow-soft: rgba(13, 201, 172, 0.08);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 40px rgba(0, 0, 0, 0.34);
  --shadow-glow: 0 0 40px rgba(13, 201, 172, 0.25);
}

/* ─── Skip Link (Accessibility) ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

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

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

/* ─── Custom Cursor — Paper Plane ─── */
@media (hover: hover) {
  *, *::before, *::after { cursor: none !important; }
}

#custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  overflow: visible;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.85));
  transform: rotate(-135deg);
  transform-origin: 30px 13px; /* pivot at nose tip */
  transition: filter 0.12s;
}
#custom-cursor.hover {
  transform: rotate(-135deg) scale(1.15);
  filter: drop-shadow(0px 3px 6px rgba(13, 201, 172, 0.5));
}
#custom-cursor-ring { display: none; }

body {
  font-family: 'Poppins', 'Prompt', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 100px 0; }
.section-dark { padding: 100px 0; background: var(--navy-mid); }
.section-teal { padding: 100px 0; background: var(--teal); color: var(--navy); }

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children inside grids */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.3s; }
.why-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.why-grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.why-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { font-size: 0.97rem; line-height: 1.75; }

.teal-text  { color: var(--teal); }
.navy-text  { color: var(--navy); }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.eyebrow-navy { color: var(--navy); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-sub { max-width: 560px; margin: 0 auto; opacity: 0.74; }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 0 0 0 var(--teal-glow);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(13, 201, 172, 0.45);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--navy); }

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }

.btn-navy {
  background: var(--navy);
  color: var(--teal);
  border: 2px solid var(--navy);
}
.btn-navy:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.35); filter: brightness(1.15); }

.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(0, 20, 44, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(13, 201, 172, 0.1);
}

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

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.logo-li  { color: var(--white); }
.logo-tme { color: var(--teal); }

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
  margin-left: 1rem;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.lang-btn.active {
  background: var(--teal);
  color: var(--navy);
}
.lang-btn:not(.active):hover {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .btn { margin-left: 0.5rem; }
.nav-links .btn::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity 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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(13,201,172,0.13) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
  from { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  to   { opacity: 1;   transform: translate(-50%,-50%) scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero-title-static { display: block; }
.typed-line { display: block; min-height: 1.1em; }
.typed-text { display: inline-block; white-space: nowrap; }
.cursor {
  display: inline-block;
  color: var(--teal);
  animation: blink 0.85s step-end infinite;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  font-size: 1.05rem;
  max-width: 580px;
  opacity: 0.8;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.badge {
  text-align: center;
}
.badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  display: inline-block;
}
.badge span { font-size: 1.4rem; font-weight: 800; color: var(--teal); }
.badge p { font-size: 0.72rem; opacity: 0.65; margin-top: 0.1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.badge-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--navy-light);
  border: 1px solid rgba(13, 201, 172, 0.1);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,201,172,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 201, 172, 0.4);
  box-shadow: var(--shadow-card), 0 0 30px rgba(13,201,172,0.08);
}
.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 54px;
  height: 54px;
  background: rgba(13, 201, 172, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  padding: 12px;
  transition: background var(--transition);
}
.service-card:hover .card-icon { background: rgba(13, 201, 172, 0.15); }
.card-icon svg { width: 30px; height: 30px; }

.service-card h3 { margin-bottom: 0.8rem; }
.service-card p { font-size: 0.88rem; opacity: 0.7; margin-bottom: 1.4rem; }

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: 0.6rem; }
.card-link span { transition: transform var(--transition); }
.card-link:hover span { transform: translateX(3px); }

/* ══════════════════════════════════════════════════
   ABOUT (TEAL SECTION)
══════════════════════════════════════════════════ */
.section-teal h2 { color: var(--navy); }
.section-teal p  { color: var(--navy); opacity: 0.85; }
.section-teal .eyebrow { color: var(--navy); opacity: 0.6; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

/* Animated ring visual */
.about-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 20, 44, 0.2);
}
.ring-1 { width: 100%; height: 100%; animation: spin 20s linear infinite; border-style: dashed; }
.ring-2 { width: 75%;  height: 75%; animation: spin 14s linear infinite reverse; }
.ring-3 { width: 50%;  height: 50%; animation: spin 8s linear infinite; border-style: dashed; }
@keyframes spin { to { transform: rotate(360deg); } }

.about-core {
  width: 90px;
  height: 90px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 40px rgba(0,20,44,0.4);
}

.float-badge {
  position: absolute;
  background: var(--navy);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.fb-1 { top: 10%; right: -10%; }
.fb-2 { bottom: 15%; left: -5%; }

.about-text h2 { margin-bottom: 1.4rem; }
.about-text p  { margin-bottom: 1rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,20,44,0.2);
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  display: inline-block;
}
.stat-unit { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.stat-item p { font-size: 0.72rem; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }

/* ══════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-item {
  padding: 2rem 1.6rem;
  border-radius: 14px;
  border: 1px solid rgba(13, 201, 172, 0.08);
  background: rgba(255,255,255,0.02);
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.why-item:hover {
  border-color: rgba(13, 201, 172, 0.3);
  transform: translateY(-4px);
  background: rgba(13, 201, 172, 0.04);
}

.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
}
.why-icon svg { width: 100%; height: 100%; }
.why-item h4 { margin-bottom: 0.6rem; }
.why-item p { font-size: 0.85rem; opacity: 0.65; }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(13, 201, 172, 0.12);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(13, 201, 172, 0.3);
  transform: translateY(-4px);
}

.stars { color: var(--teal); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 0.92rem;
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.testi-author strong { display: block; font-size: 0.92rem; }
.testi-author span   { font-size: 0.78rem; opacity: 0.6; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background var(--transition);
}
.testi-dot.active { background: var(--teal); }

/* ══════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════ */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--navy); }
.cta-text p  { color: var(--navy); opacity: 0.75; margin-top: 0.5rem; }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(13, 201, 172, 0.2);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230dc9ac' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--navy-light); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(13, 201, 172, 0.05);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(13, 201, 172, 0.1);
  transition: border-color var(--transition);
}
.info-card:hover { border-color: rgba(13, 201, 172, 0.3); }
.info-icon { min-width: 28px; }
.info-icon svg { width: 28px; height: 28px; }
.info-card strong { display: block; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.info-card span { font-size: 0.92rem; }

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.cert-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  border: 1px solid rgba(13, 201, 172, 0.35);
  border-radius: 9999px;
  padding: 0.3rem 0.85rem;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
#footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(13, 201, 172, 0.1);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(13,201,172,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; opacity: 0.6; max-width: 260px; line-height: 1.7; margin-bottom: 1.4rem; }

.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(13, 201, 172, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover { border-color: var(--teal); color: var(--teal); background: rgba(13,201,172,0.08); }

.footer-links-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.footer-links-col a {
  display: block;
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 0.65rem;
  transition: opacity var(--transition), color var(--transition);
}
.footer-links-col a:hover { opacity: 1; color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; opacity: 0.45; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; opacity: 0.45; transition: opacity var(--transition); }
.footer-legal a:hover { opacity: 0.9; }

/* ══════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--teal);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  box-shadow: 0 8px 32px rgba(13,201,172,0.4);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { width: 260px; height: 260px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 2rem 2rem;
    background: rgba(0,20,44,0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform var(--transition);
    gap: 0;
    z-index: 999;
    border-left: 1px solid rgba(13,201,172,0.1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    padding: 0.9rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.95rem;
  }
  .nav-links a::after { display: none; }
  .nav-links .btn { margin-left: 0; margin-top: 1rem; width: 100%; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-badges { gap: 1.2rem; }
  .badge-divider { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 70px 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
