/* ============================================================
   PAGE-SPECIFIC STYLES  — Sell, Buy, Testimonials
   ============================================================ */

/* ---- Shared page hero ---- */
.cassano-sell-hero-row,
.cassano-buy-hero-row,
.cassano-testimonials-hero-row {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.cassano-sell-hero-row::before,
.cassano-buy-hero-row::before,
.cassano-testimonials-hero-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,35,28,0.72);
  z-index: 1;
}
.cassano-sell-hero-row .widget,
.cassano-buy-hero-row .widget,
.cassano-testimonials-hero-row .widget { position: relative; z-index: 2; width: 100%; }

.cassano-page-hero-inner {
  text-align: center;
  padding: 100px 24px;
  color: white;
  max-width: 760px;
  margin: 0 auto;
}
.cassano-page-hero-inner h1 { color: white; margin-bottom: 12px; }
.cassano-page-hero-inner p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 0; }

/* ================================================================
   SELL PAGE — FAQ Accordion
   ================================================================ */
.cassano-sell-content { max-width: 860px; margin: 0 auto; }
.cassano-sell-intro   { margin-bottom: 50px; }
.cassano-sell-intro h2 { margin-bottom: 12px; }
.cassano-sell-intro p  { color: #555; font-size: 1.05rem; }

.cassano-faq-list { display: flex; flex-direction: column; gap: 0; }

.cassano-faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.cassano-faq-item:first-child { border-top: 1px solid #e0e0e0; }

.cassano-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}
.cassano-faq-question span:first-child {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
  transition: color 0.2s ease;
}
.cassano-faq-question:hover span:first-child { color: #05997e; }

.cassano-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #05997e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #05997e;
  font-weight: 300;
  transition: all 0.25s ease;
  line-height: 1;
}
.cassano-faq-item.is-open .cassano-faq-icon {
  background: #05997e;
  color: white;
  transform: rotate(45deg);
}

.cassano-faq-answer {
  display: none;
  padding: 0 0 24px 0;
}
.cassano-faq-answer p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0;
}
.cassano-faq-answer a { color: #05997e; font-weight: 600; }
.cassano-faq-item.is-open .cassano-faq-answer { display: block; }

/* ================================================================
   BUY PAGE — Search Bar
   ================================================================ */
.cassano-buy-hero-row { min-height: 560px; }

.cassano-buy-hero-inner {
  text-align: center;
  padding: 100px 24px 80px;
  max-width: 860px;
  margin: 0 auto;
  color: white;
}
.cassano-buy-hero-inner h1 { color: white; margin-bottom: 12px; font-size: clamp(2.2rem, 5vw, 3.5rem); }
.cassano-buy-hero-inner .cassano-hero-body { margin-bottom: 36px; }

.cassano-search-bar-wrap { margin-top: 10px; }

.cassano-search-input-wrap {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  max-width: 680px;
  margin: 0 auto 14px;
  gap: 10px;
}
.cassano-search-icon { color: #888; flex-shrink: 0; }
.cassano-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  background: transparent;
  min-width: 0;
}
.cassano-search-input::placeholder { color: #aaa; }
.cassano-search-btn {
  background: #05997e;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.cassano-search-btn:hover { background: #047a65; }

.cassano-search-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.cassano-search-note a { color: rgba(255,255,255,0.9); text-decoration: underline; }

/* Buyer Steps */
.cassano-buyer-tips { max-width: 1100px; margin: 0 auto; }
.cassano-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.cassano-step {
  background: white;
  border-radius: 6px;
  padding: 30px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 3px solid #05997e;
}
.cassano-step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #e0e0e0;
  line-height: 1;
  margin-bottom: 10px;
}
.cassano-step h4 { font-size: 1.05rem; margin-bottom: 8px; color: #111; }
.cassano-step p  { font-size: 0.88rem; color: #666; margin: 0; line-height: 1.6; }

/* Buy listings section */
.cassano-buy-listings-section { max-width: 1100px; margin: 0 auto; }

/* ================================================================
   TESTIMONIALS PAGE
   ================================================================ */
.cassano-testimonials-hero-row { min-height: 380px; }

.cassano-quote-banner-row { background: #05997e !important; }
.cassano-big-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: white;
  position: relative;
}
.cassano-quote-mark {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 6rem;
  color: rgba(255,255,255,0.3);
  line-height: 0.6;
  margin-bottom: 10px;
}
.cassano-big-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: white;
  line-height: 1.5;
  margin: 0;
}

.cassano-testimonials-section { max-width: 1100px; margin: 0 auto; }
.cassano-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.cassano-testimonial-card {
  background: white;
  border-radius: 6px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  border-left: 4px solid #05997e;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cassano-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.cassano-testimonial-stars {
  color: #f0b429;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.cassano-testimonial-quote {
  font-style: italic;
  color: #444;
  font-size: 0.93rem;
  line-height: 1.75;
  flex: 1;
  margin: 0 0 20px 0;
  border: none;
  padding: 0;
}
.cassano-testimonial-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: #05997e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .cassano-page-hero-inner { padding: 80px 20px; }
  .cassano-search-input-wrap { border-radius: 8px; flex-wrap: wrap; padding: 12px; }
  .cassano-search-btn { width: 100%; border-radius: 6px; }
  .cassano-steps-grid { grid-template-columns: 1fr; }
  .cassano-testimonials-grid { grid-template-columns: 1fr; }
}
