/* ==========================================================================
   CALL GIRLS IN JAIPUR - HIGH-CONTRAST 4-COLOR BACKGROUND THEME
   ========================================================================== */

/* ===== 1. DESIGN SYSTEM & TOKENS ===== */
:root {
  /* Provided Colors */
  --color-cyan: #00F7FF;        /* Bright Cyan */
  --color-ice: #B0FFFA;         /* Light Ice Blue */
  --color-magenta: #FF0087;     /* Hot Magenta */
  --color-pink: #FF7DB0;        /* Light Pink */
  
  /* Text & Contrast Colors */
  --text-dark: #06010a;         /* High-contrast dark amethyst-black for light/neon bg */
  --text-light: #ffffff;        /* Crisp white for dark containers */
  --text-muted: #020202;        /* Muted dark color for subtle text */
  --border-color: rgba(6, 1, 10, 0.15);
  
  /* Gradients */
  --gradient-four-color: linear-gradient(135deg, #00F7FF, #B0FFFA, #FF0087, #FF7DB0);
  --gradient-primary: linear-gradient(135deg, #FF0087, #00F7FF);
  --gradient-dark: linear-gradient(135deg, #06010a, #1a082c);
  
  /* Glassmorphism */
  --glass-light: rgba(255, 255, 255, 0.85);
  --glass-dark: rgba(6, 1, 10, 0.9);
  --glass-border: rgba(6, 1, 10, 0.1);
  --shadow-main: 0 8px 32px 0 rgba(6, 1, 10, 0.15);
  
  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  /* Base background is the provided Hot Magenta color */
  background-color: var(--color-magenta);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-dark {
  background: var(--text-dark);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(6, 1, 10, 0.3);
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 1, 10, 0.5);
  background-color: #000;
}

.btn-pink {
  background: var(--color-magenta);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 0, 135, 0.3);
}

.btn-pink:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 135, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.6);
  background-color: #000;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Badges */
.badge-verified {
  background: var(--text-dark);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}

.badge-live {
  background: #ff3366;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

/* ===== 2. NAVBAR (Translucent Light Cyan Background) ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Uses light Ice Blue color */
  background-color: rgba(176, 255, 250, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
}

.nav-logo span {
  color: var(--color-magenta);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-magenta);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 11px; }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 11px; }

/* ===== 3. HERO SECTION (Uses All 4 Provided Colors in Background) ===== */
.hero-section {
  position: relative;
  padding: 200px 0 120px;
  /* CRITICAL: Background displays all four provided colors in a linear gradient */
  background: var(--gradient-four-color);
  text-align: center;
  border-bottom: 2px solid var(--text-dark);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Light translucent overlay allows background gradient to show beautifully */
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Glassmorphic light box ensures text content is fully visible over the background gradient */
.hero-glass-box {
  background: var(--glass-light);
  border: 2px solid var(--text-dark);
  border-radius: 30px;
  padding: 60px 48px;
  box-shadow: 0 15px 40px rgba(6, 1, 10, 0.15);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.hero-title span {
  /* color: var(--color-magenta); */
  color:#ffffff;
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* Floating Stats Block */
.stats-banner {
  background: #ffffff;
  border: 2px solid var(--text-dark);
  border-radius: 20px;
  padding: 24px 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-item {
  position: relative;
  text-align: center;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 15%;
  height: 70%;
  width: 2px;
  background-color: var(--text-dark);
}

.stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 850;
  color: var(--color-magenta);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* ===== 4. SPOTLIGHT "MATCH OF THE DAY" (Light Ice Blue Background) ===== */
.spotlight-section {
  padding: 40px 0;
  /* Uses light Ice Blue color */
  background-color: var(--color-ice);
  border-bottom: 2px solid var(--text-dark);
}

.spotlight-card {
  background-color: #ffffff;
  border: 2px solid var(--text-dark);
  border-radius: 30px;
  padding: 48px;
  box-shadow: var(--shadow-main);
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 48px;
  align-items: center;
}

.spotlight-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--text-dark);
  aspect-ratio: 3/4;
}

.spotlight-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-details h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.spotlight-tagline {
  color: var(--color-magenta);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  background: var(--color-ice);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid var(--text-dark);
}

.spotlight-stat {
  display: flex;
  flex-direction: column;
}

.spotlight-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.spotlight-stat .val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
}

.spotlight-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

.spotlight-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.timer-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 135, 0.1);
  border: 1px solid rgba(255, 0, 135, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--color-magenta);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
}

