/* ╔═══════════════════════════════════════════════════════════╗
   ║  Contact Us — Premium Unique Design System               ║
   ║  9 Sections · All-New Patterns · Blue Theme              ║
   ║  Refined & Polished Edition                              ║
   ╚═══════════════════════════════════════════════════════════╝ */

/* ═══════════ PAGE OVERRIDES ═══════════ */
.contact-body {
  background: #f8fafd;
  scroll-behavior: smooth;
}
.contact-body .bg-blobs,
.contact-body #sparkleCanvas,
.contact-body #trailCanvas { display: none !important; }

/* ═══════════ SHARED CONTACT COMPONENTS ═══════════ */
.ct-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}
.ct-overline::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}
.ct-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -1.5px;
  position: relative;
}
.ct-section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}
.ct-accent {
  color: var(--blue-500);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.ct-accent-light {
  color: #93c5fd;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}


/* ═══════════════════════════════════════════════════
   ══ 1. HERO — CINEMATIC ENVELOPE ═════════════════
   ═══════════════════════════════════════════════════ */
.ct-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 160px 0 140px;
  z-index: 2;
}
.ct-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ct-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -200px; /* Extend gradient well below hero into form section */
  background: linear-gradient(180deg, #0a1628 0%, #0c1e3a 10%, #0f2847 22%, #143572 38%, #1e40af 55%, #2259d6 72%, #2563eb 85%, #2563eb 100%);
}
.ct-hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}
.ct-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Galaxy twinkling stars */
.ct-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ct-star {
  position: absolute;
  width: var(--s, 2px);
  height: var(--s, 2px);
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
  animation: ct-twinkle 5s ease-in-out var(--d, 0s) infinite;
  box-shadow: 0 0 calc(var(--s, 2px) * 2) rgba(147,197,253,0.6);
}
@keyframes ct-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  20%      { opacity: 0.9; transform: scale(1.2); }
  40%      { opacity: 0.3; transform: scale(0.8); }
  60%      { opacity: 1; transform: scale(1); }
  80%      { opacity: 0.15; transform: scale(0.6); }
}

/* Swimming fish */
.ct-fish-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ct-fish-swim {
  position: absolute;
  will-change: transform;
}
.ct-fish-body {
  display: block;
  will-change: transform;
  animation: ct-bob 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(147,197,253,0.4));
}
.ct-fish-1 {
  width: 80px;
  top: 28%;
  left: -100px;
  animation: ct-swim-right 20s linear infinite;
  opacity: 0.9;
}
.ct-fish-1 .ct-fish-body { animation-duration: 3s; }
.ct-fish-2 {
  width: 60px;
  top: 58%;
  left: -80px;
  animation: ct-swim-right 26s linear -6s infinite;
  opacity: 0.8;
}
.ct-fish-2 .ct-fish-body { animation-duration: 4s; animation-delay: -1s; }
.ct-fish-3 {
  width: 50px;
  top: 75%;
  left: -70px;
  animation: ct-swim-right 32s linear -12s infinite;
  opacity: 0.7;
}
.ct-fish-3 .ct-fish-body { animation-duration: 3.5s; animation-delay: -2s; }
.ct-fish-4 {
  width: 70px;
  top: 15%;
  right: -90px;
  animation: ct-swim-left 24s linear -4s infinite;
  opacity: 0.85;
}
.ct-fish-4 .ct-fish-body { animation-duration: 3.8s; animation-delay: -0.5s; }
@keyframes ct-swim-right {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 200px)); }
}
@keyframes ct-swim-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-100vw - 200px)); }
}
@keyframes ct-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Rising bubbles */
.ct-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ct-bubble {
  position: absolute;
  bottom: -20px;
  width: var(--bsize, 8px);
  height: var(--bsize, 8px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(147,197,253,0.15));
  border: 1px solid rgba(255,255,255,0.15);
  will-change: transform, opacity;
  animation: ct-rise 14s ease-in var(--bd, 0s) infinite;
}
@keyframes ct-rise {
  0%   { transform: translateY(0) translateX(0) scale(0.5); opacity: 0; }
  10%  { opacity: 0.8; transform: translateY(-10vh) translateX(5px) scale(0.8); }
  50%  { opacity: 0.6; transform: translateY(-50vh) translateX(-8px) scale(1); }
  100% { transform: translateY(-110vh) translateX(12px) scale(1.2); opacity: 0; }
}

/* Ocean light rays */
.ct-light-rays {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ct-ray {
  position: absolute;
  top: -30%;
  width: 120px;
  height: 160%;
  background: linear-gradient(180deg, rgba(147,197,253,0.08) 0%, transparent 80%);
  transform-origin: top center;
  will-change: opacity;
}
.ct-ray-1 {
  left: 15%;
  transform: rotate(15deg);
  animation: ct-ray-breathe 8s ease-in-out infinite;
}
.ct-ray-2 {
  left: 50%;
  width: 160px;
  transform: rotate(-5deg);
  animation: ct-ray-breathe 10s ease-in-out -3s infinite;
}
.ct-ray-3 {
  right: 12%;
  transform: rotate(-18deg);
  animation: ct-ray-breathe 9s ease-in-out -6s infinite;
}
@keyframes ct-ray-breathe {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.8; }
}

/* Jellyfish */
.ct-jelly-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ct-jelly-swim {
  position: absolute;
  will-change: transform;
}
.ct-jelly-body {
  display: block;
  will-change: transform;
  animation: ct-jelly-pulse 4s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(147,197,253,0.3));
}
.ct-jelly-1 {
  width: 60px;
  top: 20%;
  left: -80px;
  animation: ct-swim-right 40s linear -10s infinite;
  opacity: 0.7;
}
.ct-jelly-2 {
  width: 45px;
  top: 60%;
  right: -70px;
  animation: ct-swim-left 45s linear -20s infinite;
  opacity: 0.55;
}
@keyframes ct-jelly-pulse {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50%      { transform: translateY(-8px) scaleY(0.92); }
}

/* Floating plankton */
.ct-plankton {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ct-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  will-change: transform, opacity;
  animation: ct-drift 7s ease-in-out var(--pd, 0s) infinite;
  box-shadow: 0 0 4px rgba(147,197,253,0.4);
}
@keyframes ct-drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  25%      { transform: translate(8px, -12px); opacity: 0.8; }
  50%      { transform: translate(-5px, -6px); opacity: 0.5; }
  75%      { transform: translate(12px, 4px); opacity: 0.9; }
}

/* Color-shifting aurora lamps */
.ct-lamps {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ct-lamp {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  /* filter: blur(60px); -- removed for GPU efficiency */
}
.ct-lamp-1 {
  width: 350px;
  height: 350px;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, rgba(56,189,248,0.15) 40%, transparent 70%);
  animation: ct-lamp-shift-1 12s ease-in-out infinite;
}
.ct-lamp-2 {
  width: 400px;
  height: 400px;
  bottom: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, rgba(59,130,246,0.12) 40%, transparent 70%);
  animation: ct-lamp-shift-2 15s ease-in-out -5s infinite;
}
.ct-lamp-3 {
  width: 280px;
  height: 280px;
  top: 40%;
  left: 55%;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(59,130,246,0.1) 40%, transparent 70%);
  animation: ct-lamp-shift-3 10s ease-in-out -3s infinite;
}
@keyframes ct-lamp-shift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  33%      { transform: translate(30px, 20px) scale(1.15); opacity: 0.8; }
  66%      { transform: translate(-20px, 10px) scale(0.9); opacity: 0.6; }
}
@keyframes ct-lamp-shift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  33%      { transform: translate(-40px, -20px) scale(1.2); opacity: 0.7; }
  66%      { transform: translate(20px, -30px) scale(0.95); opacity: 0.5; }
}
@keyframes ct-lamp-shift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50%      { transform: translate(-30px, 25px) scale(1.25); opacity: 0.65; }
}

/* Sea anemones */
.ct-anemones {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ct-anemone {
  position: absolute;
  bottom: 0;
}
.ct-anemone svg {
  display: block;
}
.ct-tentacle {
  will-change: transform;
  transform-origin: bottom center;
}
.ct-tentacle-1 { animation: ct-sway 4s ease-in-out infinite; }
.ct-tentacle-2 { animation: ct-sway 5s ease-in-out -1s infinite; }
.ct-tentacle-3 { animation: ct-sway 3.5s ease-in-out -0.5s infinite; }
.ct-tentacle-4 { animation: ct-sway 4.5s ease-in-out -2s infinite; }
.ct-tentacle-5 { animation: ct-sway 5.5s ease-in-out -1.5s infinite; }
@keyframes ct-sway {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(8deg); }
  75%      { transform: rotate(-8deg); }
}
.ct-anemone-a { left: 5%; }
.ct-anemone-b { left: 25%; }
.ct-anemone-c { right: 30%; }
.ct-anemone-d { right: 8%; }

/* Envelope */
.ct-hero-envelope {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  animation: ct-envelope-float 4s ease-in-out infinite;
  position: relative;
}
.ct-hero-envelope::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: ct-glow-pulse 4s ease-in-out infinite;
}
@keyframes ct-glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
@keyframes ct-envelope-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.ct-envelope-svg {
  width: 220px;
  height: 180px;
  filter: drop-shadow(0 12px 48px rgba(59, 130, 246, 0.35));
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.ct-envelope-flap {
  transform-origin: 60px 30px;
  animation: ct-flap-cycle 6s ease-in-out infinite;
}
@keyframes ct-flap-cycle {
  0%        { transform: rotateX(0deg); }
  18%       { transform: rotateX(-180deg); }
  50%       { transform: rotateX(-180deg); }
  72%       { transform: rotateX(0deg); }
  100%      { transform: rotateX(0deg); }
}
.ct-envelope-letter {
  animation: ct-letter-cycle 6s ease-in-out infinite;
}
@keyframes ct-letter-cycle {
  0%        { transform: translateY(0); }
  22%       { transform: translateY(-20px); }
  50%       { transform: translateY(-20px); }
  76%       { transform: translateY(0); }
  100%      { transform: translateY(0); }
}
.ct-letter-line {
  opacity: 0.35;
  animation: ct-line-cycle 6s ease-in-out infinite;
}
.ct-letter-line.l2 { animation-delay: 0.15s; }
.ct-letter-line.l3 { animation-delay: 0.3s; }
@keyframes ct-line-cycle {
  0%        { opacity: 0.2; }
  25%       { opacity: 0.55; }
  50%       { opacity: 0.55; }
  72%       { opacity: 0.2; }
  100%      { opacity: 0.2; }
}

/* Floating pills */
.ct-hero-pills {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.ct-pill {
  position: absolute;
  padding: 8px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  backdrop-filter: blur(8px);
  animation: ct-pill-float 8s ease-in-out infinite;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.ct-pill-1 { top: 20%; left: 10%; animation-delay: 0s; }
.ct-pill-2 { top: 22%; right: 10%; animation-delay: -2s; }
.ct-pill-3 { bottom: 25%; left: 12%; animation-delay: -4s; }
.ct-pill-4 { bottom: 20%; right: 12%; animation-delay: -6s; }
@keyframes ct-pill-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1.5deg); }
}

/* Text */
.ct-hero-text {
  position: relative;
  z-index: 3;
}
.ct-hero-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ct-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  position: relative;
  text-shadow: 0 2px 40px rgba(37,99,235,0.3);
}
.ct-hero-heading .ct-accent {
  color: #60a5fa;
  background: linear-gradient(135deg, #60a5fa, #93c5fd, #bfdbfe);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ct-accent-shimmer 4s ease-in-out infinite;
}
@keyframes ct-accent-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ct-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(0,0,0,0.15);
}
.ct-cursor {
  display: inline-block;
  color: var(--blue-300);
  -webkit-text-fill-color: var(--blue-300);
  animation: ct-blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes ct-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Scroll hint */
.ct-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.ct-scroll-hint span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}
.ct-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: ct-scroll-down 2s ease-in-out infinite;
}
@keyframes ct-scroll-down {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ═══════════════════════════════════════════════════
   ══ 2. CONTACT FORM — BIOLUMINESCENT COSMOS ═════
   ══ (Exclusively unique — different from hero)    ═
   ═══════════════════════════════════════════════════ */
.ct-form-section {
  padding: 40px 0 140px;
  margin-top: -160px;
  padding-top: 180px;
  position: relative;
  overflow: hidden;
  /* No background here — the gradient lives in ::after to avoid seam */
  background: transparent;
}
/* Form section gradient rendered via ::after so it starts below the overlap zone */
.ct-form-section::after {
  content: '';
  position: absolute;
  top: 160px; /* Start _after_ the overlap zone */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(59,130,246,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 60%, rgba(96,165,250,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.08) 0%, transparent 60%),
    linear-gradient(180deg,
      #2563eb 0%,
      #2461e6 3%,
      #225ddf 7%,
      #2058d6 12%,
      #1e54ce 18%,
      #1d50c5 26%,
      #1e4db8 36%,
      #1f4eb5 46%,
      #2252b8 56%,
      #2858be 64%,
      #3568c8 72%,
      #4d82d4 80%,
      #6e9ee0 86%,
      #96baeb 91%,
      #c4d9f4 96%,
      #eef3fa 100%
    );
}

/* ── Stardust Grain (unique grain pattern) ── */
.ct-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
}

