@font-face {
  font-family: "iransansweb";
  src:
    url("../fonts/IranSansWeb/IRANSansWeb.woff") format("woff"),
    url("../fonts/IranSansWeb/IRANSansWeb.ttf") format("truetype");
  font-display: swap;
}
/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --spring-green: #2ecc71;
  --spring-lime: #a8e063;
  --spring-yellow: #f9ca24;
  --spring-pink: #fd79a8;
  --spring-sky: #74b9ff;
  --spring-dark: #0d1f0f;
  --spring-card: #102212;
  --spring-border: #1e3a20;
  --spring-text: #e8f5e9;
  --spring-muted: #81c784;
  --glow-green: 0 0 18px rgba(46, 204, 113, 0.45);
  --glow-yellow: 0 0 18px rgba(249, 202, 36, 0.45);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "iransansweb", sans-serif;
  background: var(--spring-dark);
  color: var(--spring-text);
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
}
a:hover {
  color: var(--spring-card);
}

/* ─── Petal Canvas ─── */
#petalCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ─── Section Heading ─── */
.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--spring-text);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-heading span {
  color: var(--spring-green);
}

.section-sub {
  text-align: center;
  color: var(--spring-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

/* ═══════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════ */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.academy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--spring-green);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.45rem 1.4rem;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--spring-text);
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.hero-accent {
  color: var(--spring-green);
  position: relative;
}

.hero-accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--spring-green), var(--spring-lime));
  border-radius: 2px;
}

.title-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--spring-green), var(--spring-lime));
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--spring-muted);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.discount-highlight {
  color: var(--spring-yellow);
  font-weight: 800;
  font-size: 1.15em;
}

/* ─── Courses Grid ─── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

/* Hero Course Card */
.hero-section .course-card {
  background: var(--spring-card);
  border: 1px solid var(--spring-border);
  border-radius: 24px;
  padding: 2rem;
  text-align: right;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.hero-section .course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--spring-green),
    var(--spring-lime),
    var(--spring-yellow)
  );
}

.hero-section .course-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    var(--glow-green),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.course-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--spring-green);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.2rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--spring-green);
  display: inline-block;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.course-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--spring-text);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.course-title i {
  color: var(--spring-green);
  margin-left: 0.4rem;
}

.course-description {
  font-size: 0.88rem;
  color: var(--spring-muted);
  line-height: 1.9;
  margin-bottom: 0;
}

.card-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--spring-border),
    transparent
  );
  margin: 1.5rem 0;
}

/* Timer inside hero cards */
.timer-section {
  margin-bottom: 1.5rem;
}

.timer-label {
  font-size: 0.78rem;
  color: var(--spring-muted);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.timer-label i {
  color: var(--spring-yellow);
}

.timer-display {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  direction: ltr;
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(249, 202, 36, 0.08);
  border: 1px solid rgba(249, 202, 36, 0.2);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  min-width: 54px;
}

.timer-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--spring-yellow);
  line-height: 1;
}

.timer-unit {
  font-size: 0.6rem;
  color: var(--spring-muted);
  margin-top: 3px;
}

/* Price section */
.price-section {
  display: flex;
  align-items: center;
  background: rgba(46, 204, 113, 0.05);
  border: 1px solid rgba(46, 204, 113, 0.15);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  gap: 0;
}

.price-item {
  flex: 1;
  text-align: center;
}

.price-divider {
  width: 1px;
  height: 50px;
  background: var(--spring-border);
  margin: 0 1rem;
}

.price-label {
  font-size: 0.72rem;
  color: var(--spring-muted);
  margin-bottom: 0.3rem;
}

.price-value {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--spring-yellow);
  line-height: 1;
}

.price-badge {
  display: inline-block;
  background: rgba(253, 121, 168, 0.12);
  border: 1px solid rgba(253, 121, 168, 0.25);
  color: var(--spring-pink);
  font-size: 0.65rem;
  border-radius: 20px;
  padding: 2px 8px;
  margin-top: 0.4rem;
}

