/* ============================================
   REHANA PATHAN - Delhi Escorts Website
   Color Theme: #E91E63 (Pink) + #0D0A42 (Navy)
   ============================================ */

:root {
  --rp-pink: #E91E63;
  --rp-pink-light: #F8BBD0;
  --rp-pink-dark: #AD1457;
  --rp-navy: #0D0A42;
  --rp-navy-light: #1A1659;
  --rp-gold: #D4A017;
  --rp-gold-light: #F0C049;
  --rp-cream: #FDF6F9;
  --rp-white: #FFFFFF;
  --rp-grey: #6B7280;
  --rp-grey-light: #E5E7EB;
  --rp-green: #10B981;
  --rp-shadow: 0 4px 20px rgba(233, 30, 99, 0.12);
  --rp-shadow-hover: 0 8px 30px rgba(233, 30, 99, 0.18);
  --rp-radius: 12px;
  --rp-radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--rp-navy);
  background: var(--rp-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--rp-navy);
  line-height: 1.3;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

a {
  color: var(--rp-pink);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--rp-pink-dark); }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(13, 10, 66, 0.98) !important;
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(233, 30, 99, 0.2);
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--rp-pink) !important;
}

.navbar .dropdown-menu {
  background: var(--rp-navy);
  border: 1px solid rgba(233, 30, 99, 0.3);
  border-radius: 8px;
  padding: 8px;
}

.navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
  background: var(--rp-pink);
  color: white;
}

.navbar .btn-whatsapp {
  background: #25D366;
  color: white !important;
  border: none;
  padding: 8px 20px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.navbar .btn-whatsapp:hover {
  background: #1da851;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0D0A42 0%, #1A1659 50%, #2D1B5C 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--rp-pink);
  display: block;
}

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

.hero .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-pink {
  background: var(--rp-pink);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--rp-pink);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-pink:hover {
  background: var(--rp-pink-dark);
  color: white;
  border-color: var(--rp-pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.35);
}

.btn-outline-light-pink {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-light-pink:hover {
  background: white;
  color: var(--rp-navy);
  border-color: white;
  transform: translateY(-2px);
}

.btn-whatsapp-large {
  background: #25D366;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp-large:hover {
  background: #1da851;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  backdrop-filter: blur(4px);
}

.trust-badge .check {
  color: var(--rp-green);
  font-weight: 700;
}

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

.section-cream {
  background: var(--rp-cream);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.75rem;
}

.section-title .accent {
  color: var(--rp-pink);
}

.section-title .underline {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--rp-pink), var(--rp-gold));
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.section-title p {
  color: var(--rp-grey);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== CARDS ===== */
.card-rp {
  background: white;
  border-radius: var(--rp-radius);
  overflow: hidden;
  box-shadow: var(--rp-shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: none;
}

.card-rp:hover {
  transform: translateY(-6px);
  box-shadow: var(--rp-shadow-hover);
}

.card-rp .card-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--rp-navy) 0%, var(--rp-pink-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.card-rp .card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.card-rp .card-body {
  padding: 20px;
}

.card-rp .card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--rp-navy);
}

.card-rp .card-text {
  font-size: 0.9rem;
  color: var(--rp-grey);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-rp .card-link {
  color: var(--rp-pink);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.card-rp .card-link:hover {
  gap: 8px;
  color: var(--rp-pink-dark);
}

/* ===== PROFILE CARDS ===== */
.profile-card .card-image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--rp-pink-dark) 0%, var(--rp-navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.profile-card .verified-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rp-green);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-card .verified-badge::before {
  content: "✓";
  font-weight: 900;
}

.profile-card .category-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(13, 10, 66, 0.85);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.profile-card .card-body {
  text-align: center;
}

.profile-card .price {
  color: var(--rp-gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.profile-card .price .from {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rp-grey);
}

.profile-card .btn-book {
  background: var(--rp-navy);
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  display: block;
  width: 100%;
  transition: all 0.3s ease;
}

.profile-card .btn-book:hover {
  background: var(--rp-pink);
  color: white;
}

/* ===== FAQ ===== */
.faq-section .accordion-item {
  border: 1px solid var(--rp-grey-light);
  border-radius: var(--rp-radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-section .accordion-button {
  background: white;
  color: var(--rp-navy);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 24px;
  font-family: 'Inter', sans-serif;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--rp-cream);
  color: var(--rp-pink);
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: var(--rp-pink-light);
}

.faq-section .accordion-body {
  padding: 0 24px 18px;
  color: var(--rp-grey);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--rp-navy) 0%, var(--rp-navy-light) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--rp-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 24px;
}

.footer h5 {
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--rp-pink);
}

.footer .footer-brand {
  margin-bottom: 1.5rem;
}

.footer .footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer .footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}

.footer .contact-info {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer .contact-info a {
  color: var(--rp-pink-light);
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer .disclaimer-line {
  background: rgba(233, 30, 99, 0.15);
  color: var(--rp-pink-light);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 16px;
}

/* ===== SUB-PAGE STYLES ===== */
.page-header {
  background: linear-gradient(135deg, var(--rp-navy) 0%, var(--rp-navy-light) 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 0.75rem;
}

.page-header .breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}

.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item.active {
  color: var(--rp-pink);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--rp-navy);
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: var(--rp-pink);
}

.content-section p {
  margin-bottom: 1.25rem;
  color: var(--rp-navy);
  line-height: 1.8;
}

.content-section ul, .content-section ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  color: var(--rp-navy);
  line-height: 1.7;
}

.content-section .lead {
  font-size: 1.15rem;
  color: var(--rp-navy);
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 20px;
  background: var(--rp-cream);
  border-left: 4px solid var(--rp-pink);
  border-radius: 0 8px 8px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 50px;
  }
  .hero .cta-group {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto 2rem;
  }
  .section {
    padding: 50px 0;
  }
  .navbar .btn-whatsapp {
    padding: 6px 14px !important;
    font-size: 0.85rem;
  }
  .navbar-collapse {
    background: var(--rp-navy);
    padding: 16px;
    border-radius: 8px;
    margin-top: 8px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITY ===== */
.text-pink { color: var(--rp-pink) !important; }
.text-navy { color: var(--rp-navy) !important; }
.text-gold { color: var(--rp-gold) !important; }
.bg-pink { background: var(--rp-pink) !important; }
.bg-navy { background: var(--rp-navy) !important; }
.bg-cream { background: var(--rp-cream) !important; }