/* ── Spiral Galaxy Arms (unique — hero uses simple blobs) ── */
.cg-galaxy-arms {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cg-arm {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
}
/* Arm 1: Upper-left swirl */
.cg-arm-1 {
  width: 700px; height: 300px;
  top: -8%; left: -15%;
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(59,130,246,0.06) 40%, transparent 80%);
  /* filter: blur(50px); -- removed for GPU efficiency */
  transform: rotate(-25deg);
  animation: cg-arm-swirl-1 25s ease-in-out infinite;
}
/* Arm 2: Lower-right swirl */
.cg-arm-2 {
  width: 600px; height: 250px;
  bottom: -5%; right: -10%;
  background: linear-gradient(315deg, rgba(6,182,212,0.1) 0%, rgba(59,130,246,0.05) 50%, transparent 80%);
  /* filter: blur(60px); -- removed for GPU efficiency */
  transform: rotate(20deg);
  animation: cg-arm-swirl-2 30s ease-in-out -10s infinite;
}
/* Arm 3: Center sweep */
.cg-arm-3 {
  width: 800px; height: 200px;
  top: 40%; left: 10%;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.06), rgba(59,130,246,0.04), transparent);
  /* filter: blur(40px); -- removed for GPU efficiency */
  transform: rotate(-8deg);
  animation: cg-arm-swirl-3 20s ease-in-out -6s infinite;
}
@keyframes cg-arm-swirl-1 {
  0%, 100% { transform: rotate(-25deg) translateX(0); opacity: 0.6; }
  50%      { transform: rotate(-20deg) translateX(30px); opacity: 0.9; }
}
@keyframes cg-arm-swirl-2 {
  0%, 100% { transform: rotate(20deg) translateY(0); opacity: 0.5; }
  50%      { transform: rotate(25deg) translateY(-20px); opacity: 0.8; }
}
@keyframes cg-arm-swirl-3 {
  0%, 100% { transform: rotate(-8deg) scaleX(1); opacity: 0.3; }
  50%      { transform: rotate(-5deg) scaleX(1.15); opacity: 0.55; }
}

/* ── Constellation Stars + Lines (unique — hero uses random dots) ── */
.cg-constellations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.cg-const-star {
  position: absolute;
  width: var(--cs, 3px);
  height: var(--cs, 3px);
  border-radius: 50%;
  will-change: transform, opacity;
  /* Each star has unique glow color cycling */
  animation: cg-star-breathe var(--csd, 5s) ease-in-out var(--csdel, 0s) infinite;
}
.cg-const-star::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  filter: blur(4px);
  opacity: 0.5;
}
/* Color variants for constellation stars */
.cg-const-star--blue {
  background: #60a5fa;
  box-shadow: 0 0 8px rgba(96,165,250,0.6), 0 0 20px rgba(96,165,250,0.2);
}
.cg-const-star--cyan {
  background: #22d3ee;
  box-shadow: 0 0 8px rgba(34,211,238,0.6), 0 0 20px rgba(34,211,238,0.2);
}
.cg-const-star--violet {
  background: #60a5fa;
  box-shadow: 0 0 8px rgba(96,165,250,0.6), 0 0 20px rgba(96,165,250,0.2);
}
.cg-const-star--white {
  background: #e2e8f0;
  box-shadow: 0 0 6px rgba(226,232,240,0.5), 0 0 15px rgba(226,232,240,0.15);
}
@keyframes cg-star-breathe {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  25%      { opacity: 1; transform: scale(1.2); }
  50%      { opacity: 0.5; transform: scale(0.9); }
  75%      { opacity: 0.9; transform: scale(1.1); }
}

/* Constellation connecting lines */
.cg-const-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  will-change: opacity;
  animation: cg-line-pulse 6s ease-in-out var(--cld, 0s) infinite;
}
@keyframes cg-line-pulse {
  0%, 100% { opacity: 0.04; }
  50%      { opacity: 0.12; }
}

/* ── Diamond-Burst Sparklers (unique — hero uses simple cross blinks) ── */
.cg-sparklers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.cg-sparkle {
  position: absolute;
  width: var(--spk, 14px);
  height: var(--spk, 14px);
  will-change: transform, opacity;
  animation: cg-diamond-burst var(--spkd, 7s) ease-in-out var(--spkdel, 0s) infinite;
}
/* 4-point diamond shape via rotated pseudo-elements */
.cg-sparkle::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.9) 60%, transparent);
  border-radius: 1px;
}
.cg-sparkle::after {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 100%; height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.9) 60%, transparent);
  border-radius: 1px;
}
@keyframes cg-diamond-burst {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  8%       { opacity: 1; transform: scale(1.3) rotate(15deg); }
  20%      { opacity: 0.9; transform: scale(1) rotate(30deg); }
  35%      { opacity: 0; transform: scale(0.5) rotate(45deg); }
  100%     { opacity: 0; transform: scale(0) rotate(45deg); }
}

/* ── Full Moon with Orbital Rings (unique — hero has no moon) ── */
.cg-moon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: 4%;
  right: 6%;
  will-change: transform;
  animation: cg-moon-levitate 16s ease-in-out infinite;
}
/* Orbital ring around moon */
.cg-moon-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 140px; height: 140px;
  transform: translate(-50%,-50%) rotateX(65deg);
  border: 1px solid rgba(253,224,71,0.06);
  border-radius: 50%;
  animation: cg-orbit-spin 20s linear infinite;
}
.cg-moon-orbit-2 {
  position: absolute;
  top: 50%; left: 50%;
  width: 170px; height: 170px;
  transform: translate(-50%,-50%) rotateX(65deg) rotateZ(30deg);
  border: 1px dashed rgba(253,224,71,0.04);
  border-radius: 50%;
  animation: cg-orbit-spin 28s linear -5s infinite reverse;
}
@keyframes cg-moon-levitate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30%      { transform: translateY(-10px) rotate(1.5deg); }
  60%      { transform: translateY(-5px) rotate(-1deg); }
}
@keyframes cg-orbit-spin {
  0%   { transform: translate(-50%,-50%) rotateX(65deg) rotateZ(0deg); }
  100% { transform: translate(-50%,-50%) rotateX(65deg) rotateZ(360deg); }
}

/* ── Neptune Gas Giant (unique — hero has no planets) ── */
.cg-planet {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  bottom: 15%;
  left: 4%;
  will-change: transform;
  animation: cg-planet-hover 22s ease-in-out infinite;
}
.cg-planet-atmosphere {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
  animation: cg-atmo-pulse 5s ease-in-out infinite;
}
@keyframes cg-planet-hover {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(10px, -6px) scale(1.02); }
  50%      { transform: translate(-5px, 8px) scale(0.98); }
  75%      { transform: translate(8px, 3px) scale(1.01); }
}
@keyframes cg-atmo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 1; }
}

/* ── Bioluminescent Koi (unique — hero uses simple straight-swimming fish) ── */
.cg-koi-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.cg-koi {
  position: absolute;
  will-change: transform;
}
.cg-koi svg {
  display: block;
  will-change: transform;
}
/* Koi 1: Sine-wave swimming path */
.cg-koi-1 {
  width: 70px;
  top: 35%;
  left: -90px;
  animation: cg-koi-swim-1 18s linear infinite;
  opacity: 0.85;
}
.cg-koi-1 svg { animation: cg-koi-wave 2.5s ease-in-out infinite; }
/* Koi 2: Deeper sine wave path */
.cg-koi-2 {
  width: 55px;
  top: 65%;
  left: -70px;
  animation: cg-koi-swim-2 24s linear -6s infinite;
  opacity: 0.7;
}
.cg-koi-2 svg { animation: cg-koi-wave 3s ease-in-out -1s infinite; }
/* Koi 3: Reverse direction, higher */
.cg-koi-3 {
  width: 60px;
  top: 20%;
  right: -80px;
  animation: cg-koi-swim-3 20s linear -4s infinite;
  opacity: 0.75;
}
.cg-koi-3 svg { animation: cg-koi-wave 2.8s ease-in-out -0.5s infinite; }
/* Sine-wave swimming (unique — hero has translateX only) */
@keyframes cg-koi-swim-1 {
  0%   { transform: translateX(0) translateY(0); }
  12%  { transform: translateX(12vw) translateY(-30px); }
  25%  { transform: translateX(25vw) translateY(0); }
  37%  { transform: translateX(37vw) translateY(25px); }
  50%  { transform: translateX(50vw) translateY(0); }
  62%  { transform: translateX(62vw) translateY(-20px); }
  75%  { transform: translateX(75vw) translateY(0); }
  87%  { transform: translateX(87vw) translateY(15px); }
  100% { transform: translateX(calc(100vw + 100px)) translateY(0); }
}
@keyframes cg-koi-swim-2 {
  0%   { transform: translateX(0) translateY(0); }
  15%  { transform: translateX(15vw) translateY(35px); }
  30%  { transform: translateX(30vw) translateY(0); }
  45%  { transform: translateX(45vw) translateY(-25px); }
  60%  { transform: translateX(60vw) translateY(0); }
  75%  { transform: translateX(75vw) translateY(20px); }
  100% { transform: translateX(calc(100vw + 80px)) translateY(0); }
}
@keyframes cg-koi-swim-3 {
  0%   { transform: translateX(0) translateY(0); }
  14%  { transform: translateX(-14vw) translateY(-20px); }
  28%  { transform: translateX(-28vw) translateY(0); }
  42%  { transform: translateX(-42vw) translateY(30px); }
  56%  { transform: translateX(-56vw) translateY(0); }
  70%  { transform: translateX(-70vw) translateY(-15px); }
  85%  { transform: translateX(-85vw) translateY(0); }
  100% { transform: translateX(calc(-100vw - 100px)) translateY(10px); }
}
@keyframes cg-koi-wave {
  0%, 100% { transform: translateY(0) rotate(0deg) scaleX(1); }
  25%      { transform: translateY(-5px) rotate(3deg) scaleX(0.97); }
  50%      { transform: translateY(0) rotate(0deg) scaleX(1); }
  75%      { transform: translateY(5px) rotate(-3deg) scaleX(0.97); }
}

/* ── Coral Fan Anemones with Glowing Tips (unique — hero uses simple strands) ── */
.cg-coral-reef {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.cg-coral {
  position: absolute;
  bottom: 0;
}
.cg-coral svg { display: block; }
.cg-coral-a { left: 3%; }
.cg-coral-b { left: 22%; }
.cg-coral-c { left: 45%; }
.cg-coral-d { right: 20%; }
.cg-coral-e { right: 3%; }
.cg-branch {
  will-change: transform;
  transform-origin: bottom center;
}
.cg-branch-1 { animation: cg-coral-sway 5s ease-in-out infinite; }
.cg-branch-2 { animation: cg-coral-sway 6.5s ease-in-out -1.5s infinite; }
.cg-branch-3 { animation: cg-coral-sway 4.5s ease-in-out -0.8s infinite; }
.cg-branch-4 { animation: cg-coral-sway 5.8s ease-in-out -2.2s infinite; }
/* Unique sway: more organic with slight scale */
@keyframes cg-coral-sway {
  0%, 100% { transform: rotate(0deg) scaleY(1); }
  20%      { transform: rotate(5deg) scaleY(1.02); }
  50%      { transform: rotate(-4deg) scaleY(0.98); }
  80%      { transform: rotate(3deg) scaleY(1.01); }
}
/* Bioluminescent tips */
.cg-glow-tip {
  animation: cg-tip-glow 3s ease-in-out var(--tgd, 0s) infinite;
  will-change: opacity;
}
@keyframes cg-tip-glow {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* ── Aurora Wave Bands (unique — hero uses simple light rays) ── */
.cg-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cg-aurora-band {
  position: absolute;
  width: 200%;
  left: -50%;
  height: 80px;
  will-change: transform, opacity;
  border-radius: 50%;
  /* filter: blur(30px); -- removed for GPU efficiency */
}
.cg-aurora-1 {
  top: 8%;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.06), rgba(56,189,248,0.08), rgba(59,130,246,0.05), transparent);
  animation: cg-aurora-wave 14s ease-in-out infinite;
}
.cg-aurora-2 {
  top: 55%;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.05), rgba(34,211,238,0.07), rgba(59,130,246,0.04), transparent);
  animation: cg-aurora-wave 18s ease-in-out -7s infinite;
}
.cg-aurora-3 {
  bottom: 15%;
  background: linear-gradient(90deg, transparent, rgba(30,64,175,0.04), rgba(59,130,246,0.06), rgba(6,182,212,0.04), transparent);
  animation: cg-aurora-wave 16s ease-in-out -4s infinite reverse;
}
@keyframes cg-aurora-wave {
  0%, 100% { transform: translateX(-10%) scaleY(1); opacity: 0.4; }
  33%      { transform: translateX(5%) scaleY(1.3); opacity: 0.8; }
  66%      { transform: translateX(-5%) scaleY(0.8); opacity: 0.5; }
}

/* ── Luminous Spores (unique — hero uses simple bubbles) ── */
.cg-spores {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.cg-spore {
  position: absolute;
  bottom: -10px;
  width: var(--sp, 5px);
  height: var(--sp, 5px);
  border-radius: 50%;
  will-change: transform, opacity;
  animation: cg-spore-float var(--spd, 15s) ease-in-out var(--spdel, 0s) infinite;
}
/* Spore glow halo */
.cg-spore::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--spc, rgba(147,197,253,0.3)) 0%, transparent 70%);
}
@keyframes cg-spore-float {
  0%   { transform: translateY(0) translateX(0) scale(0.3); opacity: 0; }
  5%   { opacity: 0.8; }
  20%  { transform: translateY(-15vh) translateX(15px) scale(0.7); opacity: 0.9; }
  40%  { transform: translateY(-35vh) translateX(-10px) scale(1); opacity: 0.6; }
  60%  { transform: translateY(-55vh) translateX(20px) scale(0.9); opacity: 0.7; }
  80%  { transform: translateY(-80vh) translateX(-5px) scale(0.6); opacity: 0.4; }
  100% { transform: translateY(-110vh) translateX(10px) scale(0.3); opacity: 0; }
}

