/* ===== Modern Dark Theme ===== */
:root {
  --bg: #0f0f12;
  --bg-card: #1a1a21;
  --bg-elevated: #22222b;
  --text: #f0f0f5;
  --text-muted: #a0a0b0;
  --accent: #e11d48;          /* Rose red */
  --accent-hover: #be123c;
  --whatsapp: #25d366;
  --border: rgba(255,255,255,0.08);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Hero */
.hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,15,18,0.3), rgba(15,15,18,0.85));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.hero-badge {
  display: inline-block;
  background: rgba(225,29,72,0.2);
  border: 1px solid rgba(225,29,72,0.4);
  color: #fda4af;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-sub {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}
.btn-whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--text-muted);
}

/* Profile Cards */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.profile-card:hover .card-image img {
  transform: scale(1.06);
}
.vip-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.profile-card:hover .card-overlay {
  opacity: 1;
}
.card-overlay span {
  color: white;
  font-weight: 600;
  border: 1px solid white;
  padding: 8px 20px;
  border-radius: 50px;
}
.card-body {
  padding: 1.25rem;
}
.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0 1.25rem 1.25rem;
}
.btn-call, .btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-call {
  background: rgba(225,29,72,0.15);
  color: #fda4af;
}
.btn-call:hover {
  background: var(--accent);
  color: white;
}
.btn-wa {
  background: rgba(37,211,102,0.15);
  color: #4ade80;
}
.btn-wa:hover {
  background: var(--whatsapp);
  color: white;
}

/* Trust Stats */
.trust-section {
  padding: 3.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
}
.trust-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.trust-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 1.2rem 1.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0 1.4rem;
}
.faq-item.active .faq-a {
  max-height: 300px;
  padding: 0 1.4rem 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    height: 60vh;
  }
}