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

:root {
  --primary: #b8860b;
  --primary-dark: #9a6f08;
  --accent: #d4af37;
  --dark: #0e1428;
  --dark2: #0a0f1f;
  --navy: #16203d;
  --text: #1f2433;
  --text-light: #6b7280;
  --white: #ffffff;
  --light: #faf8f3;
  --border: #ece7da;
  --gradient: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #e6c668 100%);
}

html { scroll-behavior: smooth; }

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

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

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 28px;
}
.logo { font-size: 1.6rem; font-weight: 800; color: var(--white); transition: color 0.4s; }
.nav.scrolled .logo { color: var(--dark); }
.logo span { color: var(--accent); }

.nav-links { display: flex; list-style: none; gap: 24px; margin-left: auto; }
.nav-links a {
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.85); transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--primary); }

.btn-nav {
  background: var(--gradient);
  color: white; text-decoration: none;
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,134,11,0.4); }

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

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 12px 0; }
.mobile-menu ul li a {
  font-size: 1.6rem; font-weight: 700; color: white; text-decoration: none; transition: color 0.3s;
}
.mobile-menu ul li a:hover { color: var(--accent); }

/* ===== HERO SLIDER ===== */
.hero { height: 100vh; min-height: 680px; position: relative; overflow: hidden; }
.slides-wrapper { width: 100%; height: 100%; position: relative; }

.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.8s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: all; }

.slide-bg { position: absolute; inset: 0; background: var(--dark); }
.slide-1 .slide-bg { background: linear-gradient(135deg, #0a0f1f 0%, #16203d 45%, #1e2c52 100%); }
.slide-2 .slide-bg { background: linear-gradient(135deg, #0e1428 0%, #1a2542 45%, #2a2410 100%); }
.slide-3 .slide-bg { background: linear-gradient(135deg, #0a0f1f 0%, #1d1a2e 45%, #3a2e10 100%); }

.slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.10) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(184,134,11,0.10) 0%, transparent 40%);
}

.slide-content {
  position: relative; z-index: 2;
  padding: 0 60px;
  max-width: 580px;
  animation: slideIn 0.8s ease forwards;
}
.slide:not(.active) .slide-content { animation: none; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--accent);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}

.slide-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  color: white; margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.slide-content h1 span { color: var(--accent); }

.slide-content p {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 36px; max-width: 460px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg,#b8860b,#d4af37,#e6c668,#d4af37,#b8860b);
  background-size: 300% 300%;
  animation: gradShift 6s ease infinite;
  color: white; text-decoration: none;
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block; border: none; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(184,134,11,0.5); }
.btn-primary::after {
  content:''; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent);
  transform:skewX(-20deg); animation: shine 3.5s ease-in-out infinite;
}
@keyframes gradShift { 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }
@keyframes shine { 0%{left:-120%;} 60%,100%{left:140%;} }

.btn-outline {
  background: transparent; color: white; text-decoration: none;
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* Slide Visual + 3D Elements */
.slide-visual {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  z-index: 2;
}

.hero-img-wrap {
  width: 360px; height: 360px; position: relative;
  display: flex; align-items: center; justify-content: center;
  perspective: 1000px;
}

.hero-circle {
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  position: absolute;
  animation: rotateSlow 20s linear infinite;
}
.hero-circle::before {
  content: ''; position: absolute; top: -2px; left: 50%;
  width: 12px; height: 12px; background: var(--accent);
  border-radius: 50%; margin-left: -6px;
}
@keyframes rotateSlow { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

.hero-icon-big {
  font-size: 7rem; animation: float 3s ease-in-out infinite;
  position: relative; z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(184,134,11,0.3));
}
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-20px);} }

