:root {
    --black: #0A0F1E;
    --charcoal: #1A1F3A;
    --dark-grey: #2A324A;
    --mid-grey: #64748B;
    --grey: #94A3B8;
    --light-grey: #CBD5E1;
    --silver: #E2E8F0;
    --soft: #F1F5F9;
    --white-smoke: #F8FAFC;
    --white: #F9FAFB;

    /* Stunning Cyber Finance Palette */
    --primary: #4B6CB7;     /* Neon Sapphire */
    --secondary: #00D4FF;   /* Electric Cyan */
    --accent: #8B5CF6;      /* Cosmic Purple */
    --success: #14B8A6;     /* Electric Teal */
    --warn: #F59E0B;        /* Solar Flare */

    --gradient-primary: linear-gradient(135deg, #4B6CB7 0%, #00D4FF 50%, #8B5CF6 100%);
    --gradient-accent: linear-gradient(135deg, #8B5CF6 0%, #00D4FF 50%, #14B8A6 100%);
    --gradient-success: linear-gradient(135deg, #14B8A6 0%, #00D4FF 100%);
    --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #8B5CF6 50%, #00D4FF 100%);
    --gradient-cool: linear-gradient(135deg, #4B6CB7 0%, #1E293B 100%);

    --glass-bg: rgba(75, 108, 183, 0.08);
    --glass-border: rgba(0, 212, 255, 0.3);
    --shadow-soft: 0 4px 20px rgba(75, 108, 183, 0.15);
    --shadow-medium: 0 8px 32px rgba(0, 212, 255, 0.2);
    --shadow-strong: 0 20px 48px rgba(139, 92, 246, 0.25);

    --bg-wave: radial-gradient(circle at 20% 80%, rgba(139,92,246,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0,212,255,0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(20,184,166,0.08) 0%, transparent 50%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--charcoal); color: var(--white); overflow-x: hidden; position: relative; }
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-wave);
  pointer-events: none;
  z-index: -1;
  animation: gradientShift 8s ease infinite;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white-smoke); }
::-webkit-scrollbar-thumb { background: var(--charcoal); border-radius: 3px; }

/* ─── ANIMATION CLASSES ─── */
.anim-fade-up    { opacity: 1; transform: translateY(0); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.anim-fade-down  { opacity: 1; transform: translateY(0); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.anim-fade-left  { opacity: 1; transform: translateX(0); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.anim-fade-right { opacity: 1; transform: translateX(0); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.anim-zoom-in    { opacity: 1; transform: scale(1);       transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.anim-zoom-up    { opacity: 1; transform: scale(1) translateY(0); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.anim-flip-x     { opacity: 1; transform: rotateX(0) translateY(0); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); perspective: 1000px; }
.anim-rotate-in  { opacity: 1; transform: rotate(0deg) scale(1); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }

.anim-fade-up.in, .anim-fade-down.in, .anim-fade-left.in, .anim-fade-right.in,
.anim-zoom-in.in, .anim-zoom-up.in, .anim-flip-x.in, .anim-rotate-in.in {
  opacity: 1;
  transform: none;
}

.d0 { transition-delay: 0s;    }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }
.d7 { transition-delay: 0.56s; }
.d8 { transition-delay: 0.64s; }

/* ─── KEYFRAMES ─── */
@keyframes floatY      { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-12px)} }
@keyframes floatYSlow  { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-18px)} }
@keyframes spinSlow    { from{transform:rotate(0deg)}         to{transform:rotate(360deg)} }
@keyframes spinSlowCCW { from{transform:rotate(0deg)}         to{transform:rotate(-360deg)} }
@keyframes pulse       { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.15)} }
@keyframes shimmer     { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes ticker      { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes spin        { to{transform:rotate(360deg)} }
@keyframes floatIn     { from{opacity:0;transform:scale(0.5) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes countUp     { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes gradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes cosmicWave  { 0%,100%{transform:translateX(0) translateY(0)} 33%{transform:translateX(-20px) translateY(10px)} 66%{transform:translateX(20px) translateY(-15px)} }
@keyframes prismFloat  { 0%,100%{transform:translateY(0) rotateX(0deg) rotateY(0deg)} 50%{transform:translateY(-25px) rotateX(5deg) rotateY(8deg)} }
@keyframes borderGlow  { 0%,100%{box-shadow:0 0 0 0 rgba(139,92,246,0.4)} 50%{box-shadow:0 0 0 12px rgba(0,212,255,0.3)} }
@keyframes slideInTag  { from{opacity:0;letter-spacing:8px} to{opacity:1;letter-spacing:3px} }
@keyframes drawLine    { from{width:0} to{width:100%} }
@keyframes fadeUp      { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeLeft    { from{opacity:0;transform:translateX(28px)} to{opacity:1;transform:translateX(0)} }
@keyframes waveIn      { 0%{transform:translateY(100%) rotate(5deg);opacity:0} 100%{transform:translateY(0) rotate(0);opacity:1} }
@keyframes cardEntrance{ 0%{opacity:0;transform:translateY(60px) scale(0.92) rotateX(8deg)} 100%{opacity:1;transform:translateY(0) scale(1) rotateX(0)} }
@keyframes teamSlide   { from{opacity:0;transform:translateX(-40px) scaleX(0.95)} to{opacity:1;transform:translateX(0) scaleX(1)} }
@keyframes glowPulse   { 0%,100%{box-shadow:0 0 20px rgba(139,92,246,0.4)} 50%{box-shadow:0 0 40px rgba(0,212,255,0.6)} }
@keyframes bounceIn    { 0%{opacity:0;transform:scale(0.3)} 50%{opacity:1;transform:scale(1.05)} 70%{transform:scale(0.9)} 100%{opacity:1;transform:scale(1)} }
@keyframes slideUpBounce { 0%{opacity:0;transform:translateY(60px)} 60%{opacity:1;transform:translateY(-10px)} 80%{transform:translateY(5px)} 100%{transform:translateY(0)} }
@keyframes rotateIn    { from{opacity:0;transform:rotate(-180deg) scale(0.5)} to{opacity:1;transform:rotate(0deg) scale(1)} }
@keyframes flipIn      { 0%{opacity:0;transform:perspective(400px) rotateY(90deg)} 40%{transform:perspective(400px) rotateY(-10deg)} 70%{transform:perspective(400px) rotateY(10deg)} 100%{opacity:1;transform:perspective(400px) rotateY(0deg)} }
@keyframes scaleIn     { 0%{opacity:0;transform:scale(0)} 100%{opacity:1;transform:scale(1)} }
@keyframes morphing    { 0%,100%{border-radius:60% 40% 30% 70%/60% 30% 70% 40%} 50%{border-radius:30% 60% 70% 40%/50% 60% 30% 60%} }
@keyframes textGlow    { 0%,100%{text-shadow:0 0 10px rgba(139,92,246,0.6)} 50%{text-shadow:0 0 20px rgba(0,212,255,0.8), 0 0 30px rgba(139,92,246,0.6)} }
@keyframes magneticPull{ 0%{transform:translate(0,0) rotate(0deg)} 25%{transform:translate(5px,-5px) rotate(1deg)} 50%{transform:translate(-3px,3px) rotate(-1deg)} 75%{transform:translate(2px,-2px) rotate(0.5deg)} 100%{transform:translate(0,0) rotate(0deg)} }

/* ─── NAV ─── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--glass-bg); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); transition: all 0.4s ease; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
nav.scrolled { box-shadow: 0 8px 50px rgba(75,108,183,0.15); background: rgba(248,250,252,0.95); backdrop-filter: blur(25px); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-emblem { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.logo-emblem img { width: 100%; height: 100%; object-fit: contain; }
.logo-emblem::before { content: ''; position: absolute; inset: -4px; background: var(--gradient-primary); border-radius: 50%; opacity: 0; z-index: -1; transition: opacity 0.3s ease; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
  letter-spacing: 0.02em;
}
.logo-sub { font-size: 0.7rem; font-weight: 600; color: var(--grey); letter-spacing: 2.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 600; color: var(--mid-grey); text-decoration: none; letter-spacing: 0.8px; text-transform: uppercase; position: relative; padding: 8px 0; transition: all 0.3s ease; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--gradient-primary); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); transform: translateX(-50%); }
.nav-links a:hover { color: var(--primary); transform: translateY(-2px); }
.nav-links a:hover::after { width: 80%; }
.nav-cta { background: var(--gradient-primary) !important; color: var(--black) !important; padding: 12px 28px !important; border-radius: 50px !important; text-transform: uppercase !important; letter-spacing: 1.2px !important; font-weight: 700 !important; font-size: 0.82rem !important; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; box-shadow: 0 6px 25px rgba(75,108,183,0.3) !important; position: relative !important; overflow: hidden !important; }
.nav-cta::after { display: none !important; }
.nav-cta::before { content: ''; position: absolute; inset: 2px; background: var(--gradient-accent); opacity: 0; transition: opacity 0.3s ease; border-radius: 50px; }
.nav-cta:hover::before { opacity: 0.9; }
.nav-cta:hover { color: var(--black) !important; transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 40px rgba(139,92,246,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--black); transition: all 0.3s; border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--soft); padding: 1.5rem 2rem; flex-direction: column; gap: 1.2rem; z-index: 999; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.9rem; font-weight: 500; color: var(--dark-grey); text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; padding: 1rem 0; border-bottom: 1px solid var(--soft); }

/* ─── HERO ─── */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 50%, var(--dark-grey) 100%); position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 72px; }
.hero::before { content: ''; position: absolute; inset: 0; background: var(--bg-wave); z-index: 1; animation: cosmicWave 12s ease-in-out infinite; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }

.hero-prism-1 { position: absolute; top: 20%; left: 10%; width: 120px; height: 200px; background: linear-gradient(45deg, transparent 30%, rgba(75,108,183,0.25) 50%, var(--glass-bg) 70%, transparent 90%); border: 1px solid var(--glass-border); transform: rotate(15deg) skewY(-5deg); filter: blur(1px); animation: prismFloat 8s ease-in-out infinite; pointer-events: none; }
.hero-prism-2 { position: absolute; bottom: 30%; right: 15%; width: 80px; height: 160px; background: linear-gradient(-45deg, transparent 25%, rgba(139,92,246,0.2) 50%, var(--glass-bg) 75%, transparent 95%); border: 1px solid rgba(139,92,246,0.4); transform: rotate(-20deg) skewX(8deg); filter: blur(0.8px); animation: prismFloat 10s ease-in-out infinite reverse; pointer-events: none; }
.hero-prism-3 { position: absolute; top: 60%; left: 70%; width: 100px; height: 140px; background: linear-gradient(60deg, transparent 20%, rgba(20,184,166,0.22) 55%, var(--glass-bg) 80%, transparent 100%); border: 1px solid var(--success); transform: rotate(35deg); filter: blur(1.2px); animation: prismFloat 9s ease-in-out infinite; pointer-events: none; }
.hero-ring { display: none; }

.hero-inner { max-width: 1280px; margin: 0 auto; padding: 5rem 2rem; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.2); background: var(--glass-bg); backdrop-filter: blur(10px); color: var(--white); padding: 8px 18px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1); cursor: pointer; transition: all 0.3s ease; }
.hero-badge:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gradient-accent); border-radius: 50%; box-shadow: 0 0 6px var(--accent); animation: pulse 2s infinite; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 800; line-height: 1.1; color: #FFD700; margin-bottom: 1.4rem; text-shadow: 0 4px 20px rgba(0,0,0,0.42); }
.hero-title em { font-style: italic; color: #FFED8C; }
.hero-desc { font-size: 1.1rem; font-weight: 400; color: #D8D8D8; line-height: 1.8; max-width: 540px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── BUTTONS — fixed: removed duplicate ::before blocks ─── */
.btn-primary { background: var(--gradient-primary); color: var(--black); padding: 14px 32px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; text-decoration: none; text-transform: uppercase; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 2px solid transparent; box-shadow: 0 4px 15px rgba(75,108,183,0.3); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--gradient-accent); transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(139,92,246,0.4); }
.btn-primary:active { transform: translateY(-1px) scale(1.02); }

.btn-outline { background: var(--glass-bg); backdrop-filter: blur(10px); color: var(--silver); padding: 14px 32px; border-radius: 6px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; text-decoration: none; text-transform: uppercase; border: 1px solid var(--glass-border); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.btn-outline::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transition: left 0.5s; }
.btn-outline:hover::before { left: 100%; }
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(255,255,255,0.2); }
.btn-outline:active { transform: translateY(-1px) scale(1.02); }

.hero-right { opacity: 0; animation: fadeLeft 0.8s 0.4s forwards; }
.stats-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2rem; backdrop-filter: blur(20px); margin-bottom: 1rem; box-shadow: var(--shadow-medium); position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; }
.stats-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-primary); animation: shimmer 2s infinite; }
.stats-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-strong); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; animation: countUp 2s ease-out forwards; }
.stat-label { font-size: 0.72rem; font-weight: 500; color: var(--light-grey); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }
.availability-row { display: flex; align-items: center; gap: 10px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 10px; padding: 14px 18px; backdrop-filter: blur(10px); box-shadow: var(--shadow-soft); }
.avail-dot { width: 8px; height: 8px; background: var(--gradient-accent); border-radius: 50%; box-shadow: 0 0 8px var(--accent); flex-shrink: 0; animation: pulse 2s infinite; }
.avail-text { font-size: 0.8rem; color: var(--light-grey); }
.avail-text strong { color: var(--white); }

