@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --background-color: #ffffff;
  --default-color: #cbae78;
  --heading-color: #cbae78;
  --accent-color: #cbae78;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Derived/Utility vars */
  --nav-bg: #cbae78;
  /* Dark pill for contrast, or use default-color */
  --border-radius: 25px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  background-color: var(--background-color);
  font-size: 62.5%;
  /* 1rem = 10px */
  font-family: 'Poppins', sans-serif;
  color: #cbae78;
}

/* --- NAV: DYNAMIC ISLAND STYLE REMOVED --- */

/* Main Header styles handled by main.css */

/* --- SECTIONS --- */
section {
  position: relative;
  min-height: 100svh;
  height: auto;
  width: 100%;
  background-color: var(--background-color);
  overflow: hidden;
}

/* Hero Carousel Section */
/* Hero Carousel Section */
.program-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* Full screen height for impact */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-video video,
.video-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s linear;
  /* Smooth crossfade duration */
}

.video-layer.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--background-color) 0%, transparent 50%, rgba(255, 255, 255, 0.4) 100%);
  z-index: 1;
}

#heroCarousel {
  position: relative;
  width: 100%;
  z-index: 2;
  /* Ensure content is above video */
}

.program-hero .carousel {
  width: 100%;
}

.program-hero .carousel-item {
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}


/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.program-hero .hero-text {
  padding: 2rem;
  z-index: 2;
}

.program-hero .carousel-item.active .hero-title {
  animation: fadeInUp 0.8s ease-out forwards;
}

.program-hero .carousel-item.active .hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
  /* Star hidden for delay */
}

.program-hero .carousel-item.active .btn-hero {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
  /* Start hidden for delay */
}

.program-hero .hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  /* Extra bold */
  font-size: 5.2rem;
  /* Even Larger */
  line-height: 1.05;
  /* Tight line height */
  color: #bca06b;
  /* Slightly darker gold for better readability */
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
  /* Initial state handled by animation in active slide */
}

.program-hero .hero-title span {
  color: #7a5c38;
  /* Deeper brown for better "Program" contrast */
  display: block;
}

.program-hero .hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  /* Slightly larger for clarity */
  color: #444;
  /* Darker grey for better contrast */
  margin-bottom: 3rem;
  max-width: 90%;
  line-height: 1.6;
  font-weight: 500;
  /* Medium weight */
}

.program-hero .btn-hero {
  display: inline-block;
  background-color: #cbae78;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  /* Larger button text */
  padding: 14px 40px;
  /* Wider button */
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(203, 174, 120, 0.4);
}

.program-hero .btn-hero:hover {
  background-color: #b0925b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(203, 174, 120, 0.6);
  color: #fff;
}

.program-hero .hero-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.program-hero .hero-img img {
  max-height: 550px;
  width: auto;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

/* Hover effect on image */
.program-hero:hover .hero-img img {
  transform: scale(1.02);
}

/* Carousel Indicators override */
.program-hero .carousel-indicators [data-bs-target] {
  background-color: #cbae78;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  border: none;
  opacity: 0.5;
}

.program-hero .carousel-indicators .active {
  opacity: 1;
  width: 30px;
  /* Pill shape for active */
  border-radius: 10px;
}

/* Carousel Controls override */
.program-hero .carousel-control-prev-icon,
.program-hero .carousel-control-next-icon {
  background-color: rgba(203, 174, 120, 0.5);
  border-radius: 50%;
  padding: 2rem;
  background-size: 50%;
}

.program-hero .carousel-control-prev,
.program-hero .carousel-control-next {
  width: 5%;
}

/* Responsive */
@media (max-width: 991px) {
  .program-hero {
    text-align: center;
    padding-top: 6rem;
    /* Space for navbar */
  }

  .program-hero .hero-text {
    order: 2;
    padding-bottom: 4rem;
  }

  .program-hero .hero-img {
    order: 1;
    margin-bottom: 2rem;
  }

  .program-hero .hero-text {
    text-align: center !important;
    /* Force center on mobile */
  }

  .program-hero .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .program-hero .hero-img img {
    max-height: 280px; /* Reduced to show more text/CTA above fold */
  }

  .program-hero .hero-title {
    font-size: 2.8rem; /* Scaled down for better fit */
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .program-hero .hero-subtitle {
    font-size: 1.2rem;
    max-width: 95%;
    margin-bottom: 2rem;
  }

  .program-hero .btn-hero {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}

/* Section 3 (Content & Features) */
.section3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #cbae78;
  padding: 6rem 2rem;
  min-height: 100vh;
  background: var(--background-color);
  overflow: hidden;
}

.section3 .container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section3 .container .title {
  font-size: 5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #cbae78;
  line-height: 1.1;
  letter-spacing: -2px;
  position: relative;
}

@media (max-width: 768px) {
  .section3 .container .title {
    font-size: 3rem;
  }
}

.section3 .container .title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section3 .container .subtitle {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #cbae78;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section3 .container .subtitle::before,
.section3 .container .subtitle::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #cbae78;
  font-size: 1.2rem;
}

.section3 .container .subtitle::before {
  left: -30px;
}

.section3 .container .subtitle::after {
  right: -30px;
}

.section3 .container .text-content .text {
  font-size: 1.6rem;
  /* Increased from 1.3rem to 16px */
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #cbae78;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 800px;
  /* Slightly wider */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section3 .container .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}

/* Feature Cards */
.section3 .container .features .feature {
  background: var(--surface-color);
  border-radius: var(--border-radius);
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px -10px rgba(203, 174, 120, 0.2);
  border: 1px solid rgba(203, 174, 120, 0.1);
}

@media (max-width: 768px) {
  .section3 .container .features .feature {
    padding: 2.5rem 1.8rem; /* Ramping padding for mobile */
    min-height: auto;
  }
  
  .section3 .container .features {
    grid-template-columns: 1fr; /* Force single column on smaller phones */
    gap: 1.5rem;
  }
}

.section3 .container .features .feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(203, 174, 120, 0.1), transparent);
  transition: left 0.6s ease;
}

