/* =========================================
   ARKINET — PREMIUM DESIGN SYSTEM
   ========================================= */

/* ---- DESIGN TOKENS ---- */
:root {
  --primary: #040b14;
  --secondary: #091629;
  --accent-cyan: #00e1ff;
  --accent-blue: #0055ff;
  --accent-green: #00e676;
  --accent-orange: #ff6b2c;
  --accent-gold: #ffcf40;
  --surface: #f6f9fc;
  --surface-2: #edf2f9;
  --text: #0b1526;
  --text-muted: #5c6c84;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-glow: rgba(0, 225, 255, 0.15);
  --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  --card-hover: 0 25px 50px rgba(0, 0, 0, 0.1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Inter', sans-serif;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: var(--white);
}

.loader-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto;
}

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

/* =========================================
   SCROLL PROGRESS BAR
   ========================================= */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* =========================================
   OVERLAY
   ========================================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 998;
}

.overlay.active {
  display: block;
}

/* =========================================
   NAVBAR
   ========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

header.scrolled {
  background: rgba(6, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* LOGO */
.logo img {
  height: 46px;
  object-fit: contain;
}

/* DESKTOP NAV */
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--accent-cyan);
}

/* ICONS in mobile only */
.icon {
  display: none;
}

/* NAV CTA BUTTON */
.nav-cta {
  background: linear-gradient(135deg, var(--accent-cyan), #0090b3) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.35) !important;
}

.nav-cta::after {
  display: none !important;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   MOBILE NAV
   ========================================= */
@media (max-width: 900px) {
  header {
    padding: 0 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--secondary);
    padding: 100px 30px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-links a {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-links a::after {
    display: none;
  }

  .icon {
    display: inline-block;
    font-size: 1.1rem;
  }

  .nav-cta {
    margin-top: 12px;
    display: block;
    text-align: center;
  }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

/* VIDEO BG */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -3;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slide.active {
  opacity: 1;
}

.slide.active img {
  transform: scale(1);
}

/* OVERLAY */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(6, 15, 30, 0.88) 0%,
      rgba(11, 31, 58, 0.72) 50%,
      rgba(0, 212, 255, 0.12) 100%);
  z-index: -2;
}

/* NOISE TEXTURE */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: -1;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 20px;
  animation: heroEntry 1s ease both;
}

@keyframes heroEntry {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  color: var(--accent-cyan);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  min-height: 1.8em;
  font-weight: 400;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-cyan), #0090b3);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 212, 255, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Legacy button classes (keeps old HTML working) */
.btn {
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-cyan), #0090b3);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 212, 255, 0.45);
}

.btn.glass {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn.glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* FLOATING SHAPES */
.floating {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.shape1 {
  width: 360px;
  height: 360px;
  background: var(--accent-cyan);
  top: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.shape2 {
  width: 300px;
  height: 300px;
  background: var(--accent-orange);
  bottom: 10%;
  right: 8%;
  animation: float 11s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-28px) scale(1.04);
  }
}

/* SCROLL INDICATOR */
.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  z-index: 2;
}

.scroll-down::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 2.2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0% {
    opacity: 0;
    top: 8px;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: 26px;
  }
}

/* SMALL HERO (inner pages) */
.small-hero {
  min-height: 52vh;
  padding-top: var(--nav-h);
}

.small-hero .hero-content h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
}

.small-hero .hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================
   SECTION GLOBALS
   ========================================= */
section {
  padding: 110px 20px;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-header h2,
h2.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p,
p.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* =========================================
   GLOBAL BUTTONS
   ========================================= */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--accent-orange), #e85a1f);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(255, 107, 44, 0.3);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255, 107, 44, 0.45);
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.3);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.4);
  background: #0d2849;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
  padding: 110px 20px;
  background: var(--white);
}

/* ABOUT PAGE REDESIGN CLASSES */
.about-redesign {
  padding: 120px 20px;
  background: var(--white);
}

.lead-text {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.8;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.mv-card {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
  border-color: rgba(0, 225, 255, 0.2);
}

.mv-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 225, 255, 0.1), rgba(0,85,255,0.05));
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.mv-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about-image-wrapper {
  position: relative;
  padding-left: 20px;
}