/* ── Hex Pattern Grid (unique — hero uses dot grid) ── */
.ct-dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle, rgba(59,130,246,0.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px;
  background-position: 0 0, 20px 20px;
  animation: cg-hex-drift 30s linear infinite;
}
@keyframes cg-hex-drift {
  0%   { transform: translateY(0) translateX(0); }
  100% { transform: translateY(40px) translateX(20px); }
}

/* ── Override text colors for dark bg ── */
.ct-form-section .ct-overline { color: #60a5fa; }
.ct-form-section .ct-overline::before { background: linear-gradient(90deg, #60a5fa, #60a5fa); width: 24px; }
.ct-form-section .ct-section-title { color: #fff; }
.ct-form-section .ct-accent { color: #38bdf8; background: linear-gradient(135deg, #38bdf8, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ct-form-section .ct-section-sub { color: rgba(255,255,255,0.5); }
.ct-form-section .ct-trust-line { color: rgba(255,255,255,0.4); }
.ct-form-section .ct-trust-line strong { color: #60a5fa; }

/* ── Glassmorphism Form Card (unique tint) ── */
.ct-form-section .ct-form-card {
  background: rgba(15,10,50,0.5);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(59,130,246,0.12);
  box-shadow:
    0 12px 80px rgba(0,0,0,0.4),
    0 1px 0 rgba(59,130,246,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 0 60px rgba(56,189,248,0.03);
  border-radius: 28px;
}
.ct-form-section .ct-form-card::before {
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), rgba(56,189,248,0.5), rgba(59,130,246,0.4), rgba(6,182,212,0.3), transparent);
  height: 2px;
}
.ct-form-section .ct-step-label { color: rgba(255,255,255,0.4); }
.ct-form-section .ct-step.active .ct-step-label { color: #fff; }
.ct-form-section .ct-step-num {
  background: rgba(59,130,246,0.1);
  color: #60a5fa;
  border-color: rgba(59,130,246,0.2);
}
.ct-form-section .ct-step.active .ct-step-num {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 2px 16px rgba(37,99,235,0.35);
}
.ct-form-section .ct-step.done .ct-step-num {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  border-color: #10b981;
}
.ct-form-section .ct-step-line { background: rgba(255,255,255,0.06); }
.ct-form-section .ct-step-line-fill { background: linear-gradient(90deg, #2563eb, #38bdf8); }
.ct-form-section .ct-float-group input,
.ct-form-section .ct-float-group select,
.ct-form-section .ct-float-group textarea {
  background: rgba(255,255,255,0.04);
  border-color: rgba(59,130,246,0.12);
  color: #e2e8f0;
}
.ct-form-section .ct-float-group input:focus,
.ct-form-section .ct-float-group select:focus,
.ct-form-section .ct-float-group textarea:focus {
  background: rgba(255,255,255,0.07);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
}
.ct-form-section .ct-float-group label { color: rgba(255,255,255,0.35); }
.ct-form-section .ct-float-group input:focus ~ label,
.ct-form-section .ct-float-group input:not(:placeholder-shown) ~ label,
.ct-form-section .ct-float-group select:focus ~ label,
.ct-form-section .ct-float-group select.has-value ~ label,
.ct-form-section .ct-float-group textarea:focus ~ label,
.ct-form-section .ct-float-group textarea:not(:placeholder-shown) ~ label {
  color: #60a5fa;
}
.ct-form-section .ct-review-item {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.06);
}
.ct-form-section .ct-review-title { color: #fff; }
.ct-form-section .ct-review-value { color: rgba(255,255,255,0.75); }
.ct-form-section .ct-btn-next,
.ct-form-section .ct-btn-send {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}
.ct-form-section .ct-btn-next:hover,
.ct-form-section .ct-btn-send:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 8px 30px rgba(37,99,235,0.3);
}
.ct-form-section .ct-btn-back {
  border-color: rgba(59,130,246,0.15);
  color: rgba(255,255,255,0.5);
}
.ct-form-section .ct-btn-back:hover {
  border-color: rgba(59,130,246,0.35);
  color: #60a5fa;
}
.ct-form-header {
  text-align: center;
  margin-bottom: 36px;
}
.ct-trust-line {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.ct-trust-line strong {
  color: var(--blue-600);
  font-weight: 700;
}
.ct-form-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow:
    0 4px 40px rgba(59,130,246,0.08),
    0 1px 0 rgba(59,130,246,0.06),
    0 20px 60px rgba(0,0,0,0.04);
  border: 1px solid rgba(59,130,246,0.08);
  position: relative;
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.ct-form-card:hover {
  box-shadow:
    0 8px 60px rgba(59,130,246,0.12),
    0 1px 0 rgba(59,130,246,0.08),
    0 28px 80px rgba(0,0,0,0.06);
}
.ct-form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-400), var(--blue-600), var(--blue-400), transparent);
  border-radius: 0 0 4px 4px;
}

/* Stepper */
.ct-stepper {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  gap: 0;
}
.ct-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
.ct-step.active, .ct-step.done { opacity: 1; }
.ct-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: var(--blue-50);
  color: var(--blue-500);
  border: 2px solid var(--blue-200);
  transition: all 0.4s ease;
}
.ct-step.active .ct-step-num {
  background: var(--blue-500);
  color: #fff;
  border-color: var(--blue-500);
  box-shadow: 0 2px 12px rgba(59,130,246,0.3);
}
.ct-step.done .ct-step-num {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
}
.ct-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.ct-step.active .ct-step-label { color: var(--text-dark); }
.ct-step-line {
  flex: 1;
  height: 2px;
  background: var(--blue-100);
  margin: 0 12px;
  border-radius: 2px;
  overflow: hidden;
}
.ct-step-line-fill {
  width: 0%;
  height: 100%;
  background: var(--blue-500);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* Form Steps */
.ct-form-step { display: none; }
.ct-form-step.active { display: block; animation: ct-step-in 0.4s ease; }
@keyframes ct-step-in {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Floating label inputs */
.ct-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.ct-float-group {
  position: relative;
}
.ct-float-group input,
.ct-float-group select,
.ct-float-group textarea {
  width: 100%;
  padding: 18px 16px 8px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.ct-float-group input:focus,
.ct-float-group select:focus,
.ct-float-group textarea:focus {
  border-color: var(--blue-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.08);
}
.ct-float-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-light);
  pointer-events: none;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  font-weight: 500;
}
.ct-float-group input:focus ~ label,
.ct-float-group input:not(:placeholder-shown) ~ label,
.ct-float-group input:valid:not([value=""]) ~ label,
.ct-float-group select:focus ~ label,
.ct-float-group select:valid:not([value=""]) ~ label {
  top: 10px;
  transform: translateY(0);
  font-size: 11px;
  color: var(--blue-500);
  font-weight: 600;
}
.ct-textarea-group { margin-bottom: 20px; }
.ct-textarea-group label {
  top: 18px;
  transform: none;
}
.ct-textarea-group textarea:focus ~ label,
.ct-textarea-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  font-size: 11px;
  color: var(--blue-500);
  font-weight: 600;
}
.ct-float-group textarea {
  resize: vertical;
  min-height: 120px;
}
.ct-select-group select { cursor: pointer; }
.ct-select-group label { pointer-events: none; }
.ct-select-group select:focus ~ label,
.ct-select-group select.has-value ~ label {
  top: 10px;
  transform: translateY(0);
  font-size: 11px;
  color: var(--blue-500);
  font-weight: 600;
}

/* Form actions */
.ct-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.ct-btn-next, .ct-btn-send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue-600);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.35s ease;
}
.ct-btn-next:hover, .ct-btn-send:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.25);
}
.ct-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.35s ease;
}
.ct-btn-back:hover {
  border-color: var(--blue-300);
  color: var(--blue-600);
}

/* Send button states */
.ct-btn-send { position: relative; overflow: hidden; }
.ct-btn-send-done { display: none; align-items: center; gap: 6px; }
.ct-btn-send.sent .ct-btn-send-text,
.ct-btn-send.sent .ct-btn-send-icon { display: none; }
.ct-btn-send.sent .ct-btn-send-done { display: inline-flex; }
.ct-btn-send.sent {
  background: #10b981;
  pointer-events: none;
}

/* Review */
.ct-review { margin-bottom: 8px; }
.ct-review-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.ct-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-review-item {
  background: var(--blue-50);
  border-radius: 10px;
  padding: 14px 16px;
}
.ct-review-full { grid-column: 1 / -1; }
.ct-review-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-400);
  margin-bottom: 4px;
}
.ct-review-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  word-break: break-word;
}


/* ═══════════════════════════════════════════════════
   ══ 3. DIRECT CONTACT CARDS — DEEP OCEAN DEPTHS ══
   ══ GPU-Friendly: transform + opacity only        ══
   ═══════════════════════════════════════════════════ */
.ct-direct {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f7ff 0%, #bae6fd 60%, #f0f7ff 100%);
}

/* ── Ocean Background System ── */
.ctd-ocean-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 80%, transparent 100%);
  mask-image: linear-gradient(180deg, black 0%, black 80%, transparent 100%);
}
.ctd-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(59,130,246,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(37,99,235,0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(96,165,250,0.15) 0%, transparent 60%);
}
.ctd-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
}

/* ── Caustic Light Patterns ── */
.ctd-caustics {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.ctd-caustic {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  /* filter: blur(50px); -- removed for GPU efficiency */
}
.ctd-caustic-1 {
  width: 500px; height: 500px;
  top: -15%; left: -10%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 70%);
  animation: ctd-caustic-1 32.4s ease-in-out infinite;
}
.ctd-caustic-2 {
  width: 400px; height: 400px;
  bottom: -10%; right: -8%;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  animation: ctd-caustic-2 39.6s ease-in-out -14.4s infinite;
}
.ctd-caustic-3 {
  width: 350px; height: 350px;
  top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
  animation: ctd-caustic-3 28.8s ease-in-out -9s infinite;
}
@keyframes ctd-caustic-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  33%      { transform: translate(15px, 10px) scale(1.08); opacity: 0.35; }
  66%      { transform: translate(-8px, 5px) scale(0.96); opacity: 0.25; }
}
@keyframes ctd-caustic-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.18; }
  50%      { transform: translate(-12px, -8px) scale(1.06); opacity: 0.32; }
}
@keyframes ctd-caustic-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  40%      { transform: translate(8px, -6px) scale(1.1); opacity: 0.28; }
  80%      { transform: translate(-5px, 10px) scale(0.92); opacity: 0.2; }
}

/* ── Aurora Wave Bands ── */
.ctd-aurora-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ctd-aurora {
  position: absolute;
  width: 200%;
  left: -50%;
  height: 60px;
  border-radius: 50%;
  /* filter: blur(25px); -- removed for GPU efficiency */
  will-change: transform, opacity;
}
.ctd-aurora-1 {
  top: 12%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), rgba(255,255,255,0.25), rgba(255,255,255,0.15), transparent);
  animation: ctd-aurora-wave 28.8s ease-in-out infinite;
}
.ctd-aurora-2 {
  top: 52%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), rgba(255,255,255,0.2), rgba(255,255,255,0.1), transparent);
  animation: ctd-aurora-wave 36s ease-in-out -14.4s infinite;
}
.ctd-aurora-3 {
  bottom: 18%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), rgba(255,255,255,0.2), rgba(255,255,255,0.1), transparent);
  animation: ctd-aurora-wave 32.4s ease-in-out -7.2s infinite reverse;
}
@keyframes ctd-aurora-wave {
  0%, 100% { transform: translateX(-3%) scaleY(1); opacity: 0.25; }
  33%      { transform: translateX(2%) scaleY(1.15); opacity: 0.45; }
  66%      { transform: translateX(-2%) scaleY(0.85); opacity: 0.3; }
}

/* ── Ocean Current Lines ── */
.ctd-currents {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ctd-current {
  position: absolute;
  height: 1px;
  border-radius: 1px;
  will-change: transform, opacity;
}
.ctd-current-1 {
  top: 18%; left: -10%; width: 35%;
  background: linear-gradient(90deg, transparent, rgba(147,197,253,0.08), transparent);
  animation: ctd-current-flow 21.6s ease-in-out infinite;
}
.ctd-current-2 {
  top: 38%; right: -10%; width: 28%;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.06), transparent);
  animation: ctd-current-flow 27s ease-in-out -9s infinite reverse;
}
.ctd-current-3 {
  top: 55%; left: 20%; width: 40%;
  background: linear-gradient(90deg, transparent, rgba(147,197,253,0.05), transparent);
  animation: ctd-current-flow 32.4s ease-in-out -5.4s infinite;
}
.ctd-current-4 {
  top: 72%; right: 5%; width: 30%;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.07), transparent);
  animation: ctd-current-flow 25.2s ease-in-out -16.2s infinite reverse;
}
.ctd-current-5 {
  top: 85%; left: -5%; width: 25%;
  background: linear-gradient(90deg, transparent, rgba(147,197,253,0.04), transparent);
  animation: ctd-current-flow 36s ease-in-out -12.6s infinite;
}
@keyframes ctd-current-flow {
  0%   { transform: translateX(-100%); opacity: 0; }
  10%  { opacity: 0.4; }
  50%  { opacity: 0.5; }
  90%  { opacity: 0.3; }
  100% { transform: translateX(200%); opacity: 0; }
}

