/* ==========================================================================
   Bro138 Landscape Layout: Artikel, FAQ, and Review Sections (Stacked Vertically)
   ========================================================================== */

:root {
  --bro-yellow: #F5B400;
  --bro-yellow-glow: rgba(245, 180, 0, 0.45);
  --bro-gold: #FFD700;
}

/* Shared Landscape Section Container */
.landscape-section-wrap {
  max-width: 1200px;
  margin: 35px auto;
  padding: 0 16px;
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base Landscape Card Style */
.landscape-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 36px 40px;
  box-sizing: border-box;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(245, 180, 0, 0.15), transparent 45%),
              radial-gradient(circle at bottom right, rgba(245, 180, 0, 0.1), transparent 40%),
              linear-gradient(150deg, #151821 0%, #0d0f14 50%, #161922 100%);
  border: 1.5px solid rgba(245, 180, 0, 0.45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5),
              0 0 25px rgba(245, 180, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.landscape-card:hover {
  border-color: rgba(245, 180, 0, 0.7);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6),
              0 0 35px rgba(245, 180, 0, 0.25);
}

.landscape-shine {
  position: absolute;
  top: -120px;
  left: -180px;
  width: 280px;
  height: 650px;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: rotate(25deg);
  animation: landscapeShineMove 6s infinite;
  pointer-events: none;
}

@keyframes landscapeShineMove {
  0% { left: -220px; }
  50% { left: 115%; }
  100% { left: 115%; }
}

/* ==========================================================================
   1. ARTIKEL SECTION (Landscape)
   ========================================================================== */
.landscape-artikel-card {
  max-width: 100%;
}

.landscape-artikel-card h1 {
  color: var(--bro-yellow) !important;
  text-align: center;
  line-height: 1.35;
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 22px;
  text-shadow: 0 0 12px var(--bro-yellow-glow);
}

.landscape-artikel-card h2 {
  color: var(--bro-yellow) !important;
  text-align: left;
  line-height: 1.35;
  font-size: 22px;
  font-weight: 800;
  margin: 28px 0 14px;
  text-shadow: 0 0 8px rgba(245, 180, 0, 0.5);
}

.landscape-artikel-card p {
  margin: 0 0 16px;
  color: #e6edf3 !important;
  font-size: 15px;
  line-height: 1.85;
  text-align: justify;
}

.landscape-artikel-card a {
  color: #ffd700 !important;
  font-weight: 800;
  text-decoration: underline;
  text-shadow: 0 0 8px var(--bro-yellow-glow);
}

.landscape-artikel-card a:hover {
  color: #ffffff !important;
}

.landscape-artikel-highlight {
  position: relative;
  margin: 24px 0;
  padding: 24px;
  border-radius: 18px;
  background: rgba(245, 180, 0, 0.07);
  border: 1px solid rgba(245, 180, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15),
              0 10px 25px rgba(0,0,0,.3);
}

.landscape-artikel-highlight ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landscape-artikel-highlight li {
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(245, 180, 0, 0.05);
  border: 1px solid rgba(245, 180, 0, 0.2);
  color: #e6edf3 !important;
  line-height: 1.65;
  font-size: 14px;
  box-shadow: inset 0 0 10px rgba(0,0,0,.25);
}

.landscape-artikel-highlight li strong {
  color: var(--bro-yellow);
}

/* ==========================================================================
   2. FAQ SECTION (Landscape)
   ========================================================================== */
.landscape-head-top {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.landscape-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(245, 180, 0, 0.15);
  color: var(--bro-yellow);
  border: 1px solid rgba(245, 180, 0, 0.4);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(245, 180, 0, 0.2);
}

.landscape-head-top h2 {
  margin: 12px 0 6px;
  color: var(--bro-yellow);
  font-size: 26px;
  font-weight: 800;
  text-shadow: 0 0 12px var(--bro-yellow-glow);
}

.landscape-head-top p {
  margin: 0;
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.5;
}

/* FAQ Landscape List */
.landscape-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.landscape-faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 180, 0, 0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: all 0.25s ease;
}

.landscape-faq-item:hover {
  border-color: var(--bro-yellow);
  background: rgba(245, 180, 0, 0.05);
}

.landscape-faq-item button {
  width: 100%;
  padding: 18px 56px 18px 20px;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  line-height: 1.45;
  font-family: inherit;
}

.landscape-faq-item button:after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bro-yellow);
  color: #000000;
  text-align: center;
  line-height: 28px;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 0 10px var(--bro-yellow-glow);
  transition: transform 0.25s ease;
}

.landscape-faq-item.active button:after {
  content: "-";
  background: #ffffff;
  color: #000000;
}

.landscape-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  position: relative;
  z-index: 2;
}

.landscape-faq-item.active .landscape-faq-answer {
  max-height: 350px;
}

.landscape-faq-answer p {
  margin: 0;
  padding: 0 20px 20px 20px;
  color: #CBD5E1;
  font-size: 13.5px;
  line-height: 1.7;
}

/* ==========================================================================
   3. REVIEW SECTION (Landscape)
   ========================================================================== */
.landscape-review-summary {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 180, 0, 0.3);
  border-radius: 18px;
  padding: 16px 24px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.lrs-score-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.lrs-score-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--bro-yellow);
  line-height: 1;
  text-shadow: 0 0 14px var(--bro-yellow-glow);
}

.lrs-score-max {
  font-size: 16px;
  color: #94A3B8;
  font-weight: 700;
}

.lrs-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lrs-stars-gold {
  color: #FFD700;
  font-size: 20px;
  letter-spacing: 2px;
}

.lrs-count-text {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 600;
}

.lrs-trust-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* 3-Column Landscape Review Grid */
.landscape-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.landscape-review-card-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 180, 0, 0.22);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.25s ease;
}

.landscape-review-card-item:hover {
  transform: translateY(-3px);
  border-color: var(--bro-yellow);
  background: rgba(245, 180, 0, 0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.lrc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lrc-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lrc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bro-yellow), #8a6400);
  color: #000000;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.lrc-author-name {
  font-weight: 800;
  font-size: 14px;
  color: #FFFFFF;
}

.lrc-verified-pill {
  font-size: 10px;
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.lrc-stars {
  color: #FFD700;
  font-size: 13px;
  letter-spacing: 1px;
}

.lrc-headline {
  color: var(--bro-yellow);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
}

.lrc-body-text {
  color: #CBD5E1;
  font-size: 12.5px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.lrc-date {
  font-size: 11px;
  color: #94A3B8;
}

/* Landscape Review Action CTA */
.landscape-review-cta {
  position: relative;
  z-index: 2;
}

.landscape-review-btn {
  width: 100%;
  background: linear-gradient(135deg, #FFE066 0%, #F5B400 50%, #D97706 100%);
  color: #000000;
  text-align: center;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(245, 180, 0, 0.35);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  border: 1px solid #FFE066;
}

.landscape-review-btn:hover {
  background: linear-gradient(135deg, #FFF099 0%, #FFC107 50%, #B45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 180, 0, 0.55);
  color: #000000;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 960px) {
  .landscape-card {
    padding: 26px 20px;
    border-radius: 20px;
  }
  
  .landscape-artikel-highlight ul {
    grid-template-columns: 1fr;
  }
  
  .landscape-reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .landscape-review-summary {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .lrs-score-wrap {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .landscape-section-wrap {
    margin: 20px auto;
  }
  
  .landscape-artikel-card h1 {
    font-size: 22px;
  }
  
  .landscape-artikel-card h2,
  .landscape-head-top h2 {
    font-size: 19px;
  }
}
