/*--------------------------------------------------------------
# LCO Registration Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Introduction
--------------------------------------------------------------*/

.lco-section {
  padding: 55px 0 45px;

  background: #ffffff;
}

.lco-intro {
  max-width: 820px;

  margin: 0 auto;
}

.lco-icon {
  width: 58px;

  height: 58px;

  margin: 0 auto 18px;

  border-radius: 50%;

  background: rgba(78, 127, 34, 0.1);

  color: #4e7f22;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 27px;
}

.lco-eyebrow,
.lco-section-label {
  display: block;

  margin-bottom: 8px;

  color: #4e7f22;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.3px;

  text-transform: uppercase;
}

.lco-intro h2 {
  margin-bottom: 16px;

  font-size: 30px;

  font-weight: 700;

  color: #222222;
}

.lco-intro p {
  margin-bottom: 8px;

  color: #666666;

  line-height: 1.7;
}

/*--------------------------------------------------------------
# Presentation
--------------------------------------------------------------*/

.lco-presentation-section {
  padding: 55px 0;

  background: #f8f9f6;
}

.lco-presentation-text {
  max-width: 560px;
}

.lco-presentation-text h2 {
  margin-bottom: 18px;

  font-size: 30px;

  line-height: 1.3;

  font-weight: 700;
}

.lco-presentation-text p {
  color: #666666;

  line-height: 1.75;
}

.lco-highlight {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-top: 22px;

  padding: 16px 18px;

  border-radius: 8px;

  background: #ffffff;

  border-left: 4px solid #4e7f22;
}

.lco-highlight > i {
  margin-top: 2px;

  color: #4e7f22;

  font-size: 20px;
}

.lco-highlight strong,
.lco-highlight span {
  display: block;
}

.lco-highlight strong {
  margin-bottom: 3px;

  color: #333333;
}

.lco-highlight span {
  color: #777777;

  font-size: 14px;
}

