/* ══════════════════════════════════════════════
   PT Comintel Tamarang Utama
   Inspired by Reference (Tekmino Modern Tech Style)
   ══════════════════════════════════════════════ */

:root {
  --bg-dark: #111619;
  --bg-darker: #0d1113;
  --bg-card: #171d21;
  --bg-card-hover: #1e262b;
  
  --blue-accent: #38BDF8; /* Modern Electric Tech Blue */
  --blue-primary: #2A629A; /* Brand Primary Blue */
  --blue-hover: #0EA5E9;
  --blue-glow: rgba(56, 189, 248, 0.35);
  
  --text-white: #FFFFFF;
  --text-muted: #8F9CA3;
  --text-dim: #556269;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.2);
  
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --header-h: 88px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-white);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ══════════════════ FLOATING LEFT SOCIAL BAR ══════════════════ */
.hero-social-bar {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: var(--blue-accent);
  color: var(--bg-dark);
  border-color: var(--blue-accent);
  transform: translateY(-2px);
  box-shadow: 0 0 16px var(--blue-glow);
}

.social-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .hero-social-bar {
    display: none;
  }
}

/* ══════════════════ HEADER & NAVIGATION ══════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(17, 22, 25, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  height: 72px;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-logo:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.02);
}

@media (max-width: 767.98px) {
  .brand-logo-img {
    height: 34px;
    max-width: 150px;
  }
}

/* Nav Menu */
.nav-center {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.nav-link .caret {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-accent);
}

.nav-link:hover .caret,
.nav-link.active .caret {
  color: var(--blue-accent);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 200px;
  background: #171d21;
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .caret {
  transform: rotate(180deg);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.dropdown-menu li a:hover {
  background: rgba(56, 189, 248, 0.08);
  color: var(--blue-accent);
  padding-left: 24px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.25s ease;
}

.action-circle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

/* Signature Lime Pill Button */
.btn-blue-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue-accent);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 8px 8px 24px;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-blue-pill--lg {
  font-size: 1.05rem;
  padding: 10px 10px 10px 28px;
}

.btn-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111619;
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-blue-pill--lg .btn-arrow-circle {
  width: 42px;
  height: 42px;
}

.btn-blue-pill:hover {
  background: var(--blue-hover);
  box-shadow: 0 8px 28px rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

.btn-blue-pill:hover .btn-arrow-circle {
  transform: translate(2px, -2px) rotate(45deg);
}

/* Grid Menu Button (4 dots) */
.grid-menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px;
  gap: 4px;
  align-content: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.grid-dot {
  width: 6px;
  height: 6px;
  border-radius: 1.5px;
  background: var(--text-white);
  transition: background 0.25s ease;
}

.grid-menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.grid-menu-btn:hover .grid-dot {
  background: var(--blue-accent);
}

/* Mobile Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #171d21;
  border-bottom: 1px solid var(--border-glass);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav-list li {
  margin-bottom: 12px;
}

.mobile-nav-list a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  color: var(--blue-accent);
}

@media (max-width: 980px) {
  .nav-center,
  .action-circle-btn,
  .grid-menu-btn,
  .header-actions .btn-blue-pill {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ══════════════════ HERO SECTION ══════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
  padding-top: var(--header-h);
}

/* Hero Background Layers */
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-container,
.hero-img-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  z-index: 0;
  filter: brightness(0.9) contrast(1.1);
  pointer-events: none;
}

.hero-executive-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Multi-layer gradient mask to seamlessly blend the video and maintain sharp text contrast */
.hero-mask-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, #111619 0%, rgba(17, 22, 25, 0.96) 38%, rgba(17, 22, 25, 0.72) 65%, rgba(17, 22, 25, 0.35) 100%),
    linear-gradient(to top, #111619 0%, rgba(17, 22, 25, 0.8) 18%, transparent 45%),
    linear-gradient(to bottom, #111619 0%, rgba(17, 22, 25, 0.6) 12%, transparent 30%);
  z-index: 1;
}

@media (max-width: 980px) {
  .hero-video-bg {
    opacity: 0.45;
  }
  .hero-executive-img {
    width: 100%;
    opacity: 0.25;
  }
  .hero-mask-overlay {
    background: #111619;
    opacity: 0.88;
  }
}

/* Hero Content Grid */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 80px 140px 100px;
  width: 100%;
}

@media (max-width: 1200px) {
  .hero-container {
    padding: 60px 40px 140px 60px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 40px 24px 100px 24px;
  }
}

.hero-content-col {
  max-width: 680px;
}

/* Badge Pill */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.badge-icon-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-accent);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

/* Massive Headline */
.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6.2vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-white);
  margin-bottom: 24px;
}

/* Description */
.hero-description-text {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}

/* Button row */
.hero-btn-row {
  margin-bottom: 48px;
}

/* Slider Controls (Bottom Left) */
.hero-slider-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.25s ease;
}

.slider-arrow-btn:hover {
  background: var(--blue-accent);
  color: var(--bg-dark);
  border-color: var(--blue-accent);
  transform: scale(1.06);
  box-shadow: 0 0 18px var(--blue-glow);
}

/* ══════════════════ BOTTOM RIGHT FLOATING CARDS ══════════════════ */
.hero-bottom-cards-dock {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  max-width: 720px;
  width: 100%;
}

.cards-dock-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(22, 28, 32, 0.94);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: 24px;
  padding: 28px 32px;
  box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.4);
}

.dock-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dock-card-icon-wrap {
  flex-shrink: 0;
}

.dock-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--blue-glow);
  transition: transform 0.3s ease;
}

.dock-card:hover .dock-icon-circle {
  transform: scale(1.08) rotate(6deg);
}

.dock-card-content {
  flex: 1;
}

