/* ═══════════════════════════════════════════════════════════════════════════
   ACTIVE MEDIA GROUP — Premium Website Stylesheet
   ══════════════════════════════════════════════════════════════════════════ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────────────────── */
:root {
  --navy:       #F3F4F6;
  --navy-2:     #E5E7EB;
  --navy-3:     #D1D5DB;
  --gold:       #D97706;
  --gold-light: #F59E0B;
  --gold-dark:  #B45309;
  --blue:       #2563EB;
  --blue-dark:  #1D4ED8;
  --blue-glow:  rgba(37, 99, 235, 0.15);
  --white:      #FFFFFF;
  --gray-1:     #F9FAFB;
  --gray-2:     #F3F4F6;
  --gray-3:     #6B7280;
  --text-main:  #111827;
  --text-muted: #4B5563;
  --glass-bg:   rgba(255,255,255,0.7);
  --glass-border: rgba(0,0,0,0.1);
  --card-bg:    rgba(255,255,255,0.9);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --shadow-glow: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-gold: 0 4px 20px rgba(217, 119, 6, 0.2);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img, video { max-width: 100%; pointer-events: none; user-select: none; -webkit-user-select: none; }
img { -webkit-user-drag: none; }
::selection { background: var(--gold); color: var(--navy); }

/* ─── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ─── Context Menu Block ────────────────────────────────────────────────── */
.no-select { user-select: none; -webkit-user-select: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  color: var(--text-main) !important;
  letter-spacing: -0.5px;
}
.nav-logo .logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--navy);
  box-shadow: 0 0 20px rgba(74,158,255,0.4);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
  transition: var(--transition); letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue-dark); background: rgba(0,0,0,0.05);
}
.nav-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white) !important; padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(74,158,255,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,158,255,0.5) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text-main);
  border-radius: 2px; transition: var(--transition); margin: 5px 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74,158,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(212,160,23,0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 0; }
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 900px; padding: 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1.2rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--font-head); font-weight: 900; font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 1.2rem;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 60%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--text-muted);
  font-weight: 400; margin-bottom: 0.8rem;
  animation: fadeInUp 0.9s ease 0.35s both;
}
.hero-tagline {
  font-size: 1rem; color: var(--gray-3); margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s ease 0.45s both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.55s both;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 2rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: none; transition: var(--transition); text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(74,158,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px); color: var(--white);
  box-shadow: 0 12px 35px rgba(74,158,255,0.5);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 8px 25px rgba(212,160,23,0.35);
}
.btn-gold:hover { transform: translateY(-2px); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-glow); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-danger { background: linear-gradient(135deg, #e53e3e, #c53030); color: white; }

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1s ease 1s both;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0) translateY(-50%); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(1) translateY(50%); }
}
.scroll-text { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════════════════════════
   STATS SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.stats-section {
  padding: 4rem 2rem;
  background: var(--navy-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.stat-card {
  text-align: center; padding: 2rem 1rem;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); transition: var(--transition);
}
.stat-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.stat-number {
  font-family: var(--font-head); font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-label { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════════════════════════════════════ */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
  padding: 0.3rem 1rem; border-radius: 100px;
  background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.2);
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem;
  line-height: 1.15;
}
.section-title .accent { color: var(--blue); }
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES GRID
   ══════════════════════════════════════════════════════════════════════════ */
.services-section { background: var(--navy); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem; margin-top: 1rem;
}
.service-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 1.8rem 1.4rem;
  text-align: center; transition: var(--transition); cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-glow), transparent);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(74,158,255,0.2), rgba(74,158,255,0.05));
  border: 1px solid rgba(74,158,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 6px 20px rgba(74,158,255,0.4); }
.service-name { font-weight: 600; font-size: 0.9rem; color: var(--text-main); }

/* ═══════════════════════════════════════════════════════════════════════════
   PROJECTS / WORK ORDERS
   ══════════════════════════════════════════════════════════════════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.project-card {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 1.8rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.project-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.project-card:hover::after { transform: scaleX(1); }
.project-card:hover { border-color: rgba(74,158,255,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.project-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.8rem;
}
.project-category {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); background: rgba(74,158,255,0.1); padding: 0.25rem 0.7rem;
  border-radius: 100px;
}
.status-badge {
  font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 100px;
}
.status-Active { background: rgba(72,199,142,0.15); color: #48C78E; }
.status-Completed { background: rgba(74,158,255,0.15); color: var(--blue); }
.status-Pending { background: rgba(212,160,23,0.15); color: var(--gold); }
.project-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.project-client { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.4rem; }
.project-location { color: var(--gold); font-size: 0.8rem; font-weight: 500; }
.project-desc { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.8rem; line-height: 1.6; }

/* Filter Bar */
.filter-bar {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem;
  align-items: center;
}
.filter-btn {
  padding: 0.45rem 1.1rem; border-radius: 100px; border: 1px solid var(--glass-border);
  background: var(--glass-bg); color: var(--text-muted); font-size: 0.85rem;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--blue); color: var(--blue); background: rgba(74,158,255,0.1); }

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  border: 1px solid var(--glass-border); transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); border-color: var(--blue); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: var(--transition);
  pointer-events: none; user-select: none; -webkit-user-drag: none;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,13,30,0.85) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-size: 0.85rem; font-weight: 500; }