.timer-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-magenta);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ===== 5. DIRECTORY FILTERS BAR (Light Pink Background) ===== */
.filters-section {
  padding: 40px 0;
  /* Uses Light Pink color */
  background-color: var(--color-pink);
  border-bottom: 2px solid var(--text-dark);
}

.filters-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.filters-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-pill {
  background-color: #ffffff;
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill:hover, .filter-pill.active {
  background: var(--text-dark);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(6, 1, 10, 0.15);
}

.filter-dropdown {
  background: #ffffff;
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}

/* Mobile Filter Dropdown Styles */
.mobile-filter-dropdown-wrapper {
  display: none;
  width: 100%;
}

.filter-dropdown-select {
  width: 100%;
  padding: 12px 20px;
  background-color: #ffffff;
  border: 2px solid var(--text-dark);
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
  transition: all 0.3s ease;
}

.filter-dropdown-select:focus {
  border-color: var(--color-magenta);
}

/* ===== 6. MAIN PROFILE GRID (Hot Magenta Background) ===== */
.profiles-section {
  padding: 20px 0;
  /* Uses Hot Magenta Background */
  background-color: var(--color-magenta);
  border-bottom: 2px solid var(--text-dark);
}

.section-title-block {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-block h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.section-title-block h2 span {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle { 
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* High-Fashion Card Layout (Light Ice Blue Card Canvas) */
.magazine-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* Uses light ice blue card background */
  background-color: var(--color-ice);
  border: 2px solid var(--text-dark);
  aspect-ratio: 3/4.2;
  box-shadow: var(--shadow-main);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.card-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 1, 10, 0.85) 0%, rgba(6, 1, 10, 0.3) 40%, transparent 80%);
  z-index: 1;
  pointer-events: none;
  transition: background 0.4s ease;
}

/* Float Badges inside Card */
.card-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: none;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

/* Card Content Details overlay */
.card-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 24px 20px;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.card-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}

.card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.card-name span {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-cyan);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.card-location-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.card-location-row svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Expanded attributes (slide-in on hover) */
.card-expanded-info {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  padding-top: 0;
  margin-bottom: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease, margin 0.4s ease, border-color 0.4s ease;
}

.card-stats-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.card-stat-col {
  display: flex;
  flex-direction: column;
}

.card-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.card-stat-val {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.card-cta-btn {
  background: var(--text-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  max-height: 0;
  border-radius: 30px;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

/* Hover States */
.magazine-card:hover {
  transform: translateY(-8px);
  border-color: var(--text-dark);
  box-shadow: 0 15px 35px rgba(6, 1, 10, 0.35);
}

.magazine-card:hover .card-media img {
  transform: scale(1.08);
}

.magazine-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(6, 1, 10, 0.95) 0%, rgba(6, 1, 10, 0.7) 50%, transparent 100%);
}

.magazine-card:hover .card-expanded-info {
  max-height: 100px;
  opacity: 1;
  padding-top: 16px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.magazine-card:hover .card-cta-btn {
  opacity: 1;
  max-height: 50px;
  padding: 12px 0;
  transform: translateY(0);
}

/* ===== 7. VIP SERVICES flip-cards (Bright Cyan Background) ===== */
.services-section {
  padding: 40px 0;
  /* Uses Bright Cyan Background */
  background-color: var(--color-cyan);
  border-bottom: 2px solid var(--text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #ffffff;
  border: 2px solid var(--text-dark);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-main);
  text-align: center;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6, 1, 10, 0.15);
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--color-ice);
  border: 2px solid var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--text-dark);
}