.dock-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.dock-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-bottom-cards-dock {
    position: relative;
    max-width: 100%;
    margin-top: 40px;
  }
  .cards-dock-wrapper {
    grid-template-columns: 1fr;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ══════════════════ FOCUS STRIP ══════════════════ */
.tech-focus-strip {
  background: #0d1113;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 24px 0;
}

.strip-items-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.strip-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.strip-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strip-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.strip-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .strip-sep {
    display: none;
  }
  .strip-items-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ══════════════════ SECTIONS (ABOUT, SERVICES, ETC.) ══════════════════ */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-dark);
}

.section--dark-alt {
  background: #0e1215;
}

.badge-pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-accent);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.32);
  padding: 7px 20px;
  border-radius: 9999px;
  margin-bottom: 20px;
  line-height: 1.3;
  width: fit-content;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.badge-pill-outline:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
}

.section-headline-lg {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 20px;
}

.accent-lime {
  color: var(--blue-accent);
}

/* About Split Grid */
.about-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-lead-para {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.about-right-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-dark-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-dark-card:hover {
  border-color: var(--blue-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

/* Services Grid */
.section-head-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-subtitle-text {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.modern-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.modern-service-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s ease;
}

.modern-service-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.svc-num {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
}

.svc-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.svc-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.svc-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.svc-link-arrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}

.svc-link-arrow:hover {
  gap: 12px;
}

@media (max-width: 980px) {
  .modern-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .modern-services-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Callout */
.cta-callout-box {
  background: linear-gradient(135deg, #171e23 0%, #1a2329 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 28px;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
}

@media (max-width: 900px) {
  .cta-callout-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
  }
}

/* Footer */
.site-footer {
  background: #090c0e;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 32px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 18px;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
}

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

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links-list a:hover {
  color: var(--blue-accent);
}

.footer-contact-item {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-contact-item a:hover {
  color: var(--blue-accent);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Backward compatibility alias */
.btn-lime-pill { @extend .btn-blue-pill; }
.btn-lime-pill { display: inline-flex; align-items: center; gap: 12px; background: var(--blue-accent); color: var(--bg-dark); font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; padding: 8px 8px 8px 24px; border-radius: 9999px; box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); white-space: nowrap; }
.btn-lime-pill--lg { font-size: 1.05rem; padding: 10px 10px 10px 28px; }
.btn-lime-pill:hover { background: var(--blue-hover); box-shadow: 0 8px 28px rgba(56, 189, 248, 0.4); transform: translateY(-2px); }
.accent-lime { color: var(--blue-accent); }


/* ══════════════════ BOOTSTRAP OVERRIDES & RESPONSIVE POLISH ══════════════════ */
/* Ensure Bootstrap doesn't alter core styles unintentionally */
body {
  background-color: var(--bg-dark) !important;
  color: var(--text-white);
}

a {
  text-decoration: none;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

/* Offcanvas / Mobile Menu enhancements */
.mobile-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #161c20;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 24px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-list a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  transition: all 0.2s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  background: rgba(56, 189, 248, 0.12);
  color: var(--blue-accent);
}

/* ── Mobile & Tablet Responsiveness ── */
@media (max-width: 991.98px) {
  :root {
    --header-h: 74px;
  }
  
  .hero-section {
    padding-top: var(--header-h);
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-container {
    padding: 50px 20px 40px;
  }

  .hero-content-col {
    max-width: 100%;
    z-index: 5;
    position: relative;
  }

  .hero-title-main {
    font-size: clamp(2.3rem, 6.8vw, 3.8rem);
    margin-bottom: 20px;
  }

  .hero-description-text {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-executive-img {
    width: 100%;
    opacity: 0.28;
    object-position: 70% top;
  }

  .hero-mask-overlay {
    background: linear-gradient(to bottom, rgba(17, 22, 25, 0.85) 0%, rgba(17, 22, 25, 0.95) 100%) !important;
  }

  .hero-bottom-cards-dock {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 48px;
  }

  .cards-dock-wrapper {
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    padding: 24px;
    gap: 20px;
  }
}

@media (max-width: 575.98px) {
  .cards-dock-wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .hero-badge-pill {
    padding: 5px 12px;
    margin-bottom: 18px;
  }

  .badge-text {
    font-size: 0.76rem;
  }

  .hero-btn-row {
    margin-bottom: 36px;
  }

  .btn-blue-pill, .btn-lime-pill {
    font-size: 0.92rem;
    padding: 8px 8px 8px 20px;
  }

  .slider-arrow-btn {
    width: 42px;
    height: 42px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .modern-service-item {
    padding: 28px 20px;
  }

  .cta-callout-box {
    padding: 32px 20px;
    border-radius: 20px;
  }
}


/* ══════════════════ MOBILE HERO CARDS DOCK FIX ══════════════════ */
@media (min-width: 992px) {
  .hero-bottom-cards-dock {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
    max-width: 680px;
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .hero-bottom-cards-dock {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 36px 0 0 0 !important;
    padding: 0 !important;
    z-index: 5;
  }

  .cards-dock-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 16px !important;
    border: 1px solid var(--border-glass) !important;
    background: rgba(22, 28, 32, 0.96) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    padding: 20px !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .dock-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .dock-icon-circle {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }

  .dock-card-title {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .dock-card-desc {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .cards-dock-wrapper {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    padding: 24px !important;
  }
}


/* ══════════════════ SUBPAGE BANNER / HEADER (COMPACT HERO) ══════════════════ */
.subpage-banner {
  position: relative;
  min-height: 420px;
  padding: 150px 0 70px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.subpage-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.subpage-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
}

.subpage-banner-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(17, 22, 25, 0.95) 0%, rgba(17, 22, 25, 0.85) 45%, rgba(17, 22, 25, 0.45) 85%, rgba(17, 22, 25, 0.7) 100%),
    linear-gradient(to top, rgba(17, 22, 25, 1) 0%, rgba(17, 22, 25, 0.4) 30%, transparent 60%),
    linear-gradient(to bottom, rgba(17, 22, 25, 0.8) 0%, transparent 40%);
}

.subpage-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.subpage-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.subpage-breadcrumbs a {
  color: var(--blue-accent);
  transition: color 0.2s ease;
}

.subpage-breadcrumbs a:hover {
  color: var(--blue-hover);
}

.subpage-breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.subpage-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.12;
  margin-bottom: 16px;
}

.subpage-banner-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 620px;
}

@media (max-width: 767.98px) {
  .subpage-banner {
    min-height: 280px;
    padding: 110px 0 50px 0;
  }
  .subpage-banner-title {
    font-size: clamp(1.85rem, 6.5vw, 2.6rem);
  }
  .subpage-banner-desc {
    font-size: 0.95rem;
  }
}


/* ══════════════════ SEARCH OVERLAY MODAL (REF: search.png) ══════════════════ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  overflow-y: auto;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-panel {
  position: relative;
  width: 100%;
  background: #141719;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  padding: 60px 32px 80px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  transform: translateY(-40px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-panel {
  transform: translateY(0);
}

.search-close-btn {
  position: absolute;
  top: 32px;
  right: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.25s ease;
}

.search-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--blue-accent);
  color: var(--blue-accent);
  transform: rotate(90deg);
}

.search-panel-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 10px;
}

.search-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.search-form {
  width: 100%;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: #0d0f11;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 4px 8px 4px 22px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-input-wrapper:focus-within {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2), inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-family: inherit;
  font-size: 1.05rem;
  padding: 14px 0;
}

.search-input::placeholder {
  color: #7b878d;
  font-weight: 400;
}

.search-submit-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease, transform 0.2s ease;
}

.search-submit-btn:hover {
  color: var(--blue-accent);
  transform: scale(1.08);
}

/* Quick Search Tags / Results */
.search-quick-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.search-tag-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.search-tag {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-tag:hover {
  color: var(--blue-accent);
  border-color: var(--blue-accent);
  background: rgba(56, 189, 248, 0.1);
}

.search-results-box {
  margin-top: 28px;
  text-align: left;
  max-height: 280px;
  overflow-y: auto;
  border-radius: 12px;
  background: #0d0f11;
  border: 1px solid var(--border-glass);
  padding: 12px;
}

.search-result-item {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-result-cat {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-accent);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.search-result-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.search-result-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767.98px) {
  .search-panel {
    padding: 48px 20px 60px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .search-close-btn {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }
  .search-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  .search-input {
    font-size: 0.95rem;
    padding: 10px 0;
  }
}



/* ══════════════════ 3 SIMPLE STEPS SECTION (REF: service-sec.png) ══════════════════ */
.steps-section {
  position: relative;
  background: #0e1113;
  padding: 130px 0 150px;
  overflow: hidden;
}

/* Abstract 3D ribbon curve background from common-bg.webp with luminosity */
.steps-bg-waves {
  position: absolute;
  inset: 0;
  background-image: url('../images/common-bg.webp');
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.28;
  filter: brightness(0.45) contrast(1.3);
  z-index: 0;
}

.steps-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(14, 17, 19, 0.4) 0%, rgba(14, 17, 19, 0.95) 85%),
    linear-gradient(to bottom, #111619 0%, transparent 20%, transparent 80%, #111619 100%);
  z-index: 1;
}

.steps-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.steps-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 90px;
}


.steps-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-white);
}

/* Connecting Dotted Line Behind Cards */
.steps-cards-wrapper {
  position: relative;
}

.steps-track-line {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  height: 2px;
  background-image: radial-gradient(circle, rgba(56, 189, 248, 0.4) 1.5px, transparent 1.5px);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  z-index: 1;
  pointer-events: none;
}

/* 3 Cards Grid */
.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Step Card */
.step-card {
  opacity: 1;
  visibility: visible;
  position: relative;
  background: #13171a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 68px 36px 48px;
  text-align: left;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 40px;
}

.step-card:hover {
  background: #171c20;
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.75), 0 0 24px rgba(56, 189, 248, 0.12);
}

/* Number Circle with Cutout Contour */
.step-number-notch {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.step-number-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--blue-accent);
  color: #111619;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: 
    0 0 0 12px #13171a,
    0 10px 24px rgba(0, 0, 0, 0.5),
    0 0 24px var(--blue-glow);
  transition: all 0.35s ease;
}

.step-card:hover .step-number-circle {
  background: var(--blue-hover);
  box-shadow: 
    0 0 0 12px #171c20,
    0 14px 28px rgba(0, 0, 0, 0.7),
    0 0 32px rgba(56, 189, 248, 0.5);
  transform: scale(1.05);
}

/* Card Content */
.step-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.28;
  color: var(--text-white);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}

.step-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .steps-track-line {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 500px;
    margin: 0 auto;
  }
  .step-card {
  opacity: 1;
  visibility: visible;
    padding: 60px 28px 40px;
  }
}


