/* =============================================================================
   COMPONENTS - ProCom Academy
   ============================================================================= */

/* BUTTONS */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--primary-inverse);
}

.btn-primary:hover {
  background-color: var(--primary-100);
  border-color: var(--primary-100);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--secondary-inverse);
}

.btn-secondary:hover {
  background-color: var(--secondary-100);
  border-color: var(--secondary-100);
}

.btn-px-5 { padding-left: 2.5rem; padding-right: 2.5rem; }
.btn-py-3 { padding-top: 1rem; padding-bottom: 1rem; }

/* CARDS */
.card {
  background: var(--light);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.card-body { padding: 1.25rem; }
.card-title { margin-bottom: 0.75rem; }
.card-text { color: var(--default); }
.card-img-top { width: 100%; height: auto; }

/* FEATURE BOXES */
.feature-box {
  display: flex;
  align-items: flex-start;
}

.feature-box-steps { position: relative; }
.feature-box-steps .feature-box-step-number { width: 60px; text-align: center; }

.feature-box-steps .feature-box-step-number em {
  font-size: 44px;
  font-style: normal;
  display: block;
  margin-top: 32px;
  margin-right: 10px;
  color: var(--light);
  font-weight: bold;
  transform: rotate(-15deg);
  -webkit-text-stroke: 2px var(--primary);
}

.feature-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}

.feature-box-icon-xl { width: 100px; height: 100px; }
.feature-box-info { flex: 1; }

/* TESTIMONIALS */
.testimonial { text-align: center; padding: 20px; }

.testimonial-style-2 .testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.testimonial-with-quotes blockquote {
  position: relative;
  padding: 20px 40px;
  margin: 0;
}

.testimonial-quotes-primary blockquote::before {
  content: '"';
  font-size: 80px;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: -20px;
  font-family: Georgia, serif;
  opacity: 0.3;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  min-height: 88px;
}

.countdown > span { text-align: center; }
.countdown .number { font-size: 2.5rem; font-weight: 700; display: block; }
.countdown .label { font-size: 0.75rem; text-transform: uppercase; }

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons-clean li a { background: transparent; }
.social-icons-icon-dark li a { color: var(--dark); }
.social-icons-icon-dark li a:hover { color: var(--primary); }
.social-icons-icon-light li a { color: var(--light); }
.social-icons-icon-light li a:hover { color: var(--primary); }

/* FORMS */
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--dark);
  background-color: var(--light);
  border: 1px solid var(--grey-300);
  border-radius: var(--border-radius);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.form-control::placeholder { color: #a9a9a9; }

.custom-form-style-1 .form-control {
  height: calc(1.8em + 1.85rem + 2px);
  padding: 0.975rem 1.25rem;
  background: var(--grey-100) !important;
  border-color: var(--grey-100) !important;
}

/* SECTIONS */
.section {
  padding: 60px 0;
  position: relative;
}

.section-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-section-background-1,
.custom-section-background-2 {
  background-size: contain;
  background-position: 100% 100%;
}

@media (max-width: 991px) {
  .custom-section-background-1,
  .custom-section-background-2 {
    padding-bottom: 35% !important;
  }
}

/* LISTS */
.list-inline { padding-left: 0; list-style: none; }
.list-inline-item { display: inline-block; }
.list-unstyled { padding-left: 0; list-style: none; }