.image-premium {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  z-index: 2;
}

.image-premium img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.glass-highlight {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: rgba(4, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  z-index: 3;
}

.glass-highlight .highlight-icon {
  font-size: 2rem;
  color: var(--accent-cyan);
}

.glass-highlight strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

.glass-highlight span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.dec-shape {
  position: absolute;
  z-index: 1;
}
.ds-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-cyan), transparent);
  border-radius: 50%;
  top: -20px;
  right: -20px;
  filter: blur(30px);
  opacity: 0.5;
}
.ds-2 {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--accent-blue), transparent);
  border-radius: 50%;
  bottom: -40px;
  right: 40px;
  filter: blur(40px);
  opacity: 0.4;
}

/* PREMIUM GRID (Core Values) */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.premium-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  text-align: left;
}

.premium-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 225, 255, 0.3);
  box-shadow: 0 25px 60px rgba(0, 225, 255, 0.08);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 225, 255, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.premium-card:hover .card-glow {
  opacity: 1;
}

.premium-icon {
  width: 64px;
  height: 64px;
  background: var(--surface);
  color: var(--accent-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.premium-card:hover .premium-icon {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: var(--white);
  transform: scale(1.1);
}

.premium-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 700;
}

.premium-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

/* GLASS STATS */
.glass-stats {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  position: relative;
  padding: 100px 20px;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  opacity: 0.9;
}

/* PREMIUM FOOTER */
.premium-footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 20px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(0, 225, 255, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.premium-footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin: 20px 0;
  line-height: 1.8;
  max-width: 90%;
}

.premium-socials {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin-top: 10px !important;
}

.premium-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.premium-socials a:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

.footer-links-group h3, .footer-newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-newsletter p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.glass-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glass-newsletter .input-wrapper {
  position: relative;
}

.glass-newsletter .input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
}

.glass-newsletter input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  outline: none;
  font-family: var(--font);
  transition: var(--transition);
}

.glass-newsletter input:focus {
  border-color: var(--accent-cyan);
  background: rgba(255,255,255,0.08);
}

.btn-subscribe {
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-blue), #003dbd);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-subscribe:hover {
  box-shadow: 0 8px 20px rgba(0, 85, 255, 0.4);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom-inner p {
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-legal a:hover {
  color: var(--white);
}

.footer-legal .sep {
  color: rgba(255,255,255,0.2);
  margin: 0 10px;
}

@media (max-width: 960px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .glass-highlight {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 16px;
    justify-content: center;
  }
  .premium-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .premium-socials {
    justify-content: center !important;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-tag {
  display: inline-block;
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.02rem;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-call {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-cyan), #0090b3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.about-call span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-call strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}

/* RIGHT IMAGE */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(0, 212, 255, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 0 0 16px rgba(0, 212, 255, 0.05);
  position: relative;
}

.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-float {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: var(--secondary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--glass-border);
}

.progress-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent-cyan);
  margin: 0 auto 6px;
}

.about-float p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

@media (max-width: 960px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-actions {
    justify-content: center;
  }

  .about-float {
    left: 50%;
    transform: translateX(-50%);
  }

  .image-circle {
    width: 300px;
    height: 300px;
  }
}

/* =========================================
   WHY CHOOSE SECTION
   ========================================= */
.why-section {
  padding: 110px 20px;
  background: var(--surface-2);
  text-align: center;
}

.why-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

/* WHY CARD */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  text-align: left;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover);
}

.why-image {
  position: relative;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-card:hover .why-image img {
  transform: scale(1.06);
}

.why-content {
  padding: 28px;
}

.why-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 14px;
  padding: 10px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 12px;
}

.why-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.why-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.why-content a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.why-content a:hover {
  gap: 8px;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats {
  padding: 90px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 44px 28px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.stat-card h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  padding: 110px 20px;
  background: var(--white);
  text-align: center;
}

.services-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

/* SERVICE CARD */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover);
}

.service-image {
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-content {
  padding: 28px;
  margin: 0;
  width: 100%;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
  box-shadow: none;
}

.service-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 14px;
  padding: 10px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 12px;
}

