

/* CARD */
.land-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADING */
.land-card h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.land-card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-red);
  margin-top: 8px;
}

/* DOCUMENT LIST */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* DOCUMENT ITEM */
.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 10px;

  background: linear-gradient(135deg, #ffffff, #f1f3f8);
  text-decoration: none;
  color: var(--text-black);

  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

/* ICON */
.doc-item i {
  font-size: 18px;
  color: #fff;
  background: var(--accent-red);
  padding: 10px;
  border-radius: 8px;
  min-width: 38px;
  text-align: center;
}

/* TEXT */
.doc-item span {
  font-size: 14px;
  font-weight: 500;
}

/* HOVER */
.doc-item:hover {
  background: linear-gradient(135deg, var(--primary-blue), #1d2a6d);
  color: #fff;
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.doc-item:hover span {
  color: #fff;
}

.doc-item:hover i {
  background: #fff;
  color: var(--accent-red);
}

/* IMAGE */
.land-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .land-card {
    margin-bottom: 20px;
    padding: 20px;
  }

  .doc-item span {
    font-size: 13px;
  }
}