/* ── Swimming Sea Turtles ── */
.ctd-turtle-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ctd-turtle {
  position: absolute;
  will-change: transform;
}
.ctd-turtle-svg {
  display: block;
  will-change: transform;
  filter: drop-shadow(0 0 12px rgba(59,130,246,0.3)) brightness(0.8) contrast(1.2);
}

/* Turtle 1: Large, majestic, slow glide right */
.ctd-turtle-1 {
  width: 130px;
  top: 30%;
  left: -160px;
  animation: ctd-turtle-swim-1 63s linear infinite;
  opacity: 0.85;
}
.ctd-turtle-1 .ctd-turtle-svg {
  animation: ctd-turtle-glide 6.3s ease-in-out infinite;
}
/* Turtle 2: Medium, swimming left */
.ctd-turtle-2 {
  width: 95px;
  top: 60%;
  right: -120px;
  animation: ctd-turtle-swim-2 50.4s linear -14.4s infinite;
  opacity: 0.7;
}
.ctd-turtle-2 .ctd-turtle-svg {
  animation: ctd-turtle-glide-left 5.4s ease-in-out -1.8s infinite;
}
/* Turtle 3: Small baby turtle, faster */
.ctd-turtle-3 {
  width: 65px;
  top: 18%;
  left: -80px;
  animation: ctd-turtle-swim-3 39.6s linear -9s infinite;
  opacity: 0.65;
}
.ctd-turtle-3 .ctd-turtle-svg {
  animation: ctd-turtle-glide 4.5s ease-in-out -0.9s infinite;
}

/* Turtle swim paths — sine wave trajectories */
@keyframes ctd-turtle-swim-1 {
  0%   { transform: translateX(0) translateY(0); }
  10%  { transform: translateX(10vw) translateY(-10px); }
  20%  { transform: translateX(20vw) translateY(3px); }
  30%  { transform: translateX(30vw) translateY(-12px); }
  40%  { transform: translateX(40vw) translateY(5px); }
  50%  { transform: translateX(50vw) translateY(-8px); }
  60%  { transform: translateX(60vw) translateY(4px); }
  70%  { transform: translateX(70vw) translateY(-10px); }
  80%  { transform: translateX(80vw) translateY(0); }
  90%  { transform: translateX(90vw) translateY(-6px); }
  100% { transform: translateX(calc(100vw + 180px)) translateY(3px); }
}
@keyframes ctd-turtle-swim-2 {
  0%   { transform: translateX(0) translateY(0); }
  12%  { transform: translateX(-12vw) translateY(8px); }
  25%  { transform: translateX(-25vw) translateY(-5px); }
  37%  { transform: translateX(-37vw) translateY(10px); }
  50%  { transform: translateX(-50vw) translateY(-3px); }
  62%  { transform: translateX(-62vw) translateY(6px); }
  75%  { transform: translateX(-75vw) translateY(-9px); }
  87%  { transform: translateX(-87vw) translateY(4px); }
  100% { transform: translateX(calc(-100vw - 140px)) translateY(-3px); }
}
@keyframes ctd-turtle-swim-3 {
  0%   { transform: translateX(0) translateY(0); }
  14%  { transform: translateX(14vw) translateY(-8px); }
  28%  { transform: translateX(28vw) translateY(4px); }
  42%  { transform: translateX(42vw) translateY(-11px); }
  56%  { transform: translateX(56vw) translateY(3px); }
  70%  { transform: translateX(70vw) translateY(-5px); }
  84%  { transform: translateX(84vw) translateY(6px); }
  100% { transform: translateX(calc(100vw + 100px)) translateY(-4px); }
}
/* Body glide — gentle bob + flipper motion */
@keyframes ctd-turtle-glide {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-2px) rotate(0.8deg); }
  50%      { transform: translateY(0) rotate(0deg); }
  75%      { transform: translateY(2px) rotate(-0.8deg); }
}
@keyframes ctd-turtle-glide-left {
  0%, 100% { transform: scaleX(-1) translateY(0) rotate(0deg); }
  25%      { transform: scaleX(-1) translateY(-2px) rotate(-0.8deg); }
  50%      { transform: scaleX(-1) translateY(0) rotate(0deg); }
  75%      { transform: scaleX(-1) translateY(2px) rotate(0.8deg); }
}

/* ── Bioluminescent Jellyfish ── */
.ctd-jelly-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ctd-jelly {
  position: absolute;
  will-change: transform;
}
.ctd-jelly svg {
  display: block;
  will-change: transform;
  filter: drop-shadow(0 0 10px rgba(59,130,246,0.4)) brightness(0.85);
}
.ctd-jelly-1 {
  width: 50px;
  top: 15%;
  left: 8%;
  animation: ctd-jelly-drift-1 36s ease-in-out infinite;
  opacity: 0.6;
}
.ctd-jelly-1 svg { animation: ctd-jelly-pulse 7.2s ease-in-out infinite; }
.ctd-jelly-2 {
  width: 38px;
  top: 50%;
  right: 12%;
  animation: ctd-jelly-drift-2 45s ease-in-out -18s infinite;
  opacity: 0.45;
}
.ctd-jelly-2 svg { animation: ctd-jelly-pulse 9s ease-in-out -3.6s infinite; }
.ctd-jelly-3 {
  width: 30px;
  top: 72%;
  left: 65%;
  animation: ctd-jelly-drift-3 32.4s ease-in-out -10.8s infinite;
  opacity: 0.5;
}
.ctd-jelly-3 svg { animation: ctd-jelly-pulse 6.3s ease-in-out -1.8s infinite; }

@keyframes ctd-jelly-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(8px, -12px); }
  50%      { transform: translate(-6px, -24px); }
  75%      { transform: translate(4px, -8px); }
}
@keyframes ctd-jelly-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  30%      { transform: translate(-10px, -16px); }
  60%      { transform: translate(6px, -6px); }
}
@keyframes ctd-jelly-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(7px, -10px); }
  66%      { transform: translate(-5px, -20px); }
}
@keyframes ctd-jelly-pulse {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50%      { transform: translateY(-2.5px) scaleY(0.95); }
}

/* ── Rising Bubbles ── */
.ctd-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ctd-bubble {
  position: absolute;
  bottom: -15px;
  width: var(--bs, 6px);
  height: var(--bs, 6px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  border: 1px solid rgba(59,130,246,0.25);
  will-change: transform, opacity;
  animation: ctd-bubble-rise 28.8s ease-in var(--bd, 0s) infinite;
}
@keyframes ctd-bubble-rise {
  0%   { transform: translateY(0) translateX(0) scale(0.4); opacity: 0; }
  8%   { opacity: 0.4; transform: translateY(-8vh) translateX(1px) scale(0.7); }
  30%  { opacity: 0.35; transform: translateY(-30vh) translateX(-2px) scale(0.9); }
  60%  { opacity: 0.3; transform: translateY(-60vh) translateX(3px) scale(1); }
  100% { transform: translateY(-110vh) translateX(-1px) scale(1.15); opacity: 0; }
}

/* ── Floating Plankton Particles ── */
.ctd-plankton {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ctd-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(30,64,175,0.4);
  border-radius: 50%;
  will-change: transform, opacity;
  animation: ctd-particle-drift 14.4s ease-in-out var(--pp, 0s) infinite;
  box-shadow: 0 0 6px rgba(59,130,246,0.3);
}
@keyframes ctd-particle-drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.15; }
  20%      { transform: translate(4px, -3px); opacity: 0.45; }
  40%      { transform: translate(-2px, -6px); opacity: 0.3; }
  60%      { transform: translate(5px, -1px); opacity: 0.5; }
  80%      { transform: translate(-3px, 2px); opacity: 0.25; }
}

/* ── Twinkling Deep Stars ── */
.ctd-deep-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.ctd-dstar {
  position: absolute;
  width: var(--ds, 2px);
  height: var(--ds, 2px);
  background: rgba(59,130,246,0.4);
  border-radius: 50%;
  will-change: transform, opacity;
  animation: ctd-star-twinkle 10.8s ease-in-out var(--dsd, 0s) infinite;
  box-shadow: 0 0 calc(var(--ds, 2px) * 2) rgba(59,130,246,0.3);
}
@keyframes ctd-star-twinkle {
  0%, 100% { opacity: 0.08; transform: scale(0.6); }
  25%      { opacity: 0.45; transform: scale(1.15); }
  50%      { opacity: 0.12; transform: scale(0.7); }
  75%      { opacity: 0.4; transform: scale(1.05); }
}

/* ── Coral Silhouettes ── */
.ctd-coral-silhouettes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ctd-coral-sil {
  position: absolute;
  bottom: 0;
  display: block;
}
.ctd-coral-sil path {
  will-change: transform;
  transform-origin: bottom center;
}
.ctd-coral-sil-1 {
  left: 3%;
  width: 100px;
  height: 80px;
  animation: ctd-coral-sway-1 10.8s ease-in-out infinite;
}
.ctd-coral-sil-2 {
  left: 55%;
  width: 85px;
  height: 70px;
  animation: ctd-coral-sway-2 12.6s ease-in-out -3.6s infinite;
}
.ctd-coral-sil-3 {
  right: 5%;
  width: 75px;
  height: 65px;
  animation: ctd-coral-sway-1 9.9s ease-in-out -1.8s infinite;
}
@keyframes ctd-coral-sway-1 {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(1deg); }
  75%      { transform: rotate(-1deg); }
}
@keyframes ctd-coral-sway-2 {
  0%, 100% { transform: rotate(0deg); }
  30%      { transform: rotate(-1.5deg); }
  70%      { transform: rotate(1.5deg); }
}
/* ── Extremely Beautiful Hero Bubbles ── */
.ctd-hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.75;
}
.ctd-hero-bubble {
  position: absolute;
  width: var(--hbs, 80px);
  height: var(--hbs, 80px);
  bottom: -150px;
  filter: drop-shadow(0 15px 25px rgba(59,130,246,0.4));
  animation: ctd-hero-rise 39.6s ease-in-out var(--hbd, 0s) infinite;
  will-change: transform, opacity;
}
.ctd-hb-1 { left: 15%; --hbs: 110px; --hbd: 0s; }
.ctd-hb-2 { left: 45%; --hbs: 160px; --hbd: -14.4s; }
.ctd-hb-3 { left: 85%; --hbs: 80px; --hbd: -25.2s; }

@keyframes ctd-hero-rise {
  0% { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
  10% { opacity: 0.45; }
  50% { transform: translateY(-50vh) translateX(10px) scale(1); opacity: 0.4; }
  90% { opacity: 0.45; }
  100% { transform: translateY(-110vh) translateX(-7px) scale(1.1); opacity: 0; }
}

/* ── Big Beautiful Anemone ── */
.ctd-big-anemone {
  position: absolute;
  bottom: -30px;
  right: 12%;
  width: 320px;
  height: 320px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(59,130,246,0.4));
  opacity: 0.75;
}
.ctd-tentacle-group {
  transform-origin: 100px 200px;
  will-change: transform;
}
.ctd-tg-1 { animation: ctd-anemone-sway-1 14.4s ease-in-out infinite; }
.ctd-tg-2 { animation: ctd-anemone-sway-2 10.8s ease-in-out infinite; }
.ctd-tg-3 { animation: ctd-anemone-sway-1 12.6s ease-in-out -5.4s infinite reverse; }

@keyframes ctd-anemone-sway-1 {
  0%, 100% { transform: rotate(-1.2deg); }
  50%      { transform: rotate(1.2deg); }
}
@keyframes ctd-anemone-sway-2 {
  0%, 100% { transform: rotate(1deg); }
  45%      { transform: rotate(-1deg); }
}

/* ── Light Rays from Above ── */
.ctd-lightrays {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ctd-ray {
  position: absolute;
  top: -40%;
  width: 100px;
  height: 180%;
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.3) 40%, transparent 80%);
  transform-origin: top center;
  will-change: opacity;
}
.ctd-ray-1 {
  left: 10%;
  transform: rotate(12deg);
  animation: ctd-ray-breathe 16.2s ease-in-out infinite;
}
.ctd-ray-2 {
  left: 35%;
  width: 130px;
  transform: rotate(-6deg);
  animation: ctd-ray-breathe 19.8s ease-in-out -7.2s infinite;
}
.ctd-ray-3 {
  right: 25%;
  transform: rotate(-15deg);
  animation: ctd-ray-breathe 18s ease-in-out -12.6s infinite;
}
.ctd-ray-4 {
  right: 8%;
  width: 80px;
  transform: rotate(8deg);
  animation: ctd-ray-breathe 14.4s ease-in-out -3.6s infinite;
}
@keyframes ctd-ray-breathe {
  0%, 100% { opacity: 0.15; }
  50%      { opacity: 0.35; }
}

