﻿/* ==========================================================================
   Admissions Refinement Stylesheet (Pink Model School Premium Redesign)
   ========================================================================== */

/* --- 1. Custom Hero Styles (Modern Asymmetric Shapes) --- */
.admissions-hero-section {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  padding: 160px 0 120px 0 !important;
  color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  overflow: hidden;
}

.admissions-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 18, 61, 0.85) 0%, rgba(30, 38, 109, 0.7) 100%) !important;
  z-index: 1;
}

.admissions-hero-section .container {
  position: relative;
  z-index: 2;
}

.admissions-hero-section h1 {
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.admissions-hero-section p {
  font-size: 19px;
  max-width: 650px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* --- 2. Advanced Spacing & Floating Cards --- */
@keyframes float-animation {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating-card-1 { animation: float-animation 6s ease-in-out infinite; }
.floating-card-2 { animation: float-animation 8s ease-in-out infinite; }
.floating-card-3 { animation: float-animation 7s ease-in-out infinite; }

/* --- 3. NEW PREMIUM EXPANDING VALUE SLIDERS (Core Strengths) --- */
.expanding-value-container {
  display: flex;
  gap: 16px;
  height: 420px;
  margin-top: 50px;
}

.expanding-value-card {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  border: 1.5px solid rgba(30, 38, 109, 0.08);
  box-shadow: 0 12px 35px rgba(30, 38, 109, 0.02);
  display: flex;
  flex-direction: column;
  padding: 35px 20px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.expanding-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--theme-color) 0%, #0c123d 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.6s ease;
}

/* Hover active state */
.expanding-value-card:hover {
  flex: 3.5;
  border-color: var(--theme-color);
  box-shadow: 0 20px 45px rgba(30, 38, 109, 0.15);
}

.expanding-value-card:hover::before {
  opacity: 1;
}

.expanding-value-card .value-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: color 0.4s ease;
}

.expanding-value-card:hover .value-card-content {
  color: #ffffff;
}

.expanding-value-card .value-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(30, 38, 109, 0.05);
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 25px;
  transition: all 0.5s ease;
  flex-shrink: 0;
}

.expanding-value-card:hover .value-icon-wrapper {
  background: rgba(255, 255, 255, 0.15);
  color: var(--theme-color2);
  transform: rotate(360deg);
}

/* Title is always visible, wraps naturally in collapsed state, turns white on hover */
.expanding-value-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--theme-color) !important;
  margin-bottom: 12px;
  white-space: normal;
  word-break: keep-all;
  line-height: 1.3;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.expanding-value-card:hover h4 {
  color: #ffffff !important;
  font-size: 22px;
}

.expanding-value-card .value-collapsed-title {
  display: none;
}

.expanding-value-card .value-expanded-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 0;
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.expanding-value-card:hover .value-expanded-desc {
  display: block;
  animation: slideUpFade 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}

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

/* Mobile responsive fallback */
@media (max-width: 991px) {
  .expanding-value-container {
    flex-direction: column;
    height: auto;
  }
  .expanding-value-card {
    flex: none !important;
    width: 100%;
    min-height: 140px;
    padding: 25px;
  }
  .expanding-value-card::before {
    opacity: 1 !important;
  }
  .expanding-value-card .value-card-content {
    color: #ffffff !important;
    justify-content: center !important;
  }
  .expanding-value-card h4 {
    color: #ffffff !important;
    font-size: 20px !important;
  }
  .expanding-value-card .value-icon-wrapper {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--theme-color2) !important;
  }
  .expanding-value-card .value-collapsed-title {
    display: none;
  }
  .expanding-value-card .value-expanded-desc {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- 4. WAVY SINE-WAVE FLOW (Overview Journey) --- */
.wave-flow-wrapper {
  position: relative;
  width: 100%;
  margin-top: 80px;
  padding: 60px 0;
}

.wave-flow-svg-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 160px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.wave-flow-svg-line path {
  animation: wave-march-ants 12s linear infinite;
}

@keyframes wave-march-ants {
  to { stroke-dashoffset: -100; }
}

.wave-flow-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
  gap: 30px;
}