/* 3D CUBE */
.cube-3d {
  position: absolute;
  width: 80px; height: 80px;
  transform-style: preserve-3d;
  animation: cubeRotate 8s linear infinite;
  bottom: 10px; right: -10px;
}
.cube-face {
  position: absolute; width: 80px; height: 80px;
  background: rgba(212,175,55,0.12);
  border: 1.5px solid rgba(212,175,55,0.35);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border-radius: 8px;
}
.cube-front  { transform: rotateY(0deg)   translateZ(40px); }
.cube-back   { transform: rotateY(180deg) translateZ(40px); }
.cube-left   { transform: rotateY(-90deg) translateZ(40px); }
.cube-right  { transform: rotateY(90deg)  translateZ(40px); }
.cube-top    { transform: rotateX(90deg)  translateZ(40px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(40px); }
@keyframes cubeRotate {
  from { transform: rotateX(-20deg) rotateY(0deg); }
  to   { transform: rotateX(-20deg) rotateY(360deg); }
}

/* 3D Depth Particles */
.depth-dot {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.8), transparent);
  animation: depthPulse 4s ease-in-out infinite;
}
.d1 { width:12px; height:12px; top:10%; left:10%; animation-delay:0s; }
.d2 { width:8px; height:8px; top:80%; left:20%; animation-delay:0.5s; }
.d3 { width:16px; height:16px; top:30%; left:90%; animation-delay:1s; }
.d4 { width:6px; height:6px; top:70%; left:80%; animation-delay:1.5s; }
.d5 { width:10px; height:10px; top:50%; left:5%; animation-delay:2s; }
@keyframes depthPulse {
  0%,100% { transform:scale(1) translateZ(0); opacity:0.3; }
  50% { transform:scale(1.8) translateZ(20px); opacity:1; }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.card-1 { top: 30px; left: -20px; animation: floatCard1 4s ease-in-out infinite; }
.card-2 { bottom: 50px; right: -20px; animation: floatCard2 4s ease-in-out infinite 2s; }
@keyframes floatCard1 { 0%,100%{transform:translateY(0) rotate(-2deg);} 50%{transform:translateY(-12px) rotate(-2deg);} }
@keyframes floatCard2 { 0%,100%{transform:translateY(0) rotate(2deg);} 50%{transform:translateY(-10px) rotate(2deg);} }
.card-icon { font-size: 1.8rem; }
.card-title { font-size: 0.85rem; font-weight: 700; color: white; }
.card-sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* Slide Controls */
.slide-controls {
  position: absolute; bottom: 50px; left: 60px;
  display: flex; align-items: center; gap: 20px; z-index: 10;
}
.slide-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white; font-size: 1.2rem; cursor: pointer;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.slide-btn:hover { background: var(--primary); border-color: var(--primary); }

.slide-dots { display: flex; gap: 8px; align-items: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

.scroll-hint {
  position: absolute; bottom: 50px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100%{opacity:0.3;transform:scaleY(0.5) translateY(-10px);}
  50%{opacity:1;transform:scaleY(1) translateY(0);}
}

/* ===== MARQUEE BAND ===== */
.marquee-band { background: var(--gradient); padding: 16px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 32px; align-items: center;
  animation: marquee 25s linear infinite; white-space: nowrap;
}
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }
.marquee-track span { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9); flex-shrink: 0; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: #faf3df; color: var(--primary-dark);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
  animation: tagFloat 3s ease-in-out infinite;
}
@keyframes tagFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-4px);} }
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--dark);
  margin-bottom: 16px; font-family: 'Playfair Display', serif;
}
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ===== 3D TILT CARDS ===== */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.1s ease, box-shadow 0.3s ease;
}

/* ===== SMART TRACKER SECTION ===== */
.tracker-section { padding: 90px 0; background: var(--dark2); position: relative; overflow: hidden; }
.tracker-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.12), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(184,134,11,0.10), transparent 45%);
}
.tracker-section .section-header h2 { color: white; }
.tracker-section .section-header .section-tag { background: rgba(212,175,55,0.15); color: var(--accent); }
.tracker-section .section-header p { color: rgba(255,255,255,0.65); }