/* ─── SHARED SECTION ─── */
section { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--grey); border: 1px solid var(--silver); padding: 6px 14px; border-radius: 100px; margin-bottom: 1.2rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--light-grey); font-weight: 300; line-height: 1.7; max-width: 560px; }
.title-underline { position: relative; display: inline-block; color: var(--white); }
.title-underline::after { content: ''; position: absolute; bottom: -6px; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; transition: width 1.2s cubic-bezier(0.22,1,0.36,1) 0.3s; }
.title-underline.in::after { width: 100%; }

/* ─── ABOUT ─── */
.about { background: var(--dark-grey); overflow: hidden; position: relative; }
.about::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 20%, rgba(75,108,183,0.08) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(0,212,255,0.05) 0%, transparent 50%); pointer-events: none; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-block-main { background: var(--black); border-radius: 16px; padding: 3rem; color: var(--white); position: relative; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.about-block-main::before { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px; background: var(--gradient-primary); opacity: 0.1; animation: floatY 5s ease-in-out infinite; }
.about-block-main::after { content: ''; position: absolute; bottom: 0; left: 0; width: 150px; height: 150px; background: var(--gradient-accent); opacity: 0.08; animation: floatYSlow 7s ease-in-out infinite reverse; }
.about-block-main .big-year { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 800; color: rgba(255,255,255,0.25); line-height: 1; margin-bottom: 0.5rem; }
.about-block-main .about-card-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.about-block-main p { font-size: 0.9rem; color: var(--light-grey); line-height: 1.7; }
.about-float-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; padding: 1.2rem 1.5rem; margin-top: 1rem; box-shadow: 0 8px 32px rgba(0,0,0,0.1); backdrop-filter: blur(20px); display: flex; align-items: center; gap: 1rem; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease; }
.about-float-card:hover { transform: translateX(8px) translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.float-icon { width: 44px; height: 44px; background: var(--black); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.about-float-card:hover .float-icon { transform: rotate(10deg) scale(1.1); }
.float-info strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--white); }
.float-info span { font-size: 0.78rem; color: var(--grey); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.feat-item { display: flex; align-items: flex-start; gap: 10px; padding: 0.6rem; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); }
.feat-check { width: 22px; height: 22px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.65rem; flex-shrink: 0; margin-top: 2px; }
.feat-item p { font-size: 0.85rem; color: var(--light-grey); line-height: 1.5; }