.service-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.service-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-content a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.service-content a:hover {
  gap: 8px;
  color: var(--accent-orange);
}

.services-btn {
  margin-top: 60px;
}

/* =========================================
   DIVISIONS SECTION
   ========================================= */
.divisions-section {
  padding: 110px 20px;
  background: var(--surface-2);
  text-align: center;
}

.divisions-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.divisions-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.division-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover);
}

.division-image {
  overflow: hidden;
}

.division-image img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.division-card:hover .division-image img {
  transform: scale(1.06);
}

.division-content {
  padding: 24px;
  margin: 0;
  width: 100%;
  background: var(--white);
  border-radius: 0;
  box-shadow: none;
}

.division-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 12px;
  padding: 8px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 10px;
}

.division-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.division-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.divisions-btn {
  margin-top: 55px;
}

/* =========================================
   PARTNERS SECTION
   ========================================= */
.partners {
  padding: 90px 20px;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}

.partners h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.partners h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 50px;
}

.partners-slider {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.partners-track img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.partners-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team {
  padding: 110px 20px;
  background: var(--surface-2);
  text-align: center;
}

.team h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}

.team-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 20px 20px 6px;
}

.team-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 20px 22px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 0;
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  position: relative;
  min-width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 6s ease;
}

.testimonial-card.active .testimonial-bg {
  transform: scale(1.04);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 15, 30, 0.85), rgba(11, 31, 58, 0.75));
  z-index: -1;
}

.testimonial-content {
  text-align: center;
  color: var(--white);
  max-width: 680px;
  padding: 30px 20px;
  position: relative;
}

.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-orange);
  margin: 0 auto 18px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.testimonial-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-content span {
  font-size: 0.85rem;
  opacity: 0.7;
}

.stars {
  margin: 12px 0;
  color: var(--accent-orange);
  font-size: 1.1rem;
  letter-spacing: 4px;
}

.testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  font-style: italic;
  opacity: 0.9;
  margin-top: 12px;
}

.dots {
  position: absolute;
  bottom: 24px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dots span.active {
  background: var(--white);
  transform: scale(1.4);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  padding: 110px 20px;
  background: var(--surface);
}

.contact-section>h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 60px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover);
}

.info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--secondary), #0d2849);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.info-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-hover);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e2e8f0;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  transition: var(--transition);
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-cyan);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.08);
}

.contact-form button {
  padding: 15px;
  background: linear-gradient(135deg, var(--accent-orange), #e85a1f);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(255, 107, 44, 0.3);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 44, 0.45);
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px;
  }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta {
  padding: 90px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
}

.cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 30px;
  position: relative;
}

/* =========================================
   SERVICES PAGE — DETAIL BLOCKS
   ========================================= */
.services-details {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--surface-2);
}

.service-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse>* {
  direction: ltr;
}

.service-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.25;
}

.service-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1rem;
}

.service-text ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-text ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.service-text ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
  border-radius: 50%;
  flex-shrink: 0;
}

.service-block .service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-hover);
}

.service-block .service-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 800px) {

  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .service-block .service-image img {
    height: 240px;
  }
}

/* =========================================
   DIVISIONS PAGE FLAT CARDS (divisions.html)
   ========================================= */
body.divisions-page .divisions-section {
  padding: 80px 20px;
}

body.divisions-page .divisions-section .division-card {
  /* Flat version for divisions.html which has no image wrapper div */
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

body.divisions-page .divisions-section .division-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover);
}

body.divisions-page .divisions-section .division-card>img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

body.divisions-page .divisions-section .division-card:hover>img {
  transform: scale(1.06);
}

body.divisions-page .divisions-section .division-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 18px 20px 8px;
}

body.divisions-page .divisions-section .division-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 20px 20px;
  line-height: 1.65;
}

/* =========================================
   ABOUT PAGE SPECIFICS
   ========================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.services .service-card,
.service-grid .service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: visible;
}

.services .service-card:hover,
.service-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover);
}

.services .service-card h3,
.service-grid .service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.services .service-card p,
.service-grid .service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* STATS on About page */
.stats.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 90px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.stat {
  text-align: center;
  min-width: 160px;
  flex: 1;
  max-width: 220px;
}