.tracker-box {
  max-width: 840px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 28px; padding: 48px 44px;
  text-align: center; position: relative; z-index: 1;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.tracker-3d-icon {
  font-size: 3.5rem;
  animation: spin3D 6s ease-in-out infinite, float 3s ease-in-out infinite;
  margin-bottom: 24px; display: block;
  filter: drop-shadow(0 12px 24px rgba(212,175,55,0.4));
}
@keyframes spin3D {
  0%,100% { transform: rotateY(0deg) translateY(0); }
  50% { transform: rotateY(360deg) translateY(-10px); }
}

.tracker-input-wrap { position: relative; }
.tracker-input-inner {
  display: flex; gap: 0; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(212,175,55,0.35);
  border-radius: 60px; overflow: hidden;
  padding: 6px 6px 6px 20px;
  margin-bottom: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.tracker-input-inner:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}
.tracker-search-icon { font-size: 1.3rem; margin-right: 8px; flex-shrink: 0; }
.tracker-input-inner input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 1rem; color: white; font-family: 'Inter', sans-serif;
  padding: 10px 0;
}
.tracker-input-inner input::placeholder { color: rgba(255,255,255,0.4); }
.tracker-btn { border-radius: 50px !important; flex-shrink: 0; padding: 12px 28px; font-size: 0.9rem; }

.tracker-detected {
  display: none;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 12px; padding: 12px 20px;
  margin-bottom: 16px;
  display: none;
  align-items: center; gap: 12px; text-align: left;
  color: #6ee7b7; font-size: 0.9rem;
}
.tracker-detected.show { display: flex; }
.detected-icon { font-size: 1.8rem; animation: float 2s ease-in-out infinite; }
.tracker-detected strong { color: #a7f3d0; font-size: 1rem; }
.tracker-detected small { color: rgba(110,231,183,0.7); font-size: 0.8rem; display: block; }

.platforms-label { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin: 24px 0 14px; }
.tracker-btns {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.track-platform {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 9px 18px;
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.3s; cursor: pointer;
}
.track-platform:hover {
  background: var(--gradient);
  border-color: transparent; color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(184,134,11,0.4);
}

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }

.service-card {
  background: white; border-radius: 20px; padding: 36px;
  border: 1px solid var(--border);
  transition: box-shadow 0.4s ease, border-color 0.4s;
  cursor: pointer; position: relative; overflow: hidden;
  transform-style: preserve-3d;
}
.service-card-inner { position: relative; z-index: 2; }
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0; transition: opacity 0.4s; z-index: 0;
}
.service-card:hover { box-shadow: 0 24px 60px rgba(184,134,11,0.2); border-color: transparent; }
.service-card:hover * { color: white !important; position: relative; z-index: 2; }
.service-card:hover::before { opacity: 1; }
.card-glow {
  position: absolute; inset: -1px; border-radius: 20px;
  background: var(--gradient); opacity: 0; z-index: -1;
  filter: blur(20px); transition: opacity 0.4s;
}
.service-card:hover .card-glow { opacity: 0.3; }

.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  background: #faf3df;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 24px;
  transition: background 0.4s;
}
.service-card:hover .service-icon-wrap { background: rgba(255,255,255,0.2) !important; animation: wiggle 0.6s ease; }
@keyframes wiggle { 0%,100%{transform:rotate(0);} 25%{transform:rotate(-8deg);} 75%{transform:rotate(8deg);} }

.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.service-card p { color: var(--text-light); line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }
.service-link { color: var(--primary); font-weight: 600; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }

.services-grid .service-card:nth-child(1) .service-icon-wrap { background: #fff3d6; }
.services-grid .service-card:nth-child(2) .service-icon-wrap { background: #e0f2f1; }
.services-grid .service-card:nth-child(3) .service-icon-wrap { background: #fde7ea; }
.services-grid .service-card:nth-child(4) .service-icon-wrap { background: #e8eefc; }
.services-grid .service-card:nth-child(5) .service-icon-wrap { background: #f3e8ff; }
.services-grid .service-card:nth-child(6) .service-icon-wrap { background: #e6f7e6; }

/* ===== QUOTE BANNER ===== */
.quote-banner {
  position: relative; padding: 80px 0;
  background: linear-gradient(135deg, #0a0f1f 0%, #1a1408 60%, #2a2008 100%);
  overflow: hidden; text-align: center;
}
.qb-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(212,175,55,0.18), transparent 50%),
    radial-gradient(circle at 75% 50%, rgba(184,134,11,0.15), transparent 50%);
}
.quote-banner-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.qb-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 7rem; color: var(--accent);
  line-height: 0.5; display: block; margin-bottom: 16px;
  animation: float 4s ease-in-out infinite;
}
.quote-banner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: white; line-height: 1.6;
  font-style: italic; margin-bottom: 20px;
}
.quote-banner blockquote strong { color: var(--accent); font-style: normal; }
.quote-banner cite { color: rgba(255,255,255,0.5); font-size: 0.9rem; display: block; margin-bottom: 32px; }
.qb-btn { display: inline-block; }
.qb-float {
  position: absolute; font-size: 2.5rem; opacity: 0.12;
  animation: float 5s ease-in-out infinite;
}
.qb-float.f1 { top:15%; left:8%; animation-delay:0s; font-size:3rem; }
.qb-float.f2 { top:20%; right:10%; animation-delay:1.2s; }
.qb-float.f3 { bottom:20%; left:15%; animation-delay:0.6s; }
.qb-float.f4 { bottom:15%; right:8%; animation-delay:1.8s; font-size:2rem; }

/* ===== PARTNERS ===== */
.partners { padding: 90px 0; background: var(--white); }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.partner-logo {
  background: var(--light); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 20px;
  text-align: center;
  transition: all 0.35s ease; cursor: default;
  transform-style: preserve-3d;
}
.partner-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.partner-icon { font-size: 1.8rem; animation: float 3s ease-in-out infinite; }
.partner-logo:nth-child(2) .partner-icon { animation-delay:.3s; }
.partner-logo:nth-child(3) .partner-icon { animation-delay:.6s; }
.partner-logo:nth-child(4) .partner-icon { animation-delay:.9s; }
.partner-logo:nth-child(5) .partner-icon { animation-delay:1.2s; }
.partner-logo:nth-child(6) .partner-icon { animation-delay:1.5s; }
.partner-logo span { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.partner-logo:hover {
  background: var(--gradient);
  border-color: transparent; color: white;
  box-shadow: 0 16px 40px rgba(184,134,11,0.35);
}
.partner-logo:hover span { color: white !important; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; width: 100%; padding-top: 100%; max-width: 460px; }
.about-big-circle {
  position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(135deg, #faf3df 0%, #f0e4c0 100%);
}
.about-img-wrap::before {
  content: ''; position: absolute; inset: 8%; border-radius: 50%;
  border: 2px dashed rgba(184,134,11,0.35);
  animation: rotateSlow 26s linear infinite; z-index: 0;
}
.about-logo-center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  padding: 16%; z-index: 2;
}
.about-logo-center img {
  width: 100%; height: auto; max-width: 320px;
  border-radius: 8px;
  filter: drop-shadow(0 20px 40px rgba(22,32,61,0.18));
  animation: float 3.5s ease-in-out infinite;
}
.experience-badge {
  position: absolute; bottom: 5%; right: -5%;
  background: var(--gradient); color: white;
  border-radius: 20px; padding: 20px 28px;
  box-shadow: 0 16px 40px rgba(184,134,11,0.35);
  text-align: center; z-index: 3;
}
.exp-number { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.exp-text { font-size: 0.8rem; opacity: 0.85; margin-top: 4px; }

.about-right .section-tag { margin-bottom: 16px; }
.about-right h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--dark);
  margin-bottom: 20px; font-family: 'Playfair Display', serif;
}
.about-right h2 span { color: var(--primary); }
.about-desc { color: var(--text-light); line-height: 1.8; margin-bottom: 36px; font-size: 1rem; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.af-item { display: flex; gap: 16px; align-items: flex-start; }
.af-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--gradient); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; margin-top: 2px;
  animation: pulseGlow 2.5s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100%{box-shadow:0 0 0 0 rgba(184,134,11,.4);} 50%{box-shadow:0 0 0 7px rgba(184,134,11,0);} }
.af-item strong { font-size: 0.95rem; font-weight: 700; color: var(--dark); display: block; margin-bottom: 4px; }
.af-item p { font-size: 0.875rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* ===== STATS ===== */
.stats {
  padding: 80px 0;
  background: radial-gradient(circle at 15% 30%, rgba(184,134,11,0.12), transparent 40%),
              radial-gradient(circle at 85% 70%, rgba(212,175,55,0.10), transparent 40%),
              var(--dark);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item {
  text-align: center; padding: 28px 16px; border-radius: 18px;
  transition: transform 0.4s ease, background 0.4s ease; position: relative;
}
.stat-item:hover { transform: translateY(-8px); background: rgba(212,175,55,0.06); }
.stat-item::after {
  content: ''; position: absolute; left: 50%; bottom: 14px;
  width: 0; height: 3px; border-radius: 3px;
  background: var(--gradient); transform: translateX(-50%); transition: width 0.4s ease;
}
.stat-item:hover::after { width: 50%; }
.stat-icon {
  font-size: 2rem; margin-bottom: 14px;
  animation: float 3s ease-in-out infinite;
}
.stat-item:nth-child(2) .stat-icon { animation-delay:.4s; }
.stat-item:nth-child(3) .stat-icon { animation-delay:.8s; }
.stat-item:nth-child(4) .stat-icon { animation-delay:1.2s; }
.stat-numwrap { display: flex; align-items: baseline; justify-content: center; }
.stat-num {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; display: inline;
}
.stat-plus { display: inline; font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 8px; }

/* ===== PROCESS ===== */
.process { padding: 100px 0; background: var(--light); }
.process-steps { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.process-step {
  flex: 1; min-width: 180px; max-width: 220px; text-align: center;
  padding: 32px 20px; background: white; border-radius: 20px;
  border: 1px solid var(--border); position: relative;
  transition: all 0.3s;
}
.process-step:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(184,134,11,0.12); }
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: white;
  font-size: 0.75rem; font-weight: 800; padding: 4px 14px;
  border-radius: 50px; letter-spacing: 1px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; margin-top: 8px; animation: float 3s ease-in-out infinite; }
.process-step:nth-child(3) .step-icon { animation-delay:.5s; }
.process-step:nth-child(5) .step-icon { animation-delay:1s; }
.process-step:nth-child(7) .step-icon { animation-delay:1.5s; }
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.process-arrow { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }

/* ===== FOUNDER SECTION ===== */
.founder {
  padding: 100px 0;
  background: linear-gradient(150deg, #0a0f1f 0%, #16203d 55%, #2a1a08 120%);
  position: relative; overflow: hidden;
}
.founder-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(212,175,55,0.12), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(184,134,11,0.10), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), transparent 60%);
}
.founder-inner {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.founder-left { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.founder-avatar-wrap { position: relative; width: 240px; height: 240px; }
.founder-ring {
  position: absolute; border-radius: 50%;
  border: 2px dashed rgba(212,175,55,0.3);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.founder-ring.r1 { width: 240px; height: 240px; animation: rotateSlow 20s linear infinite; }
.founder-ring.r2 { width: 200px; height: 200px; animation: rotateSlow 14s linear infinite reverse; border-style: solid; border-color: rgba(212,175,55,0.12); }
.founder-avatar {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(184,134,11,0.15));
  border: 3px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(212,175,55,0.25);
  animation: float 4s ease-in-out infinite;
}
.founder-emoji { font-size: 5rem; }
.founder-photo { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center top; display: block; }
.founder-badge-tag {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: white;
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(184,134,11,0.4);
}
.founder-social { display: flex; flex-direction: column; gap: 10px; }
.fs-link {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem;
  transition: color 0.3s; text-align: center;
}
.fs-link:hover { color: var(--accent); }

.founder-right .section-tag { background: rgba(212,175,55,0.15); color: var(--accent); }
.founder-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  color: white; margin-bottom: 28px;
}
.founder-right h2 span { color: var(--accent); }
.founder-quote-box {
  background: rgba(255,255,255,0.05); border-left: 3px solid var(--accent);
  padding: 24px 28px; border-radius: 0 16px 16px 0;
  margin-bottom: 28px; position: relative;
}
.fq-mark {
  font-family: 'Playfair Display', serif; font-size: 4rem;
  color: var(--accent); opacity: 0.4;
  position: absolute; top: -10px; left: 16px; line-height: 1;
}
.fq-text { color: rgba(255,255,255,0.8); line-height: 1.8; font-size: 0.95rem; }
.fq-text strong { color: var(--accent); }

.founder-name-wrap {
  display: flex; align-items: center; gap: 16px; margin-bottom: 36px;
}
.fn-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.fn-name { display: block; font-size: 1.1rem; font-weight: 800; color: white; }
.fn-title { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.fn-loc { display: block; font-size: 0.8rem; color: rgba(212,175,55,0.7); margin-top: 4px; }

.founder-values { display: flex; gap: 20px; flex-wrap: wrap; }
.fv-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px; padding: 16px 20px; flex: 1; min-width: 150px;
  transition: all 0.3s;
}
.fv-item:hover { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }
.fv-icon { font-size: 1.6rem; animation: float 3s ease-in-out infinite; }
.fv-item:nth-child(2) .fv-icon { animation-delay:.5s; }
.fv-item:nth-child(3) .fv-icon { animation-delay:1s; }
.fv-item strong { display: block; color: var(--accent); font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.fv-item p { color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.5; margin: 0; }

/* ===== APPLY SECTION ===== */
.apply { padding: 100px 0; background: var(--white); }
.apply-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(22,32,61,0.15);
}
.apply-left {
  background: linear-gradient(150deg, #0e1428 0%, #16203d 60%, #2a2410 130%);
  padding: 56px 48px; position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.apply-left .section-tag.light { background: rgba(212,175,55,0.15); color: var(--accent); }
.apply-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff; margin-bottom: 18px; font-weight: 800;
}
.apply-left h2 span { color: var(--accent); }
.apply-left > p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 28px; }
.apply-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.apply-perks li { color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500; }
.apply-right { background: var(--light); padding: 48px; display: flex; align-items: center; }
.apply-form { width: 100%; }
.apply-form h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.apply-form .form-group { margin-bottom: 18px; }

/* Apply Illustration */
.apply-illustration { position: relative; margin-top: 36px; height: 140px; }
.person { position: relative; display: inline-block; animation: personBob 3s ease-in-out infinite; }
.person-head { font-size: 5rem; line-height: 1; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35)); }
.person-form {
  position: absolute; bottom: -6px; right: -34px;
  font-size: 2.6rem; animation: formWave 2.4s ease-in-out infinite; transform-origin: bottom left;
}
.ill-spark { position: absolute; font-size: 1.5rem; animation: float 3.5s ease-in-out infinite; }
.ill-spark.s1{top:0;left:30%;} .ill-spark.s2{top:20px;left:60%;animation-delay:1s;} .ill-spark.s3{bottom:0;left:48%;animation-delay:.5s;}
@keyframes personBob { 0%,100%{transform:translateY(0) rotate(-1deg);} 50%{transform:translateY(-12px) rotate(1deg);} }
@keyframes formWave { 0%,100%{transform:rotate(-6deg);} 50%{transform:rotate(8deg);} }