/* ══════════════════ ADVANCED FOOTER (REF: footer.png) ══════════════════ */
.site-footer {
  background: #090b0d;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

/* Floating Card Container with footer-bg.webp (REF: footer-bg.webp) */
.footer-card-box {
  position: relative;
  background-color: #121518;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 56px 48px 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* Background image layer with opacity 0.15 & luminosity */
.footer-card-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/footer-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow on top of footer card */
.footer-card-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.16) 0%, rgba(56, 189, 248, 0.04) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-card-inner {
  position: relative;
  z-index: 1;
}

/* 4-Column Grid */
.footer-main-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.3fr;
  gap: 40px;
  align-items: flex-start;
}

/* Col 1: Newsletter */
.footer-newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 24px;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  background: #0d0f11;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 4px 4px 4px 18px;
  margin-bottom: 24px;
  transition: border-color 0.25s ease;
}

.footer-newsletter-form:focus-within {
  border-color: var(--blue-accent);
}

.footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.92rem;
}

.footer-newsletter-input::placeholder {
  color: #6d7980;
}

.footer-newsletter-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-accent);
  color: #111619;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.footer-newsletter-btn:hover {
  background: var(--blue-hover);
  transform: scale(1.05);
}

/* App Store Badges (Temporarily hidden) */
.footer-app-badges {
  display: none !important;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d0f11;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px 14px;
  transition: all 0.2s ease;
}

