/* Home Page Specific Styles - External CSS */

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 8rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 10rem 0;
  }
}

.hero-overlay {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.hero-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-content {
  max-width: 56rem;
}

.hero-title {
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-wrapper {
    flex-direction: row;
  }
}

.hero-cta-note {
  font-size: 0.875rem;
  color: white;
}

/* Trust Badge Section */
.trust-section {
  border-bottom: 1px solid hsl(240 6% 90%);
  background-color: hsl(240 20% 98%);
}

.trust-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.trust-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .trust-content {
    gap: 2rem;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: hsl(210 85% 45% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-value {
  font-weight: 600;
}

.trust-badge-label {
  color: hsl(240 8% 45%);
  font-size: 0.75rem;
}

.trust-divider {
  display: none;
  width: 1px;
  height: 2.5rem;
  background-color: hsl(240 6% 90%);
}

@media (min-width: 640px) {
  .trust-divider {
    display: block;
  }
}

/* Programs Section */
.programs-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .programs-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .programs-section {
    padding: 6rem 0;
  }
}

.programs-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.programs-header {
  text-align: center;
  margin-bottom: 3rem;
}

.programs-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .programs-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .programs-title {
    font-size: 3rem;
  }
}

.programs-subtitle {
  font-size: 1.125rem;
  color: hsl(240 8% 45%);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.program-card {
  border-radius: 0.5rem;
  border: 1px solid hsl(240 6% 90%);
  transition: box-shadow 0.15s ease;
  cursor: pointer;
  overflow: hidden;
}

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

.program-card-content {
  padding: 1.5rem;
  padding-bottom: 1rem;
}

.program-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.program-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.program-description {
  font-size: 1rem;
  color: hsl(240 8% 45%);
  line-height: 1.625;
}

.program-card-footer {
  padding: 1.5rem;
  padding-top: 0;
}

/* Service Areas Section */
.areas-section {
  padding: 4rem 0;
  background-color: hsl(240 20% 98%);
}

@media (min-width: 768px) {
  .areas-section {
    padding: 5rem 0;
  }
}

.areas-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.areas-header {
  text-align: center;
  margin-bottom: 3rem;
}

.areas-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .areas-title {
    font-size: 2.25rem;
  }
}

.areas-subtitle {
  font-size: 1.125rem;
  color: hsl(240 8% 45%);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-card {
  border: 1px solid hsl(240 6% 90%);
  background-color: hsl(0 0% 100%);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: box-shadow 0.15s ease;
  cursor: pointer;
  text-align: center;
  height: 100%;
}

.area-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.area-icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
  color: hsl(210 85% 45%);
}

.area-name {
  font-weight: 500;
}

.areas-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Webinars Section */
.webinars-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .webinars-section {
    padding: 5rem 0;
  }
}

.webinars-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.webinars-header {
  text-align: center;
  margin-bottom: 3rem;
}

.webinars-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid hsl(240 6% 90%);
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: hsl(240 6% 90%);
  color: hsl(240 10% 10%);
  margin-bottom: 1rem;
}

.webinars-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .webinars-title {
    font-size: 2.25rem;
  }
}

.webinars-subtitle {
  font-size: 1.125rem;
  color: hsl(240 8% 45%);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.webinars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .webinars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.webinar-card {
  height: 100%;
  border: 1px solid hsl(240 6% 90%);
  background-color: hsl(240 20% 98%);
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}

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

.webinar-image-wrapper {
  position: relative;
}

.webinar-image {
  width: 100%;
  height: 9rem;
  object-fit: cover;
}

.webinar-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.webinar-free-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: hsl(210 85% 45%);
  color: white;
}

.webinar-meta {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
}

.webinar-meta-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.webinar-content {
  padding: 1rem;
}

.webinar-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  transition: color 0.15s ease;
}

.group:hover .webinar-title {
  color: hsl(210 85% 45%);
}

.webinar-description {
  font-size: 0.75rem;
  color: hsl(240 8% 45%);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.webinar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.webinar-bonus-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid hsl(240 6% 90%);
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.webinars-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Awards Section */
.awards-section {
  padding: 4rem 0;
  background-color: hsl(240 20% 98%);
}

@media (min-width: 768px) {
  .awards-section {
    padding: 5rem 0;
  }
}

.awards-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.awards-header {
  text-align: center;
  margin-bottom: 3rem;
}

.awards-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .awards-title {
    font-size: 2.25rem;
  }
}

.awards-subtitle {
  font-size: 1.125rem;
  color: hsl(240 8% 45%);
}

.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.award-item {
  text-align: center;
}

.award-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.award-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.award-description {
  color: hsl(240 8% 45%);
}

/* Bottom CTA Section */
.bottom-cta-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .bottom-cta-section {
    padding: 5rem 0;
  }
}

.bottom-cta-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.bottom-cta-card {
  border-radius: 0.5rem;
  border: 1px solid hsl(210 85% 45% / 0.2);
  padding: 2rem;
  text-align: center;
  background: linear-gradient(to bottom right, hsl(210 85% 45% / 0.05), hsl(210 85% 45% / 0.1));
}

@media (min-width: 768px) {
  .bottom-cta-card {
    padding: 3rem;
  }
}

.bottom-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bottom-cta-title {
    font-size: 1.875rem;
  }
}

.bottom-cta-description {
  color: hsl(240 8% 45%);
  margin-bottom: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
