/* ========================================
   group-landing.css — Group Course Landing Page
   ======================================== */

/* --- Hero --- */
.group-hero {
  position: relative;
  background: linear-gradient(135deg, #082333 0%, #0b76b3 60%, #3d9fd8 100%);
  padding: 120px 0 80px;
  margin-top: -1px;
  overflow: hidden;
  color: #fff;
}

.group-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-cta {
  border-radius: 35px !important;
  padding: 14px 40px !important;
  font-variant-caps: small-caps;
  font-size: 1.125rem !important;
  background-color: #e67e22 !important;
  border-color: #e67e22 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(230,126,34,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,126,34,0.45);
  background-color: #d4711f !important;
  border-color: #d4711f !important;
}

.btn-ghost {
  border-radius: 35px !important;
  padding: 13px 30px !important;
  font-size: 1rem !important;
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  color: #fff !important;
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.8) !important;
  color: #fff !important;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  font-size: 1rem;
  margin-top: 1.5rem;
  color: #fff;
}

.hero-rating .stars {
  color: #e67e22;
  letter-spacing: 2px;
}

.hero-rating .sep {
  color: rgba(255,255,255,0.4);
}

.hero-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.hero-circle-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: blob-pulse 4s ease-in-out infinite;
}

@keyframes blob-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.hero-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Section shared --- */
.section-intro {
  color: #5a7184;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Cohort cards --- */
.cohorts-section {
  padding: 80px 0 60px;
  background: #f8fafc;
}

.cohort-card {
  position: relative;
  background: #fff;
  border: 1px solid #e3ecf3;
  border-radius: 14px;
  padding: 2rem 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(8,35,51,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cohort-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(8,35,51,0.10);
}

.cohort-main {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.cohort-info {
  flex: 1 1 auto;
  min-width: 0;
}

.cohort-cta {
  flex: 0 0 280px;
  text-align: center;
  border-left: 1px solid #eef3f7;
  padding-left: 2.5rem;
}

.cohort-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-align: left;
}

.cohort-schedule {
  font-size: 1.05rem;
  color: #0b76b3;
  margin-bottom: 1.25rem;
}

.cohort-price {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: #0b76b3;
  margin-bottom: 0.75rem;
}

.cohort-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: #5a7184;
}

.cohort-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cohort-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid #eef3f7;
  color: #33475b;
  font-size: 1rem;
}

.cohort-list li:last-child {
  border-bottom: none;
}

.cohort-seats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b3541e;
  margin-bottom: 1rem;
}

.seats-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e67e22;
  display: inline-block;
}

.seats-dot.flexible {
  background: #2e7d32;
}

.cohort-seats:has(.flexible) {
  color: #2e7d32;
}

/* --- How it works --- */
.how-section {
  padding: 80px 0 60px;
  background: #fff;
}

.how-step {
  text-align: center;
  padding: 0 0.5rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0b76b3;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(11,118,179,0.3);
}

.how-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.how-step p {
  font-size: 0.95rem;
  color: #5a7184;
  line-height: 1.6;
}

/* --- Why small group --- */
.why-section {
  padding: 80px 0 60px;
  background: #f8fafc;
}

.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  text-align: center;
  border: 1px solid #e3ecf3;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(8,35,51,0.08);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.92rem;
  color: #5a7184;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Seat form --- */
.seat-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

.seat-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(8,35,51,0.10);
  border: 1px solid #e3ecf3;
}

.seat-card h2 {
  margin-bottom: 0.5rem;
}

.seat-intro {
  color: #5a7184;
  margin-bottom: 2rem;
}

.seat-card form .form-group {
  margin-bottom: 1.25rem;
}

.seat-card form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0c344b;
  margin-bottom: 0.4rem;
}

.seat-card form .form-control {
  height: auto;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #33475b;
  background-color: #f8fafc;
  border: 1px solid #d7e3ec;
  border-radius: 10px;
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.seat-card form .form-control:focus {
  background-color: #fff;
  border-color: #0b76b3;
  box-shadow: 0 0 0 3px rgba(11,118,179,0.15);
  outline: none;
}

.seat-card form .form-control::placeholder {
  color: #9db1c0;
}

.seat-submit {
  border-radius: 35px !important;
  padding: 14px 40px !important;
  font-variant-caps: small-caps;
  font-size: 1.125rem !important;
  background-color: #0b76b3 !important;
  border-color: #0b76b3 !important;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}

.seat-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,118,179,0.35);
  background-color: #095d8f !important;
  border-color: #095d8f !important;
}

.seat-msg {
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
}

.seat-alt {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #5a7184;
}

.seat-alt a {
  color: #0b76b3;
  font-weight: 600;
  text-decoration: underline;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #d7e3ec;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.checkbox-group:hover {
  background: #fff;
  border-color: #0b76b3;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #0b76b3;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.95rem;
  color: #33475b;
  cursor: pointer;
}

/* --- Proof --- */
.proof-section {
  padding: 80px 0 60px;
  background: #fff;
}

.proof-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #e3ecf3;
}

.proof-stars {
  color: #e67e22;
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.proof-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #33475b;
}

.proof-name {
  font-weight: 700;
  color: #0b76b3 !important;
  margin-bottom: 0;
}

.teacher-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.teacher-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f7ff;
  border: 1px solid #cde5f7;
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0c4a6e;
}

