﻿/* ========================================
   HOME PAGE STYLES - Yayasan CMS
   ======================================== */

/* CSS Variables are injected via inline style in home.php */

body {
  font-family: var(--cms-font) !important;
}

/* ========================================
   GLOBAL BUTTON STYLES
   ======================================== */
.btn-hero-primary {
  padding: 15px 35px;
  background: var(--hero-primary);
  color: #fff;
  font-weight: 600;
  border-radius: var(--cms-btn-radius);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.btn-hero-primary:hover {
  background: #145e42;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-hero-outline {
  padding: 15px 35px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  border-radius: var(--cms-btn-radius);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

/* ========================================
   HERO BANNER SECTION
   ======================================== */
.hero-banner-premium {
  --hero-bg-gradient: linear-gradient(135deg,
      var(--cms-secondary) 0%,
      #16213e 100%);
  --hero-accent: var(--cms-accent);
  --hero-primary: var(--cms-primary);
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hero-bg-gradient);
  padding: 80px 0;
  margin-top: 0;
  color: #ffffff;
}

.hero-banner-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 20%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 20%),
    radial-gradient(circle at 90% 80%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 20%);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: float-gentle 10s ease-in-out infinite;
}

@keyframes float-gentle {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -20px);
  }
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
  color: #ffffff;
}

.hero-badge i {
  color: var(--hero-accent);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: #ffffff !important;
}

.hero-title span {
  color: var(--hero-primary);
  position: relative;
  z-index: 1;
  display: inline-block;
}

.hero-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: skewX(-15deg);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  border-radius: 30px;
  width: 100%;
  max-width: 550px;
}

.main-hero-img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 5;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .main-hero-img {
  transform: scale(1.02);
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  z-index: 1;
  transform: translate(15px, 15px);
}

.stats-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 280px;
  animation: bounceIn 4s infinite;
}

.stats-icon-box {
  width: 50px;
  height: 50px;
  background: var(--hero-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.stats-info h4 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1;
}

.stats-info span {
  font-size: 13px;
  color: #555;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

@keyframes bounceIn {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .hero-banner-premium {
    padding: 60px 0;
    min-height: auto;
    text-align: center;
  }

  .hero-row {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .stats-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    width: 90%;
  }

  .hero-visual::after {
    display: none;
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-premium-section {
  position: relative;
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.about-premium-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: #f9fbfd;
  z-index: 1;
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-content-col {
  flex: 1;
  max-width: 600px;
}

.about-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hero-primary);
  margin-bottom: 20px;
  background: rgba(0, 153, 125, 0.1);
  padding: 8px 16px;
  border-radius: 4px;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  color: #0a294a;
  line-height: 1.3;
  margin-bottom: 30px;
  position: relative;
}

.about-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--hero-accent);
  margin-top: 15px;
  border-radius: 2px;
}

.about-heading-secondary {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
  border-left: 3px solid #0a294a;
  padding-left: 20px;
}

.about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.about-image-col {
  flex: 1;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  z-index: 5;
  border-radius: 20px;
}

.about-image-main {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.about-image-decorative {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--hero-accent, #fab702);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.5;
}

.about-shape-1 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle,
      var(--hero-primary, #00997d) 0%,
      transparent 70%);
  opacity: 0.1;
  z-index: 0;
}

@media (max-width: 991px) {
  .about-premium-section::before {
    width: 100%;
    height: 30%;
    bottom: 0;
    top: auto;
    clip-path: none;
  }

  .about-row {
    flex-direction: column;
    gap: 40px;
  }

  .about-content-col {
    text-align: center;
  }

  .about-title::after {
    margin: 15px auto 0;
  }

  .about-heading-secondary {
    border-left: none;
    border-bottom: 2px solid #0a294a;
    padding-bottom: 10px;
    padding-left: 0;
    display: inline-block;
  }

  .about-image-decorative {
    top: 20px;
    right: -20px;
  }
}

/* ========================================
   FEATURE SECTION
   ======================================== */
.feature-premium-section {
  padding: 100px 0;
  background: #f8faff;
  position: relative;
}

.feature-premium-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#e6eff8 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: 1;
}

.feature-container {
  position: relative;
  z-index: 2;
}

.feature-premium-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 153, 125, 0.15);
  border-color: rgba(0, 153, 125, 0.2);
}

.feature-premium-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--hero-primary, #00997d);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.feature-premium-card:hover::after {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(0, 153, 125, 0.05) 0%,
      rgba(10, 41, 74, 0.05) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.feature-premium-card:hover .feature-icon-wrapper {
  background: var(--hero-primary, #00997d);
  transform: rotateY(180deg);
}

.feature-icon-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.feature-premium-card:hover .feature-icon-wrapper img {
  filter: brightness(0) invert(1);
  transform: rotateY(180deg);
}

.feature-title-premium {
  font-size: 22px;
  font-weight: 700;
  color: var(--hero-bg-dark);
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}

.feature-desc-premium {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: sans-serif;
}

.feature-btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hero-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.feature-btn-premium:hover {
  color: #0a294a;
  letter-spacing: 2px;
}

.feature-btn-premium i {
  transition: transform 0.3s ease;
}

.feature-btn-premium:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .feature-premium-section {
    padding: 60px 0;
  }

  .feature-premium-card {
    margin-bottom: 20px;
  }
}

