/* Index Page Specific Styles */

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 50px 30px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--primary-color);
  background: rgba(92, 64, 51, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--primary-color);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Premium Details Section (Alternating) */
.details-section {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

.detail-block {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.detail-block:last-child {
  margin-bottom: 0;
}

.detail-block--reverse {
  flex-direction: row-reverse;
}

.detail-content {
  flex: 1;
}

.detail-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

.detail-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.detail-list {
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
}

.detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.detail-image-wrap {
  flex: 1;
  position: relative;
}

.detail-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

/* Specs Section */
.specs-section {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.specs-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, .specs-table td {
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: left;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table th {
  width: 40%;
  background-color: rgba(92, 64, 51, 0.02);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
}

.specs-table td {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
}

/* Responsive Index Page */
@media (max-width: 992px) {
  .detail-block, .detail-block--reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .features, .details-section, .specs-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 32px;
  }
  .detail-title {
    font-size: 28px;
  }
  .specs-table th, .specs-table td {
    padding: 15px;
    font-size: 14px;
  }
  .specs-table th {
    width: 50%;
  }
}
