/* ========================================
   THE PICOLO GROUP — BUYER WEBSITE
   Brand Colors:
   Primary: #1B3D1B (Dark Forest Green)
   Secondary: #FBF5E6 (Cream)
   Accent: #FFFFFF (White)
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2D2D2D;
  line-height: 1.6;
  background-color: #FFFFFF;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1B3D1B;
  line-height: 1.2;
}

a {
  color: #1B3D1B;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 61, 27, 0.1);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1B3D1B;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2D2D2D;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: #1B3D1B;
}

.nav-cta {
  background: #1B3D1B;
  color: #FFFFFF !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: #2A5C2A;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1B3D1B;
  transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1B3D1B 0%, #2A5C2A 50%, #1B3D1B 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: #1B3D1B;
  color: #FFFFFF;
  border-color: #1B3D1B;
}

.btn-primary:hover {
  background: #2A5C2A;
  border-color: #2A5C2A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 61, 27, 0.3);
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-outline-dark {
  background: transparent;
  color: #1B3D1B;
  border-color: #1B3D1B;
}

.btn-outline-dark:hover {
  background: #1B3D1B;
  color: #FFFFFF;
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}

.section-cream {
  background: #FBF5E6;
}

.section-green {
  background: #1B3D1B;
}

.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 12px;
}

.section-title-light {
  color: #FFFFFF;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.75);
}

/* ========== WHY US / FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: #1B3D1B;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ========== PROCESS TIMELINE ========== */
.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1B3D1B, rgba(27, 61, 27, 0.2));
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

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

.step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #1B3D1B;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 1;
}

.step-content {
  padding-top: 12px;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.step-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1B3D1B;
  border-bottom: 1px solid #1B3D1B;
}

.step-link:hover {
  opacity: 0.8;
}

/* ========== BUYER TYPES ========== */
.buyer-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.buyer-type-card {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buyer-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.buyer-type-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: #1B3D1B;
}

.buyer-type-icon svg {
  width: 100%;
  height: 100%;
}

.buyer-type-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.buyer-type-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ========== TEAM ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid #1B3D1B;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-brittany img {
  object-position: center;
  transform: none;
}

.team-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B3D1B, #2A5C2A);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid #1B3D1B;
}

.team-photo-placeholder span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  color: #FFFFFF;
  font-weight: 600;
}

.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.9rem;
  color: #1B3D1B;
  font-weight: 500;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

.team-brokerage {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 61, 27, 0.15);
  font-size: 0.95rem;
  color: #666;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(27, 61, 27, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: #1B3D1B;
  text-align: left;
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  min-width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ========== FORM ========== */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.form-progress {
  margin-bottom: 40px;
}

.progress-bar {
  height: 4px;
  background: #E8E8E8;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-fill {
  height: 100%;
  background: #1B3D1B;
  border-radius: 4px;
  transition: width 0.4s ease;
  width: 16.66%;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.progress-step {
  font-size: 0.72rem;
  color: #999;
  text-align: center;
  flex: 1;
  transition: color 0.3s ease;
}

.progress-step.active {
  color: #1B3D1B;
  font-weight: 600;
}

.progress-step.completed {
  color: #2A5C2A;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step-title {
  font-size: 1.5rem;
  color: #1B3D1B;
  margin-bottom: 4px;
}

.form-step-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #DDD;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #333;
  background: #FAFAFA;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #1B3D1B;
  box-shadow: 0 0 0 3px rgba(27, 61, 27, 0.1);
  background: #FFFFFF;
}

textarea {
  resize: vertical;
  min-height: 60px;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-consent {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #EEE;
}

.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: #1B3D1B;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #EEE;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  color: #1B3D1B;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.form-success h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: #FBF5E6;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
}

.cta-contact {
  margin-top: 24px;
}

.cta-contact p {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
  background: #1B3D1B;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-links h4,
.footer-areas h4 {
  font-size: 0.9rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-areas p {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(27, 61, 27, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .features-grid,
  .buyer-types-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-container {
    padding: 32px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .progress-steps {
    display: none;
  }

  .process-timeline::before {
    left: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .form-container {
    padding: 24px 16px;
  }
}