.teacher-badge a {
  color: #0b76b3;
}

/* --- FAQ --- */
.faq-section {
  padding: 80px 0 40px;
  background: #f8fafc;
}

/* --- Resources --- */
.resources-section {
  padding: 0 0 70px;
  background: #f8fafc;
}

.faq-content {
  margin-top: 2rem;
}

.faq-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c344b;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.faq-content h3:first-child {
  margin-top: 0;
}

.faq-content p {
  color: #5a7184;
  line-height: 1.7;
}

.faq-content ul {
  color: #5a7184;
}

/* --- Final CTA --- */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #082333 0%, #0b76b3 60%, #3d9fd8 100%);
  color: #fff;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.final-btn {
  border-radius: 35px !important;
  padding: 14px 40px !important;
  font-variant-caps: small-caps;
  font-size: 1.125rem !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  color: #0b76b3 !important;
}

.final-alt {
  margin-top: 1.25rem;
}

.final-alt a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  font-size: 0.98rem;
}

.final-alt a:hover {
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .group-hero h1 {
    font-size: 2.1rem;
  }
  .hero-visual-col {
    margin-top: 2.5rem;
  }
  .hero-visual {
    max-width: 280px;
  }
}

@media (max-width: 767.98px) {
  .cohort-main {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    text-align: center;
  }
  .cohort-cta {
    flex: none;
    border-left: none;
    border-top: 1px solid #eef3f7;
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .cohort-card h3 {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .group-hero {
    padding: 90px 0 60px;
  }
  .group-hero h1 {
    font-size: 1.7rem;
  }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
  .seat-card {
    padding: 1.5rem;
  }
  .cohorts-section,
  .how-section,
  .why-section,
  .proof-section,
  .faq-section {
    padding: 50px 0 40px;
  }
  .seat-section,
  .final-cta {
    padding: 50px 0;
  }
}

/* ========================================
   CONTACT (from A1 landing) — applied to
   the group landing's contact section.
   Scoped to .group-landing so it does not
   leak to the A1 .a1-landing page which
   loads its own copy.
   ======================================== */
.group-landing {
  --a1-navy: #082333;
  --a1-blue: #0b76b3;
  --a1-orange: #e67e22;
  --a1-orange-dark: #d4711f;
  --a1-ink: #0c344b;
  --a1-slate: #33475b;
  --a1-soft: #f8fafc;
  --a1-faint: #f0f7ff;
  --a1-border: #e3ecf3;
  --a1-radius: 16px;
}

.group-landing .a1-contact {
  max-width: 1140px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.35fr;
  border: 1px solid var(--a1-border);
  border-radius: var(--a1-radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8, 35, 51, 0.10);
  background: #fff;
}

.group-landing .a1-contact-media {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, var(--a1-faint) 0%, #fff 100%);
  padding: 2.5rem;
}

.group-landing .a1-contact-info {
  margin-bottom: 1.5rem;
}

.group-landing .a1-contact-info h2 {
  color: var(--a1-ink);
  font-weight: 700;
  font-size: 1.7rem;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}

.group-landing .a1-contact-info p {
  color: var(--a1-slate);
  line-height: 1.75;
  font-size: 1.05rem;
  text-align: left;
}

.group-landing .a1-contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  padding: 0.45rem 1.25rem 0.65rem;
  border-radius: 35px;
  transition: background 0.2s, transform 0.2s;
}

.group-landing .a1-contact-wa:hover {
  background: #1eba56;
  transform: translateY(-1px);
}

.group-landing .a1-contact-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: auto;
  border-radius: 14px;
}

.group-landing .a1-contact-form {
  background: #fff;
  padding: 2.5rem;
}

.group-landing .a1-contact-form > p:first-child,
.group-landing .a1-contact-form-intro {
  color: var(--a1-slate);
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1.5rem;
}

.group-landing #course-message label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--a1-ink);
  margin-bottom: 0.4rem;
}

.group-landing #course-message input[type="text"],
.group-landing #course-message input[type="email"],
.group-landing #course-message input[type="tel"],
.group-landing #course-message textarea {
  width: 100% !important;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  color: var(--a1-slate);
  background: var(--a1-soft);
  border: 1px solid #d7e3ec;
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.group-landing #course-message input:focus,
.group-landing #course-message textarea:focus {
  background: #fff;
  border-color: var(--a1-blue);
  box-shadow: 0 0 0 3px rgba(11, 118, 179, 0.15);
  outline: none;
}

.group-landing #course-message .w-50-1,
.group-landing #course-message .w-80-1 {
  width: 100% !important;
}

.group-landing .a1-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.group-landing #course-message button[type="submit"] {
  border-radius: 35px;
  padding: 12px 38px;
  font-variant-caps: small-caps;
  font-size: 1.05rem;
  background: var(--a1-orange);
  border: 1px solid var(--a1-orange);
  color: #fff;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.group-landing #course-message button[type="submit"]:hover {
  background: var(--a1-orange-dark);
  border-color: var(--a1-orange-dark);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.35);
}

@media (max-width: 767.98px) {
  .group-landing .a1-contact {
    grid-template-columns: 1fr;
    margin: 50px auto;
  }
  .group-landing .a1-contact-media,
  .group-landing .a1-contact-form {
    padding: 1.75rem;
  }
  .group-landing .a1-contact-media img {
    margin-top: 1.5rem;
  }
}