/* ─── SERVICES ─── */
.services { background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-grey) 50%, var(--black) 100%); position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.12); }
.services::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 25%, rgba(139,92,246,0.15) 0%, transparent 50%), radial-gradient(circle at 85% 75%, rgba(0,212,255,0.12) 0%, transparent 45%), radial-gradient(circle at 60% 40%, rgba(20,184,166,0.10) 0%, transparent 50%); pointer-events: none; animation: cosmicWave 15s ease-in-out infinite; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; perspective: 1200px; }
.svc-card { background: rgba(10,15,30,0.9); border: 1px solid var(--glass-border); border-radius: 20px; padding: 2.5rem; position: relative; overflow: hidden; cursor: pointer; opacity: 0; transform: translateY(70px) scale(0.92) rotateX(8deg); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-medium); }
.svc-card.in { opacity: 1; transform: translateY(0) scale(1) rotateX(0); }
.svc-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent 0%, rgba(139,92,246,0.15) 40%, rgba(0,212,255,0.12) 75%, transparent 90%); opacity: 0; transition: opacity 0.6s ease; z-index: 1; animation: spin 12s linear infinite; }
.svc-card::after { content: ''; position: absolute; inset: 0; background: var(--gradient-accent); opacity: 0; transition: opacity 0.5s ease; z-index: 0; border-radius: 20px; mix-blend-mode: screen; }
.svc-card:hover { transform: translateY(-20px) scale(1.04) rotateX(3deg); box-shadow: var(--shadow-strong); border-color: var(--secondary); }
.svc-card:hover::after { opacity: 0.3; }
.svc-card:hover::before { opacity: 0.5; }
.svc-card:hover .svc-icon, .svc-card:hover .svc-name, .svc-card:hover .svc-desc, .svc-card:hover .svc-list li { color: var(--white) !important; text-shadow: 0 0 10px rgba(0,212,255,0.5); }
.svc-card:hover .svc-list li::before { background: var(--secondary) !important; box-shadow: 0 0 8px var(--secondary); }
.svc-card:hover .svc-icon-wrap { background: var(--gradient-primary); transform: rotate(20deg) scale(1.15); box-shadow: 0 10px 30px rgba(75,108,183,0.5); }
.svc-card:hover .svc-icon-wrap::before { opacity: 1; }
.svc-card:hover .svc-icon { transform: scale(1.15) rotate(-20deg); filter: drop-shadow(0 0 10px var(--accent)); }
.svc-card > * { position: relative; z-index: 2; }
.svc-icon-wrap { width: 56px; height: 56px; background: var(--glass-bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-soft); position: relative; overflow: hidden; border: 1px solid var(--glass-border); }
.svc-icon-wrap::before { content: ''; position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0; transition: opacity 0.4s ease; }
.svc-icon { font-size: 1.8rem; display: block; transition: all 0.4s ease; z-index: 1; position: relative; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--white), var(--light-grey));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 0.8rem;
  transition: all 0.4s ease;
}
.svc-desc { font-size: 0.85rem; color: var(--light-grey); line-height: 1.7; margin-bottom: 1.2rem; transition: all 0.4s ease; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.svc-list li { font-size: 0.8rem; color: var(--grey); display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.svc-list li::before { content: ''; width: 5px; height: 5px; background: var(--mid-grey); border-radius: 50%; flex-shrink: 0; transition: all 0.4s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }

/* ─── TEAM ─── */
.team { background: linear-gradient(135deg, #121D2B 0%, #1A2B3E 100%); overflow: hidden; position: relative; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.10); }
.team::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 15% 25%, rgba(75,108,183,0.1) 0%, transparent 45%), radial-gradient(circle at 85% 65%, rgba(139,92,246,0.08) 0%, transparent 40%); pointer-events: none; }
.team-header { text-align: center; margin-bottom: 4rem; color: var(--white); }
.team-row { background: rgba(26,31,58,0.92); display: grid; grid-template-columns: auto 1fr auto; align-items: stretch; border: 1px solid var(--glass-border); border-radius: 22px; position: relative; overflow: hidden; margin-bottom: 1.8rem; opacity: 0; transform: translateX(-50px) scaleX(0.97); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-medium); cursor: pointer; }
.team-row.in { opacity: 1; transform: translateX(0) scaleX(1); }
.team-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gradient-accent); transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 0 3px 3px 0; box-shadow: 0 0 15px rgba(139,92,246,0.4); }
.team-row::after { content: ''; position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0; transition: opacity 0.5s ease; z-index: 0; mix-blend-mode: overlay; }
.team-row:hover::before { transform: scaleY(1); }
.team-row:hover::after { opacity: 0.08; }
.team-row:hover { background: rgba(26,43,62,0.98); transform: scale(1.02) translateX(8px); box-shadow: var(--shadow-strong); border-color: var(--secondary); }
.team-avatar-col { padding: 2.2rem 2.2rem 2.2rem 2.8rem; display: flex; align-items: center; justify-content: center; border-right: 1px solid rgba(255,255,255,0.12); }
.avatar-circle { width: 78px; height: 78px; border-radius: 50%; background: var(--gradient-primary); border: 3px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--white); flex-shrink: 0; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; box-shadow: 0 8px 25px rgba(75,108,183,0.3); }
.avatar-circle::before { content: ''; position: absolute; inset: 0; background: var(--gradient-accent); opacity: 0; transition: opacity 0.4s ease; }
.team-row:hover .avatar-circle { transform: scale(1.12) rotate(15deg); border-color: var(--secondary); box-shadow: 0 0 25px rgba(0,212,255,0.4); }
.team-info-col { padding: 2.2rem; position: relative; z-index: 1; }
.team-name-row { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--light-grey));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.team-desig { font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); background: var(--gradient-primary); padding: 6px 16px; border-radius: 50px; transition: all 0.4s ease; box-shadow: 0 4px 15px rgba(75,108,183,0.3); }
.team-row:hover .team-desig { background: var(--gradient-accent); transform: scale(1.05) rotate(2deg); box-shadow: 0 6px 20px rgba(139,92,246,0.4); }
.team-qual { font-size: 0.85rem; color: var(--light-grey); margin-bottom: 1rem; font-style: italic; font-weight: 500; }
.team-bio { font-size: 0.88rem; color: var(--grey); line-height: 1.75; max-width: 680px; }
.team-contact-col { padding: 2.2rem 2.8rem 2.2rem 2.2rem; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 1rem; border-left: 1px solid rgba(255,255,255,0.12); min-width: 240px; position: relative; z-index: 1; }
.exp-badge { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; padding: 10px 18px; text-align: center; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: blur(10px); }
.team-row:hover .exp-badge { background: var(--gradient-success); transform: scale(1.08) translateY(-3px); box-shadow: 0 8px 25px rgba(20,184,166,0.4); }
.team-row:hover .exp-badge-num { color: var(--black) !important; }
.team-row:hover .exp-badge-lbl { color: var(--white) !important; }
.exp-badge-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--secondary); line-height: 1; transition: all 0.4s ease; }
.exp-badge-lbl { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); display: block; margin-top: 4px; transition: all 0.4s ease; font-weight: 600; }
.contact-links { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.contact-link { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--grey); text-decoration: none; transition: all 0.3s ease; padding: 6px 12px; border-radius: 20px; }
.contact-link:hover { color: var(--secondary) !important; background: rgba(0,212,255,0.15); transform: translateX(6px) scale(1.05); box-shadow: 0 4px 15px rgba(0,212,255,0.3); }

