/* =============================================
   MENTOR-POWERED INNOVATIONS — styles.css
   Glossy · Posh · Professional
   ============================================= */

/* ── Custom Properties ──────────────────────── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #0e2040;
  --navy-light: #1a3360;
  --teal:       #00c9a7;
  --teal-light: #00e5c1;
  --teal-dim:   rgba(0,201,167,0.15);
  --teal-glow:  rgba(0,201,167,0.35);
  --gold:       #e8c870;
  --white:      #ffffff;
  --off-white:  #f4f6fb;
  --text-light: rgba(255,255,255,0.75);
  --text-muted: rgba(255,255,255,0.45);
  --card-bg:    #ffffff;
  --card-border: rgba(0,201,167,0.18);
  --shadow-sm:  0 2px 12px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.22);
  --shadow-teal:0 8px 40px rgba(0,201,167,0.25);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;
}

/* ── 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(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--teal-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-desc.light { color: var(--text-light); }

/* ── Buttons ────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--teal) 0%, #00a88d 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,201,167,0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  border-radius: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,201,167,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.navbar.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0,201,167,0.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta { padding: 10px 24px; font-size: 0.88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,22,40,0.98);
}
.mobile-link {
  padding: 12px 0;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--teal); }
.mobile-cta { margin-top: 16px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #0d2850 70%, #0a2040 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,201,167,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,51,96,0.8) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* ── Big Full-Width Headline ── */
.hero-headline-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: fadeUp 0.9s ease 0.1s both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero-headline-colored {
  font-style: normal;
  display: inline;
}
.hero-word {
  font-style: normal;
  display: inline;
  background: linear-gradient(135deg, #00e5c1 0%, #00c9a7 50%, #00a88d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-dash {
  font-style: normal;
  display: inline;
  color: #00c9a7;
  -webkit-text-fill-color: #00c9a7;
  background: none;
  letter-spacing: 0;
}
.hero-headline-white {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  font-style: normal;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  border-radius: 50px;
  border: 1px solid rgba(0,201,167,0.3);
  background: rgba(0,201,167,0.08);
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,201,167,0.7); }
  50% { box-shadow: 0 0 0 5px rgba(0,201,167,0); }
}

/* ── Body Row (subtitle left + logo right) ── */
.hero-body-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  animation: fadeUp 0.9s ease 0.25s both;
}

/* ── Hero Subtitle (replaces old h1) ── */
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  margin: 0 28px 0 0;
}

/* ── Hero Visual / Logo Orb ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  margin-top: -80px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.logo-orb {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: orbit-spin linear infinite;
}
.orb-ring-1 {
  width: 320px; height: 320px;
  border-color: rgba(0,201,167,0.18);
  animation-duration: 18s;
}
.orb-ring-2 {
  width: 260px; height: 260px;
  border-color: rgba(0,201,167,0.25);
  animation-duration: 12s;
  animation-direction: reverse;
}
.orb-ring-3 {
  width: 200px; height: 200px;
  border-color: rgba(0,201,167,0.15);
  animation-duration: 8s;
  border-style: dashed;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orb-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,167,0.18) 0%, transparent 70%);
  animation: glow-breathe 4s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-logo-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  animation: logo-breathe 6s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(0,201,167,0.2),
    0 8px 40px rgba(0,0,0,0.4),
    0 0 60px rgba(0,201,167,0.2);
  background: rgba(255,255,255,0.96);
  padding: 12px;
}
@keyframes logo-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ── Scroll Indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(0,201,167,0.6), transparent);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: top; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,201,167,0.3), transparent);
}

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

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.45s ease;
  opacity: 0;
  transform: translateY(40px);
}
.service-card.visible {
  animation: cardReveal 0.65s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes cardReveal {
  to { opacity: 1; transform: translateY(0); }
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--card-border);
}

.service-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-in-out;
}
.service-card:hover .service-img {
  transform: scale(1.08);
}
/* Slow zoom animation for service images */
.service-img {
  animation: slow-zoom 10s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.1) 0%, rgba(10,22,40,0.55) 100%);
}
.service-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,201,167,0.85);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

