/* ==========================================================================
   POSTPEAK - Premium Digital Marketing & IT Solutions
   Theme: Logo-Matched Electric Royal Blue (#2563EB) & Charcoal Dark Aesthetic
   ========================================================================== */

/* ─── CSS RESET & ROOT VARIABLES (EXACT LOGO COLOR PALETTE) ─── */
:root {
  --bg-main: #07090E;
  --bg-secondary: #0B0E17;
  --bg-card: rgba(14, 19, 30, 0.82);
  --bg-card-hover: rgba(20, 27, 44, 0.92);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(37, 99, 235, 0.45);

  /* Logo Colors */
  --logo-blue: #2563EB;
  --logo-blue-light: #3B82F6;
  --logo-cyan: #00D2FF;
  --logo-charcoal: #4B5563;

  --blue-gradient: linear-gradient(135deg, #2563EB 0%, #00D2FF 100%);
  --blue-gradient-dark: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
  --glow-blue: rgba(37, 99, 235, 0.45);

  --text-pure: #FFFFFF;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --radius-pill: 50px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  background: var(--bg-main);
  overflow-x: hidden;
}

/* ─── LUXURY AMBIENT BACKGROUND SYSTEM (Electric Blue Mesh) ─── */
.ambient-bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.24;
  animation: floatAmbient 20s ease-in-out infinite alternate;
}

.orb-1 {
  top: 8%;
  left: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.85) 0%, rgba(37, 99, 235, 0) 70%);
}

.orb-2 {
  bottom: 18%;
  right: 12%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.65) 0%, rgba(0, 210, 255, 0) 70%);
  animation-duration: 24s;
  animation-delay: -6s;
}

.orb-3 {
  top: 55%;
  left: 42%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.7) 0%, rgba(30, 64, 175, 0) 70%);
  animation-duration: 18s;
  animation-delay: -10s;
}

@keyframes floatAmbient {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(45px, -35px) scale(1.1);
  }

  100% {
    transform: translate(-35px, 45px) scale(0.95);
  }
}

.subtle-dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

#ambientCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.75;
}

/* ─── TYPOGRAPHY UTILITIES ─── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-pure);
  letter-spacing: -0.02em;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #FFFFFF 0%, #3B82F6 50%, #00D2FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-blue {
  color: var(--logo-blue-light);
}

.text-charcoal {
  color: #94A3B8;
}

.text-green {
  color: #25D366;
}

/* ─── FULL-WIDTH CLEAN STICKY TOP NAVBAR ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  background: rgba(7, 9, 14, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(37, 99, 235, 0.25);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Far Left: Brand Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(37, 99, 235, 0.3));
  transition: transform 0.3s ease;
}

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

/* Center: Navigation Menu */
.header-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav-link {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  padding: 8px 4px;
  position: relative;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--logo-blue-light);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 10px #3B82F6;
}

.header-nav-link:hover::after,
.header-nav-link.active::after {
  width: 100%;
}

.header-nav-link:hover,
.header-nav-link.active {
  color: #FFFFFF;
}

/* Far Right: Actions */
.header-right-action {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.header-whatsapp-btn:hover {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-gradient);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
  transition: all var(--transition-fast);
}

.header-cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.55);
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #FFFFFF;
  cursor: pointer;
  padding: 6px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 290px;
  height: 100vh;
  background: #0B0E17;
  z-index: 1002;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  transition: right 0.35s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer.open {
  right: 0;
}

.close-drawer-btn {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-logo-img {
  height: 32px;
  margin: 15px 0 25px;
}

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

.drawer-link {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.2s;
}

.drawer-link:hover {
  color: var(--logo-blue-light);
}

.drawer-link.highlight {
  color: #25D366;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── SECTION 1: HERO FIXED IMAGE & FLOATING GLASS DASHBOARD CARD ─── */
.hero-image-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  overflow: hidden;
  z-index: 2;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.65) contrast(1.15);
  transform: scale(1.02);
  transition: transform 0.8s ease-out;
}

.hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 9, 14, 0.45) 0%, rgba(7, 9, 14, 0.88) 80%);
}

.radial-glow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

/* ─── DASHBOARD WRAPPER & GLASS CARD ─── */
.dashboard-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.dashboard-glass-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(10, 15, 26, 0.45);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(37, 99, 235, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  animation: floatInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes floatInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

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

.card-edge-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), rgba(0, 210, 255, 0.8), rgba(37, 99, 235, 0.8), transparent);
}