/* ─── EXPERIENCE — Dark theme matching other sections ─── */
.experience {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 50%, var(--dark-grey) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(75,108,183,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139,92,246,0.10) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: cosmicWave 14s ease-in-out infinite;
}

/* Override: ensure text is visible on dark bg */
.experience .section-tag { border-color: var(--glass-border); color: var(--grey); }
.experience .section-title { color: var(--white); }
.experience .section-sub { color: var(--light-grey); }

.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.exp-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }

/* ─── Experience items — fixed: removed conflicting bg-clip on children, proper z-index ─── */
.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(10,15,30,0.7);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.exp-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.exp-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 12px;
  mix-blend-mode: screen;
  pointer-events: none;
}
.exp-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-strong);
  border-color: var(--secondary);
  background: rgba(10,15,30,0.9);
}
.exp-item:hover::before { opacity: 1; }
.exp-item:hover::after { opacity: 0.2; }
.exp-item:hover .exp-num { filter: brightness(1.3); }
.exp-item:hover p { color: var(--silver); }
.exp-item:hover p strong { color: var(--white); }

.exp-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  flex-shrink: 0;
  min-width: 36px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

/* Fixed: removed broken bg-clip cascade on .exp-item > * and .exp-item p */
.exp-item p {
  font-size: 0.9rem;
  color: var(--light-grey);
  line-height: 1.65;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.exp-item p strong { color: var(--white); transition: color 0.3s; }

/* Experience stats card */
.exp-stats-card {
  background: rgba(10,15,30,0.8);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}
.exp-stats-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
}
.exp-stats-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(75,108,183,0.15) 0%, transparent 70%);
  animation: floatY 6s ease-in-out infinite;
  pointer-events: none;
}
.exp-inner-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.exp-stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  backdrop-filter: blur(10px);
}
.exp-stat-box:hover { background: var(--gradient-primary); transform: translateY(-8px) scale(1.08); box-shadow: 0 12px 30px rgba(75,108,183,0.4); border-color: var(--secondary); }
.exp-stat-box .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); }
.exp-stat-box .lbl { font-size: 0.7rem; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; display: block; transition: color 0.3s; }
.exp-stat-box:hover .lbl { color: rgba(255,255,255,0.8); }

