/* ===== HOW TO SEND PAGE ===== */
/* Step-by-step guide for selling by post */

/* Remove default padding */
body.page-template-how-to-send .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* ===== HERO SECTION ===== */
.hts-hero {
  background: var(--gb-navy);
  color: var(--gb-white);
  padding: 3rem 2rem;
  text-align: center;
}

.hts-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gb-white);
}

.hts-hero .hero-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== STEP HEADER ===== */
.step-header {
  text-align: center;
  margin-bottom: 2rem;
}

.step-badge {
  display: inline-block;
  background: var(--gb-gold);
  color: var(--gb-navy);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.step-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin: 0;
}

.step-intro {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gb-text);
  text-align: center;
}

/* ===== DOCUMENTS SECTION ===== */
.hts-documents {
  background: var(--gb-white);
  padding: 4rem 2rem;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.document-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--gb-gray);
  border-radius: 8px;
}

.document-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gb-navy);
  border-radius: 50%;
  color: var(--gb-gold);
}

.document-icon svg {
  width: 40px;
  height: 40px;
}

.document-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 0.75rem;
}

.document-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gb-text);
  margin: 0;
}

/* ===== PREPARE SECTION ===== */
.hts-prepare {
  background: var(--gb-gray);
  padding: 4rem 2rem;
}

.prepare-steps {
  max-width: 1000px;
  margin: 0 auto;
}

.prepare-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  background: var(--gb-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.prepare-step:last-child {
  margin-bottom: 0;
}

.prepare-step-number {
  flex-shrink: 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gb-navy);
  color: var(--gb-gold);
  font-size: 1.5rem;
  font-weight: 700;
}

.prepare-step-content {
  flex: 1;
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.prepare-step-image {
  flex-shrink: 0;
  width: 200px;
}

.prepare-step-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.prepare-step-text {
  flex: 1;
}

.prepare-step-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 0.75rem;
}

.prepare-step-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin-bottom: 0.75rem;
}

.prepare-step-text ul {
  margin: 1rem 0 1rem 1.5rem;
}

.prepare-step-text li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gb-text);
}

.prepare-step-text .btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.prepare-step-text .btn-primary {
  background: var(--gb-navy);
  color: var(--gb-white);
}

.prepare-step-text .btn-primary:hover {
  background: var(--gb-gold);
  color: var(--gb-navy);
}

/* Office Address */
.office-address {
  background: var(--gb-gray);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1rem 0;
}

.office-address p {
  margin: 0;
  font-weight: 500;
}

.address-note {
  font-style: italic;
  font-weight: 600;
  color: var(--gb-navy) !important;
}

/* ===== SEND SECTION ===== */
.hts-send {
  background: var(--gb-white);
  padding: 4rem 2rem;
}

.send-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.send-option-card {
  background: var(--gb-gray);
  border-radius: 8px;
  overflow: hidden;
}

.send-option-image {
  height: 200px;
  overflow: hidden;
}

.send-option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.send-option-content {
  padding: 2rem;
}

.send-option-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1rem;
}

.send-option-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin-bottom: 0.75rem;
}

.send-option-content a:not(.btn) {
  color: var(--gb-navy);
  font-weight: 600;
}

.send-option-content .opening-hours {
  background: var(--gb-white);
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
}

.send-option-content .opening-hours strong {
  color: var(--gb-navy);
}

.send-option-content .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.send-option-content .btn-primary {
  background: var(--gb-navy);
  color: var(--gb-white);
}

.send-option-content .btn-primary:hover {
  background: var(--gb-gold);
  color: var(--gb-navy);
}

/* ===== RELATED LINKS ===== */
.hts-related {
  background: var(--gb-gray);
  padding: 4rem 2rem;
}

.hts-related h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  text-align: center;
  margin-bottom: 2rem;
}

.hts-related .related-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hts-related .related-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--gb-white);
  border-radius: 8px;
  text-decoration: none;
  color: var(--gb-navy);
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid var(--gb-border);
}

.hts-related .related-link-card:hover {
  background: var(--gb-navy);
  color: var(--gb-white);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .prepare-step-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .prepare-step-image {
    width: 100%;
    max-width: 300px;
  }

  .hts-related .related-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hts-hero {
    padding: 2.5rem 1.5rem;
  }

  .hts-hero h1 {
    font-size: 1.75rem;
  }

  .hts-documents {
    padding: 3rem 1.5rem;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .document-card {
    padding: 1.5rem;
  }

  .hts-prepare {
    padding: 3rem 1.5rem;
  }

  .prepare-step {
    flex-direction: column;
    gap: 0;
  }

  .prepare-step-number {
    width: 100%;
    height: 50px;
  }

  .prepare-step-content {
    padding: 1.5rem;
  }

  .hts-send {
    padding: 3rem 1.5rem;
  }

  .send-options-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .send-option-image {
    height: 150px;
  }

  .send-option-content {
    padding: 1.5rem;
  }

  .hts-related {
    padding: 3rem 1.5rem;
  }

  .hts-related .related-links-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