.wave-flow-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wave-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  border: 5px solid var(--step-color);
  color: var(--step-color);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 4;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wave-flow-step:hover .wave-circle {
  background: var(--step-color);
  color: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.wave-callout {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(30, 38, 109, 0.08);
  width: 230px;
  border: 1px solid rgba(30, 38, 109, 0.05);
  position: relative;
  transition: all 0.4s ease;
}

.wave-flow-step:hover .wave-callout {
  transform: translateY(var(--hover-translate)) scale(1.03);
  box-shadow: 0 16px 40px rgba(30, 38, 109, 0.12);
  border-color: var(--step-color);
}

.wave-flow-step.pos-top {
  flex-direction: column;
}
.wave-flow-step.pos-top .wave-callout {
  margin-bottom: 50px;
  --hover-translate: -8px;
}
.wave-flow-step.pos-top .wave-callout::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #ffffff transparent;
}
.wave-flow-step.pos-top .wave-callout::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 11px 11px 0;
  border-style: solid;
  border-color: rgba(30, 38, 109, 0.05) transparent;
  z-index: -1;
}

.wave-flow-step.pos-bottom {
  flex-direction: column-reverse;
}
.wave-flow-step.pos-bottom .wave-callout {
  margin-top: 50px;
  --hover-translate: 8px;
}
.wave-flow-step.pos-bottom .wave-callout::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 10px 10px;
  border-style: solid;
  border-color: transparent transparent #ffffff;
}
.wave-flow-step.pos-bottom .wave-callout::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 11px 11px;
  border-style: solid;
  border-color: transparent transparent rgba(30, 38, 109, 0.05);
  z-index: -1;
}

.wave-callout h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--theme-color) !important;
  margin-bottom: 5px;
}

.wave-callout p {
  font-size: 12.5px;
  color: #666666 !important;
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .wave-flow-svg-line {
    display: none;
  }
  .wave-flow-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .wave-flow-step {
    flex-direction: row !important;
    width: 100%;
    max-width: 420px;
    gap: 20px;
  }
  .wave-callout {
    width: calc(100% - 100px);
    margin: 0 !important;
    text-align: left;
  }
  .wave-callout::after, .wave-callout::before {
    display: none;
  }
  .wave-circle {
    flex-shrink: 0;
  }
}

/* --- 5. LIQUID BLOB STEP PATHWAY (Admissions Procedure Redesign) --- */
.procedure-blob-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-top: 60px;
  position: relative;
}