.app-badge-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: #171b1e;
  transform: translateY(-2px);
}

.app-badge-texts {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.app-badge-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8c979d;
  line-height: 1.1;
}

.app-badge-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

/* Footer Nav Headings & Links */
.footer-section-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 22px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: #8e9ca3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--blue-accent);
  transform: translateX(3px);
}

/* NEW Badge */
.badge-new-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--blue-accent);
  color: #111619;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.1;
}

/* Office Hours List */
.office-hours-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.office-hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.hour-days {
  color: #8e9ca3;
}

.hour-time {
  color: var(--text-white);
  font-weight: 500;
}

.hour-time.closed {
  color: var(--blue-accent);
  font-weight: 700;
}

/* Card Bottom Divider Row */
.footer-card-bottom {
  margin-top: 50px;
  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: 20px;
  font-size: 0.88rem;
  color: #818f96;
}

.footer-social-pill-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-circle-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
}

.social-circle-link:hover {
  background: var(--blue-accent);
  color: #111619;
  border-color: var(--blue-accent);
  transform: translateY(-2px);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-links a {
  color: #818f96;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--blue-accent);
}

.footer-legal-links .sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ══════════════════ GIANT BRAND WATERMARK & SCROLL TOP ══════════════════ */
.footer-watermark-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 24px;
  padding: 0 10px;
  user-select: none;
  overflow: hidden;
}

.footer-giant-watermark {
  font-family: var(--font-heading);
  font-size: clamp(5.5rem, 16.5vw, 14.5rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: #171c20;
  margin: 0;
  padding: 0;
  transition: color 0.3s ease;
}

.footer-giant-watermark:hover {
  color: #1c2227;
}

.footer-scroll-top-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  flex-shrink: 0;
}

.scroll-top-circle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-accent);
  color: #111619;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--blue-glow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.scroll-top-circle-btn:hover {
  background: var(--blue-hover);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 26px rgba(56, 189, 248, 0.5);
}

.scroll-top-text-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8c979d;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .footer-main-row {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-card-box {
    padding: 40px 28px 28px;
  }
  .footer-giant-watermark {
    font-size: clamp(3.8rem, 15vw, 7rem);
  }
  .scroll-top-text-label {
    display: none !important;
  }
  .footer-scroll-top-wrap {
    padding-bottom: 8px;
    align-self: flex-end;
  }
}

@media (max-width: 575.98px) {
  .footer-main-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-giant-watermark {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }
  .footer-watermark-row {
    margin-top: 16px;
    align-items: center;
  }
  .footer-scroll-top-wrap {
    padding-bottom: 0;
  }
  .scroll-top-circle-btn {
    width: 44px;
    height: 44px;
  }
}


/* ══════════════════ PROJECT SHOWCASE GRID (REF: project-list.png) ══════════════════ */
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.project-gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 490px;
  background: #14171a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  text-decoration: none;
}

.project-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.65);
}

.project-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-gallery-item:hover .project-gallery-img {
  transform: scale(1.06);
}

.project-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 13, 15, 0.65) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Floating Bottom Info Box */
.project-info-card {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: #0f1214;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.project-gallery-item:hover .project-info-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: #14181b;
}

.project-info-content {
  display: flex;
  flex-direction: column;
}

.project-tag-pill {
  display: inline-block;
  align-self: flex-start;
  background: rgba(56, 189, 248, 0.12);
  color: var(--blue-accent);
  border: 1px solid rgba(56, 189, 248, 0.25);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 12px;
  border-radius: 9999px;
  margin-bottom: 10px;
}

.project-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin: 0;
}

/* Action Circle Button */
.project-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1c2125;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Middle featured card or on card hover - matching current blue tech theme */
.project-gallery-item.featured .project-action-btn,
.project-gallery-item:hover .project-action-btn {
  background: var(--blue-accent);
  color: #111619;
  transform: scale(1.08);
  box-shadow: 0 0 24px var(--blue-glow);
}

@media (max-width: 991.98px) {
  .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .project-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .project-gallery-item {
    height: 440px;
  }
}


/* ══════════════════ CENTERED PROJECT PAGINATION ══════════════════ */
.project-pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding-bottom: 10px;
}

.project-pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #14171a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pagination-btn:hover {
  background: #1a2024;
  border-color: rgba(56, 189, 248, 0.4);
  color: var(--blue-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.pagination-btn.active {
  background: var(--blue-accent);
  border-color: var(--blue-accent);
  color: #111619;
  font-weight: 800;
  box-shadow: 0 0 20px var(--blue-glow);
  pointer-events: none;
}

.pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 46px;
  color: #64748b;
  font-weight: 700;
  letter-spacing: 0.1em;
}


/* ══════════════════ NEWS LIST & SIDEBAR (REF: news-list.png) ══════════════════ */
.news-layout-row {
  display: flex;
  gap: 48px;
}

.news-main-feed {
  flex: 1 1 68%;
}

.news-sidebar-col {
  flex: 0 0 32%;
  max-width: 32%;
}

/* Individual News Article Entry */
.news-entry-card {
  margin-bottom: 60px;
}

.news-entry-img-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  background: #14171a;
}

.news-entry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-entry-card:hover .news-entry-img {
  transform: scale(1.04);
}

/* Floating Date Badge in Top Left Corner */
.news-date-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #0b0d0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 18px;
  text-align: center;
  color: var(--text-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.news-date-day {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-white);
}

.news-date-month {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8c979d;
  margin-top: 4px;
}

/* Meta Row */
.news-entry-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 14px;
}

.news-tag-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 9999px;
}

.news-meta-author {
  font-size: 0.9rem;
  color: #8c979d;
}

/* Headline & Excerpt */
.news-entry-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.24;
  color: var(--text-white);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}