.section3 .container .features .feature:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px -10px rgba(203, 174, 120, 0.4);
  border-color: var(--accent-color);
}

.section3 .container .features .feature:hover::before {
  left: 100%;
}

.section3 .container .features .feature h3 {
  font-size: 2.2rem;
  /* Increased from 1.8rem */
  font-weight: 700;
  color: #cbae78;
  margin-bottom: 1.5rem;
}

.section3 .container .features .feature p {
  font-size: 1.4rem;
  /* Increased from 1.1rem to 14px */
  font-weight: 300;
  color: #cbae78;
  line-height: 1.7;
}

.section3 .container .features .feature ul {
  text-align: left;
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.section3 .container .features .feature ul li {
  font-size: 1.4rem;
  /* Increased from 1.1rem to 14px */
  color: #cbae78;
  border-bottom: 1px solid rgba(203, 174, 120, 0.2);
  padding: 8px 0;
}

.section3 .container .features .feature ul li::before {
  content: '•';
  color: #cbae78;
  margin-right: 8px;
}

.btn-cta {
  margin-top: auto;
  display: inline-block;
  padding: 10px 20px;
  background: #cbae78;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  transition: 0.3s;
  font-size: 1.4rem;
  /* Increased from 1.2rem */
}

.btn-cta:hover {
  background: #bca06b;
  /* Slightly darker gold for hover */
  color: #ffffff;
}

/* INTEGRATED SYSTEM */
.horizontal {
  min-height: 100vh;
  padding: 120px 5%;
  background: var(--background-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horizontal__track {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.panel {
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}

.panel:nth-child(even) {
  flex-direction: row-reverse;
}

.panel h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #cbae78;
}

.panel p {
  color: #cbae78;
  font-size: 1.6rem;
  /* Increased from 1.2rem to 16px */
  line-height: 1.6;
  max-width: 500px;
}

.panel img {
  width: 50%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px #cbae78;
  transition: .5s;
}

.panel:hover img {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(203, 174, 120, 0.4);
}

/* RESPONSIVE PANEL */
@media (max-width: 768px) {
  .horizontal {
    padding: 60px 20px;
  }

  .horizontal__track {
    gap: 60px;
  }

  .panel {
    flex-direction: column !important;
    gap: 30px;
    text-align: center;
  }

  .panel h2 {
    font-size: 32px;
  }

  .panel img {
    width: 100%;
    box-shadow: 0 10px 25px rgba(203, 174, 120, 0.3); /* Softer shadow for mobile */
  }

  .panel p {
    margin: 0 auto;
    font-size: 1.4rem;
  }
}

/* STATEMENT */
.statement {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--background-color);
  text-align: center;
  padding: 0 20px;
}

.statement h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  color: #cbae78;
}

@media (max-width: 768px) {
  .statement h2 {
    font-size: 36px;
  }
}

/* FOOTER */
/* FOOTER - handled by main.css */

/* Scroll Down Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #cbae78;
  z-index: 5;
  cursor: pointer;
  transition: color 0.3s;
}

.scroll-down-indicator:hover {
  color: #ffffff;
}

.scroll-down-indicator span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-down-indicator i {
  font-size: 24px;
  animation: bounce 2s infinite;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(10px);
  }

  60% {
    transform: translateY(5px);
  }
}

/* --- PREMIUM MODAL STYLES --- */
.program-modal-content {
  background-color: #fafafa;
  color: #333;
  border: none;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-size: 1.6rem; /* Ensure base font size is 16px (1rem = 10px) */
}

/* Override bootstrapping 'small' text to be readable */
.program-modal-content .small,
.program-modal-content small {
  font-size: 1.4rem !important; /* ~14px */
  line-height: 1.5;
}

.program-modal-content .text-muted {
  color: #666 !important; /* Slightly darker for better readability */
}

.program-modal-content .modal-header {
  padding: 2rem 2rem 0;
  border-bottom: none;
}

.program-modal-content .btn-close {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  padding: 1rem;
  transition: all 0.2s;
}

.program-modal-content .btn-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.program-modal-content .modal-body {
  padding: 3rem 5rem;
}

@media (max-width: 991px) {
  .program-modal-content .modal-body {
    padding: 2.5rem 2rem;
  }
}

/* Titles */
.program-section-title {
  color: var(--default-color);
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  margin-bottom: 2.5rem;
  display: inline-block;
  font-size: 3.6rem; /* Larger Title */
}

@media (max-width: 768px) {
  .program-section-title {
    font-size: 2.8rem;
  }
}

/* Service / Feature Cards */
.program-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem; /* More padding */
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0,0,0,0.02);
  border-left: 4px solid var(--default-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-card h4, 
.program-card h5, 
.program-card h6 {
  font-size: 1.8rem; /* Larger card headings */
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.program-card p, 
.program-card li {
  font-size: 1.5rem; /* Larger body text */
  line-height: 1.7; /* Better breathing room */
  margin-bottom: 0.8rem;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.program-card.card-accent {
  background: #fdfdfd;
  border: 1px dashed var(--default-color);
  border-left: 1px dashed var(--default-color); /* Override standard border left */
}

/* Flow Charts & Steps */
.flow-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 4rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.flow-step-circle {
  width: 70px; /* Larger circle */
  height: 70px;
  background: linear-gradient(135deg, #cbae78 0%, #a68b5b 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem; /* Larger detail */
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px -5px rgba(203, 174, 120, 0.4);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.flow-step-item h6 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.flow-step-item p {
  font-size: 1.4rem;
}

.flow-step-item:hover .flow-step-circle {
  transform: scale(1.1);
}

/* Mobile Lists */
.mobile-flow-list .list-group-item {
  border: none;
  background: transparent;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 1.5rem; /* Readable list items */
}
.mobile-flow-list .list-group-item:last-child {
  border-bottom: none;
}
.mobile-badge {
  background-color: var(--default-color) !important;
  width: 35px;
  height: 35px;
  min-width: 35px; /* prevent shrinking */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
}

/* Accordion Specifics (Dea Rent) */
.custom-accordion .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 1.5rem;
}
.custom-accordion .accordion-button {
  background: #ffffff;
  border-radius: 12px !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  font-weight: 700;
  color: #444;
  padding: 1.5rem 2rem;
  font-size: 1.6rem; /* Larger trigger text */
}
.custom-accordion .accordion-button:not(.collapsed) {
  background: #fcf9f2; /* Ultra light gold tint */
  color: var(--default-color);
  box-shadow: 0 4px 12px rgba(203, 174, 120, 0.15);
}
.custom-accordion .accordion-button::after {
  background-size: 1.2rem;
}
.custom-accordion .accordion-body {
  background: #fff;
  border-radius: 0 0 12px 12px;
  margin-top: -5px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.03);
  border-top: none;
  font-size: 1.5rem; /* Larger body content */
  line-height: 1.7;
}

/* Timeline (Studentpreneur) */
.timeline-track {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 3px;
  background: #eee;
  z-index: 0;
  display: none; /* Hidden on mobile */
}
@media (min-width: 992px) {
  .timeline-track::before {
    display: block;
  }
}

.timeline-card-step {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.timeline-card-step h6 {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.timeline-card-step strong {
  font-size: 1.6rem;
}
.timeline-card-step p {
  font-size: 1.3rem; /* description */
  line-height: 1.4;
}

.timeline-card-step:hover {
  border-color: var(--default-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05);
}

/* General Utilities */
.text-gold {
  color: var(--default-color) !important;
}
.bg-gold {
  background-color: var(--default-color) !important;
}

.btn-contact-float {
  background: linear-gradient(135deg, #cbae78 0%, #b0925b 100%);
  color: white;
  border-radius: 50px;
  padding: 15px 50px; /* Larger hit area */
  font-size: 1.6rem; /* Readable button text */
  font-weight: 700;
  box-shadow: 0 10px 25px -5px rgba(203, 174, 120, 0.5);
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}
.btn-contact-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(203, 174, 120, 0.6);
  color: white;
}

/* --- DEAPOINT HIGHLIGHT FEATURE --- */
.section3 .container .features .feature.feature-highlight {
  grid-column: 1 / -1; /* Span full width */
  background: #cbae78;
  color: #ffffff;
  border: 1px solid #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 4rem 5rem;
  overflow: hidden;
  position: relative;
}

.section3 .container .features .feature.feature-highlight::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
  z-index: 0;
  pointer-events: none;
}

.section3 .container .features .feature.feature-highlight .content-wrapper {
  flex: 1;
  z-index: 1;
  padding-right: 2rem;
}

.section3 .container .features .feature.feature-highlight h3 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section3 .container .features .feature.feature-highlight p {
  color: #ffffff;
  font-size: 1.6rem;
  max-width: 90%;
}

.section3 .container .features .feature.feature-highlight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.section3 .container .features .feature.feature-highlight ul li {
  border-bottom: none;
  font-size: 1.5rem;
  color: #ffffff;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section3 .container .features .feature.feature-highlight ul li::before {
  content: '★'; /* Star icon for points */
  margin-right: 8px;
}

.section3 .container .features .feature.feature-highlight .icon-wrapper {
  z-index: 1;
  font-size: 8rem;
  color: #ffffff;
  transform: rotate(-15deg);
  transition: all 0.5s ease;
}

.section3 .container .features .feature.feature-highlight:hover .icon-wrapper {
  color: rgba(255, 255, 255, 0.8);
  transform: rotate(0deg) scale(1.1);
}

/* Responsive DEAPOINT */
@media (max-width: 991px) {
  .section3 .container .features .feature.feature-highlight {
    flex-direction: column;
    text-align: center;
    padding: 3rem;
  }
  
  .section3 .container .features .feature.feature-highlight .content-wrapper {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .section3 .container .features .feature.feature-highlight ul {
    justify-content: center;
  }
  
  .section3 .container .features .feature.feature-highlight h3 {
    font-size: 2.5rem;
  }
}

/* =============================================
   MOBILE POLISH — Programs Page
============================================= */
@media (max-width: 768px) {
  /* Hero — compact for mobile */
  .program-hero {
    min-height: 85vh;
  }

  .program-hero .hero-title {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
  }

  .program-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .program-hero .btn-hero {
    font-size: 1.1rem;
    padding: 12px 30px;
    width: 100%;
    text-align: center;
  }

  .program-hero .hero-img img {
    max-height: 250px;
  }

  .program-hero .carousel-control-prev,
  .program-hero .carousel-control-next {
    display: none;
  }

  .scroll-down-indicator {
    bottom: 15px;
  }

  /* Section 3 — compact */
  .section3 {
    padding: 3rem 1rem;
    min-height: auto;
  }

  .section3 .container .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .section3 .container .features .feature {
    padding: 2.5rem 2rem;
  }

  .section3 .container .features .feature:hover {
    transform: none;
  }

  .section3 .container .features .feature:active {
    transform: scale(0.98);
  }

  .section3 .container .text-content .text {
    font-size: 1.3rem;
  }

  /* Statement compact */
  .statement {
    height: auto;
    padding: 4rem 20px;
  }

  .statement h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  /* Modal — bottom sheet on mobile */
  .program-modal-content {
    border-radius: 20px 20px 0 0;
  }

  .program-modal-content .modal-body {
    padding: 2rem 1.5rem;
  }

  .program-modal-content .modal-header {
    padding: 1.2rem 1.5rem 0;
  }

  .program-section-title {
    font-size: 2.2rem;
  }

  .program-card {
    padding: 2rem 1.5rem;
  }

  .flow-container {
    padding: 2rem 1.5rem;
  }

  /* Flow badges wrap nicely */
  .flow-container .d-flex.flex-wrap {
    gap: 6px !important;
  }

  .flow-container .badge {
    font-size: 0.75rem;
    padding: 8px 12px !important;
  }

  .flow-container .bi-arrow-right {
    display: none;
  }

  .btn-contact-float {
    width: 100%;
    text-align: center;
  }
}