.procedure-blob-card {
  width: 310px;
  height: 310px;
  background: #ffffff;
  padding: 35px 25px;
  box-shadow: 0 15px 40px rgba(30, 38, 109, 0.03);
  border: 1.5px solid rgba(30, 38, 109, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
  cursor: pointer;
}

/* Unique organic border-radii for each step to look like custom fluid droplets */
.blob-shape-1 { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; --blob-gradient: linear-gradient(135deg, #ffb800 0%, #e67e22 100%); --glow-color: rgba(255, 184, 0, 0.3); }
.blob-shape-2 { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; --blob-gradient: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%); --glow-color: rgba(46, 204, 113, 0.3); }
.blob-shape-3 { border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%; --blob-gradient: linear-gradient(135deg, #3498db 0%, #2980b9 100%); --glow-color: rgba(52, 152, 219, 0.3); }
.blob-shape-4 { border-radius: 70% 30% 50% 50% / 60% 30% 70% 40%; --blob-gradient: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%); --glow-color: rgba(155, 89, 182, 0.3); }
.blob-shape-5 { border-radius: 30% 70% 70% 30% / 50% 40% 60% 50%; --blob-gradient: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); --glow-color: rgba(231, 76, 60, 0.3); }
.blob-shape-6 { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; --blob-gradient: linear-gradient(135deg, #1abc9c 0%, #16a085 100%); --glow-color: rgba(26, 188, 156, 0.3); }

/* Hover effects: liquid shape shifting + gradient fills */
.procedure-blob-card:hover {
  transform: translateY(-10px) scale(1.04);
  background: var(--blob-gradient);
  border-color: transparent;
  box-shadow: 0 20px 45px var(--glow-color);
}

/* Fluid shift on hover */
.blob-shape-1:hover { border-radius: 50% 60% 50% 60% / 60% 50% 60% 50%; }
.blob-shape-2:hover { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; }
.blob-shape-3:hover { border-radius: 50% 50% 50% 50%; }
.blob-shape-4:hover { border-radius: 40% 60% 70% 30% / 60% 40% 60% 40%; }
.blob-shape-5:hover { border-radius: 60% 40% 30% 70% / 70% 30% 70% 30%; }
.blob-shape-6:hover { border-radius: 50% 60% 40% 50% / 50% 50% 50% 50%; }

.procedure-blob-card .blob-number {
  position: absolute;
  top: 25px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(30, 38, 109, 0.08);
  font-family: 'Outfit', sans-serif;
  transition: all 0.4s ease;
}

.procedure-blob-card:hover .blob-number {
  color: rgba(255, 255, 255, 0.2);
  transform: scale(1.2);
}

.procedure-blob-card .blob-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(30, 38, 109, 0.04);
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.procedure-blob-card:hover .blob-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: rotate(360deg);
}

.procedure-blob-card h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--theme-color) !important;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.procedure-blob-card:hover h5 {
  color: #ffffff !important;
}

.procedure-blob-card p {
  font-size: 13px;
  color: #666666 !important;
  line-height: 1.5;
  margin-bottom: 0;
  transition: color 0.4s ease;
}

.procedure-blob-card:hover p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* --- 6. STAIRCASE AGE ELIGIBILITY STAGES (Procedure page) --- */
.staircase-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.staircase-step {
  flex: 1;
  min-width: 200px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 12px 35px rgba(30, 38, 109, 0.05);
  border-top: 8px solid var(--stair-color) !important;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.stair-h1 { min-height: 200px; }
.stair-h2 { min-height: 240px; }
.stair-h3 { min-height: 280px; }
.stair-h4 { min-height: 320px; }

.staircase-step:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 45px rgba(30, 38, 109, 0.12);
  background: linear-gradient(to bottom, #ffffff 0%, #fdfcf7 100%);
}

.staircase-step .stair-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(30, 38, 109, 0.04);
  color: var(--stair-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px auto;
  transition: all 0.4s ease;
}

.staircase-step:hover .stair-icon {
  background: var(--stair-color);
  color: #ffffff;
}

.staircase-step h5 {
  font-size: 19px;
  font-weight: 800;
  color: var(--theme-color) !important;
  margin-bottom: 10px;
}

.staircase-step .stair-badge {
  background: var(--stair-color);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 15px;
}

/* --- 7. QUARTERLY TIMELINE DIAL (Fee Structure page) --- */
.quarter-timeline-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.quarter-dial-card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 30px 0 30px 30px !important;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1.5px solid rgba(30, 38, 109, 0.05);
  border-top: 8px solid var(--q-color) !important;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quarter-dial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(30, 38, 109, 0.08);
  border-color: var(--q-color);
}

.quarter-dial-card .q-header {
  font-size: 36px;
  font-weight: 900;
  color: var(--q-color);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 15px;
}

.quarter-dial-card h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--theme-color) !important;
  margin-bottom: 10px;
}

.quarter-dial-card p {
  font-size: 13px;
  color: #666666 !important;
  margin-bottom: 0;
  line-height: 1.5;
}

.quarter-dial-card .q-date {
  background: rgba(30, 38, 109, 0.04);
  color: var(--theme-color);
  font-weight: 800;
  padding: 8px 15px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 15px;
  font-size: 12.5px;
}

/* --- 8. FILE FOLDER DOCUMENT CARDS (Required Documents page) --- */
.folder-smart-card {
  background: #ffffff;
  clip-path: polygon(0 0, 40% 0, 48% 20px, 100% 20px, 100% 100%, 0 100%);
  padding: 45px 30px 30px 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
  border-left: 5px solid var(--folder-color) !important;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 15px;
}

.folder-smart-card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 50px;
  height: 50px;
  background: rgba(30, 38, 109, 0.03);
  border-radius: 50%;
  transform: translate(20px, -20px);
}

.folder-smart-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(30, 38, 109, 0.08);
}

.folder-smart-card .folder-tab-label {
  position: absolute;
  top: 0px;
  left: 20px;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  background: var(--folder-color);
  padding: 2px 14px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.folder-smart-card .folder-icon {
  font-size: 32px;
  color: var(--folder-color);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.folder-smart-card:hover .folder-icon {
  transform: scale(1.15) rotate(10deg);
}

.folder-smart-card h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--theme-color) !important;
  margin-bottom: 10px;
}