/* ===== FILE INPUTS & FORM ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: var(--text); background: var(--light);
  transition: border-color 0.3s, box-shadow 0.3s; outline: none; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(184,134,11,0.1); background: white;
}
.form-group input[type="file"] {
  padding: 10px 12px; background: #fff;
  border: 1.5px dashed var(--primary); border-radius: 10px;
  font-size: 0.85rem; cursor: pointer; transition: all 0.3s;
}
.form-group input[type="file"]:hover { background: #faf3df; border-color: var(--accent); }
.form-group input[type="file"]::file-selector-button {
  background: var(--gradient); color: #fff; border: none;
  padding: 7px 14px; border-radius: 8px; margin-right: 12px;
  font-weight: 600; cursor: pointer; font-size: 0.8rem;
}
.opt { color: var(--text-light); font-weight: 400; font-size: 0.8rem; }
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 12px; }
.full-btn { width: 100%; text-align: center; border-radius: 12px; font-size: 1rem; padding: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testi-card {
  background: var(--light); border-radius: 20px; padding: 36px;
  border: 1px solid var(--border); transition: all 0.3s;
  transform-style: preserve-3d;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testi-card.featured { background: var(--dark); border: none; }
.testi-card.featured p, .testi-card.featured strong { color: white; }
.testi-card.featured span { color: rgba(255,255,255,0.6); }
.testi-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 2px; animation: tagFloat 2.5s ease-in-out infinite; }
.testi-card p { color: var(--text); line-height: 1.8; font-size: 0.95rem; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; gap: 14px; align-items: center; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.testi-card:hover .author-avatar { animation: wiggle 0.6s ease; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testi-card.featured .testi-author strong { color: white; }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 90px 0; background: var(--light); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: 16px; padding: 0;
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow 0.3s; cursor: pointer;
}
.faq-item:hover { box-shadow: 0 8px 30px rgba(184,134,11,0.18); border-color: rgba(184,134,11,0.35); transform: translateY(-2px); }
.faq-item { transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s; }
.faq-item.open { border-color: var(--accent); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-size: 0.95rem; font-weight: 700; color: var(--dark);
  gap: 12px;
}
.faq-arrow { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-light); font-size: 0.9rem; line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ===== QUOTE/GET A QUOTE SECTION ===== */
.quote-section { padding: 100px 0; background: var(--white); }
.quote-section-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.qs-left .section-tag { margin-bottom: 16px; }
.qs-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--dark); margin-bottom: 20px;
}
.qs-left h2 span { color: var(--primary); }
.qs-left > p { color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.qs-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.qs-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
}
.qs-feat span { font-size: 1.2rem; }
.qs-call-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient); color: white; text-decoration: none;
  padding: 14px 28px; border-radius: 50px; font-weight: 700;
  font-size: 1rem; transition: transform 0.3s, box-shadow 0.3s;
}
.qs-call-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(184,134,11,0.5); }
.quote-form {
  background: var(--light); border-radius: 24px; padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.quote-form h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.quote-form .form-group { margin-bottom: 18px; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-left .section-tag { margin-bottom: 16px; }
.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--dark); margin-bottom: 20px;
}
.contact-left h2 span { color: var(--primary); }
.contact-left p { color: var(--text-light); line-height: 1.8; margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ci-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text); }
.ci-item span { font-weight: 500; }
.ci-item:hover { transform: translateX(6px); transition: transform 0.3s; }
.map-placeholder {
  background: linear-gradient(135deg, #0e1428, #16203d);
  border-radius: 16px; padding: 24px;
  display: flex; align-items: center; gap: 16px;
  border: 1px solid rgba(212,175,55,0.2);
}
.map-pin { font-size: 2.5rem; animation: float 3s ease-in-out infinite; }
.map-info strong { display: block; color: white; font-size: 0.95rem; margin-bottom: 4px; }
.map-info span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.contact-form {
  background: white; border-radius: 24px; padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07); border: 1px solid var(--border);
}

