/* ==========================================================================
   DateDelhiGirls - Modern Luxury Design System
   ========================================================================== */

:root {
  --bg-main: #080c14;
  --bg-surface: #0f1523;
  --bg-card: rgba(18, 25, 41, 0.7);
  --bg-card-hover: rgba(24, 34, 56, 0.9);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.3);
  --border-glow: rgba(231, 47, 92, 0.4);
  
  --primary-pink: #e72f5c;
  --primary-gold: #f59e0b;
  --primary-gradient: linear-gradient(135deg, #e72f5c 0%, #f59e0b 100%);
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --dark-gradient: linear-gradient(180deg, #0f1523 0%, #080c14 100%);
  --card-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-gold: #fbbf24;
}

* {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-gold); }

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.luxury-navbar {
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.85rem 1.5rem;
  transition: all 0.3s ease;
}

.luxury-navbar.scrolled {
  background: rgba(8, 12, 20, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 0.6rem 1.5rem;
}

.navbar-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-link {
  color: #e5e7eb !important;
  font-weight: 600;
  font-size: 0.925rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: 10px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.dropdown-menu {
  background: rgba(15, 21, 35, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  padding: 0.75rem;
}

.dropdown-item {
  color: #d1d5db;
  border-radius: 8px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateX(3px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.luxury-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 20%, rgba(231, 47, 92, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 60%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
              var(--bg-main);
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(231, 47, 92, 0.2);
  top: -100px;
  left: -100px;
}
.hero-glow-2 {
  width: 450px;
  height: 450px;
  background: rgba(245, 158, 11, 0.15);
  bottom: 0;
  right: -50px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 0.4rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 2rem;
}

.hero-pill-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.4rem 0.9rem;
  border-radius: 12px;
  font-size: 0.825rem;
  color: #d1d5db;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn-luxury {
  background: var(--primary-gradient);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(231, 47, 92, 0.5);
}

.btn-luxury:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(231, 47, 92, 0.7);
  color: #fff;
}

.btn-luxury-whatsapp {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.5);
}

.btn-luxury-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.7);
  color: #fff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   Model Profile Cards (Luxury Glassmorphism)
   ========================================================================== */
.model-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.15);
}

.model-img-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card:hover .model-img {
  transform: scale(1.06);
}

.model-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  gap: 6px;
}

.badge-tag {
  background: rgba(15, 21, 35, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-tag.pink {
  background: #e72f5c !important;
  border-color: #be123c !important;
  color: #ffffff !important;
  font-weight: 700;
}

.badge-tag.gold {
  background: #f59e0b !important;
  border-color: #d97706 !important;
  color: #000000 !important;
  font-weight: 800;
}

.badge-tag.cyan {
  background: #06b6d4 !important;
  border-color: #0891b2 !important;
  color: #000000 !important;
  font-weight: 800;
}

.badge-tag.indigo {
  background: #6366f1 !important;
  border-color: #4f46e5 !important;
  color: #ffffff !important;
  font-weight: 700;
}

.badge-tag.orange {
  background: #f97316 !important;
  border-color: #ea580c !important;
  color: #ffffff !important;
  font-weight: 800;
}

.badge-tag.verified {
  background: #10b981 !important;
  border-color: #059669 !important;
  color: #ffffff !important;
  font-weight: 700;
}

/* Universal High-Contrast Badges & Bootstrap Overrides */
.badge {
  font-weight: 700 !important;
  letter-spacing: 0.3px;
}

.badge.bg-success, .badge-pill-success {
  background: rgba(16, 185, 129, 0.2) !important;
  color: #34d399 !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
}

.badge.bg-warning, .badge-pill-warning {
  background: rgba(245, 158, 11, 0.2) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(245, 158, 11, 0.4) !important;
}

.badge.bg-info, .badge-pill-info {
  background: rgba(6, 182, 212, 0.2) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(6, 182, 212, 0.4) !important;
}

.badge.bg-danger, .badge-pill-danger {
  background: rgba(231, 47, 92, 0.2) !important;
  color: #fb7185 !important;
  border: 1px solid rgba(231, 47, 92, 0.4) !important;
}

.badge.bg-dark, .badge-pill-dark {
  background: rgba(15, 21, 35, 0.85) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.badge.bg-secondary, .badge-pill-secondary {
  background: rgba(156, 163, 175, 0.2) !important;
  color: #e5e7eb !important;
  border: 1px solid rgba(156, 163, 175, 0.35) !important;
}

/* Compact Model Card Service Tags */
.model-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0.85rem;
}

.model-tag-mini {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.model-tag-mini:hover {
  background: rgba(231, 47, 92, 0.15);
  border-color: rgba(231, 47, 92, 0.35);
  color: #fff;
}

.model-tag-mini.special {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--text-gold);
}

/* Full Profile Detail Service Box */
.service-feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s ease;
}

.service-feature-card:hover {
  background: rgba(231, 47, 92, 0.08);
  border-color: rgba(231, 47, 92, 0.3);
  transform: translateY(-2px);
}

.service-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(231, 47, 92, 0.15);
  color: #e72f5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.model-overlay-specs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 0.75rem;
  background: linear-gradient(0deg, rgba(8, 12, 20, 0.95) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.model-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.model-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.model-title-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.specs-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.spec-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #d1d5db;
}

/* ==========================================================================
   Horizontal Premium Profile Cards
   ========================================================================== */
.horizontal-profile-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.horizontal-profile-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 158, 11, 0.1);
}

/* ==========================================================================
   Category Filter Tabs
   ========================================================================== */
.filter-tabs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tab-btn:hover, .filter-tab-btn.active {
  background: var(--primary-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(231, 47, 92, 0.4);
}

/* ==========================================================================
   Floating Action Bar & CTAs
   ========================================================================== */
.floating-action-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.call {
  background: #3b82f6;
}

.floating-btn:hover {
  transform: scale(1.12) translateY(-2px);
  color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.luxury-footer {
  background: #06090f;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: var(--primary-gold);
  transform: translateX(3px);
}

/* ==========================================================================
   Luxury Rates & Pricing Packages (Obsidian Gold Design)
   ========================================================================== */
.table-dark-custom {
  --bs-table-bg: transparent;
  --bs-table-color: #f3f4f6;
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
  background: transparent !important;
  color: #f3f4f6 !important;
}

.table-dark-custom th {
  background: rgba(0, 0, 0, 0.3) !important;
  color: #9ca3af !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 0.85rem 1rem;
}

.table-dark-custom td {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 1rem;
  vertical-align: middle;
}

.rate-package-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0.75rem;
}

.rate-package-item:last-child {
  margin-bottom: 0;
}

.rate-package-item:hover {
  background: rgba(245, 158, 11, 0.04);
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateX(4px);
}

.rate-package-item.featured {
  background: linear-gradient(135deg, rgba(231, 47, 92, 0.08) 0%, rgba(245, 158, 11, 0.06) 100%);
  border-color: rgba(245, 158, 11, 0.3);
}

.rate-tier-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.rate-tier-badge.gold {
  background: #f59e0b !important;
  color: #000000 !important;
  border: 1px solid #d97706 !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
}

.rate-tier-badge.pink {
  background: #e72f5c !important;
  color: #ffffff !important;
  border: 1px solid #be123c !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 6px rgba(231, 47, 92, 0.25);
}

.rate-price-tag {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: -0.3px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.15rem;
  }
  .luxury-navbar {
    padding: 0.75rem 1rem;
  }
  .rate-package-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .rate-package-item .rate-actions-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
  }
}