.folder-smart-card p {
  font-size: 13.5px;
  color: #555555 !important;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- 9. POCKET CLASS FEE BLOCKS (Fee Structure page) --- */
.fee-pocket-card {
  background: #ffffff;
  border-radius: 30px !important;
  border: 1.5px solid rgba(30, 38, 109, 0.05);
  border-top: 10px solid var(--pocket-color) !important;
  padding: 45px 35px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.02);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 50px;
}

.fee-pocket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(30, 38, 109, 0.08);
}

.fee-pocket-card .pocket-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pocket-color) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: -85px auto 25px auto;
  border: 6px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.fee-pocket-card:hover .pocket-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.fee-pocket-card h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--theme-color) !important;
  margin-bottom: 12px;
}

.fee-pocket-card p {
  font-size: 13.5px;
  color: #666666 !important;
  line-height: 1.5;
}

.fee-pocket-card .pocket-badge {
  background: rgba(200, 155, 44, 0.08);
  border: 1px dashed var(--theme-color2);
  color: var(--theme-color);
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13.5px;
  margin-top: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.fee-pocket-card:hover .pocket-badge {
  background: var(--theme-color2);
  color: #ffffff;
  border-color: var(--theme-color2);
}

/* --- 10. FAQ CATEGORY SIDEBAR & ACCORDION SYSTEM (FAQs page) --- */
.faq-sidebar-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(30, 38, 109, 0.04);
  border: 1px solid rgba(30, 38, 109, 0.05);
  position: sticky;
  top: 120px;
}

.faq-vertical-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 14px;
  margin-bottom: 12px;
  background: rgba(30, 38, 109, 0.02);
  color: var(--theme-color);
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.faq-vertical-pill:last-child {
  margin-bottom: 0;
}

.faq-vertical-pill i.pill-icon {
  margin-right: 15px;
  font-size: 18px;
  color: var(--theme-color2);
  transition: all 0.3s ease;
}

.faq-vertical-pill:hover {
  background: rgba(30, 38, 109, 0.05);
  transform: translateX(5px);
}

.faq-vertical-pill.active {
  background: linear-gradient(135deg, var(--theme-color) 0%, #0c123d 100%) !important;
  color: #ffffff !important;
  border-color: var(--theme-color) !important;
  box-shadow: 0 8px 25px rgba(30, 38, 109, 0.15);
}

.faq-vertical-pill.active i.pill-icon {
  color: var(--theme-color2) !important;
}

.faq-ribbon-item {
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(30, 38, 109, 0.02) !important;
  border: 1.5px solid rgba(30, 38, 109, 0.04) !important;
  margin-bottom: 20px !important;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.faq-ribbon-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(30, 38, 109, 0.06) !important;
  border-color: rgba(30, 38, 109, 0.1) !important;
}

.faq-ribbon-item .accordion-button {
  padding: 22px 28px !important;
  font-weight: 800 !important;
  font-size: 17px !important;
  color: var(--theme-color) !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-ribbon-item .accordion-button::after {
  display: none !important;
}

.faq-ribbon-item .accordion-button::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200, 155, 44, 0.1);
  color: var(--theme-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  order: 2;
  margin-left: auto;
  transition: all 0.3s ease;
}

.faq-ribbon-item .accordion-button:not(.collapsed)::before {
  transform: rotate(180deg);
  background: var(--theme-color2);
  color: #ffffff;
}

.faq-ribbon-item .accordion-button:not(.collapsed) {
  color: var(--theme-color) !important;
  background: rgba(30, 38, 109, 0.02) !important;
  border-bottom: 1.5px solid rgba(30, 38, 109, 0.04) !important;
}

.faq-ribbon-item .accordion-body {
  padding: 24px 28px !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
  color: #555555 !important;
  background: #ffffff !important;
}

/* --- 11. APPLY ONLINE CONTRAST & GLASS BENEFITS --- */
.apply-split-left {
  background: linear-gradient(135deg, var(--theme-color) 0%, #050a24 100%) !important;
  color: #ffffff !important;
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(12, 18, 61, 0.2);
}

.apply-split-left h3 {
  color: #ffffff !important;
}

.apply-split-left p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.apply-benefit-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  text-align: left;
}

.apply-benefit-card:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateX(8px);
}