.news-entry-title:hover {
  color: var(--blue-accent);
}

.news-entry-excerpt {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 95%;
}

/* Sidebar Widgets */
.news-sidebar-widget {
  background: #131619;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  margin-bottom: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}

/* Search Box */
.news-search-box {
  display: flex;
  align-items: center;
  background: #0b0d0f;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px 6px 4px 18px;
  transition: border-color 0.25s ease;
}

.news-search-box:focus-within {
  border-color: var(--blue-accent);
}

.news-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
}

.news-search-input::placeholder {
  color: #6d7980;
}

.news-search-icon-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #8c979d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.news-search-icon-btn:hover {
  color: var(--blue-accent);
}

/* Categories List */
.news-category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b0d0f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 15px 20px;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.news-cat-item:hover {
  background: #161b1f;
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--blue-accent);
  transform: translateX(4px);
}

.cat-count {
  font-size: 0.88rem;
  font-weight: 500;
  color: #8c979d;
  transition: color 0.25s ease;
}

.news-cat-item:hover .cat-count {
  color: var(--blue-accent);
}

/* Related Posts Widget */
.news-related-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.news-related-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.news-related-item:hover {
  transform: translateX(4px);
}

.news-related-thumb {
  width: 86px;
  height: 86px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0b0d0f;
}

.news-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.news-related-item:hover .news-related-thumb img {
  transform: scale(1.08);
}

.news-related-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
}

.news-related-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-white);
  margin: 0;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-related-item:hover .news-related-title {
  color: var(--blue-accent);
}

.news-related-date {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: #8c979d;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Tags Cloud */
.news-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-tag-btn {
  display: inline-block;
  background: #0b0d0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #8c979d;
  text-decoration: none;
  transition: all 0.25s ease;
}

.news-tag-btn:hover {
  background: var(--blue-accent);
  border-color: var(--blue-accent);
  color: #111619;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .news-layout-row {
    flex-direction: column;
    gap: 40px;
  }
  .news-main-feed,
  .news-sidebar-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .news-entry-img-wrap {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .news-related-thumb {
    width: 74px;
    height: 74px;
    border-radius: 12px;
  }
  .news-related-title {
    font-size: 0.95rem;
  }
}


/* ══════════════════ SERVICES LIST (REF: service-list.png) ══════════════════ */
.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-box-card {
  position: relative;
  background: #14171a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 38px 32px 34px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  overflow: hidden;
}

/* Inverted Concave Notch at Top-Right */
.service-notch-tab {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--bg-dark);
  padding: 10px 24px 12px 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 2;
  transition: all 0.35s ease;
}

.service-notch-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #6d7b84;
  letter-spacing: -0.02em;
  transition: color 0.35s ease;
}

/* Concave Fillet Curve Left of Notch */
.service-notch-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -16px;
  width: 16px;
  height: 16px;
  background: transparent;
  border-top-right-radius: 16px;
  box-shadow: 6px -6px 0 6px var(--bg-dark);
  pointer-events: none;
}

/* Concave Fillet Curve Below Notch */
.service-notch-tab::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: 0;
  width: 16px;
  height: 16px;
  background: transparent;
  border-top-right-radius: 16px;
  box-shadow: 6px -6px 0 6px var(--bg-dark);
  pointer-events: none;
}

/* Icon Container */
.service-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #0d1013;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-accent);
  margin-bottom: 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-box-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  transition: color 0.35s ease;
}

.service-box-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex-grow: 1;
  transition: color 0.35s ease;
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-learn-more .service-arrow {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* ══════════════════ HOVER STATE: PRIMARY COLOR & OPTIMAL CONTRAST ══════════════════ */
.service-box-card:hover {
  background: var(--blue-primary); /* #2A629A Primary Brand Blue */
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(42, 98, 154, 0.45);
}

/* High-contrast text against primary blue (WCAG AAA compliant) */
.service-box-card:hover .service-box-title {
  color: #FFFFFF;
}

.service-box-card:hover .service-box-desc {
  color: #F1F5F9; /* High-contrast light slate */
}

.service-box-card:hover .service-learn-more {
  color: #FFFFFF;
}

.service-box-card:hover .service-learn-more .service-arrow {
  transform: translateX(5px);
  color: var(--blue-accent);
}

.service-box-card:hover .service-icon-circle {
  background: #0d151d;
  border-color: rgba(56, 189, 248, 0.4);
  color: var(--blue-accent);
  transform: scale(1.06);
  box-shadow: 0 0 20px var(--blue-glow);
}

.service-box-card:hover .service-notch-tab {
  border-color: rgba(56, 189, 248, 0.3);
}

.service-box-card:hover .service-notch-num {
  color: var(--blue-accent);
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .services-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .services-showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ══════════════════ ABOUT SECTION 1 (REF: about-sec1.png) ══════════════════ */
.about-why-section {
  padding: 100px 0 90px;
  background-color: var(--bg-dark);
  position: relative;
}

/* ══════════════════ EYEBROW PILL BADGE (REF: pill.png) ══════════════════ */
.about-eyebrow-tag,
.badge-pill-outline,
.steps-badge-pill,
.eyebrow-pill-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-accent);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.32);
  padding: 7px 20px;
  border-radius: 9999px;
  margin-bottom: 20px;
  line-height: 1.3;
  width: fit-content;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.about-eyebrow-tag:hover,
.badge-pill-outline:hover,
.steps-badge-pill:hover,
.eyebrow-pill-tag:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
}

.about-why-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}

.about-why-headline {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin: 0;
}

.about-why-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 360px;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-why-card {
  background: #14171a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.about-why-icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #090c0e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-why-icon-circle i {
  font-size: 1.55rem;
  color: var(--blue-accent, #38BDF8);
}

.about-why-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}

