/* ═══════════════════════════════════════════════════════════════════════════
   student-integration-team.css — SIT Page Styles
   Inherits from career-centre.css patterns with custom refinements
   Premium Community & Academic Aesthetic
════════════════════════════════════════════════════════════════════════════ */

.sit-body {
  background: var(--ebony);
  color: var(--text-1);
  font-family: var(--font-body);
}

.sit-hero {
  position: relative;
  min-height: 85vh; /* Reduced height to pull content up */
  padding-top: var(--nav-h);
  padding-bottom: var(--sp-12);
  background: radial-gradient(circle at 30% 50%, #1a2a4a 0%, var(--ebony) 70%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sit-hero .section-wrap {
  padding-right: var(--sp-8); /* Prevent image clipping */
}

.sit-hero-img {
  border-radius: 24px !important;
  /* Overriding the asymmetric curve for a more community feel */
  border: 1px solid var(--gold-glow);
}

.sit-rounded-img {
  width: 100%;
  height: auto; /* Allow image to be larger */
  max-height: 550px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s var(--ease-out-expo);
}

.sit-rounded-img:hover {
  transform: scale(1.02);
}

.feature-msg-box {
  margin-top: var(--sp-8);
  padding: var(--sp-6);
  background: rgba(229, 195, 126, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.sit-visual-box {
  position: relative;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px; /* Increased to fill section better */
  margin-left: auto;
  margin-right: 0; 
}

.sit-visual-box::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  z-index: -1;
  opacity: 0.5;
}

/* Support Channels Grid Gallery */
.sit-grid-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.sit-grid-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease;
}

.sit-grid-gallery img:hover {
  transform: scale(1.03);
  border-color: var(--gold);
}

.channel-box {
  padding: var(--sp-5) var(--sp-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: left; /* Keep text left aligned inside the box */
  max-width: 400px; /* Kept at 400px as per user's manual change */
}

.contact-info-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  background: rgba(229, 195, 126, 0.1);
  border: 1px solid rgba(229, 195, 126, 0.2);
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--text-2);
  margin-bottom: var(--sp-8);
  backdrop-filter: blur(10px);
}

.sit-channels-section .text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.channel-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: var(--sp-4);
}

.channel-box:hover {
  border-color: var(--gold-glow);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-5px);
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  margin-top: var(--sp-4);
}

/* Animations */
.fade-in {
  animation: fadeInSit 1s ease forwards;
}

@keyframes fadeInSit {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Spacing Refinements */
.content-section, .tabs-section {
  padding: var(--sp-16) 0; /* Reduced from default large gaps */
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.7;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-2);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

.arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--text-2);
  border-right: 2px solid var(--text-2);
  transform: rotate(45deg);
  margin: -4px;
  animation: scrollArrow 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

@keyframes scrollArrow {
  0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* CTA Hint */
.cta-with-hint {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-hint {
  font-size: 0.8rem;
  color: var(--text-2);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Benefit Card Icons */
.card-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(229, 195, 126, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}

/* Community Label */
.community-label-box {
  margin-bottom: var(--sp-4);
  opacity: 0.8;
}

/* Mobile Nav Refinement */
.nav-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive SIT */
@media (max-width: 992px) {
  .sit-grid-gallery {
    margin-bottom: var(--sp-12);
  }
  .sit-hero {
    min-height: auto;
    padding-bottom: var(--sp-20);
  }
}