.apply-benefit-card .benefit-icon {
  font-size: 26px;
  color: var(--theme-color2);
  margin-right: 20px;
  flex-shrink: 0;
}

.apply-benefit-card h6 {
  color: #ffffff !important;
  font-weight: 800 !important;
  margin-bottom: 3px !important;
}

.apply-benefit-card p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  margin-bottom: 0 !important;
}

.apply-form-container {
  background: #ffffff;
  border-radius: 30px !important;
  padding: 50px 40px !important;
  box-shadow: 0 20px 50px rgba(12, 18, 61, 0.05) !important;
  border: 1px solid rgba(30, 38, 109, 0.04);
}

/* --- 12. VISIT SCHEDULER CONTROLS --- */
.scheduler-grid-date {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.scheduler-date-pill {
  border: 1.5px solid rgba(30, 38, 109, 0.1) !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 15px 10px !important;
  text-align: center;
  cursor: pointer;
  color: var(--theme-color) !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.scheduler-date-pill:hover {
  border-color: var(--theme-color2) !important;
  transform: translateY(-3px);
}

.scheduler-date-pill.active {
  background: linear-gradient(135deg, var(--theme-color) 0%, #0d123b 100%) !important;
  color: #ffffff !important;
  border-color: var(--theme-color) !important;
  box-shadow: 0 10px 20px rgba(30, 38, 109, 0.15) !important;
}

.scheduler-date-pill span.day-num {
  font-size: 22px;
  font-weight: 800;
  display: block;
}

.scheduler-date-pill span.day-name {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-top: 2px;
}

/* --- 13. FAQ PAGE SEARCH BLOCK CLEANUP --- */
.faq-search-wrapper {
  max-width: 100%;
  position: relative;
  margin-bottom: 25px;
}

.faq-search-wrapper .form-control {
  height: 56px !important;
  border-radius: 14px !important;
  padding-left: 20px !important;
  padding-right: 55px !important;
  border: 1.5px solid rgba(30, 38, 109, 0.12) !important;
  box-shadow: 0 8px 25px rgba(30, 38, 109, 0.02) !important;
  transition: all 0.3s ease !important;
}

.faq-search-wrapper .form-control:focus {
  border-color: var(--theme-color) !important;
  box-shadow: 0 0 15px rgba(30, 38, 109, 0.12) !important;
}

.faq-search-wrapper .search-icon-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  border: none !important;
  color: var(--theme-color) !important;
  font-size: 18px !important;
  cursor: pointer;
}

/* --- 14. Premium Image Shapes (Liquid Organic Blobs & Frames) --- */
.premium-blob-image {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40% !important;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(30, 38, 109, 0.12) !important;
  border: 5px solid #ffffff;
}

.premium-blob-image:hover {
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50% !important;
  transform: scale(1.03) rotate(-2deg);
  box-shadow: 0 25px 50px rgba(30, 38, 109, 0.18) !important;
}

.premium-image-frame {
  position: relative;
  padding: 20px;
  z-index: 1;
  display: inline-block;
}

.premium-image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 6px solid var(--theme-color2);
  border-radius: 20px;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-image-frame img {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translate(20px, 20px);
}

.premium-image-frame:hover::before {
  transform: translate(12px, 12px);
  border-color: var(--theme-color);
}

.premium-image-frame:hover img {
  transform: translate(8px, 8px) scale(1.02);
}

/* --- 15. Stream Highlights --- */
.stream-highlight-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(30, 38, 109, 0.03);
  border: 1px solid rgba(30, 38, 109, 0.05);
}

.stream-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.stream-badge {
  background: rgba(30, 38, 109, 0.04);
  color: var(--theme-color);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(30, 38, 109, 0.06);
  transition: all 0.3s ease;
}

.stream-badge:hover {
  background: rgba(30, 38, 109, 0.08);
  transform: translateY(-2px);
}

.stream-badge.active {
  background: linear-gradient(135deg, var(--theme-color) 0%, #2b398f 100%);
  color: #ffffff;
  border-color: var(--theme-color);
  box-shadow: 0 8px 20px rgba(30, 38, 109, 0.15);
}