.about-why-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ══════════════════ ABOUT SECTION 2 (REF: about-sec2.png) ══════════════════ */
.about-overview-section {
  padding: 90px 0 110px;
  background-color: var(--bg-dark);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-overview-media {
  position: relative;
  width: 100%;
  height: 590px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-overview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-overview-media:hover .about-overview-img {
  transform: scale(1.03);
}

.about-overview-content {
  display: flex;
  flex-direction: column;
}

.about-overview-headline {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 34px;
}

.about-overview-feature-wrap {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 34px;
}

/* Brand Box (Themed to Electric Blue - 1 row on grid) */
.about-brand-card,
.about-lime-brand-card {
  grid-column: 1;
  grid-row: 1;
  background: var(--blue-accent);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-brand-card:hover,
.about-lime-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(56, 189, 248, 0.35);
}

.brand-card-icon,
.lime-brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card-name,
.lime-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #111619;
  letter-spacing: -0.01em;
}

/* Mission & Vision Cards */
.about-mv-card {
  background: #14171a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px 26px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.about-mv-card--mission {
  grid-column: 2;
  grid-row: 1;
}

.about-mv-card--vision {
  grid-column: 2;
  grid-row: 2;
}

.about-mv-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateX(4px);
}

.about-mv-card-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.about-mv-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.about-overview-action {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

/* Responsive Styles for About Sections */
@media (max-width: 1199.98px) {
  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-overview-grid {
    gap: 40px;
  }
  .about-why-headline {
    font-size: 2.6rem;
  }
  .about-overview-headline {
    font-size: 2.4rem;
  }
}

@media (max-width: 991.98px) {
  .about-why-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  .about-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-overview-media {
    height: 400px;
  }
  .about-why-section {
    padding: 70px 0 60px;
  }
  .about-overview-section {
    padding: 60px 0 80px;
  }
}

@media (max-width: 575.98px) {
  .about-why-grid {
    grid-template-columns: 1fr;
  }
  .about-overview-feature-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-brand-card,
  .about-lime-brand-card {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    justify-content: center;
    padding: 18px;
  }
  .about-mv-card--mission,
  .about-mv-card--vision {
    grid-column: 1;
    grid-row: auto;
  }
  .about-why-headline {
    font-size: 2rem;
  }
  .about-overview-headline {
    font-size: 1.9rem;
  }
  .about-overview-media {
    height: 300px;
  }
}

/* ══════════════════ VIDEO PLAY BUTTON & PULSE EFFECT ══════════════════ */
.video-play-pulse-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* Pulsing radiating concentric wave rings */
.play-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.4);
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  animation: videoPulseRing 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.play-pulse-ring:nth-child(2) {
  animation-delay: 0.9s;
  background: rgba(56, 189, 248, 0.25);
}

@keyframes videoPulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.9;
  }
  50% {
    opacity: 0.45;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.3);
    opacity: 0;
  }
}

/* Main circular play core */
.play-btn-circle {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--blue-accent);
  color: #111619;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.play-btn-circle svg,
.play-btn-circle i {
  margin-left: 4px; /* Optical center alignment for play triangle */
  font-size: 22px;
  transition: transform 0.3s ease;
}

.video-play-pulse-btn:hover .play-btn-circle {
  transform: scale(1.1);
  background: #ffffff;
  color: #111619;
  box-shadow: 0 14px 44px rgba(56, 189, 248, 0.65);
}

.video-play-pulse-btn:hover .play-btn-circle svg,
.video-play-pulse-btn:hover .play-btn-circle i {
  transform: scale(1.15);
}

/* ══════════════════ VIDEO MODAL LIGHTBOX ══════════════════ */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 13, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 920px;
  background: #111619;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  z-index: 2;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.active .video-modal-dialog {
  transform: scale(1) translateY(0);
}

.video-modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  z-index: 10;
}

.video-modal-close-btn:hover {
  background: var(--blue-accent);
  color: #111619;
  transform: scale(1.1) rotate(90deg);
}

.video-modal-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  outline: none;
}

/* ══════════════════ SECTION 3: MEET OUR TEAM (REF: about-sec3.png) ══════════════════ */
.about-team-section {
  position: relative;
  background: var(--bg-dark, #0b0f12);
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}

.about-team-header-left {
  flex: 1 1 auto;
}

.about-team-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.02em;
}

.about-team-header-desc {
  flex: 0 1 320px;
}

.about-team-subtext {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted, #94A3B8);
  margin: 0;
}

.about-team-header-action {
  flex: 0 0 auto;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-team-card {
  background: #151a1e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 14px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              box-shadow 0.35s ease;
  position: relative;
}

.about-team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(56, 189, 248, 0.08);
}

.about-team-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.18;
  border-radius: 14px;
  overflow: hidden;
  background: #1b2227;
}

.about-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-team-card:hover .about-team-img {
  transform: scale(1.05);
}

.about-team-share-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-accent, #38BDF8);
  color: #0b0f12;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.2s ease, 
              background-color 0.25s ease, 
              box-shadow 0.25s ease;
}

.about-team-share-btn:hover {
  transform: scale(1.12);
  background: #7dd3fc;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.55);
}

.about-team-card:hover .about-team-share-btn,
.about-team-card.is-active .about-team-share-btn {
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}

/* ══════════ SOCIAL MEDIA HOVER TAB (REF: Screenshot 2026-09-04 at 08.53.44.png) ══════════ */
.about-team-social-tab {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #151a1e;
  border-top-left-radius: 20px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.3s ease, 
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.3s;
}