/* CTA Button */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--spring-green), var(--spring-lime));
  color: var(--spring-dark);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  width: 100%;
  font-family: "IranSans", sans-serif;
}

.cta-button:hover {
  transform: scale(1.03);
  box-shadow: var(--glow-green);
  color: var(--spring-dark);
  text-decoration: none;
}

.cta-button i {
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════
       SECTION 1 — FEATURES (Rotating Circles)
    ═══════════════════════════════════════ */
.features-section {
  position: relative;
  z-index: 1;
  padding: 30px 0 80px;
}

.off-text-green {
  color: var(--spring-green);
  font-weight: 700;
}

/* Rotating wrapper */
.rotating-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
}

.rotating-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px dashed transparent;
  border-top-color: var(--spring-green);
  border-right-color: var(--spring-lime);
  animation: spinBorder 4s linear infinite;
}

.rotating-border::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed transparent;
  border-bottom-color: var(--spring-yellow);
  border-left-color: var(--spring-pink);
  animation: spinBorderReverse 6s linear infinite;
}

@keyframes spinBorder {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinBorderReverse {
  to {
    transform: rotate(-360deg);
  }
}

.circle-text {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a3a1e, #0d1f0f);
  border: 1px solid var(--spring-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  gap: 0.4rem;
  box-shadow:
    var(--glow-green),
    inset 0 0 20px rgba(46, 204, 113, 0.08);
  transition: transform 0.3s ease;
}

.circle-text:hover {
  transform: scale(1.06);
}

.circle-text i {
  font-size: 1.8rem;
  color: var(--spring-green);
  filter: drop-shadow(0 0 6px rgba(46, 204, 113, 0.7));
}

.circle-text .circle-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--spring-text);
  line-height: 1.4;
}

.circle-text .circle-badge {
  font-size: 0.72rem;
  color: var(--spring-yellow);
  background: rgba(249, 202, 36, 0.12);
  border: 1px solid rgba(249, 202, 36, 0.3);
  border-radius: 20px;
  padding: 2px 10px;
}

/* Chevron connector */
.chevron-icon {
  color: var(--spring-green);
  font-size: 1.5rem;
  opacity: 0.6;
  margin: 0 0.5rem;
  animation: pulseChevron 1.5s ease-in-out infinite;
}

@keyframes pulseChevron {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-5px);
  }
}

/* Feature cards row */
.feature-card {
  background: var(--spring-card);
  border: 1px solid var(--spring-border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-green);
}
.feature-card .fc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
}
.feature-card h5 {
  font-weight: 700;
  color: var(--spring-text);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--spring-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
       SECTION 2 — 50% OFF COURSES
    ═══════════════════════════════════════ */
.courses-section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.countdown-box {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(249, 202, 36, 0.08);
  border: 1px solid rgba(249, 202, 36, 0.25);
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  margin-bottom: 2rem;
  direction: ltr;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.countdown-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--spring-yellow);
  line-height: 1;
  min-width: 2.2ch;
  text-align: center;
}
.countdown-label {
  font-size: 0.62rem;
  color: var(--spring-muted);
}
.countdown-sep {
  font-size: 1.4rem;
  color: var(--spring-yellow);
  font-weight: 800;
  padding-bottom: 6px;
}

