/* ============================================================
   Land Trading Page
   ============================================================ */

/* --- Hero --- */
.lt-page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  /* background: #0f172a; */
  overflow: hidden;
}

.lt-page-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* opacity: 0.25; */
  z-index: 0;
}

.lt-page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.lt-page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 80px;
}

.lt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.lt-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.lt-breadcrumb a:hover { color: #fff; }

.lt-hero-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #7cb4f5;
  margin-bottom: 14px;
}

.lt-page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
}

.lt-page-hero h1 .accent { color: #7cb4f5; }

.lt-page-hero .hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Form Card */
.lt-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 34px 30px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.lt-form-card .form-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}
.lt-form-card .form-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 22px;
}

.lt-form-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  margin-bottom: 13px;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  font-size: 14px;
  color: #111827;
  background: #f9fafb;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lt-form-input:focus {
  border-color: #004FB5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,79,181,0.1);
}
.lt-form-input::placeholder { color: #9ca3af; }

.lt-form-submit {
  width: 100%;
  height: 50px;
  background: #004FB5;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.lt-form-submit:hover {
  background: #003d8f;
  transform: translateY(-1px);
}

/* --- About / Intro Section --- */
.lt-about-section {
  padding: 80px 0;
}

.lt-about-section h2 {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
}

.lt-about-section .lt-img-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
}
.lt-about-section .lt-img-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.lt-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lt-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}
.lt-bullet-list li .fa {
  color: #004FB5;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* --- Returns Section --- */
.returns-section {
  padding: 80px 0;
  background: #f8f9fc;
}

.returns-table-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.returns-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: #fff;
}

.returns-table thead th {
  background: #004FB5;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 18px 28px;
  text-transform: uppercase;
}

.returns-table tbody tr {
  border-bottom: 1px solid #f0f4ff;
  transition: background 0.15s;
}
.returns-table tbody tr:last-child { border-bottom: none; }
.returns-table tbody tr:hover { background: #f5f8ff; }

.returns-table tbody th,
.returns-table tbody td {
  padding: 17px 28px;
  font-size: 15px;
}
.returns-table tbody th {
  font-weight: 700;
  color: #111827;
}
.returns-table tbody td {
  color: #004FB5;
  font-weight: 600;
}

/* Returns highlights */
.returns-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.rh-card {
  background: #fff;
  border: 1.5px solid #e4ecf8;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.rh-card .rh-num {
  font-size: 32px;
  font-weight: 800;
  color: #004FB5;
  line-height: 1;
  margin-bottom: 6px;
}
.rh-card .rh-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Security Section --- */
.lt-security-section {
  padding: 80px 0;
}

/* --- CTA Banner --- */
.lt-cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 64px 0;
  text-align: center;
}
.lt-cta-banner h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.lt-cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.lt-cta-banner .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  padding: 12px 26px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 0.2s;
}
.lt-cta-banner .btn-outline-white:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .lt-page-hero h1 { font-size: 34px; }
  .lt-form-card { margin-top: 36px; }
  .returns-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .lt-page-hero { min-height: auto; }
  .lt-page-hero h1 { font-size: 26px; }
  .lt-page-hero .container { padding-top: 90px; padding-bottom: 60px; }
  .lt-about-section .lt-img-card img { height: 260px; }
  .returns-highlights { grid-template-columns: 1fr; }
  .lt-cta-banner h2 { font-size: 22px; }
}
