/* ══════════════════════════════════════════
   HOME PAGE STYLES
   Append these to your existing style.css
   ══════════════════════════════════════════ */

/* ── Page base ───────────────────────────── */
.home-hero {
  padding: 64px 0 48px;
}

/* ── Badge ───────────────────────────────── */
.home-badge {
  display: inline-block;
  background: rgba(230, 183, 143, 0.15);
  color: #7c5739;
  border: 1px solid rgba(230, 183, 143, 0.4);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

/* ── Hero Typography ─────────────────────── */
.home-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.12;
  color: #0f0f0f;
  margin-bottom: 20px;
  font-weight: 700;
}

.home-title-accent {
  color: #c4873a;
  font-style: italic;
}

.home-hero-text {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
}

/* ── Hero Buttons ────────────────────────── */
.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-home-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6b78f;
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
  font-family: "DM Sans", sans-serif;
}

.btn-home-primary:hover {
  background: #d9a57a;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 183, 143, 0.45);
}

.btn-home-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid #e0d9d2;
  transition: all 0.25s ease;
  font-family: "DM Sans", sans-serif;
}

.btn-home-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color:  #e0d9d2;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid #e0d9d2;
  transition: all 0.25s ease;
  font-family: "DM Sans", sans-serif;
  
}


.btn-home-ghost:hover {
  border-color: #e6b78f;
  color: #000;
  background: rgba(230, 183, 143, 0.08);
}

.btn-home-ghost--light {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.btn-home-ghost--light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* ── Trust Strip ─────────────────────────── */
.home-trust-strip {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-trust-item {
  display: flex;
  flex-direction: column;
}

.home-trust-num {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f0f0f;
  line-height: 1;
}

.home-trust-label {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
  margin-top: 3px;
}

.home-trust-divider {
  width: 1px;
  height: 36px;
  background: #e5e7eb;
}

/* ── Process Card ────────────────────────── */
.home-process-card {
  background: #fff;
  border: 1px solid #ece7e2;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.home-card-tag {
  display: inline-block;
  background: rgba(230, 183, 143, 0.15);
  color: #7c5739;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.home-process-card-header h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.home-process-card-header p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Steps ───────────────────────────────── */
.home-steps {
  margin-top: 24px;
}

.home-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.home-step-num {
  width: 36px;
  height: 36px;
  background: #0f0f0f;
  color: #e6b78f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.home-step-line {
  width: 1px;
  background: #ece7e2;
  flex-shrink: 0;
  margin: 4px 0 0 17px;
  height: 32px;
}

.home-step-line.last {
  display: none;
}

.home-step-body {
  padding-bottom: 20px;
  flex: 1;
}

.home-step-body h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: #0f0f0f;
}

.home-step-body p {
  font-size: 0.83rem;
  color: #9ca3af;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ── Sections ────────────────────────────── */
.home-section {
  padding: 72px 0;
}

.home-section--alt {
  background: #faf8f5;
  margin-left: -12px;
  margin-right: -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 28px;
}

.home-section-label {
  display: inline-block;
  background: rgba(230, 183, 143, 0.15);
  color: #7c5739;
  border: 1px solid rgba(230, 183, 143, 0.35);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 10px;
  max-width: 600px;
}

.home-section-sub {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 560px;
}

/* ── Features Grid ───────────────────────── */
.home-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.home-feature-card {
  background: #fff;
  border: 1px solid #ece7e2;
  border-radius: 18px;
  padding: 26px;
  transition: all 0.25s ease;
}

.home-feature-card--accent {
  background: #0f0f0f;
  border-color: #0f0f0f;
  color: #fff;
}

.home-feature-card--accent h4 {
  color: #fff;
}

.home-feature-card--accent p {
  color: rgba(255,255,255,0.6);
}

.home-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  border-color: #e6b78f;
}

.home-feature-card--accent:hover {
  border-color: #e6b78f;
}

.home-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.home-feature-card h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f0f0f;
}

.home-feature-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ── Package Cards ───────────────────────── */
.home-package-card {
  background: #fff;
  border: 1px solid #ece7e2;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
}

.home-package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.home-package-card--featured {
  border-color: #e6b78f;
  box-shadow: 0 4px 24px rgba(230, 183, 143, 0.25);
}

.home-featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e6b78f;
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 1;
}

.home-package-img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background-size: cover;
  background-position: center;
}

.home-package-img--1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #3d2b1f 100%);
}

.home-package-img--2 {
  background: linear-gradient(135deg, #2c1810 0%, #8b4513 60%, #e6b78f 100%);
}

.home-package-img--3 {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.home-package-duration {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
}

.home-package-body {
  padding: 22px;
}

.home-package-body h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f0f0f;
  font-family: "DM Sans", sans-serif;
}

.home-package-body p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 18px;
}

.home-package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-package-price {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f0f0f;
}

.btn-home-small {
  background: #0f0f0f;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}

.btn-home-small:hover {
  background: #e6b78f;
  color: #000;
}

/* ── Pricing ─────────────────────────────── */
.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: start;
}