/* Inverted curves (fillets): Top connects to photo right edge, Bottom connects to photo bottom edge */
.about-team-social-tab::before {
  content: '';
  position: absolute;
  top: -16px;
  right: 0;
  width: 16px;
  height: 16px;
  pointer-events: none;
  background: radial-gradient(circle at top left, transparent 15.5px, #151a1e 16px);
}

.about-team-social-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -16px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  background: radial-gradient(circle at top left, transparent 15.5px, #151a1e 16px);
}

.about-team-card:hover .about-team-social-tab,
.about-team-card.is-active .about-team-social-tab {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.team-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #4a5157;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.25s ease, 
              color 0.25s ease, 
              box-shadow 0.25s ease;
  transform: translateY(8px);
  opacity: 0;
}

.about-team-card:hover .team-social-btn,
.about-team-card.is-active .team-social-btn {
  transform: translateY(0);
  opacity: 1;
}

.about-team-card:hover .team-social-btn:nth-child(1),
.about-team-card.is-active .team-social-btn:nth-child(1) {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.04s;
}

.about-team-card:hover .team-social-btn:nth-child(2),
.about-team-card.is-active .team-social-btn:nth-child(2) {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}

.about-team-card:hover .team-social-btn:nth-child(3),
.about-team-card.is-active .team-social-btn:nth-child(3) {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

.team-social-btn:hover {
  background: var(--blue-accent, #38BDF8);
  color: #0b0f12;
  transform: scale(1.1) !important;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.55);
}

.about-team-info {
  padding: 16px 6px 6px;
}

.about-team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.about-team-role {
  font-size: 0.92rem;
  color: var(--text-muted, #94A3B8);
  margin: 0;
  font-weight: 400;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .about-team-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }
  .about-team-header-desc {
    flex: 1 1 auto;
    max-width: 100%;
  }
}

@media (max-width: 580px) {
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-team-section {
    padding: 70px 0;
  }
}

/* ══════════════════ SECTION 4: CLIENT TESTIMONIALS (REF: testimoni-sec.png) ══════════════════ */
.about-testimonial-section {
  position: relative;
  background: #0d1216;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.about-testimonial-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.about-testimonial-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.02em;
}

.testimonial-nav-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}

.testimonial-nav-btn:hover {
  background: var(--blue-accent, #38BDF8);
  border-color: var(--blue-accent, #38BDF8);
  color: #0b0f12;
  transform: scale(1.06);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.4);
}

.testimonial-swiper {
  width: 100%;
  padding: 24px 8px 80px 8px !important;
}

.testimonial-card {
  background: #151a1e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 38px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              box-shadow 0.35s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(56, 189, 248, 0.08);
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.testimonial-avatar-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #1f272e;
  border: 2px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.testimonial-author-role {
  font-size: 0.92rem;
  color: var(--text-muted, #94A3B8);
  margin: 0;
}

.testimonial-divider {
  border: none;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  margin: 0 0 22px;
  width: 100%;
}

.testimonial-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
}

.testimonial-star-icon,
.testimonial-rating-pill i {
  color: var(--blue-accent, #38BDF8);
  font-size: 13px;
}

.testimonial-quote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-weight: 400;
  flex: 1;
}

/* Custom Hexagon Pagination Dots (REF: testimoni-sec.png) */
.testimonial-pagination {
  position: absolute !important;
  bottom: 20px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
  margin: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(56, 189, 248, 0.4);
  opacity: 1;
  border-radius: 50%;
  margin: 0 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  background: var(--blue-accent, #38BDF8);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-radius: 0;
  transform: scale(1.15);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.7);
}

@media (max-width: 900px) {
  .about-testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .about-testimonial-section {
    padding: 70px 0;
  }
  .testimonial-card {
    padding: 26px 22px;
  }
}

/* ══════════════════ SECTION 5: FAQS (REF: faq-sec.png) ══════════════════ */
.about-faq-section {
  position: relative;
  background-color: #0b0f12;
  padding: 100px 0 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: start;
}

/* Left Column */
.about-faq-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.about-faq-header {
  margin-bottom: 50px;
}

.about-faq-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 16px 0 32px 0;
}

.about-faq-btn {
  display: inline-flex;
}

/* FAQ Callout Card (Bottom Left) */
.about-faq-callout-card {
  background: #13171a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  max-width: 440px;
}

.faq-callout-desc {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px 0;
}

.faq-callout-phone-pill {
  background: #090c0e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-callout-phone-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.faq-callout-phone-label {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}

.faq-callout-phone-number {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.faq-callout-phone-number:hover {
  color: var(--blue-accent, #38BDF8);
}

.faq-callout-users-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-callout-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(56, 189, 248, 0.4);
  flex-shrink: 0;
  background: #1a2228;
}

.faq-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-phone-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-accent, #38BDF8);
  color: #090c0e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
}

.faq-phone-circle-btn:hover {
  background: var(--blue-hover, #0284c7);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}

/* Right Column: Accordion */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item {
  background: #13171a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion-item:hover {
  border-color: rgba(56, 189, 248, 0.22);
}

.faq-accordion-item.active {
  background: #14191d;
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.faq-accordion-item.active .faq-question-text {
  color: var(--blue-accent, #38BDF8);
}

.faq-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-accordion-item:hover .faq-icon-circle {
  background: rgba(56, 189, 248, 0.15);
  color: var(--blue-accent, #38BDF8);
}

.faq-accordion-item.active .faq-icon-circle {
  background: var(--blue-accent, #38BDF8);
  color: #090c0e;
  transform: rotate(180deg);
}

.faq-accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-body {
  padding: 0 28px 26px 28px;
}

.faq-accordion-body p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

/* Responsive Styles for FAQ */
@media (max-width: 991.98px) {
  .about-faq-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .about-faq-header {
    margin-bottom: 36px;
  }
  .about-faq-callout-card {
    max-width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 580px) {
  .about-faq-section {
    padding: 70px 0 90px 0;
  }
  .about-faq-trigger {
    padding: 20px 20px;
  }
  .faq-accordion-body {
    padding: 0 20px 22px 20px;
  }
  .about-faq-callout-card {
    padding: 24px 20px;
  }
  .faq-callout-phone-pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ══════════════════ SECTION 6: CLIENTS SLIDER (REF: clients-sec.png) ══════════════════ */
.about-clients-divider-wrap {
  background-color: #0b0f12;
  padding: 0;
  width: 100%;
}

.about-clients-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
  width: 100%;
}

.about-clients-section {
  position: relative;
  background-color: #0b0f12;
  padding: 64px 0 96px 0;
  overflow: hidden;
}

.about-clients-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.about-clients-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 7px 22px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.badge-pill-accent {
  background: var(--blue-accent, #38BDF8);
  color: #090c0e;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 2px 10px;
  border-radius: 20px;
  margin: 0 6px;
  display: inline-block;
  letter-spacing: 0;
}

/* Clients Swiper */
.clients-swiper {
  width: 100%;
  padding: 10px 4px 16px 4px !important;
  cursor: grab;
}

.clients-swiper:active {
  cursor: grabbing;
}

.client-logo-card {
  height: 108px;
  background: #14181c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  user-select: none;
}

.client-logo-card:hover {
  background: #182026;
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 16px rgba(56, 189, 248, 0.15);
}

.client-brand-name {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.client-logo-card:hover .client-brand-name {
  color: #ffffff;
}

/* Typography styles matching reference logos */
.font-loudac {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.font-flomodia {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.font-weglot {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.font-influence {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.brand-badge-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1px 7px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
}

.client-brand-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.font-tse {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.client-brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  text-transform: uppercase;
}

.font-nexacloud,
.font-cybervault,
.font-datapulse {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-tm {
  font-size: 0.65rem;
  vertical-align: super;
  margin-left: 2px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .about-clients-section {
    padding: 48px 0 72px 0;
  }
  .about-clients-badge {
    font-size: 0.88rem;
    padding: 6px 18px;
    text-align: center;
  }
  .client-logo-card {
    height: 92px;
    padding: 14px 18px;
  }
}

/* ══════════════════ CONTACT PAGE: SECTION 1 (REF: sec1.png) ══════════════════ */
.contact-info-section {
  position: relative;
  background-color: #0b0f12;
  padding: 90px 0 60px 0;
}

.contact-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 14px 0 0 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-info-card {
  background: #14181c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 44px 24px 38px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-info-card:hover {
  background: #182026;
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(56, 189, 248, 0.15);
}

.contact-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #090c0e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.contact-icon-circle i {
  font-size: 26px;
  color: var(--blue-accent, #38BDF8);
  transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon-circle i {
  transform: scale(1.15);
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.contact-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-card-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-link:hover {
  color: var(--blue-accent, #38BDF8);
}

.contact-chat-highlight {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--blue-accent, #38BDF8);
  text-decoration: none;
  margin-top: 2px;
  transition: opacity 0.25s ease;
}

.contact-chat-highlight:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* ══════════════════ CONTACT PAGE: SECTION 2 (REF: sec2.png) ══════════════════ */
.contact-form-section {
  position: relative;
  background-color: #0b0f12;
  padding: 40px 0 120px 0;
}

.contact-form-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: stretch;
}

/* Left: Form Card */
.contact-form-card {
  background: #14181c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 48px 42px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

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

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-field {
  position: relative;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  background: #090c0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #ffffff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  border-color: var(--blue-accent, #38BDF8);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.select-wrapper {
  position: relative;
}

.contact-form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 44px;
}

.contact-form-select option {
  background: #14181c;
  color: #ffffff;
}

.select-caret {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  pointer-events: none;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 160px;
}

.form-submit-row {
  margin-top: 10px;
}

.contact-submit-btn {
  border: none;
  cursor: pointer;
  display: inline-flex;
}

/* Right: Map Card */
.contact-map-card {
  background: #14181c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  min-height: 520px;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.contact-leaflet-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #090c0e;
}

/* Custom Marker Pin (REF: sec2.png) */
.contact-custom-pin-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-pin {
  color: var(--blue-accent, #38BDF8);
  font-size: 38px;
  filter: drop-shadow(0 4px 14px rgba(56, 189, 248, 0.7));
  animation: mapPinBounce 2s infinite ease-in-out;
}

@keyframes mapPinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.map-popup-card {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #111619;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .contact-form-map-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form-card {
    padding: 36px 28px;
  }
  .contact-map-card {
    min-height: 400px;
  }
  .contact-leaflet-map {
    min-height: 400px;
  }
}

@media (max-width: 575.98px) {
  .contact-info-section {
    padding: 60px 0 40px 0;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-form-card {
    padding: 28px 20px;
  }
}


/* ══════════════════ SIDE INFO DRAWER (REF: grid-btn.png) ══════════════════ */
.side-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.side-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.side-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 90vw;
  height: 100vh;
  background-color: #0b0f12;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.85);
  z-index: 10051;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.side-drawer-overlay.open .side-drawer-panel {
  transform: translateX(0);
}

.side-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 36px 20px;
}

.side-drawer-close-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.side-drawer-close-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--blue-accent);
  color: var(--blue-accent);
  transform: rotate(90deg);
}

.side-drawer-content {
  padding: 10px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.side-drawer-bio {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.side-drawer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.side-drawer-search-form {
  display: flex;
  align-items: center;
  background: #141a1f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 4px 6px 4px 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.side-drawer-search-form:focus-within {
  border-color: var(--blue-accent);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
}

.side-drawer-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #ffffff;
  padding: 10px 0;
}

.side-drawer-search-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.side-drawer-search-submit {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.side-drawer-search-submit:hover {
  color: var(--blue-accent);
  background: rgba(56, 189, 248, 0.12);
}

.side-drawer-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-drawer-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-drawer-info-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: capitalize;
}

.side-drawer-info-val {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.side-drawer-info-val:hover {
  color: var(--blue-accent);
}

.side-drawer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.side-drawer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.side-drawer-social-btn:hover {
  background: var(--blue-accent);
  color: #0b0f12;
  border-color: var(--blue-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.4);
}

@media (max-width: 575.98px) {
  .side-drawer-panel {
    width: 100%;
    max-width: 100vw;
  }
  .side-drawer-header {
    padding: 24px 20px 16px;
  }
  .side-drawer-content {
    padding: 10px 20px 32px;
    gap: 26px;
  }
}