/* ─── LEFT COLUMN: PROFILE CARD (Ultra-Clean Glassmorphism) ─── */
.card-left-column {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(37, 99, 235, 0.05) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.company-emblem-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}

.company-emblem-ring {
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(37, 99, 235, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  margin-bottom: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-card-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(37, 99, 235, 0.45));
}

.company-emblem-ring:hover {
  transform: scale(1.05) translateY(-2px);
  border-color: rgba(0, 210, 255, 0.65);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7), 0 0 40px rgba(37, 99, 235, 0.5);
}

.emblem-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--logo-blue-light);
}

/* Social Quick Icon Circles */
.social-circle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.social-bubble {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.social-bubble:hover {
  transform: translateY(-3px) scale(1.1);
}

.wa-bubble:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.6);
}

.insta-bubble:hover {
  background: #E1306C;
  border-color: #E1306C;
  box-shadow: 0 0 18px rgba(225, 48, 108, 0.6);
}

.fb-bubble:hover {
  background: #2563EB;
  border-color: #2563EB;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.6);
}

.tw-bubble:hover {
  background: #000000;
  border-color: #555555;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.li-bubble:hover {
  background: #0077B5;
  border-color: #0077B5;
  box-shadow: 0 0 18px rgba(0, 119, 181, 0.6);
}

/* Left Column Heading & Paragraph */
.company-heading {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-transform: lowercase;
}

.company-brief-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #94A3B8;
  margin-bottom: 26px;
  max-width: 440px;
}

.company-brief-desc strong {
  color: #E2E8F0;
}

/* Action Buttons */
.action-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.blue-gradient-btn {
  background: var(--blue-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.45);
}

.blue-gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.65);
}

.dark-outline-btn {
  background: rgba(37, 99, 235, 0.7);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.dark-outline-btn:hover {
  background: #2563EB;
  border-color: rgba(0, 210, 255, 0.5);
  transform: translateY(-2px);
}

.arrow-icon {
  font-size: 0.8rem;
}

.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: #93C5FD;
}

.pulse-blue-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3B82F6;
  box-shadow: 0 0 8px #3B82F6;
  animation: blinkDot 1.8s infinite;
}

@keyframes blinkDot {

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

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

/* ─── RIGHT COLUMN: OFFICIAL CHANNELS ─── */
.card-right-column {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(7, 10, 17, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.channels-header {
  margin-bottom: 24px;
}

.channels-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #CBD5E1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.channels-divider {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--logo-blue);
  border-radius: 2px;
}

.channel-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-row-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.channel-row-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.5s ease;
}

.channel-row-card:hover::before {
  left: 100%;
}

.channel-row-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateX(5px);
}

.channel-row-card.highlight-card {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.channel-row-card.highlight-card:hover {
  background: rgba(37, 99, 235, 0.22);
  border-color: #2563EB;
}

.channel-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.channel-row-card:hover .channel-icon-box {
  transform: scale(1.12) rotate(4deg);
}

.upwork-box {
  background: rgba(20, 168, 0, 0.18);
  color: #14A800;
}

.fiverr-box {
  background: rgba(29, 191, 115, 0.18);
  color: #1DBF73;
}

.insta-box {
  background: rgba(225, 48, 108, 0.18);
  color: #E1306C;
}

.green-box {
  background: rgba(37, 211, 102, 0.18);
  color: #25D366;
}

.red-box {
  background: rgba(230, 57, 70, 0.18);
  color: #E63946;
}

.li-box {
  background: rgba(0, 119, 181, 0.18);
  color: #0077B5;
}

.custom-fiverr-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.05em;
  color: #1DBF73;
}

.channel-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.channel-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
}

.channel-sub {
  font-size: 0.74rem;
  color: #94A3B8;
}

.channel-arrow {
  color: #64748B;
  font-size: 0.85rem;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.channel-row-card:hover .channel-arrow {
  color: var(--logo-blue-light);
  transform: translateX(3px);
}

/* Metrics bar */
.channel-metrics-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
}

.metric-lbl {
  font-size: 0.72rem;
  color: #94A3B8;
}

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

/* ─── SCROLL DOWN INDICATOR ─── */
.scroll-down-wrapper {
  position: relative;
  z-index: 10;
  margin-top: 36px;
}

