/* ============================================
   SahajOne Private Limited - Static Website
   Navy Blue + Grey Theme | Glassmorphism | 3D
   ============================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Poppins:wght@600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy-900: #0a1628;
  --navy-800: #0f1d35;
  --navy-700: #152543;
  --navy-600: #1c3058;
  --navy-500: #243d6d;
  --grey-100: #e8ebef;
  --grey-200: #d1d6dc;
  --grey-300: #9ba3ad;
  --blue-accent: #2563eb;
  --blue-glow: rgba(37, 99, 235, 0.5);
  --blue-light: #38bdf8;
  --glass-bg: rgba(10, 22, 40, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Roboto', sans-serif;
  background: var(--navy-900);
  color: var(--grey-100);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ---- Typography ---- */
.font-display { font-family: 'Poppins', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader .preloader-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
#preloader .preloader-particles .p {
  position: absolute;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.5);
  animation: floatParticle 5s ease-in-out infinite;
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
}
#preloader .preloader-logo {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0) rotate(-15deg);
  animation: logoStomp 0.8s ease-out 0.2s forwards;
}
@keyframes logoStomp {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}
#preloader .preloader-logo img {
  height: 160px;
  width: auto;
  filter: drop-shadow(0 0 40px rgba(37, 99, 235, 0.5)) drop-shadow(0 6px 16px rgba(0,0,0,0.5));
}
@media (min-width: 640px) { #preloader .preloader-logo img { height: 200px; } }
@media (min-width: 768px) { #preloader .preloader-logo img { height: 220px; } }

#preloader .preloader-name {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  min-height: 1.5em;
  display: flex;
  align-items: center;
  gap: 4px;
}
#preloader .preloader-name span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey-100);
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}
@media (min-width: 640px) { #preloader .preloader-name span { font-size: 1.5rem; } }
#preloader .preloader-name .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--blue-accent);
  animation: cursorBlink 0.7s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

#preloader .preloader-tagline {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(209, 214, 220, 0.3);
}

/* ---- Navigation ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
}
nav.scrolled, nav.on-page {
  background: rgba(0, 18, 51, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
nav .nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}
@media (min-width: 768px) { nav .nav-inner { padding: 12px 40px; } }
nav .nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
nav .nav-brand img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
@media (min-width: 640px) { nav .nav-brand img { height: 36px; } }
@media (min-width: 768px) { nav .nav-brand img { height: 44px; } }
nav .nav-brand span {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (min-width: 640px) { nav .nav-brand span { font-size: 1.125rem; } }
@media (min-width: 768px) { nav .nav-brand span { font-size: 1.25rem; } }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) { .nav-links { display: flex; gap: 20px; } }
@media (min-width: 1280px) { .nav-links { gap: 28px; } }

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue-accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-links .btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-accent);
  border: 1.5px solid var(--blue-accent);
  padding: 9px 22px;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
}
.nav-links .btn-login:hover {
  background: var(--blue-accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}
.nav-links .btn-login::after { display: none; }

/* Mobile hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0, 18, 51, 0.97);
  backdrop-filter: blur(30px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s ease;
}
@media (min-width: 640px) {
  .mobile-menu { gap: 18px; }
  .mobile-menu a { font-size: 0.8125rem; }
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn-login-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 32px;
  border-radius: 8px;
  background: var(--blue-accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Particle Canvas ---- */
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  pointer-events: none;
}
.hero-content > * { pointer-events: auto; }

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 9vw, 130px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 1px 0 #1c4ba6, 0 2px 0 #1a4499,
    0 3px 0 #183d8c, 0 4px 0 #16377f,
    0 5px 10px rgba(0,0,0,0.4), 0 0 40px rgba(37,99,235,0.3);
  background: linear-gradient(90deg, #fff 0%, #38bdf8 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shimmer-text {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero .subtitle {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 1.4vw, 14px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(209, 214, 220, 0.7);
}
.hero .tagline {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(209, 214, 220, 0.45);
}
.hero .tagline .sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.2);
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--blue-accent);
  color: var(--grey-100);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5), 0 1px 0 rgba(255,255,255,0.15) inset;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  color: var(--grey-100);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }

.btn-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .btn-row { flex-direction: row; justify-content: center; gap: 16px; }
}

/* ---- Custom Cursor ---- */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid #38bdf8;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.08s ease-out, opacity 0.3s ease;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.4), 0 0 20px rgba(56, 189, 248, 0.15), inset 0 0 8px rgba(56, 189, 248, 0.1);
  opacity: 0;
}
.cursor-ring.active {
  opacity: 1;
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background: #38bdf8;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.8), 0 0 12px rgba(56, 189, 248, 0.4);
  opacity: 0;
}
.cursor-dot.active {
  opacity: 1;
}
/* Hide custom cursor on touch devices */
@media (pointer: coarse) {
  .cursor-ring, .cursor-dot { display: none !important; }
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.5s ease;
}
.scroll-indicator.hidden { opacity: 0; }
.scroll-indicator .scroll-line {
  position: relative;
  width: 1px;
  height: 32px;
  background: rgba(37, 99, 235, 0.5);
}
@media (min-width: 640px) { .scroll-indicator .scroll-line { height: 40px; } }
.scroll-indicator .scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-accent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { top: 0; opacity: 1; }
  50% { top: 100%; opacity: 0.5; }
}
.scroll-indicator span {
  margin-top: 8px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(209, 214, 220, 0.35);
}

/* ---- Glass Panels ---- */
.glass-panel {
  background: rgba(10, 22, 40, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.glass-panel:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
}

/* ---- Page Header ---- */
.page-header {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(80px, 12vw, 120px) 0 clamp(40px, 6vw, 60px);
  text-align: center;
}
.page-header .ph-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,22,40,0.4) 0%, rgba(37,99,235,0.06) 100%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.page-header .label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue-accent);
}
.page-header h1 {
  margin-top: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--grey-100);
  text-shadow: 0 2px 4px rgba(0,0,0,0.4), 0 0 30px rgba(37,99,235,0.2);
}
.page-header p {
  margin: 16px auto 0;
  max-width: 600px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(209, 214, 220, 0.65);
}
@media (min-width: 640px) { .page-header p { font-size: 14px; } }

/* ---- Sections ---- */
.section {
  position: relative;
  width: 100%;
  padding: clamp(60px, 8vh, 120px) 0;
}
.section .bg-gradient { position: absolute; inset: 0; pointer-events: none; }
.section .content { position: relative; z-index: 10; }

/* ---- Cards ---- */
.card-3d {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.card-3d:hover {
  transform: translateY(-4px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

/* ---- 3D Text ---- */
.text-3d {
  text-shadow:
    0 1px 0 rgba(255,255,255,0.08), 0 2px 0 rgba(255,255,255,0.06),
    0 3px 5px rgba(0,0,0,0.3);
}

/* ---- Grid Systems ---- */
.grid-2 { display: grid; gap: 16px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1280px) { .grid-2 { gap: 28px; } }
.grid-3 { display: grid; gap: 16px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1536px) { .grid-3 { gap: 32px; } }
.grid-4 { display: grid; gap: 16px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
@media (min-width: 1536px) { .grid-4 { gap: 28px; } }
.grid-5 { display: grid; gap: 16px; }
@media (min-width: 640px) { .grid-5 { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .grid-5 { grid-template-columns: repeat(5, 1fr); gap: 0; } }

/* ---- Stat Counter ---- */
.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--blue-accent);
}
.stat-label {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(209, 214, 220, 0.5);
}
@media (min-width: 768px) { .stat-label { font-size: 10px; } }

/* ---- Rolling Counter Strip ---- */
.rolling-counter {
  display: inline-flex;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2em;
}
.rolling-counter .digit-strip {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.rolling-counter .digit-strip span {
  height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Tags ---- */
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-light);
}

/* ---- Category Badge ---- */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue-light);
}

/* ---- Outcome Box ---- */
.outcome-box {
  padding: 16px;
  border-left: 3px solid var(--blue-accent);
  border-radius: 4px 0 0 4px;
  background: rgba(37, 99, 235, 0.08);
}

/* ---- Timeline ---- */
.timeline-track {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(37, 99, 235, 0.25);
}
@media (min-width: 768px) {
  .timeline-track {
    left: 0; right: 0;
    top: 24px;
    bottom: auto;
    width: auto;
    height: 2px;
  }
}
.timeline-node {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 768px) {
  .timeline-node {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
}
.timeline-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue-accent);
  flex-shrink: 0;
}