/* Removed dark-theme overrides here so it aligns perfectly with the standard light aesthetic */
.ct-direct-header {
  text-align: center;
  margin-bottom: 48px;
}
.ct-cards-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ct-contact-card {
  position: relative;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 44px 32px 40px;
  text-align: center;
  border: 1px solid rgba(59,130,246,0.08);
  box-shadow:
    0 4px 24px rgba(59,130,246,0.06),
    0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease, border-color 0.4s ease;
  will-change: transform;
  overflow: hidden;
}
.ct-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-300), var(--blue-500), var(--blue-600));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ct-contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(59,130,246,0.03) 0%, transparent 50%, rgba(59,130,246,0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.ct-contact-card:hover::before { opacity: 1; }
.ct-contact-card:hover::after { opacity: 1; }
.ct-contact-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59,130,246,0.15);
  box-shadow:
    0 20px 60px rgba(59,130,246,0.14),
    0 8px 24px rgba(0,0,0,0.06);
}
.ct-card-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
  transform: translate(-50%, -80%) scale(0);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.ct-contact-card:hover .ct-card-pulse {
  transform: translate(-50%, -80%) scale(5);
}
.ct-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(59,130,246,0.1);
}
.ct-contact-card:hover .ct-card-icon {
  transform: scale(1.12) rotate(-4deg);
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  box-shadow: 0 6px 20px rgba(59,130,246,0.18);
}
.ct-contact-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.ct-contact-card:hover h3 {
  color: var(--blue-600);
}
.ct-card-value {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.5;
}
.ct-card-value a {
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.ct-card-value a:hover { color: var(--blue-800); }
.ct-card-hint {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}
.ct-card-hint a {
  color: var(--blue-500);
  font-weight: 600;
  text-decoration: none;
}
.ct-card-hint a:hover { text-decoration: underline; }

/* WhatsApp card accent */
.ct-card-icon-wa {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #16a34a;
}
.ct-contact-card-wa:hover .ct-card-icon-wa {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}
.ct-contact-card-wa::before {
  background: linear-gradient(90deg, #22c55e, #16a34a, #15803d) !important;
}
.ct-contact-card-wa .ct-card-value a {
  color: #16a34a;
}
.ct-contact-card-wa .ct-card-value a:hover {
  color: #15803d;
}

/* Tablet: 2-column card grid */
@media (max-width: 1024px) {
  .ct-cards-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}


/* ═══════════════════════════════════════════════════
   ══ 4. CAMPUS MAP — FIND US ═════════════════════
   ═══════════════════════════════════════════════════ */
.ct-map-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #f0f7ff;
}

/* Seamless Continuous Fade Anchors */
.ct-map-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 250px;
  background: linear-gradient(0deg, var(--bg-base) 0%, rgba(240,247,255,0.8) 50%, transparent 100%);
  z-index: 12;
  pointer-events: none;
}

/* ── NAVIGATIONAL BACKGROUND SYSTEM ── */
.ct-nav-bg-system {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* 1. Dawn Glow - Atmospheric Dual-Tone Lighting */
.ct-dawn-orb {
  position: absolute;
  border-radius: 50%;
  /* filter: blur(80px); -- removed for GPU efficiency */
  animation: ct-dawn-pulse 8s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform, opacity;
}
.ct-dawn-gold {
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(253,224,71,0.06) 0%, transparent 60%);
  animation-delay: 0s;
  mix-blend-mode: multiply;
}
.ct-dawn-cyan {
  bottom: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(6,182,212,0.05) 0%, transparent 60%);
  animation-delay: -3s;
  mix-blend-mode: color-burn;
}
@keyframes ct-dawn-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* 1A. True Fluffy Cumulus Clouds - Colossal Scale */
/* Foreground Massive Clouds - High Definition */
.ct-fluffy-cloud {
  position: absolute;
  width: 400px;
  height: 120px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(191, 219, 254, 0.9) 100%); /* Volumetric crisp shading */
  border-radius: 100px;
  filter: drop-shadow(0 20px 20px rgba(59,130,246,0.3)); /* Removed blur filter for GPU optimization */
  transform: translateX(-100vw) scale(var(--cloud-scale, 1));
  animation: ct-cloud-drift linear infinite;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.ct-fluffy-cloud::before,
.ct-fluffy-cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.ct-fluffy-cloud::before { width: 180px; height: 180px; top: -80px; left: 40px; }
.ct-fluffy-cloud::after { width: 240px; height: 240px; top: -120px; right: 50px; }

.ct-fc-1 { top: 5%; animation-duration: 108s; --cloud-scale: 1.5; }
.ct-fc-2 { top: 40%; animation-duration: 81s; animation-delay: -27s; --cloud-scale: 1.2; }
.ct-fc-3 { top: 70%; animation-duration: 117s; animation-delay: -54s; --cloud-scale: 2.2; }
.ct-fc-4 { top: 90%; animation-duration: 99s; animation-delay: -18s; --cloud-scale: 1.6; }
.ct-fc-5 { top: 25%; animation-duration: 126s; animation-delay: -72s; --cloud-scale: 1.4; }
.ct-fc-6 { top: 15%; animation-duration: 90s; animation-delay: -45s; --cloud-scale: 1.1; }
.ct-fc-7 { top: 60%; animation-duration: 144s; animation-delay: -117s; --cloud-scale: 2.0; }
.ct-fc-8 { top: -10%; animation-duration: 135s; animation-delay: -54s; --cloud-scale: 1.8; }
.ct-fc-9 { top: 85%; animation-duration: 72s; animation-delay: -9s; --cloud-scale: 1.3; }
.ct-fc-10 { top: 55%; animation-duration: 111.6s; animation-delay: -39.6s; --cloud-scale: 1.7; }
.ct-fc-11 { top: 10%; animation-duration: 153s; animation-delay: -90s; --cloud-scale: 2.5; }
.ct-fc-12 { top: -20%; animation-duration: 162s; animation-delay: -18s; --cloud-scale: 1.9; }

/* Background Giant Clouds - Medium Definition */
.ct-bg-fluffy {
  position: absolute;
  width: 700px;
  height: 200px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(219, 234, 254, 0.7) 100%);
  border-radius: 200px;
  filter: drop-shadow(0 30px 40px rgba(59,130,246,0.2)) blur(4px); /* Toned down blur radius */
  transform: translateX(-100vw) scale(var(--cloud-scale, 1));
  animation: ct-cloud-drift linear infinite;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.ct-bg-fluffy::before,
.ct-bg-fluffy::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.ct-bg-fluffy::before { width: 350px; height: 350px; top: -150px; left: 80px; }
.ct-bg-fluffy::after { width: 450px; height: 450px; top: -200px; right: 80px; }

.ct-bg-fc-1 { top: -15%; animation-duration: 180s; --cloud-scale: 1.5; }
.ct-bg-fc-2 { top: 40%; animation-duration: 216s; animation-delay: -72s; --cloud-scale: 2.5; }
.ct-bg-fc-3 { top: 75%; animation-duration: 198s; animation-delay: -36s; --cloud-scale: 1.8; }
.ct-bg-fc-4 { top: 20%; animation-duration: 234s; animation-delay: -108s; --cloud-scale: 2.0; }
.ct-bg-fc-5 { top: -5%; animation-duration: 252s; animation-delay: -144s; --cloud-scale: 3.0; }
.ct-bg-fc-6 { top: 60%; animation-duration: 207s; animation-delay: -18s; --cloud-scale: 1.7; }
.ct-bg-fc-7 { top: 85%; animation-duration: 288s; animation-delay: -180s; --cloud-scale: 2.8; }
.ct-bg-fc-8 { top: 5%; animation-duration: 225s; animation-delay: -90s; --cloud-scale: 2.2; }

/* General Atmospheric Haze */
.ct-nav-cloud {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
  transform: translateX(-100vw) scale(var(--cloud-scale, 1));
  animation: ct-cloud-drift linear infinite;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.ct-cloud-1 { top: -10%; width: 70vw; height: 40vw; animation-duration: 108s; opacity: 0.25; --cloud-scale: 1; }
.ct-cloud-2 { top: 50%; width: 80vw; height: 50vw; animation-duration: 144s; animation-delay: -36s; opacity: 0.2; --cloud-scale: 1; }
.ct-cloud-3 { bottom: -10%; width: 60vw; height: 40vw; animation-duration: 126s; animation-delay: -18s; opacity: 0.25; --cloud-scale: 1; }

@keyframes ct-cloud-drift {
  0% { transform: translateX(-100vw) scale(var(--cloud-scale, 1)); }
  100% { transform: translateX(150vw) scale(var(--cloud-scale, 1)); }
}

/* 2. Map Blueprint Coordinate Grid - Fast 3D Panning */
.ct-nav-grid {
  position: absolute;
  inset: -50%;
  background-image: 
    linear-gradient(rgba(59,130,246, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(1000px) rotateX(60deg) translateY(-100px) translateZ(-200px);
  animation: ct-grid-pan 14.4s linear infinite; /* Toned down speed (8s -> 14.4s) */
  opacity: 0.35; /* Subtler grid opacity */
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,1) 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,1) 0%, transparent 65%);
}
@keyframes ct-grid-pan {
  0% { transform: perspective(1000px) rotateX(60deg) translateY(0) translateZ(-200px); }
  100% { transform: perspective(1000px) rotateX(60deg) translateY(80px) translateZ(-200px); }
}

/* 3. Glowing Mechanical Astrolabe Compass - Fast Rotation */
.ct-nav-compass {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  opacity: 0.45; /* Softened astrolabe opacity */
}
.ct-compass-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(59,130,246,0.15);
  box-shadow: inset 0 0 20px rgba(59,130,246,0.05), 0 0 20px rgba(59,130,246,0.05);
}
.ct-ring-1 {
  inset: 10px;
  border: 2px solid rgba(59,130,246,0.1);
  animation: ct-spin-right 36s linear infinite; /* Slowed down from 20s */
}
.ct-ring-2 {
  inset: 60px;
  border: 1px dotted rgba(59,130,246,0.3);
  animation: ct-spin-left 27s linear infinite; /* Slowed down from 15s */
}
.ct-ring-3 {
  inset: 120px;
  border: 4px double rgba(59,130,246,0.05);
  animation: ct-spin-right 54s linear infinite; /* Slowed down from 30s */
}
.ct-compass-star {
  position: absolute;
  inset: 150px;
  animation: ct-spin-left 72s cubic-bezier(0.4, 0, 0.2, 1) infinite; /* Slowed down from 40s */
}
@keyframes ct-spin-right { 100% { transform: rotate(360deg); } }
@keyframes ct-spin-left { 100% { transform: rotate(-360deg); } }

/* Holographic Floating Dust - High Velocity */
.ct-floating-dust {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(253,224,71,0.6);
  box-shadow: 0 0 10px rgba(253,224,71,1);
  filter: blur(1px);
  animation: ct-float-dust 10.8s linear infinite; /* Slowed down from 6s */
}
.ct-dust-1 { top: 20%; left: 10%; animation-duration: 14.4s; }
.ct-dust-2 { top: 80%; left: 40%; animation-duration: 9s; background: rgba(59,130,246,0.8); box-shadow: 0 0 10px rgba(59,130,246,1); }
.ct-dust-3 { top: 40%; right: 15%; animation-duration: 12.6s; }
.ct-dust-4 { top: 10%; right: 40%; animation-duration: 16.2s; background: rgba(59,130,246,0.8); box-shadow: 0 0 10px rgba(59,130,246,1); }
.ct-dust-5 { top: 60%; left: 20%; animation-duration: 10.8s; }
.ct-dust-6 { top: 30%; left: 80%; animation-duration: 19.8s; }
.ct-dust-7 { top: 90%; right: 10%; animation-duration: 9s; }
@keyframes ct-float-dust {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { transform: translateY(-70px) translateX(40px); opacity: 0; } /* Reduced translation distances */
}

/* Navigational Heads Up Display (HUD) */
.ct-nav-hud {
  position: absolute;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(59,130,246,0.7);
  z-index: 10;
  pointer-events: none;
}
.ct-hud-top-left { top: 40px; left: 40px; }
.ct-hud-bottom-right { bottom: 40px; right: 40px; text-align: right; }

/* 4. Luminous Tracking Waypoints */
.ct-waypoint {
  position: absolute;
  width: 6px;
  height: 6px;
}
.ct-wp-1 { top: 25%; left: 12%; }
.ct-wp-2 { top: 80%; right: 20%; }
.ct-wp-3 { top: 35%; right: 5%; }

.ct-wp-core {
  position: absolute;
  inset: 0;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,1);
  z-index: 2;
}
.ct-wp-glow {
  position: absolute;
  inset: -4px;
  background: rgba(59,130,246,0.5);
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
}
.ct-wp-sonar {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(59,130,246,0.5);
  border-radius: 50%;
  animation: ct-waypoint-sonar 3s cubic-bezier(0.22,1,0.36,1) infinite;
}
.ct-wp-1 .ct-wp-sonar { animation-delay: 0s; }
.ct-wp-2 .ct-wp-sonar { animation-delay: 1s; }
.ct-wp-3 .ct-wp-sonar { animation-delay: 2s; }

@keyframes ct-waypoint-sonar {
  0% { transform: scale(0.1); opacity: 1; border-width: 2px; }
  100% { transform: scale(1); opacity: 0; border-width: 0px; }
}

.ct-map-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.ct-map-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* ── Extremely Elegant Animated Map Frame ── */
.ct-map-showcase {
  position: relative;
  border-radius: 36px;
  z-index: 1;
  animation: ct-map-float 8s ease-in-out infinite;
  display: block;
}
@keyframes ct-map-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Beautiful breathing ambient background glow */
.ct-map-showcase::before {
  content: '';
  position: absolute;
  inset: -10px;
  top: 10%;
  background: radial-gradient(ellipse at 50% 100%, rgba(59,130,246,0.2) 0%, transparent 70%);
  z-index: -1;
  opacity: 0.8;
  animation: ct-glow-breathe 4s ease-in-out infinite alternate;
  border-radius: 50%;
}
@keyframes ct-glow-breathe {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; }
}