.scroll-down-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.scroll-down-indicator:hover {
  color: #FFFFFF;
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.mouse-icon {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 3px;
  height: 6px;
  background: var(--logo-blue);
  border-radius: 2px;
  animation: wheelScroll 1.6s infinite;
}

@keyframes wheelScroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ─── REVEAL ANIMATION ENGINE ─── */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* ─── COMMON SECTION LAYOUT ─── */
.content-section {
  position: relative;
  z-index: 5;
  padding: 110px 20px;
  background: transparent;
}

.content-section.darker-bg {
  background: rgba(4, 6, 11, 0.45);
  backdrop-filter: blur(10px);
}

.section-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: #60A5FA;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.section-tag-pill:hover {
  transform: scale(1.05);
  border-color: var(--logo-blue-light);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.35);
}

.section-main-heading {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-sub-heading {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ─── SECTION 2: ABOUT FEATURE CARDS ─── */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.glass-feature-card {
  position: relative;
  background: rgba(14, 18, 28, 0.65);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.glass-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3B82F6, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-feature-card:hover::before {
  opacity: 1;
}

.glass-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 99, 235, 0.15);
  background: rgba(20, 26, 40, 0.85);
}

.card-icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(0, 210, 255, 0.15) 100%);
  border: 1px solid rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #3B82F6;
  margin-bottom: 22px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-feature-card:hover .card-icon-bubble {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.feature-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.feature-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── SECTION 3: SERVICES GRID ─── */
.services-six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.service-item-card {
  position: relative;
  background: rgba(12, 16, 25, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  backdrop-filter: blur(14px);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.service-item-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-item-card:hover::after {
  transform: scaleX(1);
}

.service-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.45);
  background: rgba(18, 25, 42, 0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(37, 99, 235, 0.15);
}

.svc-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.15);
  color: #3B82F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.service-item-card:hover .svc-icon-wrapper {
  transform: scale(1.15) rotate(-6deg);
  background: #2563EB;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.svc-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFFFF;
}

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

.svc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-bullets li {
  font-size: 0.82rem;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

.service-item-card:hover .svc-bullets li {
  transform: translateX(4px);
}

.svc-bullets li i {
  color: #22C55E;
  font-size: 0.75rem;
}

/* ─── SECTION 4: SOCIAL MOSAIC CARDS ─── */
.social-cards-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.social-mosaic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(14, 18, 28, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.social-mosaic-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.card-top-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.social-mosaic-card:hover .card-top-icon {
  transform: scale(1.2) rotate(10deg);
}

.card-insta .card-top-icon {
  background: rgba(225, 48, 108, 0.15);
  color: #E1306C;
}

.card-wa .card-top-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.card-fb .card-top-icon {
  background: rgba(24, 119, 242, 0.15);
  color: #1877F2;
}

.card-li .card-top-icon {
  background: rgba(0, 119, 181, 0.15);
  color: #0077B5;
}

.card-yt .card-top-icon {
  background: rgba(255, 0, 0, 0.15);
  color: #FF0000;
}

.card-tw .card-top-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.card-insta:hover {
  border-color: rgba(225, 48, 108, 0.5);
  box-shadow: 0 15px 35px rgba(225, 48, 108, 0.25);
}

.card-wa:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.25);
}

.card-fb:hover {
  border-color: rgba(24, 119, 242, 0.5);
  box-shadow: 0 15px 35px rgba(24, 119, 242, 0.25);
}

.card-li:hover {
  border-color: rgba(0, 119, 181, 0.5);
  box-shadow: 0 15px 35px rgba(0, 119, 181, 0.25);
}

.card-yt:hover {
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.25);
}

.card-tw:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.card-body-text {
  margin-bottom: 20px;
}

.platform-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.handle-title {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--logo-blue-light);
  margin-bottom: 8px;
}

.platform-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.follow-action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: all var(--transition-fast);
}

.social-mosaic-card:hover .follow-action-btn {
  color: var(--logo-blue-light);
  transform: translateX(4px);
}

/* ─── BOTTOM CORPORATE FOOTER ─── */
.corporate-bottom-footer {
  position: relative;
  z-index: 5;
  background: rgba(3, 5, 9, 0.85);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 20px 30px;
  overflow: hidden;
}

.footer-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.footer-inner-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}

/* Callout Row */
.footer-callout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.callout-big-heading {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.callout-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 460px;
}