/* ─── WHY SECTION ─── */
.why-section { background: var(--dark-grey); padding: 100px 0; position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(0,212,255,0.08) 0%, transparent 50%), radial-gradient(circle at 30% 80%, rgba(139,92,246,0.08) 0%, transparent 50%); pointer-events: none; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.why-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; padding: 1.5rem; position: relative; overflow: hidden; cursor: default; transition: all 0.4s ease; }
.why-item::after { content: ''; position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s; z-index: 0; border-radius: 12px; }
.why-item:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 20px 48px rgba(75,108,183,0.25); border-color: var(--secondary); }
.why-item:hover::after { opacity: 0.9; }
.why-item > * { position: relative; z-index: 1; }
.why-icon { font-size: 1.5rem; margin-bottom: 0.8rem; display: block; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.why-item:hover .why-icon { transform: rotate(10deg) scale(1.2); }
.why-item strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 4px; transition: color 0.3s; }
.why-item span { font-size: 0.77rem; color: var(--light-grey); transition: color 0.3s; }
.why-item:hover strong { color: var(--white) !important; }
.why-item:hover span { color: rgba(255,255,255,0.85) !important; }

/* ─── CONTACT ─── */
.contact-section { background: var(--charcoal); position: relative; overflow: hidden; padding: 120px 0; }
.contact-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 20%, rgba(75,108,183,0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(139,92,246,0.08) 0%, transparent 50%); pointer-events: none; }
.contact-section .section-tag { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-sub { color: var(--light-grey); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.contact-left { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 3rem; backdrop-filter: blur(20px); box-shadow: var(--shadow-strong); position: relative; overflow: hidden; }
.contact-left::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); }
.contact-left .section-tag { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
.contact-left .section-title { color: var(--white); font-size: 2rem; }
.contact-left .section-sub { color: var(--light-grey); margin-top: 0.5rem; }
.contact-info-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.ci-row { display: flex; gap: 1rem; align-items: flex-start; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1rem 1.2rem; position: relative; overflow: hidden; cursor: pointer; transition: all 0.3s ease; }
.ci-row:hover { background: rgba(75,108,183,0.15); transform: translateX(8px); border-color: var(--secondary); }
.ci-row > * { position: relative; z-index: 1; }
.ci-row:hover .ci-label { color: rgba(255,255,255,0.7) !important; }
.ci-row:hover .ci-value { color: var(--white) !important; }
.ci-row:hover .ci-value a { color: var(--secondary) !important; }
.ci-row:hover .ci-icon { background: var(--gradient-primary) !important; transform: rotate(10deg) scale(1.1); }
.ci-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: all 0.3s ease; }
.ci-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 3px; transition: color 0.3s; }
.ci-value { font-size: 0.88rem; color: var(--light-grey); line-height: 1.5; transition: color 0.3s; }
.ci-value a { color: var(--secondary); text-decoration: none; transition: color 0.2s; }
.contact-persons { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-persons h3 { font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.person-pill { display: flex; align-items: center; gap: 1rem; margin-bottom: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 25px; padding: 0.8rem 1.2rem; transition: all 0.3s ease; cursor: pointer; }
.person-pill:hover { background: rgba(75,108,183,0.15); transform: translateX(5px); border-color: var(--secondary); }
.person-pill > * { position: relative; z-index: 1; }
.person-pill:hover span { color: var(--white) !important; }
.person-pill:hover a { color: var(--secondary) !important; }
.person-pill:hover .person-dot { background: var(--gradient-accent) !important; box-shadow: 0 0 10px var(--accent); }
.person-dot { width: 10px; height: 10px; background: var(--primary); border-radius: 50%; flex-shrink: 0; transition: all 0.3s ease; }
.person-pill span { font-size: 0.85rem; color: var(--light-grey); transition: color 0.3s; }
.person-pill a { font-size: 0.8rem; color: var(--grey); text-decoration: none; margin-left: auto; transition: color 0.2s; }
.wa-btn-contact { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.8rem; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: white; padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
.wa-btn-contact:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4); }
.wa-btn-contact svg { transition: transform 0.3s ease; }
.wa-btn-contact:hover svg { transform: scale(1.1); }
.contact-right { background: rgba(10,15,30,0.8); border: 1px solid var(--glass-border); border-radius: 20px; padding: 3rem; position: relative; overflow: hidden; box-shadow: var(--shadow-strong); backdrop-filter: blur(20px); }
.contact-right::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-accent); }
.contact-right h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; position: relative; z-index: 1; }
.contact-right > p { font-size: 0.9rem; color: var(--light-grey); margin-bottom: 2rem; position: relative; z-index: 1; }
.form-group { margin-bottom: 1.5rem; position: relative; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--white); letter-spacing: 0.5px; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1rem 1.2rem; background: rgba(255,255,255,0.05); border: 2px solid var(--glass-border); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--white); transition: all 0.3s ease; outline: none; appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--mid-grey); }
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--secondary); background: rgba(0,212,255,0.05); box-shadow: 0 0 20px rgba(0,212,255,0.2); transform: translateY(-2px); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.submit-btn { width: 100%; background: var(--gradient-primary); color: var(--black); padding: 1rem 2.5rem; border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.5px; cursor: pointer; text-transform: uppercase; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(75,108,183,0.3); position: relative; overflow: hidden; margin-top: 0.5rem; }
.submit-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s; }
.submit-btn:hover::before { left: 100%; }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(139,92,246,0.4); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.submit-btn .btn-spinner { display: none; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto; }
.success-msg { display: none; text-align: center; padding: 2rem; background: rgba(20,184,166,0.1); border: 1px solid rgba(20,184,166,0.3); border-radius: 12px; margin-top: 2rem; }
.success-msg .check-circle { width: 60px; height: 60px; background: var(--gradient-success); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1rem; box-shadow: 0 8px 25px rgba(20,184,166,0.3); }
.success-msg h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.success-msg p { font-size: 0.88rem; color: var(--light-grey); }
.error-msg { display: none; background: rgba(220,38,38,0.15); border: 1px solid rgba(252,165,165,0.3); border-radius: 8px; padding: 12px 16px; font-size: 0.84rem; color: #fca5a5; margin-top: 0.5rem; }

/* ─── TICKER ─── */
.divider-ticker { background: var(--gradient-primary); padding: 1rem 0; overflow: hidden; }
.ticker-track { display: flex; gap: 3rem; animation: ticker 22s linear infinite; width: max-content; }
.ticker-item { font-size: 1.1rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--white); white-space: nowrap; display: flex; align-items: center; gap: 1rem; }
.ticker-item::after { content: '✦'; color: rgba(255,255,255,0.4); }