.ct-map-frame {
  position: relative;
  border-radius: 36px;
  min-height: 480px;
  padding: 16px; /* Ultra premium thick glass frame */
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 40px 100px -10px rgba(59, 130, 246, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.ct-map-showcase:hover .ct-map-frame {
  box-shadow: 
    0 50px 120px -10px rgba(59, 130, 246, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 1);
}

.ct-map-gradient-border {
  display: none; /* Safely removed */
}

/* Make iframe fit inside perfectly */
.ct-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background: white; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0,0,0,0.04);
}

.ct-map-glass-overlay {
  position: absolute;
  inset: 16px; /* Exactly match the padding */
  border-radius: 20px; /* Match the iframe border radius */
  pointer-events: none;
  box-shadow: inset 0 2px 10px rgba(255,255,255,0.7), inset 0 0 0 1px rgba(255,255,255,0.3);
  z-index: 3;
  overflow: hidden;
}

/* Diagonal glass sweep glare */
.ct-map-glass-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transform: skewX(-20deg);
  animation: ct-glass-sweep 7s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes ct-glass-sweep {
  0%   { left: -100%; }
  30%  { left: 200%; }
  100% { left: 200%; }
}

/* ── Premium Info Card ── */
.ct-map-info {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(59,130,246,0.08), inset 0 0 0 1px rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
}

.ct-map-info-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.ct-pin-drop-premium {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(59,130,246,0.4);
}
.ct-pin-pulse {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid var(--blue-400);
  animation: ct-pin-pulse-anim 2s infinite;
  pointer-events: none;
}
@keyframes ct-pin-pulse-anim {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.ct-map-info-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

/* ── Contact Details List ── */
.ct-map-details {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.ct-map-details li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.ct-map-icon-tile {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59,130,246,0.1);
  transition: transform 0.3s ease;
}
.ct-map-info:hover .ct-map-icon-tile {
  transform: translateY(-2px);
}
.ct-map-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}
.ct-label-micro {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--blue-500);
  margin-bottom: 4px;
}

/* ── Dynamic Sweep Button ── */
.ct-directions-btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37,99,235, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.ct-directions-btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37,99,235, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.ct-btn-text, .ct-directions-btn-premium svg {
  position: relative;
  z-index: 2;
}
.ct-btn-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  z-index: 1;
}
.ct-directions-btn-premium:hover .ct-btn-sweep {
  animation: ct-sweep-anim 0.8s ease forwards;
}
@keyframes ct-sweep-anim {
  0% { left: -100%; }
  100% { left: 200%; }
}


/* ═══════════════════════════════════════════════════
   ══ 5. FAQ ACCORDION ════════════════════════════
   ═══════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════
   ══ 6. WHATSAPP QUICK-CONNECT ═══════════════════
   ═══════════════════════════════════════════════════ */
.ct-whatsapp {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 50%, #eff6ff 100%);
}
.ct-whatsapp .container {
  position: relative;
  z-index: 2;
}
.ct-whatsapp .ct-overline {
  color: #16a34a;
}
.ct-whatsapp .ct-overline::before {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}
/* Immersive "WhatsApp/Communication" Background Theme (Unique from FAQ) */
.ct-wa-theme-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Digital Connection Dot Grid (Refined, tighter texture) */
.ctw-pattern-grid {
  position: absolute;
  inset: -100px; /* Expand to cover panning edge cases */
  background-image: radial-gradient(rgba(34,197,94,0.1) 1px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
  animation: ctw-grid-pan 30s linear infinite;
}
@keyframes ctw-grid-pan {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-40px, 60px); }
}

/* Ethereal Sweeping Connection Auroras (Refined from harsh beams) */
.ctw-beam {
  position: absolute;
  width: 150%;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(34,197,94,0.06), rgba(6,182,212,0.04), transparent);
  transform: rotate(-25deg);
  opacity: 0;
  animation: ctw-beam-sweep 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.ctw-beam-1 { top: 10%; left: -20%; }
.ctw-beam-2 { bottom: 20%; left: -20%; animation-delay: -5s; animation-duration: 18s; height: 120px; background: linear-gradient(180deg, transparent, rgba(34,197,94,0.04), rgba(59,130,246,0.03), transparent); }
@keyframes ctw-beam-sweep {
  0% { transform: rotate(-25deg) translateY(200px); opacity: 0; }
  30% { opacity: 1; transform: rotate(-25deg) translateY(0); }
  70% { opacity: 1; transform: rotate(-25deg) translateY(-250px); }
  100% { transform: rotate(-25deg) translateY(-400px); opacity: 0; }
}

/* Massive Abstract Glass Chat Nodes (Refined frost and shadows) */
.ctw-node {
  position: absolute;
  height: 120px;
  border-radius: 60px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.15) 100%);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-top: 1px solid rgba(255,255,255,0.5);
  border-left: 1px solid rgba(255,255,255,0.4);
  border-right: 1px solid rgba(34,197,94,0.15);
  border-bottom: 1px solid rgba(34,197,94,0.15);
  box-shadow: 
    0 30px 60px -10px rgba(34,197,94,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  padding: 0 40px;
  animation: ctw-drift-node 24s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
.ctw-node-indicator {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #4ade80, #16a34a);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(34,197,94,0.8), 0 0 4px rgba(255,255,255,0.8);
  animation: ctw-pulse-node 2.5s ease-in-out infinite alternate;
}
.ctw-typing {
  display: flex;
  gap: 8px;
}
.ctw-typing .ctw-node-indicator {
  animation: ctw-bounce-dot 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
@keyframes ctw-pulse-node {
  0% { transform: scale(0.85); box-shadow: 0 0 8px rgba(34,197,94,0.4), 0 0 2px rgba(255,255,255,0.5); }
  100% { transform: scale(1.15); box-shadow: 0 0 20px rgba(34,197,94,0.9), 0 0 6px rgba(255,255,255,0.9); }
}
@keyframes ctw-bounce-dot {
  0%, 100% { transform: translateY(0); opacity: 0.5; box-shadow: 0 0 8px rgba(34,197,94,0.4); }
  50% { transform: translateY(-8px); opacity: 1; box-shadow: 0 6px 16px rgba(34,197,94,0.9); }
}

.ctw-n-1 {
  width: 440px;
  top: 15%; left: -2%;
  animation-duration: 28s;
}
.ctw-n-2 {
  width: 300px;
  bottom: 22%; right: 2%;
  background: linear-gradient(225deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 100%);
  justify-content: flex-end;
  animation-duration: 22s; animation-delay: -6s;
}
.ctw-n-3 {
  width: 220px;
  top: 55%; left: 12%;
  height: 90px;
  border-radius: 45px;
  animation-duration: 20s; animation-delay: -12s;
  opacity: 0.8;
}
@keyframes ctw-drift-node {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(50px, -30px) rotate(2deg) scale(1.03); }
  66% { transform: translate(-30px, 40px) rotate(-2deg) scale(0.97); }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

/* High-Speed Scrolling Communication Ticker */
.ctw-ticker {
  position: absolute;
  top: 35%;
  left: -100px;
  right: -100px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 900;
  color: rgba(34,197,94,0.025);
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-3deg);
}
.ctw-ticker-track {
  display: inline-block;
  animation: ctw-marquee 25s linear infinite;
}
.ctw-ticker-track span {
  padding: 0 40px;
}
@keyframes ctw-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Massive Swarm of Rapid Digital Particles */
.ctw-particle-swarm {
  position: absolute;
  inset: 0;
}
.ctw-p {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green-400), 0 0 24px rgba(6,182,212,0.6);
  opacity: 0;
  animation: ctw-shoot-particle cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.ctw-p-1 { bottom: -5%; left: 15%; animation-duration: 4s; animation-delay: 0.1s; }
.ctw-p-2 { bottom: -5%; left: 35%; animation-duration: 5s; animation-delay: 2.3s; background: var(--cyan-400); }
.ctw-p-3 { bottom: -5%; left: 65%; animation-duration: 3.5s; animation-delay: 0.8s; }
.ctw-p-4 { bottom: -5%; left: 85%; animation-duration: 4.8s; animation-delay: 1.5s; background: var(--blue-400); }
.ctw-p-5 { bottom: -5%; left: 25%; animation-duration: 6s; animation-delay: 3s; }
.ctw-p-6 { bottom: -5%; left: 55%; animation-duration: 4.2s; animation-delay: 0.5s; background: var(--teal-400); }
.ctw-p-7 { bottom: -5%; left: 75%; animation-duration: 5.5s; animation-delay: 1.8s; }
.ctw-p-8 { bottom: -5%; left: 45%; animation-duration: 3.8s; animation-delay: 2.1s; }
.ctw-p-9 { bottom: -5%; left: 5%; animation-duration: 5.2s; animation-delay: 0.9s; background: var(--cyan-300); }
.ctw-p-10 { bottom: -5%; left: 95%; animation-duration: 4.5s; animation-delay: 2.7s; }

@keyframes ctw-shoot-particle {
  0% { transform: translateY(0) scale(1.5); opacity: 0; }
  15% { opacity: 0.9; }
  85% { opacity: 0.3; }
  100% { transform: translateY(-120vh) scale(0); opacity: 0; }
}

/* Ambient Green Flares */
.ctw-flare {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.35;
  animation: ctw-flare-breathe 18s ease-in-out infinite alternate;
}
.ctw-flare-1 {
  top: -400px; right: -250px;
  background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 50%);
}
.ctw-flare-2 {
  bottom: -300px; left: -350px;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 60%);
  animation-delay: -9s;
}
@keyframes ctw-flare-breathe {
  0% { transform: scale(0.9); opacity: 0.25; }
  100% { transform: scale(1.15); opacity: 0.5; }
}
.ct-wa-header {
  text-align: center;
  margin-bottom: 36px;
}
.ct-wa-stack {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct-wa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(34,197,94,0.1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.03);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.ct-wa-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px 0 0 4px;
}
.ct-wa-card:hover::before { opacity: 1; }
.ct-wa-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.3);
}
.ct-wa-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.ct-wa-info { flex: 1; }
.ct-wa-info strong {
  display: block;
  font-size: 16px;
  color: var(--text-dark);
}
.ct-wa-info span {
  font-size: 13px;
  color: var(--text-muted);
}
.ct-wa-badge {
  padding: 4px 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ct-wa-go {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(34,197,94,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.ct-wa-card:hover .ct-wa-go {
  background: rgba(34,197,94,0.15);
}
.ct-wa-go img { width: 22px; height: 22px; object-fit: contain; }


/* ═══════════════════════════════════════════════════
   ══ 7. OFFICE HOURS ═════════════════════════════
   ═══════════════════════════════════════════════════ */
.ct-hours {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 50%, #fdf4ff 100%); /* Warm sunrise motif */
}
.ct-hours .container {
  position: relative;
  z-index: 2;
}

/* Immersive "Time & Orbit" Clockwork Background Theme */
.ct-hr-theme-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* "Golden Hour" Sunrise Gradient Glows */
.cth-glow {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  opacity: 0.6;
  animation: cth-sun-breathe 20s ease-in-out infinite alternate;
}
.cth-glow-1 {
  top: -300px; left: -200px;
  background: radial-gradient(circle, rgba(251,146,60,0.15) 0%, transparent 60%); /* Warm Orange/Gold */
}
.cth-glow-2 {
  bottom: -400px; right: -200px;
  background: radial-gradient(circle, rgba(244,114,182,0.1) 0%, transparent 60%); /* Soft sunrise pink */
  animation-delay: -10s;
}
@keyframes cth-sun-breathe {
  0% { transform: scale(0.9); opacity: 0.35; }
  100% { transform: scale(1.15); opacity: 0.65; }
}

/* Abstract Clockwork Orbit Rings */
.cth-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(251,146,60,0.15); /* Orange gold wireframe */
  box-shadow: inset 0 0 60px rgba(251,146,60,0.02), 0 0 30px rgba(244,114,182,0.03);
}
.cth-ring-1 {
  width: 800px; height: 800px;
  border-width: 2px;
  border-color: rgba(251,146,60,0.08);
}
.cth-ring-2 {
  width: 1200px; height: 1200px;
  border-style: dashed;
  border-width: 1.5px;
  border-color: rgba(244,114,182,0.15);
  animation: cth-spin 200s linear infinite reverse;
}
.cth-ring-3 {
  width: 1600px; height: 1600px;
  border-color: rgba(251,146,60,0.05);
}
@keyframes cth-spin {
  100% { transform: rotate(360deg); }
}

/* Deconstructed Clock Face (Floating Numerals) */
.cth-numeral {
  position: absolute;
  top: 50%; left: 50%;
  font-family: "Times New Roman", Times, serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(251,146,60,0.12);
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
}
.cth-num-1 { margin-top: -360px; animation: cth-pulse-fade 8s ease-in-out infinite; }
.cth-num-2 { margin-left: 360px; animation: cth-pulse-fade 10s ease-in-out infinite 2s; }
.cth-num-3 { margin-top: 360px; animation: cth-pulse-fade 9s ease-in-out infinite 4s; }
.cth-num-4 { margin-left: -360px; animation: cth-pulse-fade 11s ease-in-out infinite 1s; }
@keyframes cth-pulse-fade {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.95); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); color: rgba(244,114,182,0.3); }
}