.stat h2 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0;
}

/* TIMELINE */
.timeline {
  padding: 110px 20px;
  background: var(--surface);
}

.timeline h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 60px;
}

.timeline-container {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-green));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 44px;
  position: relative;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.15);
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(6px);
  box-shadow: var(--card-hover);
}

.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* GROWTH CHART */
.growth {
  padding: 110px 20px;
  background: var(--surface-2);
  text-align: center;
}

.growth h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 60px;
}

.chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  height: 250px;
  max-width: 700px;
  margin: 0 auto;
}

.bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.bar span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.bar-fill {
  width: 100%;
  height: var(--height);
  background: linear-gradient(to top, var(--accent-cyan), var(--accent-green));
  border-radius: 8px 8px 0 0;
  transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 40px;
  max-width: 80px;
}

/* =========================================
   FLOATING ACTION BUTTONS
   ========================================= */
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 96px;
  right: 22px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

.call-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-orange), #e85a1f);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(255, 107, 44, 0.45);
  z-index: 1000;
  transition: var(--transition);
}

.call-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 107, 44, 0.55);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 40px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-logo {
  height: 42px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-box>p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-box h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* SOCIAL */
.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.socials a:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* LINKS */
.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 4px;
}

.newsletter input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--white);
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter button {
  padding: 11px 20px;
  background: var(--accent-orange);
  color: var(--white);
  border: none;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.newsletter button:hover {
  background: #e85a1f;
}

/* MAP */
.map {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: var(--radius-sm);
  opacity: 0.8;
  display: block;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-logo {
  height: 36px;
  object-fit: contain;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.credit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 20px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE HELPERS
   ========================================= */
@media (max-width: 768px) {
  section {
    padding: 80px 16px;
  }

  .team-card img {
    height: 230px;
  }

  .testimonial-card {
    height: 440px;
  }

  .testimonial-content p {
    font-size: 0.95rem;
  }

  .testimonial-avatar {
    width: 75px;
    height: 75px;
  }

  .stat-card h2 {
    font-size: 2.4rem;
  }

  .timeline-container::before {
    left: 16px;
  }

  .timeline-dot {
    width: 34px;
    height: 34px;
  }

  .timeline-item {
    gap: 24px;
  }

  .timeline-content {
    padding: 18px 20px;
  }

  .chart {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.72rem;
  }

  .about-float {
    display: none;
  }

  .image-circle {
    width: 260px;
    height: 260px;
  }
}

/* =========================================
   FORMSPREE AJAX — FORM STATE STYLES
   ========================================= */

/* Field wrapper for error placement */
.fs-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Field-level error text */
.fs-field-error {
  font-size: 0.8rem;
  color: #e53e3e;
  font-weight: 500;
  min-height: 1em;
  display: block;
}

/* Invalid field highlight (set by Formspree via aria-invalid) */
.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}

/* Form-level error banner */
.fs-form-error {
  display: none;
  background: rgba(229, 62, 62, 0.08);
  border: 1px solid rgba(229, 62, 62, 0.25);
  border-radius: var(--radius-sm);
  color: #c53030;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 16px;
  margin-bottom: 8px;
}

/* Show form-level error when Formspree populates it */
.fs-form-error:not(:empty) {
  display: block;
}

/* Success banner — hidden by default, shown by Formspree */
.fs-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 16px;
}

/* Formspree shows/hides [data-fs-success] automatically */
[data-fs-success] {
  display: none;
}

/* When form is submitted successfully, Formspree removes hidden and form */
.fs-success-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.fs-success p {
  color: #276749;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* Disabled submit button during submission */
.contact-form button[data-fs-submit-btn]:disabled,
.contact-form button[data-fs-submit-btn][disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Loading spinner on button during submit */
.contact-form button[data-fs-submit-btn]:disabled::after {
  content: ' ⏳';
  font-size: 0.9em;
}

/* =========================================
   ABOUT PAGE: TIMELINE & CHART REDESIGN
   ========================================= */

/* PREMIUM TIMELINE */
.premium-timeline-wrapper {
  background: var(--surface-2);
}

.premium-timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: rgba(0, 225, 255, 0.1);
  transform: translateX(-50%);
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 60px;
}

.timeline-item.left {
  left: 0;
  padding-right: 50px;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  padding-left: 50px;
  text-align: left;
}

.timeline-dot-premium {
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 225, 255, 0.2);
  z-index: 2;
}

.timeline-item.left .timeline-dot-premium {
  right: -10px;
}

.timeline-item.right .timeline-dot-premium {
  left: -10px;
}

.dot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: var(--accent-cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(15px);
  opacity: 0.6;
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  from { opacity: 0.4; transform: translate(-50%, -50%) scale(0.8); }
  to { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.glass-panel {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.timeline-item:hover .glass-panel {
  transform: translateY(-8px);
  box-shadow: var(--card-hover);
  border-color: rgba(0, 225, 255, 0.3);
}

.highlight-panel {
  background: linear-gradient(135deg, var(--white), rgba(0, 225, 255, 0.05));
  border: 1px solid rgba(0, 225, 255, 0.2);
}

.timeline-item h3.year {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 12px;
}

.timeline-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* PREMIUM CHART */
.premium-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 350px;
  padding: 40px 20px 0;
  border-bottom: 2px solid rgba(0,0,0,0.05);
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.premium-chart .bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
  height: 100%;
}

.premium-chart .bar-fill {
  width: 60px;
  background: linear-gradient(to top, rgba(0, 85, 255, 0.1), var(--accent-blue));
  border-radius: 8px 8px 0 0;
  height: 0; 
  animation: growBar 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

@keyframes growBar {
  from { height: 0; }
  to { height: var(--height); }
}

.premium-chart .highlight-bar .bar-fill {
  background: linear-gradient(to top, rgba(0, 225, 255, 0.2), var(--accent-cyan));
  box-shadow: 0 0 20px rgba(0, 225, 255, 0.4);
}

.premium-chart .bar-fill:hover {
  filter: brightness(1.2);
}

/* Tooltip */
.premium-chart .bar-fill::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--text);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  white-space: nowrap;
}

.premium-chart .bar-fill:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.premium-chart span {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.align-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 30px;
  }
  .timeline-item {
    width: 100%;
  }
  .timeline-item.left, .timeline-item.right {
    left: 0;
    padding-left: 80px;
    padding-right: 20px;
    text-align: left;
  }
  .timeline-item.left .timeline-dot-premium,
  .timeline-item.right .timeline-dot-premium {
    left: 20px;
    right: auto;
  }
  .premium-chart .bar-fill { width: 40px; }
}

/* =========================================
   DIVISIONS PAGE: ULTRA PREMIUM REDESIGN
   ========================================= */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 225, 255, 0.1);
  border: 1px solid rgba(0, 225, 255, 0.2);
  color: var(--accent-cyan);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-badge span {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse-glow 2s infinite;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-blue), #003dbd);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0,85,255,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,85,255,0.4);
}
.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.premium-divisions-wrapper {
  background: var(--white);
  padding: 120px 20px;
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}
.filter-btn {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  background: rgba(0, 225, 255, 0.05);
  color: var(--accent-blue);
}
.filter-btn.active {
  background: var(--accent-blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,85,255,0.3);
  border-color: var(--accent-blue);
}