/* Course card */
.course-card {
  background: var(--spring-card);
  border: 1px solid var(--spring-border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.courses-section .course-card:hover,
.courses-section .course-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    var(--glow-green),
    0 12px 40px rgba(0, 0, 0, 0.5);
}
.courses-section .course-card img {
  width: 100%;
  object-fit: cover;
}
.course-card-body {
  padding: 1.2rem 1.4rem;
}
.course-card-body h6 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--spring-text);
  margin-bottom: 0.6rem;
}
.course-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: var(--spring-green);
  font-size: 0.72rem;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 0.8rem;
}
.price-old {
  text-decoration: line-through;
  color: var(--spring-muted);
  font-size: 0.82rem;
}
.price-new {
  color: var(--spring-yellow);
  font-weight: 800;
  font-size: 1.1rem;
}
.off-badge {
  background: linear-gradient(135deg, var(--spring-pink), #e84393);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 10px;
}

/* ═══════════════════════════════════════
       SECTION 3 — PRICING PLANS
    ═══════════════════════════════════════ */
.pricing-section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.plan-card {
  background: var(--spring-card);
  border: 1px solid var(--spring-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.plan-card::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.18),
    transparent 70%
  );
  pointer-events: none;
}
.plan-card.featured {
  border-color: var(--spring-green);
  box-shadow: var(--glow-green);
}
.plan-card.featured::before {
  background: radial-gradient(circle, rgba(46, 204, 113, 0.3), transparent 70%);
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-green);
}

.plan-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--spring-green), var(--spring-lime));
  color: var(--spring-dark);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 20px;
  padding: 4px 16px;
  white-space: nowrap;
}

.plan-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 1rem;
  font-size: 1.8rem;
}

.plan-card h4 {
  font-weight: 800;
  color: var(--spring-text);
  margin-bottom: 0.3rem;
}
.plan-card .plan-sub {
  font-size: 0.82rem;
  color: var(--spring-muted);
  margin-bottom: 1.5rem;
}
.plan-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--spring-yellow);
  line-height: 1;
}
.plan-price span {
  font-size: 0.85rem;
  color: var(--spring-muted);
  font-weight: 400;
}
.plan-divider {
  border-color: var(--spring-border);
  margin: 1.5rem 0;
}
.plan-features {
  list-style: none;
  text-align: right;
  padding: 0;
  margin-bottom: 2rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--spring-muted);
  padding: 0.35rem 0;
}
.plan-features li i {
  color: var(--spring-green);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.plan-features li.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}
.plan-features li.disabled i {
  color: #e74c3c;
}

.btn-spring {
  background: linear-gradient(135deg, var(--spring-green), var(--spring-lime));
  color: var(--spring-dark);
  font-weight: 800;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-size: 0.95rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-spring:hover {
  transform: scale(1.04);
  box-shadow: var(--glow-green);
}
.btn-spring-outline {
  background: transparent;
  border: 2px solid var(--spring-green);
  color: var(--spring-green);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.65rem 2rem;
  font-size: 0.95rem;
  transition: all 0.2s;
  width: 100%;
  cursor: pointer;
}
.btn-spring-outline:hover {
  background: var(--spring-green);
  color: var(--spring-dark);
}

/* ═══════════════════════════════════════
       SECTION 4 — STUDENT COMMENTS (Swiper)
    ═══════════════════════════════════════ */
.comments-section {
  position: relative;
  z-index: 1;
  padding: 40px 0 100px;
}

.swiper-comments {
  padding-bottom: 60px !important;
  padding-top: 10px !important;
}

.swiper-comments .swiper-slide {
  height: auto;
}

.comment-card {
  background: var(--spring-card);
  border: 1px solid var(--spring-border);
  border-radius: 20px;
  padding: 1.8rem;
  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.comment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-green);
}

.comment-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--spring-green);
  object-fit: cover;
  flex-shrink: 0;
}

.comment-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--spring-green);
  background: linear-gradient(135deg, var(--spring-green), var(--spring-lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--spring-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.comment-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--spring-text);
}
.comment-role {
  font-size: 0.75rem;
  color: var(--spring-muted);
}
.comment-stars i {
  color: var(--spring-yellow);
  font-size: 0.8rem;
}
.comment-text {
  font-size: 0.88rem;
  color: var(--spring-muted);
  line-height: 1.8;
  margin-top: 1rem;
}

