/* ══════════ SUMMER CAMP PAGE ══════════ */
.camp-hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.camp-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s;
}
.camp-hero-slide.active {
  opacity: 1;
}
.camp-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.camp-overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.camp-big-title {
  font-size: clamp(48px, 10vw, 130px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-family: "Playfair Display", serif;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.camp-big-title .c-summit {
  color: var(--gold);
}
.camp-sub-title {
  font-size: clamp(14px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 8px 0;
}
.camp-big-camp {
  font-size: clamp(40px, 9vw, 120px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: "Playfair Display", serif;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
  .camp-hero-slider {
    height: 70vh;
  }
  .camp-big-title {
    font-size: 56px;
  }
  .camp-big-camp {
    font-size: 48px;
  }
}

.camp-slide-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.camp-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: all 0.2s;
}
.camp-dot.active {
  background: var(--gold);
}
.camp-dl-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}

@media (max-width: 480px) {
  .camp-dl-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

.camp-dl-btn:hover {
  background: var(--gold2);
}
.camp-contact-bar {
  background: var(--white);
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .camp-contact-bar {
    padding: 16px 20px;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .camp-contact-bar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
}

.ccb-q {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.ccb-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ccb-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.ccb-contact .ico {
  font-size: 18px;
}
.camp-section {
  padding: 60px;
}
.camp-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.camp-underline {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.camp-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.ci-card {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 12px;
  padding: 24px 20px;
  color: var(--white);
  transition: transform 0.3s;
}
.ci-card:hover {
  transform: translateY(-4px);
}
.ci-ico {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.ci-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.ci-val {
  font-size: 17px;
  font-weight: 700;
}
.camp-prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.cp-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: var(--white);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.cp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}
.cp-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.cp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.cp-card:hover .cp-img img {
  transform: scale(1.06);
}
.cp-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}
.cp-body {
  padding: 20px;
}
.cp-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.cp-dets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.cp-det {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.cp-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.cp-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cp-price {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
}
.cp-price span {
  font-size: 12px;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
.cp-enroll {
  background: var(--navy);
  color: var(--gold);
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.cp-enroll:hover {
  background: var(--gold);
  color: var(--navy);
}
.sched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.sched-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.sched-card:hover {
  transform: translateX(3px);
}
.sched-time {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold2);
  margin-bottom: 5px;
}
.sched-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.sched-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.camp-testi {
  padding: 60px;
  background: var(--navy);
}
.camp-testi h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.camp-testi .cu {
  height: 2px;
  width: 80px;
  background: var(--gold);
  margin-bottom: 32px;
}
.ct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.ct-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 194, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
}
.ct-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 12px;
}
.ct-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.ct-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.ct-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.ct-loc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.camp-cta-section {
  padding: 80px 60px;
  text-align: center;
  background: var(--white);
}
.camp-cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.camp-cta-section h2 em {
  color: var(--gold);
  font-style: normal;
}
.camp-cta-section p {
  color: var(--muted);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
}
.cta-form input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  outline: none;
}
.cta-form input:focus {
  border-color: var(--gold);
}
.cta-form button {
  padding: 13px 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cta-form button:hover {
  background: var(--gold2);
}