/* ========================================
   SERVICE SECTION
   ======================================== */
.service-premium-section {
  padding: 120px 0;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  position: relative;
}

.service-premium-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-premium-subtitle {
  color: var(--hero-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.service-premium-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--hero-bg-dark);
  line-height: 1.3;
}

.service-premium-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.service-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 66.66%;
  /* 3:2 Aspect Ratio (Standard Landscape) */
  overflow: hidden;
  background-color: #f3f4f6;
}

.service-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-premium-card:hover .service-img-main {
  transform: scale(1.05);
  /* Subtle zoom */
}

.service-icon-floating {
  position: absolute;
  bottom: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.service-icon-floating img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.service-card-content {
  padding: 40px 30px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-category {
  font-size: 13px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--hero-bg-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

.service-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card-title a:hover {
  color: var(--hero-primary);
}

.service-card-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-read-more {
  font-weight: 600;
  color: var(--hero-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.service-read-more:hover {
  gap: 10px;
  color: var(--hero-bg-dark);
}

/* ========================================
   PROGRAM SECTION
   ======================================== */
.program-premium-section {
  padding: 140px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.program-premium-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(10, 41, 74, 0.9) 0%,
      rgba(5, 21, 57, 0.8) 100%);
  z-index: -1;
}

.program-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.program-subtitle {
  color: var(--hero-accent);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: inline-block;
}

.program-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 50px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "Inter", sans-serif;
}

.premium-progress-wrapper {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  height: 40px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.premium-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  border-radius: 50px;
  position: relative;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
}

.premium-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(-45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
  z-index: 1;
  background-size: 50px 50px;
  animation: move 2s linear infinite;
  border-radius: 50px;
  overflow: hidden;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 50px;
  }
}

.progress-percent-label {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0a294a;
  font-weight: 800;
  font-size: 14px;
  z-index: 2;
}

.program-stats {
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
}

.stat-value {
  font-weight: 800;
  font-size: 24px;
  margin-left: 10px;
  color: var(--hero-accent);
  font-family: monospace;
}

@media (max-width: 768px) {
  .program-glass-card {
    padding: 30px;
  }

  .program-title {
    font-size: 28px;
  }

  .program-stats {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .stat-value {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
}

/* ========================================
   UPCOMING PROGRAMS SECTION
   ======================================== */
.upcoming-premium-section {
  padding: 100px 0;
  background: #f9fbfc;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.donation-premium-card {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.donation-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(10, 41, 74, 0.1) 0%,
      rgba(10, 41, 74, 0.9) 100%);
  z-index: 1;
}

.donation-content-premium {
  position: relative;
  z-index: 2;
}

.donation-subtitle {
  color: var(--hero-accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.donation-title-premium {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.donation-desc-premium {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.program-header-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 15px;
}

.program-header-text {
  font-size: 16px;
  color: #555;
  font-style: italic;
}

.program-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #e1e1e1;
  background: #fff;
  color: #0a294a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.program-nav-btn:hover {
  background: var(--hero-primary);
  border-color: var(--hero-primary);
  color: #fff;
}

.program-premium-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 520px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.program-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-img-wrapper {
  position: relative;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.program-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-premium-card:hover .program-img-main {
  transform: scale(1.1);
}

.program-content-premium {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-category-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--hero-primary);
  background: rgba(0, 153, 125, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
  align-self: flex-start;
}

.program-title-card {
  font-size: 18px;
  font-weight: 700;
  color: #0a294a;
  margin-bottom: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-title-card a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.program-title-card a:hover {
  color: var(--hero-primary);
}

.program-footer-stats {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: auto;
}

.program-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.stat-val {
  color: #0a294a;
  font-weight: 700;
}

.program-btn-premium {
  display: inline-block;
  background: #fff;
  color: var(--hero-bg-dark);
  padding: 12px 30px;
  border-radius: var(--cms-btn-radius);
  font-weight: 700;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s;
}

.program-btn-premium:hover {
  background: var(--hero-accent);
  color: var(--hero-bg-dark);
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.quote-premium-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.quote-bg-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.quote-premium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(10, 41, 74, 0.95),
      rgba(0, 153, 125, 0.85));
  z-index: 1;
}

.quote-content-wrapper {
  position: relative;
  z-index: 2;
}

.quote-premium-slider {
  overflow: hidden;
  padding: 20px;
}

.quote-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-icon-premium {
  font-size: 60px;
  color: var(--hero-accent);
  margin-bottom: 40px;
  opacity: 1;
  display: inline-block;
  filter: drop-shadow(0 5px 15px rgba(250, 183, 2, 0.3));
}

.quote-text-premium {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
  margin-bottom: 40px;
}

.quote-text-premium span {
  display: block;
  margin-top: 15px;
}

.quote-author-premium {
  font-size: 20px;
  font-weight: 700;
  color: var(--hero-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.quote-source-premium {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-style: italic;
}

.quote-decoration-line {
  width: 80px;
  height: 3px;
  background: var(--hero-accent);
  margin: 30px auto;
  border-radius: 2px;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--hero-accent);
  opacity: 1;
}

@media (max-width: 768px) {
  .quote-text-premium {
    font-size: 24px;
  }

  .quote-glass-card {
    padding: 40px 20px;
  }
}