/* PREMIUM GRID */
.premium-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.premium-division-card {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.premium-division-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  border-color: rgba(0, 225, 255, 0.3);
}

.pd-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.pd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-division-card:hover .pd-image img {
  transform: scale(1.1);
}
.pd-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(4,11,20,0.1), rgba(4,11,20,0.8));
  z-index: 1;
}

.pd-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background: var(--white);
}

.pd-icon-header {
  position: absolute;
  top: -32px;
  right: 32px;
  z-index: 3;
}
.pd-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 85, 255, 0.3);
  border: 2px solid var(--white);
  transition: transform 0.5s;
}
.premium-division-card:hover .pd-icon {
  transform: translateY(-8px) scale(1.05);
}

.premium-division-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  padding-right: 40px; 
}
.premium-division-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 24px;
}

.btn-ghost {
  display: inline-flex;
  font-weight: 700;
  color: var(--accent-blue);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.premium-division-card:hover .btn-ghost {
  opacity: 1;
  transform: translateY(0);
}

/* PREMIUM CTA */
.premium-cta {
  background: var(--primary);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg-fx {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(0, 225, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-color: rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  color: var(--white);
}
.cta-tag {
  display: inline-block;
  background: rgba(0, 225, 255, 0.1);
  color: var(--accent-cyan);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.premium-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}
.premium-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.btn-cta-glow {
  padding: 16px 40px;
  background: var(--accent-blue);
  color: var(--white);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(0, 85, 255, 0.4);
}
.btn-cta-glow:hover {
  background: var(--accent-cyan);
  box-shadow: 0 0 40px rgba(0, 225, 255, 0.6);
  transform: translateY(-3px);
  color: var(--primary);
}

/* MixItUp Animation States */
.mix {
  display: flex !important; /* using vanilla JS filter instead of MixItUp */
}
.mix.hidden {
  display: none !important;
}

/* =========================================
   HOME PAGE: LEADERSHIP TEAM REDESIGN
   ========================================= */

.premium-team-wrapper {
  background: var(--surface-2);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.team-shape-fx {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 80%;
  background: radial-gradient(ellipse at bottom, rgba(0, 225, 255, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.premium-team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
}

.premium-profile-card {
  width: 100%;
  max-width: 380px;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: 32px 32px 0 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.premium-profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 60px rgba(0,0,0,0.1);
  border-color: rgba(0, 85, 255, 0.2);
}

.profile-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.premium-profile-card:hover .profile-image img {
  transform: scale(1.05);
}

.profile-info {
  padding: 24px 0;
}

.profile-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.profile-info .role {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 1rem;
}

/* Hover Overlay */
.profile-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 11, 20, 0.85); /* Dark base */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.premium-profile-card:hover .profile-hover-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.overlay-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.role-glow {
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.bio {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.profile-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.profile-socials a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.profile-socials a:hover {
  background: var(--accent-cyan);
  color: var(--primary);
  border-color: var(--accent-cyan);
  transform: scale(1.1);
}

.btn-ghost-cyan {
  display: inline-block;
  color: var(--accent-cyan);
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}

.btn-ghost-cyan:hover {
  text-shadow: 0 0 10px var(--accent-cyan);
  transform: translateX(4px);
}

.lead-cta-box {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--white), rgba(0, 225, 255, 0.05));
  position: relative;
  z-index: 1;
}

.lead-cta-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.lead-cta-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .premium-profile-card {
    max-width: 400px;
  }
}

/* =========================================
   HOME PAGE: PREMIUM TESTIMONIAL CAROUSEL
   ========================================= */

.premium-testimonials-wrapper {
  background: linear-gradient(135deg, var(--surface), var(--primary));
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
}

.testi-bg-fx {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(0,225,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.premium-carousel-container {
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Base Card */
.premium-testimonial-card {
  flex: 0 0 calc(33.3333% - 20px);
  min-width: 380px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(0.85);
  opacity: 0.4;
  cursor: pointer;
}

/* Active Center Card */
.premium-testimonial-card.active {
  transform: scale(1);
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 225, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(0,225,255,0.1);
  z-index: 2;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  opacity: 0.3;
  margin-bottom: 20px;
  transition: var(--transition);
}
.premium-testimonial-card.active .quote-icon {
  opacity: 1;
}

.quote-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  font-style: italic;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.avatar-placeholder {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0,225,255,0.3);
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--accent-cyan);
}

/* Dots */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.indicator-dot.active {
  background: var(--accent-cyan);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--accent-cyan);
}

/* Progress bar */
.carousel-progress-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 30px auto 0;
  overflow: hidden;
}
.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-cyan);
  transition: width 0.1s linear;
}

/* Mobile Fallback */
@media (max-width: 900px) {
  .premium-testimonial-card {
    flex: 0 0 calc(100% - 20px);
    min-width: 280px;
  }
}