/* ---- Photo Placeholder ---- */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 160px;
  border-radius: 12px;
  border: 2px dashed rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.06);
  flex-shrink: 0;
}
.photo-placeholder span {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(209, 214, 220, 0.3);
}
.advisor-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* ---- Form Inputs ---- */
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--grey-100);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-textarea { resize: none; }

.form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(209, 214, 220, 0.5);
}
.form-label svg {
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

/* ---- Contact Info Items ---- */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.15);
  flex-shrink: 0;
}

/* ---- WhatsApp Float Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1001;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ---- Footer ---- */
footer {
  position: relative;
  background: linear-gradient(180deg, #080e1a 0%, var(--navy-900) 100%);
  padding: 80px 0 40px;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.3), transparent);
}
.footer-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.footer-grid a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(209, 214, 220, 0.5);
  transition: color 0.3s ease;
}
.footer-grid a:hover { color: var(--grey-100); }

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: rgba(37, 99, 235, 0.1);
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Utility Classes ---- */
.text-blue { color: var(--blue-accent); }
.text-blue-light { color: var(--blue-light); }
.text-grey { color: rgba(209, 214, 220, 0.75); }
.text-grey-light { color: rgba(209, 214, 220, 0.5); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-7 { gap: 28px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mt-20 { margin-top: 80px; }
.mb-1 { margin-bottom: 4px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.my-3 { margin-top: 12px; margin-bottom: 12px; }
.my-4 { margin-top: 16px; margin-bottom: 16px; }
.my-5 { margin-top: 20px; margin-bottom: 20px; }
.my-12 { margin-top: 48px; margin-bottom: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }
.p-6 { padding: 24px; }
.p-7 { padding: 28px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-5 { padding-top: 20px; padding-bottom: 20px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.max-w-500 { max-width: 500px; }
.max-w-520 { max-width: 520px; }
.max-w-600 { max-width: 600px; }
.max-w-680 { max-width: 680px; }
.max-w-800 { max-width: 800px; }
.max-w-900 { max-width: 900px; }
.w-full { width: 100%; }
.w-16 { width: 64px; }
.h-1 { height: 4px; }
.h-px { height: 1px; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 20px; }
.rounded-full { border-radius: 999px; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-10 { z-index: 10; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:text-sm { font-size: 14px; }
  .sm\:text-base { font-size: 16px; }
  .sm\:text-lg { font-size: 18px; }
  .sm\:text-3xl { font-size: 30px; }
  .sm\:p-7 { padding: 28px; }
  .sm\:mt-6 { margin-top: 24px; }
  .sm\:mt-10 { margin-top: 40px; }
  .sm\:mt-16 { margin-top: 64px; }
  .sm\:py-6 { padding-top: 24px; padding-bottom: 24px; }
  .sm\:gap-5 { gap: 20px; }
  .sm\:px-7 { padding-left: 28px; padding-right: 28px; }
  .sm\:text-\[11px\] { font-size: 11px; }
  .sm\:text-\[10px\] { font-size: 10px; }
  .sm\:h-14 { height: 56px; }
  .sm\:w-14 { width: 56px; }
  .sm\:block { display: block; }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:text-4xl { font-size: 36px; }
  .md\:text-base { font-size: 16px; }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:items-start { align-items: flex-start; }
  .md\:gap-20 { gap: 80px; }
  .md\:mt-20 { margin-top: 80px; }
  .md\:mt-0 { margin-top: 0; }
  .md\:px-10 { padding-left: 40px; padding-right: 40px; }
  .md\:text-\[10px\] { font-size: 10px; }
  .md\:rounded-2xl { border-radius: 20px; }
  .md\:p-8 { padding: 32px; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:col-span-3 { grid-column: span 3; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:gap-20 { gap: 80px; }
  .lg\:gap-24 { gap: 96px; }
  .lg\:mt-12 { margin-top: 48px; }
  .lg\:mt-20 { margin-top: 80px; }
  .lg\:mt-10 { margin-top: 40px; }
  .lg\:p-8 { padding: 32px; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .xl\:gap-12 { gap: 48px; }
  .xl\:gap-16 { gap: 64px; }
  .xl\:p-10 { padding: 40px; }
}

@media (min-width: 1536px) {
  .xxl\:p-12 { padding: 48px; }
}

/* ============================================
   ENHANCED RESPONSIVE - Mobile Optimizations
   ============================================ */

/* Very small phones (320px - 374px) */
@media (max-width: 374px) {
  .container { padding: 0 16px; }
  nav .nav-inner { padding: 10px 16px; }
  nav .nav-brand img { height: 32px; }
  nav .nav-brand span { font-size: 1rem; }
  .hero h1 { font-size: 26px; }
  .hero .subtitle { font-size: 9px; letter-spacing: 0.2em; }
  .page-header h1 { font-size: 22px; }
  .page-header { padding: 72px 0 32px; }
  .btn-primary, .btn-outline { padding: 10px 20px; font-size: 10px; }
  .glass-panel { border-radius: 12px; }
  .photo-placeholder { width: 100px; height: 120px; }
  .tag { font-size: 9px; padding: 4px 10px; }
  .mobile-menu a { font-size: 1.1rem; }
  .mobile-menu { gap: 22px; }
  footer { padding: 48px 0 32px; }
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
}

/* Small phones (375px - 639px) */
@media (min-width: 375px) and (max-width: 639px) {
  .hero h1 { font-size: 30px; }
  .container { padding: 0 20px; }
}

/* Tablets (640px - 1023px) */
@media (min-width: 640px) and (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: clamp(36px, 7vw, 64px); }
}

/* Large screens (1440px+) */
@media (min-width: 1280px) {
  .container { max-width: 1200px; padding: 0 48px; }
  .section { padding: clamp(80px, 8vh, 120px) 0; }
}

@media (min-width: 1366px) {
  .container { max-width: 1280px; padding: 0 56px; }
}

@media (min-width: 1440px) {
  .container { max-width: 1320px; padding: 0 64px; }
  nav .nav-inner { max-width: 1520px; padding: 14px 64px; }
}

@media (min-width: 1536px) {
  .container { max-width: 1400px; padding: 0 72px; }
  .hero h1 { font-size: clamp(48px, 7vw, 140px); }
  .page-header h1 { font-size: clamp(28px, 4vw, 72px); }
}

/* Ultra-wide screens (1920px+) */
@media (min-width: 1920px) {
  .container { max-width: 1480px; padding: 0 80px; }
  .hero h1 { font-size: clamp(56px, 6vw, 160px); }
  .page-header h1 { font-size: clamp(32px, 3.5vw, 80px); }
}

/* Touch device optimizations */
@media (pointer: coarse) {
  .card-3d:hover { transform: none; box-shadow: none; }
  .glass-panel:hover { transform: none; }
  .card-3d:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.15);
  }
  .btn-primary:hover, .btn-outline:hover { transform: none; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Landscape mode on phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  #preloader .preloader-logo img { height: 100px; }
  .scroll-indicator { display: none; }
  .mobile-menu { gap: 16px; }
  .mobile-menu a { font-size: 1rem; }
}