/* Sweeping Soft Light Hands (Clock arms) */
.cth-hand {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: 0% 50%;
  border-radius: 10px;
}
.cth-hand-1 {
  width: 600px; height: 60px;
  background: linear-gradient(90deg, rgba(251,146,60,0.2), transparent);
  animation: cth-clock-sweep 45s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cth-hand-2 {
  width: 900px; height: 30px;
  background: linear-gradient(90deg, rgba(244,114,182,0.15), transparent);
  animation: cth-clock-sweep 90s ease-in-out infinite reverse;
}
.cth-hand-3 {
  /* High-speed "Seconds" indicator arm */
  width: 750px; height: 6px;
  background: linear-gradient(90deg, rgba(56,189,248,0.4), transparent);
  filter: blur(4px);
  animation: cth-clock-sweep 12s linear infinite;
}
@keyframes cth-clock-sweep {
  0% { transform: translateY(-50%) rotate(0deg); opacity: 0.5; }
  50% { opacity: 1; }
  100% { transform: translateY(-50%) rotate(360deg); opacity: 0.5; }
}

/* Orbiting Chronos Time Nodes */
.cth-node-track {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
}
.cth-track-1 { animation: cth-spin 25s linear infinite; }
.cth-track-2 { animation: cth-spin 48s linear infinite reverse; }
.cth-track-3 { animation: cth-spin 80s linear infinite; }

.cth-node {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb923c, #f43f5e);
  box-shadow: 0 0 24px rgba(251,146,60,0.7), 0 0 8px rgba(255,255,255,0.9);
  transform: translate(-50%, -50%);
}
.cth-n-small {
  width: 8px !important; height: 8px !important;
  box-shadow: 0 0 12px currentColor, 0 0 4px rgba(255,255,255,0.6) !important;
  opacity: 0.7;
}

.cth-track-1 .cth-node { left: 400px; } /* Positioned on ring 1 */
.cth-track-2 .cth-node { left: 600px; width: 24px; height: 24px; background: linear-gradient(135deg, #f472b6, #db2777); box-shadow: 0 0 24px rgba(244,114,182,0.6); color: rgba(244,114,182,0.6); } /* Positioned on ring 2 */
.cth-track-3 .cth-node { left: 800px; width: 12px; height: 12px; background: #38bdf8; box-shadow: 0 0 16px rgba(56,189,248,0.5); color: rgba(56,189,248,0.5); } /* Sky blue contrast node on ring 3 */
.ct-hours-header {
  text-align: center;
  margin-bottom: 36px;
}
.ct-hours-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
  border: 1px solid rgba(59,130,246,0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.ct-hours-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 48px rgba(59,130,246,0.1);
}
.ct-hours-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--blue-50);
  border-radius: 12px;
  margin-bottom: 28px;
}
.ct-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
}
.ct-status-dot.open {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
  animation: ct-pulse-dot 2s ease-in-out infinite;
}
.ct-status-dot.closed {
  background: #ef4444;
}
@keyframes ct-pulse-dot {
  0%, 100% { box-shadow: 0 0 4px rgba(34,197,94,0.3); }
  50% { box-shadow: 0 0 12px rgba(34,197,94,0.6); }
}
.ct-status-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.ct-hours-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ct-hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(59,130,246,0.04);
  border-radius: 8px;
  transition: background 0.3s ease;
}
.ct-hour-row:hover {
  background: rgba(59,130,246,0.02);
}
.ct-hour-row.ct-today {
  background: rgba(59,130,246,0.04);
  border-bottom-color: rgba(59,130,246,0.08);
}
.ct-hour-row.ct-today .ct-day-chip {
  box-shadow: 0 2px 8px rgba(59,130,246,0.2);
}
.ct-hour-row:last-child { border-bottom: none; }
.ct-day-chip {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  min-width: 48px;
  text-align: center;
}
.ct-day-chip.ct-open {
  background: rgba(59,130,246,0.08);
  color: var(--blue-600);
}
.ct-day-chip.ct-half {
  background: rgba(245,158,11,0.08);
  color: #d97706;
}
.ct-day-chip.ct-closed {
  background: rgba(239,68,68,0.06);
  color: #dc2626;
}
.ct-time {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}
.ct-time-closed {
  color: var(--text-light);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════
   ══ 8. SOCIAL MEDIA CONNECT ═════════════════════
   ═══════════════════════════════════════════════════ */
.ct-social {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}
.ct-social .container {
  position: relative;
  z-index: 2; /* CRITICAL: Keep content strictly above the glass background */
}

/* Immersive "Viral Connections" Background Theme */
.cts-theme-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Soft Brand Color Auras */
.cts-aura {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  opacity: 0.25; /* Softened for a cleaner look */
  animation: cts-breathe 25s ease-in-out infinite alternate;
}
.cts-fb { top: -300px; left: -200px; background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 60%); }
.cts-tt { top: 20%; left: 40%; background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 60%); animation-delay: -7s; animation-duration: 22s; }
.cts-ig { bottom: -300px; right: -200px; background: radial-gradient(circle, rgba(236,72,153,0.25) 0%, transparent 60%); animation-delay: -12s; animation-direction: alternate-reverse; }

@keyframes cts-breathe {
  0% { transform: scale(0.9) translate(0,0); opacity: 0.15; }
  100% { transform: scale(1.2) translate(100px, 50px); opacity: 0.35; }
}

/* Massive Elegant Social Theme Typography Floating Elements */
.cts-mark {
  position: absolute;
  top: 50%; left: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 800px;
  line-height: 1;
  color: var(--blue-600);
  opacity: 0.02; /* Extremely subtle, acting as a watermark */
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
}
.cts-m-1 { font-family: "Times New Roman", Times, serif; animation: cts-float-mark 40s ease-in-out infinite alternate; margin-left: -400px; margin-top: -150px; }
.cts-m-2 { font-style: italic; animation: cts-float-mark 50s ease-in-out infinite alternate-reverse; margin-left: 450px; margin-top: 150px; }
.cts-m-3 { font-size: 600px; font-weight: 300; animation: cts-float-mark 60s ease-in-out infinite alternate; margin-top: 400px; }

@keyframes cts-float-mark {
  0% { transform: translate(-50%, -50%) rotate(-5deg) scale(0.95); }
  100% { transform: translate(-45%, -55%) rotate(5deg) scale(1.05); }
}

/* Massive Elegant Social Theme Typography Floating Elements */
.cts-mark {
  position: absolute;
  top: 50%; left: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 800px;
  line-height: 1;
  color: var(--blue-600);
  opacity: 0.02; /* Extremely subtle, acting as a watermark */
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
}
.cts-m-1 { font-family: "Times New Roman", Times, serif; animation: cts-float-mark 40s ease-in-out infinite alternate; margin-left: -400px; margin-top: -150px; }
.cts-m-2 { font-style: italic; animation: cts-float-mark 50s ease-in-out infinite alternate-reverse; margin-left: 450px; margin-top: 150px; }
.cts-m-3 { font-size: 600px; font-weight: 300; animation: cts-float-mark 60s ease-in-out infinite alternate; margin-top: 400px; }

@keyframes cts-float-mark {
  0% { transform: translate(-50%, -50%) rotate(-5deg) scale(0.95); }
  100% { transform: translate(-45%, -55%) rotate(5deg) scale(1.05); }
}

/* Giant Scrolling Network Marquees */
.cts-marquee-wrap {
  position: absolute;
  width: 200%;
  left: -50%;
  transform: rotate(-5deg);
  pointer-events: none;
  opacity: 0.03; /* Kept very subtle */
}
.cts-mq-1 { top: 15%; transform: rotate(3deg); }
.cts-mq-2 { bottom: 15%; transform: rotate(-2deg); }

.cts-marquee {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 180px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(59,130,246,0.08); /* Modern hollow watermark text */
  width: max-content;
  animation: cts-scroll-marquee 90s linear infinite;
  text-transform: uppercase;
}
.cts-mq-2 .cts-marquee { 
  animation-direction: reverse; 
  animation-duration: 120s; 
  -webkit-text-stroke-color: rgba(236,72,153, 0.08); 
}

@keyframes cts-scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* Floating Frosted Glass Skeleton Posts (Social Feed) */
.cts-skeleton {
  position: absolute;
  width: 260px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04), inset 0 0 0 1px rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: cts-float-skel 30s linear infinite;
  pointer-events: none;
  overflow: hidden;
}
/* Shimmer loading effect */
.cts-skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transform: skewX(-20deg) translateX(-150%);
  animation: cts-shimmer 3s ease-in-out infinite;
}
@keyframes cts-shimmer {
  100% { transform: skewX(-20deg) translateX(200%); }
}

.cts-sk-av {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(59,130,246,0.08);
  border: 1px dashed rgba(59,130,246,0.4);
}
.cts-sk-lines { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.cts-sk-line { height: 12px; border-radius: 12px; background: rgba(59,130,246,0.06); width: 100%; }

.cts-sk-1 { left: 8%; bottom: -300px; animation-duration: 35s; animation-delay: 2s; }
.cts-sk-2 { right: 12%; bottom: -400px; animation-duration: 45s; animation-delay: 15s; transform: scale(0.85); opacity: 0.9;}
.cts-sk-3 { left: 45%; bottom: -350px; animation-duration: 40s; animation-delay: 8s; transform: scale(1.1); filter: blur(2px); opacity: 0.6;}

@keyframes cts-float-skel {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-1400px) rotate(15deg); opacity: 0; }
}

/* Glowing Notification Badges */
.cts-badge {
  position: absolute;
  background: #ef4444;
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  box-shadow: 0 6px 20px rgba(239,68,68,0.5);
  will-change: transform, opacity;
  animation: cts-float-badge 15s ease-in-out infinite alternate;
  pointer-events: none;
}
.cts-bd-1 { left: 25%; top: 30%; animation-duration: 8s; }
.cts-bd-2 { right: 20%; top: 45%; animation-duration: 12s; animation-delay: 2s; background: #fbbf24; box-shadow: 0 6px 20px rgba(251,191,36,0.5); }
.cts-bd-3 { left: 60%; top: 70%; animation-duration: 10s; animation-delay: 5s; background: #ec4899; box-shadow: 0 6px 20px rgba(236,72,153,0.5);}

@keyframes cts-float-badge {
  0% { transform: translateY(0) scale(0.9); opacity: 0.5; }
  100% { transform: translateY(-80px) scale(1.1); opacity: 1; }
}

/* "Broadcasting" Activity Rings (Like hitting 'Live') */
.cts-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 1400px;
  height: 1400px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.15);
  transform: translate(-50%, -50%) scale(0);
  will-change: transform, opacity;
  animation: cts-broadcast 16s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
  opacity: 0;
}
.cts-r-1 { animation-delay: 0s; }
.cts-r-2 { animation-delay: 5.3s; }
.cts-r-3 { animation-delay: 10.6s; }

@keyframes cts-broadcast {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; border-width: 4px; border-color: rgba(6,182,212,0.6); }
  10% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; border-width: 1px; border-color: rgba(236,72,153,0); }
}

/* Sweeping Network Connection Beams (Lasers/Grid lines) */
.cts-beam {
  position: absolute;
  top: 50%; left: -25%;
  width: 150%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0.15) 50%, transparent 100%);
  will-change: transform, opacity;
  animation: cts-beam-fade 12s ease-in-out infinite alternate;
  transform-origin: center center;
}
.cts-b-1 { transform: translateY(-300px) rotate(15deg); animation-duration: 22s; }
.cts-b-2 { transform: translateY(100px) rotate(-25deg); background: linear-gradient(90deg, transparent 0%, rgba(236,72,153,0.15) 50%, transparent 100%); animation-duration: 18s; animation-delay: 4s; }
.cts-b-3 { transform: translateY(400px) rotate(5deg); background: linear-gradient(90deg, transparent 0%, rgba(6,182,212,0.15) 50%, transparent 100%); animation-duration: 28s; animation-delay: 2s; }

@keyframes cts-beam-fade {
  0% { opacity: 0.1; }
  100% { opacity: 0.8; }
}
.ct-social-header {
  text-align: center;
  margin-bottom: 36px;
}
.ct-social-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.ct-social-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 24px;
  border-radius: 24px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03), inset 0 0 0 1px rgba(255, 255, 255, 1);
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
  z-index: 10;
}
/* Sweeping Premium After-Glow */
.ct-social-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.ct-social-tile:hover::after { opacity: 1; }
.ct-social-tile:hover {
  transform: translateY(-12px) scale(1.04);
}

/* Hyper Contextual Brand Glows on Hover */
.ct-tile-fb:hover { 
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 25px 60px rgba(59,130,246,0.15), inset 0 0 0 1px rgba(255, 255, 255, 1); 
}
.ct-tile-tt:hover { 
  border-color: rgba(6,182,212,0.3);
  box-shadow: 0 25px 60px rgba(6,182,212,0.15), inset 0 0 0 1px rgba(255, 255, 255, 1); 
}
.ct-tile-ig:hover { 
  border-color: rgba(236,72,153,0.3);
  box-shadow: 0 25px 60px rgba(236,72,153,0.15), inset 0 0 0 1px rgba(255, 255, 255, 1); 
}

.ct-tile-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  z-index: 1;
}
.ct-social-tile:hover .ct-tile-icon {
  transform: scale(1.15) rotate(-5deg);
}
.ct-tile-info {
  text-align: center;
}
.ct-tile-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.ct-tile-info span {
  font-size: 13px;
  color: var(--text-muted);
}
.ct-tile-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-500);
  letter-spacing: 0.5px;
}


/* ═══════════════════════════════════════════════════
   ══ 9. CALL TO ACTION: THE JOURNEY ════════════════
   ═══════════════════════════════════════════════════ */