/* Protect images */
.gallery-protect { position: absolute; inset: 0; z-index: 5; }

/* ═══════════════════════════════════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════════════════════════════════ */
.timeline-section { background: var(--navy-2); }
.chart-container {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 3rem;
  position: relative;
}
.chart-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 1.5rem; color: var(--white);
}
.chart-canvas-wrap { height: 340px; position: relative; }

/* Timeline List */
.timeline-list { position: relative; padding: 1rem 0; }
.timeline-list::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--blue), var(--gold));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; gap: 2rem; align-items: flex-start;
  margin-bottom: 2.5rem; position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-side { flex: 1; }
.timeline-item:nth-child(odd) .timeline-side:last-child { display: none; }
.timeline-item:nth-child(even) .timeline-side:first-child { display: none; }
.timeline-dot {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: 3px solid var(--navy-2); display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; font-weight: 800;
  color: var(--white); z-index: 1; position: relative; cursor: pointer;
  transition: var(--transition);
}
.timeline-dot:hover { transform: scale(1.2); box-shadow: 0 0 25px rgba(74,158,255,0.6); }
.timeline-dot.has-image { border-color: var(--gold); background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
/* Milestone image popup */
.milestone-thumb {
  position: absolute; bottom: 110%; left: 50%; transform: translateX(-50%);
  width: 200px; aspect-ratio: 4/3; border-radius: var(--radius-sm);
  object-fit: cover; border: 2px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none; transition: var(--transition);
  z-index: 100; -webkit-user-drag: none; user-select: none;
}
.timeline-dot:hover .milestone-thumb { opacity: 1; }
.timeline-content {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 1.5rem; flex: 1;
  transition: var(--transition);
}
.timeline-content:hover { border-color: rgba(74,158,255,0.3); }
.timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-bottom: 0.4rem; }
.timeline-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.timeline-desc { color: var(--text-muted); font-size: 0.85rem; }
.timeline-cat-badge {
  font-size: 0.68rem; padding: 0.2rem 0.6rem; border-radius: 100px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  display: inline-block; margin-top: 0.6rem;
}
.cat-growth { background: rgba(72,199,142,0.15); color: #48C78E; }
.cat-achievement { background: rgba(212,160,23,0.15); color: var(--gold); }
.cat-milestone { background: rgba(74,158,255,0.15); color: var(--blue); }

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════════════════ */
.about-hero { padding: 8rem 2rem 4rem; text-align: center; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-bottom: 4rem;
}
.about-visual {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 8rem; font-weight: 900;
  color: rgba(74,158,255,0.1);
  overflow: hidden;
}
.about-visual::after {
  content: ''; position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(74,158,255,0.1), transparent 70%);
}
.about-text h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; margin-bottom: 1.2rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 3rem 0; }
.vm-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 2rem;
  transition: var(--transition);
}
.vm-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.vm-icon { font-size: 2rem; margin-bottom: 1rem; }
.vm-title { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--gold); margin-bottom: 0.8rem; }
.vm-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* Founder Card */
.founder-card {
  background: var(--glass-bg); border: 1px solid var(--gold-dark);
  border-radius: var(--radius-lg); padding: 3rem;
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center;
  position: relative; overflow: hidden;
}
.founder-card::before {
  content: '"'; position: absolute; top: -1rem; right: 2rem;
  font-size: 12rem; font-family: Georgia, serif; color: rgba(212,160,23,0.05);
  line-height: 1;
}
.founder-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 900;
  color: var(--navy); flex-shrink: 0;
}
.founder-name { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--gold); }
.founder-role { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.8rem; }
.founder-quote { color: var(--text-main); line-height: 1.7; font-style: italic; }

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.2rem; }
.team-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 2rem 1.2rem; text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--white);
}
.team-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.team-role { color: var(--text-muted); font-size: 0.8rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   CERTIFICATIONS
   ══════════════════════════════════════════════════════════════════════════ */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.cert-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 1.8rem;
  transition: var(--transition); display: flex; gap: 1rem; align-items: flex-start;
}
.cert-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.cert-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.05));
  border: 1px solid rgba(212,160,23,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.cert-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.3rem; }
