/* =========================================================
   ACTIVITY HERO & ANIMATIONS
   ========================================================= */

.activity-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  padding: 160px 24px 80px;
}

/* Background animated layers - Hidden to keep hero without effects */
.hero-blueprint-lines {
  display: none !important;
}

.hero-electrical-path {
  display: none !important;
}

/* Subtitle Improvements */
.activity-hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 30px auto 40px;
  font-weight: 400;
  text-align: center;
}

/* Visual Anchor (Scroll Indicator - Static per request) */
.hero-scroll-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  opacity: 0.8;
}

.hero-scroll-anchor span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.mouse-indicator {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: #0b5e92;
  border-radius: 2px;
  margin-top: 8px;
}

/* Section Transition - Solid clean line without neon glows */
.hero-transition-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 3;
}

/* =========================================================
   ULTRA PREMIUM FULL-WIDTH COVERS (ACTIVITY PAGE DRAFT)
   ========================================================= */

.premium-bento-section {
  padding: 80px 24px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 60px; /* Space between the 4 lines */
}

.bento-item {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 550px; /* Tall, full-width cover */
  padding: 0 80px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Pure neutral depth */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateZ(0);
  opacity: 0;
  transform: translateY(40px);
}

.bento-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Even items align right */
.bento-item:nth-child(even) {
  align-items: flex-end;
  text-align: right;
}

.bento-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 1), inset 0 0 30px rgba(11, 94, 146, 0.2);
  border-color: rgba(11, 94, 146, 0.6);
}

.bento-item.visible:hover {
  transform: translateY(-8px) scale(1.01);
}

.bento-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.bento-item:hover .bento-bg {
  transform: scale(1.05);
}

/* Gradients for readability: Dark on text side, fading out to image side */
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.75) 45%, rgba(2, 6, 23, 0) 100%);
  z-index: 1;
  transition: background 0.6s ease;
}

.bento-item:nth-child(even) .bento-overlay {
  background: linear-gradient(to left, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.75) 45%, rgba(2, 6, 23, 0) 100%);
}

.bento-item:hover .bento-overlay {
  background: linear-gradient(to right, rgba(11, 94, 146, 0.95) 0%, rgba(2, 6, 23, 0.8) 50%, rgba(2, 6, 23, 0.1) 100%);
}

.bento-item:nth-child(even):hover .bento-overlay {
  background: linear-gradient(to left, rgba(11, 94, 146, 0.95) 0%, rgba(2, 6, 23, 0.8) 50%, rgba(2, 6, 23, 0.1) 100%);
}

.bento-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.bento-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* Reverse header elements for even items */
.bento-item:nth-child(even) .bento-header {
  flex-direction: row-reverse;
}

.bento-header i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.bento-header span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #f5c400;
}

.bento-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
  line-height: 1.1;
}

.bento-item p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* Arrow indicator */
.bento-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  right: 50px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  backdrop-filter: blur(10px);
}

.bento-item:nth-child(even) .bento-arrow {
  right: auto;
  left: 50px;
  transform: translateY(-50%) rotate(180deg) translateX(0);
}

.bento-item:hover .bento-arrow {
  opacity: 1;
  background: #0b5e92;
  border-color: #0b5e92;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.bento-item:nth-child(odd):hover .bento-arrow {
  transform: translateY(-50%) translateX(10px);
}

.bento-item:nth-child(even):hover .bento-arrow {
  transform: translateY(-50%) rotate(180deg) translateX(-10px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .bento-content {
    max-width: 70%;
  }
  .bento-item {
    height: 450px;
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .bento-item {
    height: 400px;
    padding: 40px;
    justify-content: flex-end;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .bento-content {
    max-width: 100%;
  }
  .bento-item:nth-child(even) .bento-header {
    flex-direction: row;
  }
  .bento-item h3 {
    font-size: 2rem;
  }
  .bento-item p {
    font-size: 1.05rem;
  }
  /* On mobile, gradient must be from bottom up */
  .bento-overlay, .bento-item:nth-child(even) .bento-overlay {
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.6) 60%, rgba(2, 6, 23, 0.1) 100%);
  }
  .bento-item:hover .bento-overlay, .bento-item:nth-child(even):hover .bento-overlay {
    background: linear-gradient(to top, rgba(11, 94, 146, 0.9) 0%, rgba(2, 6, 23, 0.7) 60%, rgba(2, 6, 23, 0.1) 100%);
  }
  .bento-arrow {
    display: none;
  }
}

/* =========================================================
   ACTIVITY CTA SECTION (Replaces Legacy Section)
   ========================================================= */

.activity-cta-section {
  padding: 60px 24px 120px;
  display: flex;
  justify-content: center;
}

.activity-cta-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 80px 60px;
  max-width: 1400px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.activity-cta-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.activity-cta-content {
  position: relative;
  z-index: 1;
}

.activity-cta-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.activity-cta-box p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.activity-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-btn-primary {
  background: #f5c400; /* Signature Golden Yellow */
  color: #020617; /* Dark text for contrast */
  padding: 18px 40px;
  border-radius: 99px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(245, 196, 0, 0.2);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(245, 196, 0, 0.4);
  background: #ffdb33;
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 18px 40px;
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .activity-cta-section {
    padding: 40px 16px 80px;
  }
  .activity-cta-box {
    padding: 40px 24px;
    border-radius: 28px;
  }
  .activity-cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .activity-cta-box p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .activity-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cta-btn-primary, .cta-btn-secondary {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    font-size: 1rem;
  }
}