.lco-main-image {
  overflow: hidden;

  border-radius: 10px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.lco-main-image img {
  width: 100%;

  height: 380px;

  object-fit: cover;
}

/*--------------------------------------------------------------
# Information Cards
--------------------------------------------------------------*/

.lco-info-section {
  padding: 60px 0;

  background: #ffffff;
}

.lco-info-section .section-title {
  margin-bottom: 35px;
}

.lco-info-card {
  height: 100%;

  padding: 28px 22px;

  text-align: center;

  background: #ffffff;

  border: 1px solid #eeeeee;

  border-radius: 9px;

  transition: 0.3s;
}

.lco-info-card:hover {
  transform: translateY(-4px);

  border-color: rgba(78, 127, 34, 0.35);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.lco-info-icon {
  width: 52px;

  height: 52px;

  margin: 0 auto 15px;

  border-radius: 50%;

  background: rgba(78, 127, 34, 0.1);

  color: #4e7f22;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 23px;
}

.lco-info-card h3 {
  margin-bottom: 8px;

  font-size: 17px;

  font-weight: 700;
}

.lco-info-card p {
  margin: 0;

  color: #777777;

  font-size: 14px;

  line-height: 1.5;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.lco-gallery-section {
  padding: 60px 0;

  background: #f8f9f6;
}

.lco-gallery-section .section-title {
  margin-bottom: 35px;
}

.lco-gallery-item {
  display: block;

  overflow: hidden;

  border-radius: 9px;

  background: #ffffff;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.lco-gallery-item img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: 0.4s;
}

.lco-gallery-item:hover img {
  transform: scale(1.04);
}

/*--------------------------------------------------------------
# DIP Reference
--------------------------------------------------------------*/

.lco-dip-section {
  padding: 60px 0;

  background: #ffffff;
}

.lco-dip-box {
  padding: 35px 38px;

  border: 1px solid #e5e5e5;

  border-radius: 10px;

  background: #fbfbfb;
}

.lco-dip-icon {
  width: 72px;

  height: 72px;

  margin: 0 auto;

  border-radius: 50%;

  background: rgba(78, 127, 34, 0.1);

  color: #4e7f22;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 31px;
}

.lco-dip-box h2 {
  margin-bottom: 12px;

  font-size: 24px;

  font-weight: 700;
}

.lco-dip-box p {
  margin: 0;

  color: #666666;

  line-height: 1.7;
}

.lco-dip-button {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 12px 18px;

  border-radius: 5px;

  background: #4e7f22;

  color: #ffffff;

  font-size: 14px;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s;
}

.lco-dip-button:hover {
  background: #80cb3c;

  color: #ffffff;
}

.lco-dip-button i {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Registration
--------------------------------------------------------------*/

.lco-registration-section {
  padding: 60px 0 65px;

  background: #f8f9f6;
}

.lco-registration-section .section-title {
  margin-bottom: 32px;
}

.lco-form-wrapper {
  max-width: 850px;

  margin: 0 auto;

  padding: 30px 32px;

  background: #ffffff;

  border-radius: 10px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.lco-selected-course {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 28px;

  padding: 15px 17px;

  border-radius: 8px;

  background: rgba(78, 127, 34, 0.07);

  border: 1px solid rgba(78, 127, 34, 0.15);
}

.lco-selected-icon {
  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #ffffff;

  font-size: 23px;
}

.lco-selected-course span,
.lco-selected-course strong,
.lco-selected-course small {
  display: block;
}

.lco-selected-course span {
  margin-bottom: 2px;

  color: #888888;

  font-size: 12px;
}

.lco-selected-course strong {
  color: #333333;

  font-size: 16px;
}

.lco-selected-course small {
  margin-top: 2px;

  color: #4e7f22;

  font-size: 13px;
}

.lco-form-wrapper label {
  display: block;

  margin-bottom: 7px;

  color: #333333;

  font-size: 14px;

  font-weight: 600;
}

.lco-form-wrapper label span {
  color: #4e7f22;
}

.lco-form-wrapper .form-control {
  min-height: 44px;

  padding: 10px 13px;

  border: 1px solid #dddddd;

  border-radius: 6px;

  font-size: 14px;

  box-shadow: none;
}

.lco-form-wrapper textarea.form-control {
  min-height: 110px;

  resize: vertical;
}

.lco-form-wrapper .form-control:focus {
  border-color: #4e7f22;

  box-shadow: 0 0 0 3px rgba(78, 127, 34, 0.1);
}

/*--------------------------------------------------------------
# Privacy
--------------------------------------------------------------*/

.lco-privacy {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  padding: 15px 17px;

  border-radius: 6px;

  background: #f7f7f7;
}

.lco-privacy i {
  margin-top: 2px;

  color: #4e7f22;
}

.lco-privacy p {
  margin: 0;

  color: #777777;

  font-size: 12px;

  line-height: 1.6;
}

/*--------------------------------------------------------------
# Submit Button
--------------------------------------------------------------*/

.lco-submit-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  padding: 12px 22px;

  border: 0;

  border-radius: 5px;

  background: #4e7f22;

  color: #ffffff;

  font-size: 14px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.lco-submit-button:hover {
  background: #80cb3c;
}

.lco-submit-button i {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Contact CTA
--------------------------------------------------------------*/

.lco-contact-section {
  padding: 55px 0;

  background: #ffffff;
}

.lco-contact-box {
  max-width: 750px;

  margin: 0 auto;
}

.lco-contact-icon {
  width: 55px;

  height: 55px;

  margin: 0 auto 15px;

  border-radius: 50%;

  background: rgba(78, 127, 34, 0.1);

  color: #4e7f22;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 25px;
}

.lco-contact-box h2 {
  margin-bottom: 12px;

  font-size: 26px;

  font-weight: 700;
}

.lco-contact-box p {
  max-width: 620px;

  margin: 0 auto 20px;

  color: #777777;

  line-height: 1.7;
}

.lco-contact-button {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 11px 20px;

  border-radius: 5px;

  background: #4e7f22;

  color: #ffffff;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition: 0.3s;
}

.lco-contact-button:hover {
  background: #80cb3c;

  color: #ffffff;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {
  .lco-main-image img {
    height: 340px;
  }

  .lco-dip-box {
    padding: 28px;
  }

  .lco-dip-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .lco-section {
    padding: 45px 0 35px;
  }

  .lco-intro h2 {
    font-size: 26px;
  }

  .lco-presentation-section,
  .lco-info-section,
  .lco-gallery-section,
  .lco-dip-section,
  .lco-registration-section {
    padding: 45px 0;
  }

  .lco-presentation-text {
    max-width: none;
  }

  .lco-presentation-text h2 {
    font-size: 26px;
  }

  .lco-main-image img {
    height: 300px;
  }

  .lco-dip-box {
    padding: 25px 20px;

    text-align: center;
  }

  .lco-dip-box h2 {
    font-size: 22px;
  }

  .lco-dip-button {
    margin-top: 10px;
  }

  .lco-form-wrapper {
    padding: 25px 20px;
  }

  .lco-gallery-item img {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .lco-intro h2 {
    font-size: 24px;
  }

  .lco-selected-course {
    align-items: flex-start;
  }

  .lco-main-image img {
    height: 250px;
  }

  .lco-gallery-item img {
    height: 220px;
  }

  .lco-submit-button {
    width: 100%;
  }
}