/* Video comment card */
.video-comment-card {
  background: #080e09;
  border: 1px solid var(--spring-border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.video-comment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-green);
}
.video-comment-card video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.video-comment-info {
  padding: 1rem 1.2rem;
}
.video-play-overlay {
  position: relative;
}
.video-play-overlay::after {
  content: "\f144";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 20px rgba(46, 204, 113, 0.8);
  pointer-events: none;
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--spring-green) !important;
}
.swiper-pagination-bullet {
  background: var(--spring-muted) !important;
}
.swiper-pagination-bullet-active {
  background: var(--spring-green) !important;
}

/* ─── Divider ─── */
.spring-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--spring-border),
    transparent
  );
  margin: 0;
}

/* ─── Floating blobs ─── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ─── Utilities ─── */
.z1 {
  position: relative;
  z-index: 1;
}

.accordion-button {
  background-color: transparent !important;
  outline: none !important;
  padding: 25px 15px;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
  color: #ffffff; /* متن پیش‌فرض سفید */
  border: none;
  transition: color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: var(--spring-yellow) !important; /* رنگ بنفش پررنگ وقتی باز است */
  background-color: rgba(158, 18, 177, 0.1); /* پس‌زمینه کمی رنگی */
  border-radius: 8px;
}

.accordion-button:focus {
  border-bottom: 1px solid #ccc;
  box-shadow: none !important;
  color: var(--spring-yellow) !important;
}

.accordion-button::after {
  margin-left: 0;
  margin-right: auto !important;
  filter: brightness(80%); /* کمی تغییر رنگ فلش */
}

.accordion-item {
  margin-top: 10px;
  border: 1px solid #ccc !important;
  border-radius: 8px;
  background-color: #1c1c1c; /* بک‌گراند تیره برای آیتم */
}

.accordion-body {
  padding: 25px 25px;
  color: #ddd; /* متن روشن در بدنه آکاردئون */
  font-size: 14px;
  line-height: 1.6;
}

.accordion-body ul {
  padding-right: 20px;
}

.accordion-body ul li {
  margin-bottom: 10px;
}

.off-accordion-button {
  transition: color 0.3s ease;
}

.off-accordion-button.collapsed:hover {
  color: var(--spring-yellow);
  cursor: pointer;
}

/* اگر اکوردئون آیکون دارد، رنگ آنها */
.accordion__Icon {
  color: #939aa3;
  font-size: 22px;
  transition: color 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion__Icon {
  color: var(--spring-yellow);
}

/* ─── Footer ─── */
footer {
  background: var(--card-bg);
  padding: 40px 20px 20px;
  margin-top: 80px;
  border-top: 2px solid rgba(255, 105, 180, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--spring-yellow);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: var(--text-muted);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--spring-pink);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 105, 180, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spring-pink);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--spring-pink);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-card {
  background-color: #1c1c1c;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  color: #fff;
}

.price-card.highlight {
  border-color: #d2691e;
}

.price-card h2 {
  font-size: 70px;
  font-weight: bold;
}

.price-card p {
  margin: 0;
}

.price-card .price-label {
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
}

.price-card .price-desc {
  font-size: 14px;
  color: #bbb;
  margin-top: 0.8rem;
}

.price-card:not(.highlight):hover {
  border-color: #666;
}

/* ─── Back to Home Button ─── */
.back-to-home {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--spring-pink), var(--spring-purple));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(143, 143, 143, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #fff;
}

.back-to-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
  color: white;
}

.back-to-home i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .chevron-icon {
    display: none;
  }
  .rotating-wrapper {
    width: 160px;
    height: 160px;
  }
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .timer-display {
    gap: 0.3rem;
  }
  .timer-box {
    min-width: 46px;
    padding: 0.4rem 0.5rem;
  }
  .timer-value {
    font-size: 1.2rem;
  }
  .back-to-home {
    display: none;
  }
}
