/* ===========================================
   Site 3 - Layout Variations (Full-Width Alternating Sections)
   =========================================== */

/* Full-Width Sections */
.section-full {
  width: 100%;
  padding: 80px 0;
  margin: 0;
}

.section-full.dark-bg {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.08), rgba(185, 28, 28, 0.05));
  border-top: 1px solid rgba(220, 20, 60, 0.1);
  border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.section-full.accent-bg {
  background: rgba(220, 20, 60, 0.03);
}

.section-full .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Two-Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin: 40px 0;
}

.two-column.image-right {
  grid-template-columns: 1.2fr 0.8fr;
}

.two-column.image-left {
  grid-template-columns: 0.8fr 1.2fr;
}

.two-column .column-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(220, 20, 60, 0.2);
}

/* Feature Rows (Horizontal) */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: rgba(220, 20, 60, 0.05);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.feature-row:hover {
  background: rgba(220, 20, 60, 0.08);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(220, 20, 60, 0.15);
}

.feature-row .feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

.feature-row .feature-content h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.feature-row .feature-content p {
  opacity: 0.85;
  margin: 0;
}

/* Banner CTA (Full-Width) */
.banner-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 70px 20px;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.banner-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,60 600,30 T1200,0" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.banner-cta .container {
  position: relative;
  z-index: 1;
}

.banner-cta h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.banner-cta p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.banner-cta .btn {
  background: #fff;
  color: var(--primary-color);
  font-size: 1.3rem;
  padding: 20px 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.banner-cta .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-5px);
}

/* Timeline Style List */
.timeline-list {
  position: relative;
  padding-left: 40px;
  margin: 40px 0;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
}

.timeline-list .timeline-item {
  position: relative;
  padding: 25px 0 25px 30px;
}

.timeline-list .timeline-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 30px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid var(--bg-color);
  box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.3);
}

.timeline-list .timeline-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Companions Masonry Grid */
.companions-masonry {
  column-count: 4;
  column-gap: 20px;
  margin: 40px 0;
}

.companions-masonry .companion-card {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(220, 20, 60, 0.2);
}

.companions-masonry .companion-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.25);
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: space-around;
  background: rgba(220, 20, 60, 0.05);
  border-radius: 20px;
  padding: 40px 20px;
  margin: 50px 0;
  border: 1px solid rgba(220, 20, 60, 0.2);
}

.stats-bar .stat-item {
  text-align: center;
}

.stats-bar .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}

.stats-bar .stat-item .stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
  .two-column,
  .two-column.image-right,
  .two-column.image-left {
    grid-template-columns: 1fr;
  }

  .section-full {
    padding: 50px 0;
  }

  .companions-masonry {
    column-count: 2;
  }

  .stats-bar {
    flex-direction: column;
    gap: 30px;
  }

  .banner-cta h3 {
    font-size: 1.8rem;
  }

  .timeline-list {
    padding-left: 30px;
  }
}
