/* page-sell.css */
.landing-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--primary);
  background-image: linear-gradient(to bottom, rgba(27, 20, 84, 0.6), rgba(27, 20, 84, 0.85)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: -20px;
  z-index: 1;
}

.landing-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.landing-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.action-strip-container {
  position: relative;
  z-index: 10;
  margin-top: -24px;
}

.homepage-action-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px;
  border-radius: 999px;
  /* background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(16, 17, 52, 0.1); */
  width: fit-content;
  margin: 0 auto;
}

.homepage-action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
}

.homepage-action-pill:hover {
  background: var(--accent-hover);
  color: var(--primary);
}

.homepage-action-pill.active {
  background: var(--accent-hover);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(27, 20, 84, 0.2);
}

.homepage-action-separator {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 0 8px;
}

/* Form Section */
.form-section {
  padding: 80px 20px;
  background-color: var(--bg);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary);
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font: inherit;
  color: var(--text);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  background: #fff;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 20px;
  border-radius: 12px;
  border: none;
  background: #f59e0b;
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.form-submit:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2);
}

.steps-indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.step {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
}

.step.active {
  background: #f59e0b;
  transform: scale(1.2);
}

/* Layout 1 Footer - 4 Columns */
.layout-footer-one {
  background: var(--navy, #1B1454);
  /* fallback if --navy not defined */
  color: #fff;
  padding: 56px 0 0;
  margin-top: 0;
}

.layout-footer-one .container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.layout-footer-one .footer-grid-four {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 42px;
  margin-bottom: 34px;
}

.layout-footer-one .footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.layout-footer-one .footer-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.layout-footer-one .footer-grid-four h4 {
  margin: 0 0 14px;
  color: #ff8c88;
  font-size: 1rem;
  font-weight: 600;
}

.layout-footer-one .footer-grid-four ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.layout-footer-one .footer-grid-four ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.layout-footer-one .footer-grid-four ul a:hover {
  color: #fff;
}

.layout-footer-one .footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.layout-footer-one .footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}

.layout-footer-one .footer-socials a:hover {
  background: var(--accent, #f4be3a);
  border-color: var(--accent, #f4be3a);
  color: #fff;
}

.layout-footer-one .footer-newsletter {
  display: flex;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.layout-footer-one .footer-newsletter-input {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: none;
  padding: 0 14px;
  font: inherit;
  font-size: 0.88rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.layout-footer-one .footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.layout-footer-one .footer-newsletter-btn {
  height: 40px;
  padding: 0 18px;
  border: none;
  background: var(--accent, #f4be3a);
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.layout-footer-one .footer-newsletter-btn:hover {
  background: var(--accent-hover, #FFAE03);
}

.layout-footer-one .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 10px;
}

.layout-footer-one .copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  text-align: center;
}

@media (max-width: 1024px) {
  .layout-footer-one .footer-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .layout-footer-one .footer-grid-four {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-section{
    padding: 80px 0px;
  }
}