.cert-desc { color: var(--text-muted); font-size: 0.8rem; line-height: 1.5; }
.cert-num { color: var(--gold); font-size: 0.75rem; font-weight: 600; margin-top: 0.4rem; font-family: monospace; }

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.contact-info-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 2.5rem; height: fit-content;
}
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.contact-item:last-child { margin-bottom: 0; }
.contact-ico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(74,158,255,0.2), rgba(74,158,255,0.05));
  border: 1px solid rgba(74,158,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.contact-val { font-weight: 600; font-size: 0.95rem; }
/* Contact Form */
.contact-form-wrap {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-control {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 0.8rem 1rem;
  color: var(--text-main); font-family: var(--font-body); font-size: 0.9rem;
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--blue); background: rgba(74,158,255,0.05); box-shadow: 0 0 0 3px rgba(74,158,255,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Office Cards */
.offices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 2rem; }
.office-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 1.5rem; transition: var(--transition);
}
.office-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.office-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.office-location { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; }
.office-addr { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.video-card {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.video-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.video-thumb {
  aspect-ratio: 16/9; position: relative; background: var(--navy-3);
  overflow: hidden; pointer-events: none;
}
.video-thumb video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.video-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(8,13,30,0.4); transition: var(--transition);
}
.play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white; cursor: pointer;
  box-shadow: 0 0 30px rgba(74,158,255,0.5); pointer-events: all;
  transition: var(--transition);
}
.play-btn:hover { transform: scale(1.1); }
.video-info { padding: 1.2rem; }
.video-title { font-weight: 700; margin-bottom: 0.4rem; }
.video-desc { color: var(--text-muted); font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-2); border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 1.5rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-name {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 900;
  color: var(--text-main); margin-bottom: 0.8rem;
}
.footer-brand .brand-name span { color: var(--gold); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-title { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--text-main); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; align-items: flex-start; }
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span:last-child { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid var(--glass-border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: var(--text-muted); font-size: 0.82rem; }
.footer-copy a { color: var(--gold); }
.iso-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.iso-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem; border-radius: 4px;
  border: 1px solid rgba(212,160,23,0.3); color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO HEADER
   ══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 7rem 2rem 3rem;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
}
.page-hero-title { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 0.5rem; }
.page-hero-sub { color: var(--text-muted); font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; justify-content: center; margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); font-size: 0.82rem; }
.breadcrumb span { color: var(--text-muted); font-size: 0.82rem; }
.breadcrumb .current { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════════════════ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.in-view { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   CLIENTS MARQUEE
   ══════════════════════════════════════════════════════════════════════════ */
.clients-section { padding: 3rem 0; overflow: hidden; background: var(--navy-2); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.clients-title { text-align: center; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2rem; }
.marquee-track { display: flex; gap: 0; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.client-chip {
  padding: 0.6rem 1.5rem; margin: 0 0.5rem;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 100px; font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted); white-space: nowrap;
  transition: var(--transition);
}
.client-chip:hover { color: var(--white); border-color: var(--blue); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════════════════════
   MODAL / LIGHTBOX
   ══════════════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
  backdrop-filter: blur(8px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-img-wrap {
  max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md);
  overflow: hidden; position: relative;
}
.modal-img-wrap img { max-width: 90vw; max-height: 85vh; object-fit: contain; pointer-events: none; user-select: none; }
.modal-close {
  position: fixed; top: 1.5rem; right: 1.5rem; z-index: 10000;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--white); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(229,57,57,0.2); border-color: #e53939; }

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO MODAL
   ══════════════════════════════════════════════════════════════════════════ */
.video-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal video { max-width: 90vw; max-height: 80vh; border-radius: var(--radius-md); outline: none; controlslist: nodownload; }

/* ═══════════════════════════════════════════════════════════════════════════
   FLASH MESSAGES
   ══════════════════════════════════════════════════════════════════════════ */
.flash-container { position: fixed; top: 84px; right: 1.5rem; z-index: 5000; display: flex; flex-direction: column; gap: 0.5rem; max-width: 360px; }
.flash-msg {
  padding: 0.9rem 1.2rem; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; gap: 0.7rem;
  animation: slideInFlash 0.4s ease; backdrop-filter: blur(10px);
}
@keyframes slideInFlash { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }
.flash-success { background: rgba(72,199,142,0.15); border: 1px solid rgba(72,199,142,0.3); color: #48C78E; }
.flash-error { background: rgba(229,57,57,0.15); border: 1px solid rgba(229,57,57,0.3); color: #e57373; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy-2); padding: 1rem; border-bottom: 1px solid var(--glass-border); gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-list::before { left: 24px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; gap: 1rem; }
  .timeline-item:nth-child(odd) .timeline-side:last-child { display: block; }
  .timeline-item:nth-child(even) .timeline-side:first-child { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .vm-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
}