.service-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 850;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

/* ===== 8. DYNAMIC PRICING TABLE (Light Pink Background) ===== */
.pricing-section {
  padding: 40px 0;
  background-color: var(--color-pink);
  border-bottom: 2px solid var(--text-dark);
}

.rates-table-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.rates-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #ffffff;
  border: 2px solid var(--text-dark);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-main);
}

.rates-table th {
  background-color: var(--text-dark);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 24px;
  text-align: left;
}

.rates-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  vertical-align: middle;
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rates-table tr:nth-child(even) {
  background-color: var(--color-ice);
}

.rates-table .cat-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.rates-table .price-tag {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.rates-table .price-tag.highlight {
  color: var(--color-magenta);
}

.rates-table .rate-note {
  font-weight: 700;
  color: var(--color-magenta);
  font-style: italic;
}

.btn-table-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-table-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* Mobile Rates Cards */
.rates-mobile-cards {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.rate-card {
  background: #ffffff;
  border: 2px solid var(--text-dark);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-main);
}

.rate-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-pink);
  padding-bottom: 6px;
}

.rate-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.rate-card-row span {
  color: var(--text-muted);
  font-weight: 600;
}

.rate-card-row strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-dark);
}

.rate-card-row strong.highlight {
  color: var(--color-magenta);
}

.rate-card .btn {
  width: 100%;
  margin-top: 12px;
  font-size: 0.85rem;
  padding: 10px;
}

/* ===== 9. TESTIMONIAL SLIDER (Light Ice Blue Background) ===== */
.testimonials-section {
  padding: 40px 0;
  /* Uses light Ice Blue background */
  background-color: var(--color-ice);
  border-bottom: 2px solid var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 2px solid var(--text-dark);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.author-details h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.author-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
}

.rating-stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
  color: var(--color-gold);
}

.rating-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ===== 10. INTERACTIVE FAQ ACCORDION (Hot Magenta Background) ===== */
.faq-section {
  padding: 40px 0;
  /* Uses Hot Magenta Background */
  background-color: var(--color-magenta);
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #ffffff;
  border: 2px solid var(--text-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-main);
}

.faq-item summary {
  padding: 24px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-magenta);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 24px;
  border-top: 2px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 500;
}

.faq-content p {
  margin-top: 16px;
}

/* ===== 11. AESTHETIC FOOTER (Amethyst Dark Background) ===== */
.footer {
  background-color: var(--text-dark);
  border-top: 2px solid var(--text-dark);
  padding: 40px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col .h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-col p {
  color: var(--color-ice);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-ice);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-cyan);
  transform: translateX(4px);
}

.footer-locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-location-tag {
  background-color: rgba(0, 247, 255, 0.08);
  border: 1px solid rgba(0, 247, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--color-ice);
  transition: all 0.3s ease;
}

.footer-location-tag:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--color-ice);
  font-size: 0.85rem;
}