.service-card-body {
  padding: 26px 26px 30px;
}
.service-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-dim), rgba(0,201,167,0.05));
  border: 1px solid rgba(0,201,167,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg {
  width: 22px; height: 22px;
  color: var(--teal);
  stroke: var(--teal);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-desc {
  font-size: 0.88rem;
  color: #5a6a7e;
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 20px;
  background: rgba(0,201,167,0.08);
  color: var(--navy-light);
  border: 1px solid rgba(0,201,167,0.2);
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.tag:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(0,201,167,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 90% 30%, rgba(26,51,96,0.9) 0%, transparent 60%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.why-card.visible {
  animation: cardReveal 0.6s ease forwards;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,201,167,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.why-card-img-wrap {
  height: 160px;
  overflow: hidden;
}
.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: transform 7s ease-in-out, filter 0.4s;
  animation: slow-zoom 12s ease-in-out infinite alternate;
}
.why-card:hover .why-img {
  filter: brightness(0.85) saturate(1);
}
.why-card-body {
  padding: 22px 20px 26px;
}
.why-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(0,201,167,0.12);
  border: 1px solid rgba(0,201,167,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 13px;
}
.why-icon svg {
  width: 19px; height: 19px;
  stroke: var(--teal);
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 9px;
}
.why-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.process {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.process-track {
  position: relative;
  margin-top: 20px;
}

.process-line {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 100px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(0,201,167,0.3) 100%);
}
.process-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(0,201,167,0.5), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(200%); }
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}
.process-step.visible {
  animation: cardReveal 0.6s ease forwards;
}

.step-node {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #008f7a 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,201,167,0.35);
  z-index: 1;
  flex-shrink: 0;
}
.step-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0,201,167,0.3);
  animation: step-ping 2s ease-out infinite;
}
@keyframes step-ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.step-card {
  max-width: 170px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.82rem;
  color: #5a6a7e;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, #0d3060 50%, var(--navy) 100%);
}
.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,201,167,0.12) 0%, transparent 70%);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}
.cta-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}
.cta-btn { font-size: 1rem; padding: 16px 38px; }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-intro {
  font-size: 0.97rem;
  color: #5a6a7e;
  line-height: 1.75;
  margin-bottom: 36px;
  margin-top: 14px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-dim), rgba(0,201,167,0.05));
  border: 1px solid rgba(0,201,167,0.2);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg {
  width: 20px; height: 20px;
  stroke: var(--teal);
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 3px;
}
.contact-value {
  font-size: 0.93rem;
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}
a.contact-value:hover { color: var(--teal); }

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 26px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a5568;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e2e8f0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b8c8;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,201,167,0.12);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300c9a7' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-submit {
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}
.form-submit svg {
  width: 18px; height: 18px;
  transition: transform 0.25s;
}
.form-submit:hover svg { transform: translateX(4px); }

.form-success {
  display: none !important;
  align-items: center;
  gap: 10px;
  color: #00a88d;
  font-weight: 500;
  font-size: 0.93rem;
  padding: 12px 16px;
  background: rgba(0,201,167,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,201,167,0.2);
}
.form-success svg { width: 20px; height: 20px; min-width: 20px; stroke: #00a88d; }
.form-success.show { display: flex !important; }

.form-error {
  display: none !important;
  align-items: center;
  gap: 10px;
  color: #c0392b;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 12px 16px;
  background: rgba(192,57,43,0.07);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(192,57,43,0.2);
}
.form-error svg { width: 20px; height: 20px; min-width: 20px; stroke: #c0392b; flex-shrink: 0; }
.form-error.show { display: flex !important; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  text-decoration: none;
  animation: wa-entrance 0.6s cubic-bezier(0.34,1.56,0.64,1) 1.5s both;
}
@keyframes wa-entrance {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6), 0 4px 12px rgba(0,0,0,0.25);
}

.whatsapp-icon {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1;
}

/* Ping animation ring */
.whatsapp-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: wa-ping 2s ease-out infinite;
}
@keyframes wa-ping {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1a1a2e;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #1a1a2e;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; }
  .process-line { display: none; }
  .hero-headline { font-size: clamp(2.2rem, 5vw, 3.8rem); white-space: normal; }
  .hero-body-row { gap: 40px; }
  .logo-orb { width: 300px; height: 300px; }
  .orb-ring-1 { width: 280px; height: 280px; }
  .orb-ring-2 { width: 230px; height: 230px; }
  .orb-ring-3 { width: 180px; height: 180px; }
  .hero-logo-img { width: 155px; height: 155px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-container { padding: 110px 22px 70px; gap: 28px; }
  .hero-headline { font-size: clamp(1.9rem, 8vw, 2.8rem); white-space: normal; }
  .hero-body-row { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-visual { order: -1; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { align-self: flex-start; }
  .logo-orb { width: 240px; height: 240px; }
  .orb-ring-1 { width: 220px; height: 220px; }
  .orb-ring-2 { width: 180px; height: 180px; }
  .orb-ring-3 { width: 140px; height: 140px; }
  .hero-logo-img { width: 120px; height: 120px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .section-container { padding: 0 20px; }
  .process-steps { gap: 32px; }
  .process-step { flex: 0 0 45%; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-step { flex: 0 0 100%; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; margin: 0; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-headline { font-size: clamp(1.7rem, 9vw, 2.2rem); }
}