.callout-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-cta-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #0F172A;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}

.footer-cta-pill-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: #F1F5F9;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.footer-cta-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-cta-ghost-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* 3-Column Footer Grid */
.footer-three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 60px;
}

.footer-column-card {
  transition: transform 0.3s ease;
}

.footer-column-card:hover {
  transform: translateY(-3px);
}

.col-header-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.col-header-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--logo-blue);
  transition: width 0.3s ease;
}

.footer-column-card:hover .col-header-title::after {
  width: 48px;
}

.col-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-menu-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.col-menu-list a i {
  font-size: 0.7rem;
  color: var(--text-dim);
  transition: transform var(--transition-fast);
}

.col-menu-list a:hover {
  color: #FFFFFF;
  transform: translateX(5px);
}

.col-menu-list a:hover i {
  color: var(--logo-blue-light);
}

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

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.icon-highlight {
  color: var(--logo-blue-light);
  font-size: 1rem;
  margin-top: 3px;
}

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

.brand-micro {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-micro-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.4));
}

.copyright-text {
  font-size: 0.88rem;
  color: #94A3B8;
  letter-spacing: 0.02em;
}

.copyright-text strong {
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--logo-blue-light);
  transform: translateY(-1px);
}

/* ─── STICKY FLOATING WHATSAPP FAB ─── */
.sticky-whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: all var(--transition-normal);
  animation: pulseFab 2.5s infinite;
}

@keyframes pulseFab {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

.sticky-whatsapp-fab:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.8);
}

.fab-tooltip {
  position: absolute;
  right: 70px;
  background: #0B0E17;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sticky-whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ─── RESPONSIVE BREAKPOINTS ─── */
@media (max-width: 1024px) {
  .dashboard-glass-card {
    grid-template-columns: 1fr;
  }

  .card-left-column {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-cards-grid,
  .services-six-grid,
  .social-cards-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-callout-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 900px) {

  .header-nav-menu,
  .header-whatsapp-btn {
    display: none !important;
  }

  .mobile-toggle-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 16px;
  }

  .brand-logo-img {
    height: 32px;
  }

  .header-cta-btn {
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .hero-image-section {
    padding: 85px 12px 35px;
    min-height: auto;
  }

  .dashboard-glass-card {
    border-radius: 18px;
  }

  .card-left-column,
  .card-right-column {
    padding: 24px 16px;
  }

  .company-emblem-ring {
    padding: 10px 18px;
  }

  .hero-card-logo-img {
    height: 38px;
  }

  .company-heading {
    font-size: 1.5rem;
  }

  .company-brief-desc {
    font-size: 0.84rem;
    margin-bottom: 20px;
  }

  .social-circle-row {
    gap: 8px;
    margin-bottom: 18px;
  }

  .social-bubble {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .action-buttons-group {
    max-width: 100%;
  }

  .action-btn {
    padding: 11px 16px;
    font-size: 0.85rem;
  }

  .channel-row-card {
    padding: 10px 12px;
    gap: 10px;
  }

  .channel-icon-box {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .channel-name {
    font-size: 0.84rem;
  }

  .channel-sub {
    font-size: 0.7rem;
  }

  .content-section {
    padding: 60px 14px;
  }

  .about-cards-grid,
  .services-six-grid,
  .social-cards-mosaic,
  .footer-three-column-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .glass-feature-card,
  .service-item-card,
  .social-mosaic-card {
    padding: 22px 18px;
  }

  .section-main-heading {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .section-sub-heading {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .callout-big-heading {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .footer-callout-row {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .callout-right {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta-pill-btn,
  .footer-cta-ghost-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .sticky-whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Extra small mobile devices (320px - 380px) */
@media (max-width: 420px) {
  .header-inner {
    padding: 8px 10px;
    gap: 8px;
  }

  .brand-logo-img {
    height: 26px;
  }

  .header-cta-btn {
    padding: 6px 10px;
    font-size: 0.72rem;
    gap: 4px;
  }

  .mobile-toggle-btn {
    font-size: 1.15rem;
    padding: 4px;
  }

  .company-heading {
    font-size: 1.35rem;
  }

  .channel-metrics-bar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .metric-val {
    font-size: 1rem;
  }

  .section-main-heading {
    font-size: 1.45rem;
  }

  .callout-big-heading {
    font-size: 1.45rem;
  }
}