/* ===== FOOTER ===== */
.footer { background: var(--dark2); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-logo { height: 72px; width: auto; margin-bottom: 18px; background: #fff; padding: 10px 16px; border-radius: 12px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.1rem; transition: background 0.3s, transform 0.3s;
}
.socials a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.875rem; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ===== FLOATING WHATSAPP BUTTON ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #1ebe5a);
  color: white; text-decoration: none; padding: 14px 20px;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 40px rgba(37,211,102,0.6); }
.wa-icon-float { font-size: 1.4rem; animation: wiggle 2s ease-in-out infinite; }
@keyframes waPulse {
  0%,100%{box-shadow:0 8px 30px rgba(37,211,102,0.45);}
  50%{box-shadow:0 8px 30px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0);}
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 100px; right: 32px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: white;
  border: none; font-size: 1.2rem; font-weight: 700;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(184,134,11,0.4);
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(184,134,11,0.6); }

/* ===== NAV LOGO ===== */
.logo { display: flex; align-items: center; }
.logo-img {
  height: 46px; width: auto; display: block;
  background: #fff; padding: 6px 12px;
  border-radius: 10px; box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}
.nav.scrolled .logo-img { height: 42px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }

/* ===== APPLY NAV BUTTON ===== */
.btn-apply {
  background: transparent; color: var(--accent); text-decoration: none;
  padding: 9px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
  border: 1.5px solid var(--accent); white-space: nowrap; transition: all 0.3s;
  animation: applyPulse 2.5s ease-in-out infinite; flex-shrink: 0;
}
.btn-apply:hover { background: var(--accent); color: #0a0f1f; transform: translateY(-2px); }
.nav.scrolled .btn-apply { color: var(--primary-dark); border-color: var(--primary); }
.nav.scrolled .btn-apply:hover { background: var(--primary); color: #fff; }
@keyframes applyPulse {
  0%,100%{box-shadow:0 0 0 0 rgba(212,175,55,0.4);}
  50%{box-shadow:0 0 0 8px rgba(212,175,55,0);}
}

/* ===== THANK YOU OVERLAY ===== */
.thank-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(10,15,31,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.thank-overlay.show { opacity: 1; pointer-events: all; }
.thank-card {
  background: #fff; border-radius: 24px; padding: 48px 40px;
  max-width: 420px; text-align: center; margin: 20px;
  transform: scale(0.9); transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.thank-overlay.show .thank-card { transform: scale(1); }
.thank-check {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg,#10b981,#059669);
  color: #fff; font-size: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; animation: bounceIn 2s ease-in-out infinite;
  box-shadow: 0 14px 36px rgba(16,185,129,0.4);
}
.thank-card h2 { font-family:'Playfair Display',serif; font-size:1.7rem; color:var(--navy); margin-bottom:14px; }
.thank-card p { color:var(--text-light); line-height:1.7; }
@keyframes bounceIn { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.82rem; }
  .btn-nav, .btn-apply { padding: 8px 14px; font-size: 0.8rem; }
}

@media (max-width: 1024px) {
  .slide-visual { display: none; }
  .slide-content { padding: 0 40px; max-width: 100%; }
  .slide-controls { left: 40px; }
  .scroll-hint { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-img-wrap { max-width: 320px; margin: 0 auto; padding-top: 320px; }
  .experience-badge { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .founder-inner { grid-template-columns: 1fr; gap: 50px; }
  .founder-left { flex-direction: row; align-items: center; justify-content: center; }
  .quote-section-inner { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav, .btn-apply { display: none; }
  .hamburger { display: flex; }
  .slide-content { padding: 0 24px; }
  .slide-controls { left: 24px; bottom: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .apply-box { grid-template-columns: 1fr; }
  .apply-left { padding: 40px 28px; }
  .apply-right { padding: 32px 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .tracker-box { padding: 32px 24px; }
  .tracker-input-inner { flex-direction: column; border-radius: 16px; padding: 16px; gap: 12px; }
  .tracker-btn { width: 100%; }
  .tracker-btns { gap: 8px; }
  .track-platform { font-size: 0.8rem; padding: 8px 14px; }
  .wa-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .founder-avatar-wrap { width: 180px; height: 180px; }
  .founder-ring.r1 { width: 180px; height: 180px; }
  .founder-ring.r2 { width: 150px; height: 150px; }
  .founder-avatar { width: 120px; height: 120px; }
  .founder-emoji { font-size: 3.5rem; }
  .founder-values { flex-direction: column; }
  .back-to-top { right: 20px; bottom: 90px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .quote-banner blockquote { font-size: 1.2rem; }
  .slide-content h1 { font-size: 2rem; }
  .container { padding: 0 16px; }
  .founder-left { flex-direction: column; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