/* ─── FOOTER ─── */
footer { background: var(--black); padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { color: var(--grey); }
.footer-desc { font-size: 0.84rem; color: var(--light-grey); line-height: 1.7; margin: 1.2rem 0 1.5rem; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--light-grey); text-decoration: none; font-size: 0.9rem; transition: background 0.3s, color 0.3s, transform 0.3s; }
.social-btn:hover { background: var(--gradient-primary); color: var(--white); transform: translateY(-3px) rotate(5deg); }
.footer-col h3 { font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.84rem; color: var(--light-grey); text-decoration: none; transition: color 0.2s, transform 0.2s; display: inline-block; padding: 8px 0; }
.footer-links a:hover { color: var(--secondary); transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-left { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-copy { font-size: 0.78rem; color: var(--grey); }
.footer-reg { font-size: 0.75rem; color: var(--grey); }
.footer-legal { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.75rem; color: var(--grey); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--secondary); }
.legal-sep { color: var(--dark-grey); font-size: 0.75rem; }

/* ─── FLOATING WA BUTTON ─── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px; background: linear-gradient(135deg, #25D366, #128C7E); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.4); z-index: 900; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; animation: floatIn 1s 1.5s forwards; opacity: 0; }
.wa-float:hover { transform: scale(1.15) rotate(10deg); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* This ensures all small links/icons meet the 48px minimum hit area requirement */
.social-btn, .wa-float, .contact-link, .nav-links a {
  min-width: 44px; 
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { animation: fadeUp 0.8s 0.5s forwards; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-contact-col { min-width: 160px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Sections */
  section { padding: 60px 0; }
  .why-section { padding: 60px 0; }
  .contact-section { padding: 70px 0; }
  .container { padding: 0 1.2rem; }

  /* Hero */
  .hero { padding-top: 72px; min-height: auto; padding-bottom: 2rem; }
  .hero-inner { padding: 3rem 1.2rem 2rem; gap: 2.5rem; }
  .hero-title { font-size: 2.1rem; line-height: 1.15; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; gap: 0.8rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; text-align: center; padding: 14px 20px; }
  .hero-ring { display: none; }
  .hero-orb { display: none; } /* hide orbs on mobile to reduce clutter */
  .hero-badge { font-size: 0.68rem; }

  /* Stats card */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-num { font-size: 1.9rem; }
  .stats-card { padding: 1.5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-features { grid-template-columns: 1fr; }
  .about-block-main { padding: 2rem 1.5rem; }
  .about-block-main .big-year { font-size: 3.5rem; }

  /* Team */
  .team-row { grid-template-columns: 1fr; }
  .team-avatar-col {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 1.5rem 1.2rem;
    justify-content: flex-start;
    flex-direction: row;
    gap: 1rem;
  }
  .team-info-col { padding: 1.2rem 1.5rem; }
  .team-contact-col {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .team-contact-col .exp-badge { flex-shrink: 0; }
  .contact-links {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .contact-link {
    font-size: 0.78rem;
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .team-name { font-size: 1.1rem; }

  /* Experience */
  .exp-grid { grid-template-columns: 1fr; gap: 2rem; }
  .exp-stats-card { padding: 1.8rem 1.5rem; }
  .exp-inner-stats { grid-template-columns: 1fr 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Contact — full overhaul */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.2rem;
  }
  .contact-left { padding: 2rem 1.5rem; border-radius: 16px; }
  .contact-info-items { gap: 1rem; margin-top: 1.5rem; }
  .ci-row {
    flex-direction: row;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    gap: 0.9rem;
  }
  .ci-icon { width: 40px; height: 40px; font-size: 1rem; flex-shrink: 0; }
  .ci-label { font-size: 0.62rem; }
  .ci-value { font-size: 0.82rem; word-break: break-word; }
  .ci-value a { word-break: break-all; }
  .contact-right { padding: 2rem 1.5rem; border-radius: 16px; }
  .contact-right h3 { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .person-pill { flex-wrap: wrap; gap: 0.5rem; }
  .person-pill a { margin-left: 0; }
  .wa-btn-contact { padding: 0.9rem 1.5rem; font-size: 0.88rem; }

  /* Contact section header */
  .contact-section .container { padding: 0 1.2rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { padding: 0 1.2rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer-reg { font-size: 0.7rem; line-height: 1.5; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.6rem; }
  .about-block-main .big-year { font-size: 3rem; }
  .exp-inner-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .contact-left .section-title { font-size: 1.5rem; }
  .contact-right h3 { font-size: 1.2rem; }
  .team-name { font-size: 1rem; }
  .team-bio { font-size: 0.82rem; }
  .footer-bottom { gap: 0.4rem; }
  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* Disable hover transforms on touch devices */
@media (hover: none) and (pointer: coarse) {
  .svc-card:hover,
  .team-row:hover,
  .exp-item:hover,
  .why-item:hover,
  .ci-row:hover,
  .about-float-card:hover,
  .person-pill:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .stats-card:hover,
  .exp-stat-box:hover,
  .social-btn:hover,
  .footer-links a:hover,
  .nav-links a:hover {
    transform: none !important;
  }
  .svc-card { cursor: default; }
  .team-row { cursor: default; }
}