.ct-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%); /* Bright Journey Base */
  border-top: 1px solid rgba(59,130,246,0.1);
}

/* Enhanced "Academic Journey" Background Theme */
.cta-theme-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background-color: transparent;
}

/* Rich Multi-layered Ambient Lighting */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  /* filter: blur(80px); -- removed for GPU efficiency */
  animation: cta-ambient-breathe 10s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
.glow-left { width: 60%; height: 60%; left: -10%; top: -20%; background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%); }
.glow-right { width: 70%; height: 70%; right: -20%; bottom: 0%; background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%); animation-delay: -5s; }
.glow-bottom { width: 100%; height: 50%; left: 0%; bottom: -30%; background: radial-gradient(ellipse at center, rgba(251,191,36,0.08) 0%, rgba(236,72,153,0.04) 50%, transparent 70%); animation-duration: 8s; }

@keyframes cta-ambient-breathe {
  0% { transform: scale(0.9) translate(0px, 20px); opacity: 0.6; }
  100% { transform: scale(1.1) translate(-20px, -20px); opacity: 1; }
}

/* Flowing Topographic Contour Background */
.cta-contours {
  position: absolute;
  inset: -20%;
  background-image: 
    repeating-radial-gradient(circle at 20% 80%, transparent 0, transparent 40px, rgba(59,130,246,0.03) 41px, transparent 42px),
    repeating-radial-gradient(circle at 80% 20%, transparent 0, transparent 60px, rgba(59,130,246,0.02) 61px, transparent 62px);
  opacity: 0.8;
  animation: cta-contour-shift 60s linear infinite alternate;
}
@keyframes cta-contour-shift {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(5deg); }
}

/* Glowing Flight Paths (Dynamic Arcs) */
.cta-arcs {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.arc-line {
  fill: none;
  stroke: rgba(59,130,246,0.4);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: cta-flight-trace 12s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.arc-1 { animation-duration: 15s; }
.arc-2 { stroke: rgba(168,85,247,0.3); animation-duration: 18s; animation-delay: 5s; stroke-width: 1; }
.arc-3 { stroke: rgba(236,72,153,0.3); animation-duration: 22s; animation-delay: 10s; stroke-width: 2; }

@keyframes cta-flight-trace {
  0% { stroke-dashoffset: 1200; opacity: 0; }
  10% { opacity: 1; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  90% { opacity: 1; }
  100% { stroke-dashoffset: -1200; opacity: 0; }
}

/* Glowing Navigational Waypoints (Journey Nodes) */
.cta-waypoint {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cta-waypoint-float 6s ease-in-out infinite alternate;
}
.wp-core {
  width: 12px; height: 12px;
  background: #fff;
  border: 2px solid var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(59,130,246,0.6);
  z-index: 2;
}
.wp-ping {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--blue-400);
  animation: cta-waypoint-ping 2.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
@keyframes cta-waypoint-ping {
  0% { transform: scale(0.2); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; border-width: 0; }
}
@keyframes cta-waypoint-float {
  100% { transform: translateY(-20px); }
}

.wp-1 { left: 20%; top: 35%; animation-delay: 0s; }
.wp-2 { left: 45%; top: 65%; animation-delay: 1s; }
.wp-2 .wp-core { border-color: var(--pink-500); box-shadow: 0 0 16px rgba(236,72,153,0.6); }
.wp-2 .wp-ping { border-color: var(--pink-400); }
.wp-3 { left: 80%; top: 25%; animation-delay: 2s; }
.wp-4 { left: 10%; top: 70%; animation-delay: 3s; filter: blur(2px); transform: scale(0.7); }

/* Complex Astrolabe / Navigational Compass */
.cta-astrolabe {
  position: absolute;
  top: 50%; right: 10%;
  width: 500px; height: 500px;
  transform: translateY(-50%);
  opacity: 0.15;
  pointer-events: none;
}
.astro-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--blue-600);
}
.r-outer {
  border-width: 1px;
  animation: astro-spin 80s linear infinite;
}
.r-inner {
  inset: 50px;
  border-width: 2px;
  opacity: 0.6;
  animation: astro-spin 50s linear infinite reverse;
}
.r-dashed {
  inset: 100px;
  border: 2px dashed var(--blue-500);
  opacity: 0.4;
  animation: astro-spin 120s linear infinite;
}
.astro-pointer {
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent 10%, var(--blue-600) 50%, transparent 90%);
  transform: translateX(-50%);
  animation: astro-spin 40s ease-in-out infinite alternate;
}
.astro-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 24px; height: 24px;
  background: var(--blue-500);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 40px var(--blue-500);
}

@keyframes astro-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ct-cta-inner {
  position: relative;
  z-index: 2; /* Strictly above background theme */
  text-align: center;
}
.ct-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px); /* Scale slightly larger for light theme */
  font-weight: 900;
  color: var(--blue-900); /* Dark premium blue */
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.ct-cta-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.ct-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

/* Extreme CTA Button Styling */
.ct-cta-actions .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  background-size: 200% 200%;
  animation: cta-btn-shimmer 4s ease infinite;
  border: none;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4), inset 0 0 0 1px rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.ct-cta-actions .btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.5), inset 0 0 0 1px rgba(255,255,255,0.6);
}
.ct-cta-actions .btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg) translateX(-150%);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.ct-cta-actions .btn-primary:hover::after {
  transform: skewX(-20deg) translateX(150%);
}
@keyframes cta-btn-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.ct-btn-about {
  color: var(--blue-600) !important;
  border-color: rgba(59,130,246,0.2) !important;
  backdrop-filter: blur(10px);
  background: rgba(59,130,246,0.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}
.ct-btn-about:hover {
  color: #fff !important;
  background: var(--blue-600) !important;
  border-color: var(--blue-600) !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59,130,246,0.2);
}


/* ═══════════════════════════════════════════════════
   ══ RESPONSIVE ══════════════════════════════════
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .ct-hero { padding: 120px 0 60px; min-height: auto; }
  .ct-hero-pills { display: none; }
  .ct-input-row { grid-template-columns: 1fr; }
  .ct-cards-rail { grid-template-columns: 1fr; gap: 16px; }
  .ct-map-grid { grid-template-columns: 1fr; }
  .ct-map-frame { min-height: 280px; }
  .ct-map-frame iframe { min-height: 280px; }
  .ct-social-tiles { grid-template-columns: 1fr; gap: 14px; }
  .ct-social-tile { flex-direction: row; padding: 20px 24px; }
  .ct-tile-icon { width: 36px; height: 36px; }
  .ct-tile-info { text-align: left; flex: 1; }
  .ct-tile-info strong { font-size: 15px; }
  .ct-review-grid { grid-template-columns: 1fr; }
  .ct-cta-left { clip-path: polygon(0 0, 100% 0, 100% 40%, 0 60%); }
  .ct-faq-q { padding: 16px 18px; gap: 10px; }
  .ct-faq-a { padding-left: 44px !important; }
  .ct-wa-card { padding: 14px 18px; }
  .ct-anemones,
  .ct-jelly-layer { display: none; }
  .ct-direct { padding: 60px 0; }
  /* Hide heavy ocean animations on mobile for GPU perf */
  .ctd-turtle-layer,
  .ctd-jelly-layer,
  .ctd-coral-silhouettes,
  .ctd-caustics,
  .ctd-currents { display: none; }
  .ctd-aurora { filter: blur(15px); }
  .ct-cta { padding: 70px 0; }

  /* ─── OUR CAMPUS / MAP — MOBILE GPU OPTIMIZATION ─── */
  .ct-nav-bg-system,
  .ct-fluffy-cloud,
  .ct-bg-fluffy,
  .ct-nav-cloud,
  .ct-nav-grid,
  .ct-nav-compass,
  .ct-floating-dust,
  .ct-nav-hud,
  .ct-waypoint,
  .ct-dawn-orb {
    display: none !important;
  }
  .ct-map-showcase {
    animation: none;
  }
  .ct-map-showcase::before {
    display: none;
  }
  .ct-map-glass-overlay::after {
    animation: none;
  }
  .ct-map-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f1fc 100%);
  }

  /* ─── SEND US A MESSAGE — MOBILE FIX ─── */
  .ct-form-section {
    margin-top: -80px;
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .ct-form-section::after {
    top: 0;
  }
  .ct-form-header {
    margin-bottom: 24px;
    padding: 0 8px;
  }
  .ct-form-section .ct-section-title {
    font-size: clamp(22px, 6vw, 32px);
    letter-spacing: -0.8px;
  }
  .ct-form-section .ct-section-sub {
    font-size: 14px;
    max-width: 100%;
    padding: 0 4px;
    line-height: 1.6;
  }
  .ct-trust-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    line-height: 1.5;
  }
  .ct-form-card {
    padding: 20px 16px;
    border-radius: 20px;
    margin: 0 4px;
  }
  .ct-form-section .ct-form-card {
    border-radius: 20px;
  }
  .ct-stepper {
    overflow-x: auto;
    gap: 0;
    justify-content: center;
    margin-bottom: 24px;
    padding: 0 4px;
  }
  .ct-step-label { display: none; }
  .ct-step-line {
    margin: 0 8px;
    min-width: 30px;
  }
  .ct-float-group input,
  .ct-float-group select,
  .ct-float-group textarea {
    font-size: 16px; /* Prevent iOS zoom on focus */
    padding: 16px 14px 8px;
  }
  .ct-float-group label {
    font-size: 13px;
  }
  .ct-float-group textarea {
    min-height: 100px;
  }
  .ct-review-item {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .ct-hero-heading { font-size: 32px; letter-spacing: -1px; }
  .ct-section-title { font-size: 24px; }
  .ct-form-actions { flex-direction: column; gap: 10px; }
  .ct-form-actions > * { width: 100%; justify-content: center; }
  .ct-cta-actions { flex-direction: column; align-items: center; }
  .ct-contact-card { padding: 32px 24px; }
  .ct-hours-card { padding: 24px; }
  .ct-map-info { padding: 24px; }

  /* ─── SEND US A MESSAGE — EXTRA SMALL MOBILE FIX ─── */
  .ct-form-section {
    margin-top: -50px;
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .ct-form-section .ct-section-title {
    font-size: 22px;
    letter-spacing: -0.5px;
  }
  .ct-form-section .ct-section-sub {
    font-size: 13px;
  }
  .ct-form-card {
    padding: 18px 14px;
    border-radius: 16px;
    margin: 0;
  }
  .ct-form-section .ct-form-card {
    border-radius: 16px;
  }
  .ct-stepper {
    margin-bottom: 20px;
  }
  .ct-step-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .ct-step-line {
    margin: 0 6px;
    min-width: 24px;
  }
  .ct-trust-line {
    font-size: 11px;
    gap: 4px;
  }
}

/* ─── GPU OPTIMIZATIONS: MOBILE & RELAXED MODE HIDE/FREEZE OVERRIDES ─── */
body.relaxed-mode .ct-stars,
body.relaxed-mode .ct-fish-layer,
body.relaxed-mode .ct-bubbles,
body.relaxed-mode .ct-light-rays,
body.relaxed-mode .ct-jelly-layer,
body.relaxed-mode .ct-plankton,
body.relaxed-mode .ct-lamps,
body.relaxed-mode .ct-anemones,
body.relaxed-mode .cg-galaxy-arms,
body.relaxed-mode .cg-constellations,
body.relaxed-mode .cg-sparklers,
body.relaxed-mode .cg-moon,
body.relaxed-mode .cg-planet,
body.relaxed-mode .cg-koi-layer,
body.relaxed-mode .cg-spores,
body.relaxed-mode .cg-coral-reef,
body.relaxed-mode .cg-aurora,
body.relaxed-mode .ct-dot-grid,
body.relaxed-mode .ctd-ocean-bg,
body.relaxed-mode .ctd-caustics,
body.relaxed-mode .ctd-aurora-layer,
body.relaxed-mode .ctd-spores,
body.relaxed-mode .ctd-fish-layer,
body.relaxed-mode .ctd-bubbles,
body.relaxed-mode .cts-badge,
body.relaxed-mode .cts-ring,
body.relaxed-mode .cts-beam,
body.relaxed-mode .cta-theme-bg,
body.relaxed-mode .ct-hero-envelope::before {
  display: none !important;
  animation: none !important;
}

body.relaxed-mode .ct-social-tile,
body.relaxed-mode .ct-contact-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(255, 255, 255, 0.98) !important;
}
body.relaxed-mode .ct-form-section .ct-form-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(15, 23, 60, 0.95) !important;
}

@media (max-width: 768px) {
  .ct-stars,
  .ct-fish-layer,
  .ct-bubbles,
  .ct-light-rays,
  .ct-jelly-layer,
  .ct-plankton,
  .ct-lamps,
  .ct-anemones,
  .cg-galaxy-arms,
  .cg-constellations,
  .cg-sparklers,
  .cg-moon,
  .cg-planet,
  .cg-koi-layer,
  .cg-spores,
  .cg-coral-reef,
  .cg-aurora,
  .ct-dot-grid,
  .ctd-ocean-bg,
  .ctd-caustics,
  .ctd-aurora-layer,
  .ctd-spores,
  .ctd-fish-layer,
  .ctd-bubbles,
  .cts-badge,
  .cts-ring,
  .cts-beam,
  .cta-theme-bg,
  .ct-hero-envelope::before {
    display: none !important;
    animation: none !important;
  }

  .ct-social-tile,
  .ct-contact-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }
  .ct-form-section .ct-form-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(15, 23, 60, 0.95) !important;
  }
}