.home-pricing-card {
  background: #fff;
  border: 1px solid #ece7e2;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: all 0.25s ease;
}

.home-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.home-pricing-card--featured {
  border-color: #e6b78f;
  background: #0f0f0f;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.home-pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.home-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e6b78f;
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.home-pricing-header {
  margin-bottom: 24px;
  text-align: center;
}

.home-pricing-header h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
}

.home-pricing-card--featured .home-pricing-header h5 {
  color: #fff;
}

.home-pricing-price {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f0f0f;
  line-height: 1;
  margin-bottom: 6px;
}

.home-pricing-price span {
  font-size: 1rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: #9ca3af;
}

.home-pricing-card--featured .home-pricing-price {
  color: #e6b78f;
}

.home-pricing-header p {
  font-size: 0.82rem;
  color: #9ca3af;
  margin: 0;
}

.home-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.home-pricing-features li {
  font-size: 0.875rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
}

.home-pricing-card--featured .home-pricing-features li {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.07);
}

.home-pricing-features li.yes::before {
  content: '✓';
  color: #e6b78f;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.home-pricing-features li.no::before {
  content: '×';
  color: #d1d5db;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.home-pricing-features li.no {
  color: #9ca3af;
}

.btn-home-plan {
  display: block;
  text-align: center;
  background: #e6b78f;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}

.btn-home-plan:hover {
  background: #d9a57a;
  color: #000;
  transform: translateY(-1px);
}

.btn-home-plan-ghost {
  display: block;
  text-align: center;
  background: transparent;
  color: #374151;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid #e0d9d2;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}

.btn-home-plan-ghost:hover {
  border-color: #e6b78f;
  color: #000;
}

.home-pricing-card--featured .btn-home-plan-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.home-pricing-card--featured .btn-home-plan-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ── Testimonials ────────────────────────── */
.home-testimonial-card {
  background: #fff;
  border: 1px solid #ece7e2;
  border-radius: 18px;
  padding: 26px;
  transition: all 0.25s ease;
}

.home-testimonial-card--accent {
  background: #0f0f0f;
  border-color: #0f0f0f;
}

.home-testimonial-card--accent p {
  color: rgba(255,255,255,0.7);
}

.home-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}

.home-stars {
  color: #e6b78f;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.home-testimonial-card p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.home-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e6b78f;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.home-testimonial-card--accent .home-testimonial-avatar {
  background: rgba(230, 183, 143, 0.25);
  color: #e6b78f;
}

.home-testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  color: #0f0f0f;
}

.home-testimonial-card--accent .home-testimonial-author strong {
  color: #fff;
}

.home-testimonial-author small {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ── FAQ ─────────────────────────────────── */
.home-faq-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.home-faq-item {
  background: #fff;
  border: 1px solid #ece7e2;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.home-faq-item.open {
  border-color: #e6b78f;
}

.home-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f0f0f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}

.home-faq-question:hover {
  color: #7c5739;
}

.home-faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: #e6b78f;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.home-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  padding: 0 20px;
}

.home-faq-item.open .home-faq-answer {
  padding-bottom: 18px;
}

/* ── CTA Banner ──────────────────────────── */
.home-cta-banner {
  background: #0f0f0f;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin: 20px 0 48px;
}

.home-cta-banner h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}

.home-cta-banner p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 28px;
}

.home-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────── */
.home-footer {
  border-top: 1px solid #ece7e2;
  padding: 36px 0 20px;
}

.home-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.home-footer-brand span {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0f0f0f;
}

.home-footer-tagline {
  font-size: 0.82rem;
  color: #9ca3af;
  margin: 0;
}

.home-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.home-footer-links a {
  font-size: 0.85rem;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.home-footer-links a:hover {
  color: #7c5739;
}

.home-footer-auth {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.home-footer-auth a {
  font-size: 0.85rem;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.home-footer-auth a:hover {
  color: #0f0f0f;
}

.home-footer-cta {
  background: #e6b78f !important;
  color: #000 !important;
  padding: 8px 18px;
  border-radius: 9px;
  font-weight: 700 !important;
}

.home-footer-cta:hover {
  background: #d9a57a !important;
}

.home-footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #f3f0ec;
  text-align: center;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 992px) {
  .home-hero-title { font-size: 2.4rem; }
  .home-features-grid { grid-template-columns: repeat(2, 1fr); }
  .home-pricing-grid { grid-template-columns: 1fr; }
  .home-pricing-card--featured { transform: none; }
  .home-pricing-card--featured:hover { transform: translateY(-4px); }
  .home-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .home-hero { padding: 40px 0 32px; }
  .home-hero-title { font-size: 2rem; }
  .home-section { padding: 52px 0; }
  .home-section-title { font-size: 1.7rem; }
  .home-features-grid { grid-template-columns: 1fr; }
  .home-trust-strip { gap: 16px; }
  .home-cta-banner { padding: 40px 24px; }
  .home-cta-banner h2 { font-size: 1.6rem; }
  .home-footer-auth { justify-content: flex-start; }
  .home-footer-links { justify-content: flex-start; }
}

.event-listing-meta {
  color: #7a6f63;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}
