/* ===== BTS Page Styles ===== */

/* Hero Section */
.bts-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000 0%, #111 100%);
  position: relative;
  overflow: hidden;
}

.bts-hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 800px;
  padding: 0 15px;
}

.hero-subtitle {
  display: inline-block;
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bts-hero-content h1 {
  font-size: 3.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bts-hero-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.hero-icons i {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-icons i:hover {
  opacity: 1;
  transform: translateY(-5px);
  color: white;
}

/* Options Section */
.bts-options {
  padding: 100px 0;
  background: #111;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  flex: 0 0 100%;
  max-width: 100%;
}

.section-title h2 {
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.section-title h2::after {
  content: "";
  height: 4px;
  width: 80px;
  background: var(--primary-color);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.options-container {
  justify-content: center;
  gap: 30px;
}

/* Option Cards */
.option-card {
  flex: 0 0 calc(50% - 30px);
  max-width: calc(50% - 30px);
  margin-bottom: 30px;
}

.card-inner {
  background: #000;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #333;
}

.card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

.card-header {
  text-align: center;
  margin-bottom: 40px;
}

.option-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.option-icon i {
  font-size: 2rem;
  color: white;
}

.option-title {
  font-size: 1.8rem;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}

.option-subtitle {
  font-size: 1rem;
  color: #ccc;
  font-weight: 400;
  line-height: 1.4;
}

.card-content {
  text-align: left;
}

.competences-intro {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #333;
}

.competences-intro h5 {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.competence-item {
  display: flex;
  margin-bottom: 25px;
  padding: 20px;
  background: #111;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.competence-item:hover {
  background: #222;
  transform: translateX(5px);
  border-color: var(--primary-color);
}

.competence-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.competence-icon i {
  font-size: 1.2rem;
  color: white;
}

.competence-content h6 {
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.competence-content p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}

/* Info Section */
.bts-info {
  background: var(--primary-color);
  padding: 30px 0;
}

.info-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.info-icon i {
  font-size: 1.5rem;
  color: white;
}

.info-content p {
  color: white;
  font-size: 1rem;
  margin: 0;
}

.info-content a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.info-content a:hover {
  opacity: 0.8;
}