/* ===== 12. FLOATING & UTILITIES ===== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-float:hover {
  transform: scale(1.1) translateY(-3px);
}

.float-call {
  background: var(--gradient-primary);
  border: 2px solid var(--text-dark);
}

.float-wa {
  background-color: #25d366;
  border: 2px solid var(--text-dark);
}

.btn-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .profiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-grid, .services-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  /* Navbar Mobile Layout */
  .navbar {
    padding: 12px 0;
  }
  .nav-logo {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    gap: 4px;
  }
  .nav-container{justify-content: center;}
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 47px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 47px);
    background-color: rgba(176, 255, 250, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    border-top: 2px solid var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-link {
    font-size: 1.2rem;
    padding: 8px 0;
  }

  /* Mobile Headings & Typography Overrides */
  h1, .hero-title {
    font-size: 1.6rem !important;
    line-height: 1.15 !important;
  }
  h2, .section-title-block h2, .content-wall-section h2 {
    font-size: 1.35rem !important;
    line-height: 1.18 !important;
  }
  h3, .service-card h3, .spotlight-details h3 {
    font-size: 1.2rem !important;
    line-height: 1.2 !important;
  }
  h4, .rate-card h4, .footer-col .h4, .footer-col h4 {
    font-size: 1.05rem !important;
    line-height: 1.2 !important;
  }
  h5, h6 {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 100px 0 60px;
  }
  .hero-glass-box {
    padding: 30px 18px;
    border-radius: 20px;
  }
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .stats-banner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .stat-val {
    font-size: 1.6rem;
  }

  /* Filters Section Mobile Dropdown View */
  .filters-section {
    padding: 18px 0;
  }
  .filters-wrapper {
    gap: 12px;
  }
  .desktop-filters {
    display: none !important;
  }
  .mobile-filter-dropdown-wrapper {
    display: block !important;
  }

  /* Spotlight Section Mobile */
  .spotlight-section {
    padding: 50px 0;
  }
  .spotlight-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
    border-radius: 20px;
  }
  .spotlight-details h3 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .spotlight-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px 14px;
  }
  .spotlight-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .spotlight-cta-row .btn {
    width: 100%;
  }

  /* Main Profiles Grid Mobile */
  .profiles-section {
    padding: 40px 0;
  }
  .section-title-block {
    margin-bottom: 30px;
  }
  .section-title-block h2 {
    font-size: 1.35rem;
    line-height: 1.18;
  }
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .magazine-card {
    border-radius: 16px;
    aspect-ratio: 3/4.5;
  }
  .card-details {
    padding: 16px 12px 14px;
  }
  .card-name {
    font-size: 1.15rem;
  }
  .card-name span {
    font-size: 0.85rem;
  }
  .card-price {
    font-size: 0.95rem;
  }
  .card-location-row {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  /* Mobile Touch Card Info Visibility */
  .card-expanded-info {
    max-height: max-content;
    opacity: 1;
    padding-top: 8px;
    margin-bottom: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .card-stat-label {
    font-size: 0.65rem;
  }
  .card-stat-val {
    font-size: 0.8rem;
  }
  .card-cta-btn {
    opacity: 1;
    max-height: 40px;
    padding: 8px 0;
    transform: none;
    font-size: 0.75rem;
  }

  /* Services, Pricing, Testimonials Grid Mobile */
  .services-section, .pricing-section, .testimonials-section, .faq-section {
    padding: 50px 0;
  }
  .services-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card, .pricing-card, .testimonial-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  /* Rates Table Mobile Display */
  .rates-table {
    display: none;
  }
  .rates-mobile-cards {
    display: flex;
  }

  /* FAQ Accordion Mobile */
  .faq-item summary {
    padding: 16px 20px;
    font-size: 1rem;
  }
  .faq-content {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 50px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-col h4 {
    margin-bottom: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Floating Actions Mobile */
  .floating-actions {
    bottom: 20px;
    right: 16px;
    gap: 10px;
  }
  .btn-float {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 0.85rem;
    letter-spacing: 0px;
  }
  .hero-section {
    padding: 130px 0 35px;
  }
  .hero-title {
    font-size: 1.35rem !important;
    line-height: 1.15 !important;
  }
  .hero-description {
    font-size: 0.85rem;
  }
  .section-title-block h2, .content-wall-section h2 {
    font-size: 1.25rem !important;
    line-height: 1.15 !important;
  }
  .spotlight-details h3 {
    font-size: 1.15rem !important;
    line-height: 1.18 !important;
  }
  .profiles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .magazine-card {
    aspect-ratio: 3/4;
  }
  .card-name {
    font-size: 1.1rem;
  }
  .card-price {
    font-size: 1rem;
  }
  .spotlight-stats {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
  }
}
