/* =========================================================
RED DATING THEME - GLOBAL DESIGN SYSTEM
========================================================= */
:root {
  /* ---------- Brand Colors ---------- */
  --primary: #e60023;
  --primary-hover: #c9001f;
  --primary-soft: #fff0f3;
  --secondary: #ff3366;
  --secondary-hover: #e62e5c;
  --secondary-soft: #fff4f7;
  --dark: #22171a;
  --dark-soft: #3a272c;
  --success: #16a34a;
  --success-hover: #12803d;
  --success-soft: #ecfdf3;
  --warning: #f5b942;
  --danger: #e60023;
  /* ---------- Backgrounds ---------- */
  --body-bg: #ffc9ce;
  --section-bg: #ffffff;
  --section-alt-bg: #fff2f4;
  --card-bg: #ffffff;
  --soft-bg: #fff6f7;
  --tag-bg: #ffe9ed;
  --glass-bg: rgba(255, 255, 255, 0.92);
  /* ---------- Text ---------- */
  --text-primary: #29191d;
  --text-secondary: #6f555c;
  --text-muted: #9b8087;
  --text-white: #ffffff;
  /* ---------- Border ---------- */
  --border-color: #f3d7dd;
  --border-light: #f8e4e8;
  --border-divider: #edd0d6;
  /* ---------- Radius ---------- */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --radius-pill: 999px;
  --radius-circle: 50%;
  /* ---------- Spacing ---------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  /* ---------- Fonts ---------- */
  --font-xs: 10px;
  --font-sm: 12px;
  --font-md: 14px;
  --font-lg: 16px;
  --font-xl: 20px;
  --font-2xl: 24px;
  --font-3xl: 32px;
  /* ---------- Shadows ---------- */
  --shadow-xs: 0 2px 8px rgba(113, 25, 39, 0.07);
  --shadow-sm: 0 6px 20px rgba(96, 20, 32, 0.08);
  --shadow-md: 0 14px 32px rgba(130, 20, 36, 0.14);
  --shadow-lg: 0 18px 42px rgba(140, 18, 36, 0.18);
  --shadow-primary: 0 10px 24px rgba(230, 0, 35, 0.22);
  /* ---------- Transition ---------- */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  /* ---------- Image Heights ---------- */
  --profile-image-height: 320px;
  --category-image-height: 300px;
  /* ---------- Layout ---------- */
  --card-hover-y: -5px;
  /* ---------- Gradients ---------- */
  --gradient-primary: linear-gradient( 135deg, #ff335f 0%, #e60023 55%, #bd001d 100% );
  --gradient-soft: linear-gradient( 135deg, #fff0f3 0%, #ffe3e8 100% );
  --gradient-dark: linear-gradient( 135deg, #22171a 0%, #451b25 100% );
  --gradient-overlay: linear-gradient( to bottom, rgba(20, 5, 10, 0.02) 30%, rgba(38, 7, 15, 0.90) 100% );
}
/* =========================================================
GLOBAL
========================================================= */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--body-bg);
  color: var(--text-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1,h2{
    text-align: center;
    color: #dc3545;
    font-weight: 700;
}
h3,h4,h5,h6{
    color: #dc3545;
}
img {
  max-width: 100%;
}
a {
    color: #dc3545;
    text-decoration: none;
  transition: var(--transition-fast);
}
/* =========================================================
BOOTSTRAP COLOR OVERRIDES
========================================================= */
.text-primary {
  color: var(--primary) !important;
}
.text-muted {
  color: var(--text-muted) !important;
}
/* =========================================================
SECTION HEADER
========================================================= */
.section-label {
  color: var(--primary);
  font-size: var(--font-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title {
  margin-bottom: var(--space-1);
  color: var(--text-primary);
  font-weight: 700;
}
.section-description {
  margin: 0;
  color: var(--text-muted);
}
/* =========================================================
BUTTONS
========================================================= */
.btn {
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.btn:hover {
  transform: translateY(-1px);
}
/* Primary */
.btn-primary {
  border: none;
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 0, 35, 0.28);
}
/* Dark */
.btn-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--text-white);
}
.btn-dark:hover, .btn-dark:focus {
  background: var(--dark-soft);
  border-color: var(--dark-soft);
  color: var(--text-white);
}
/* Outline Dark */
.btn-outline-dark {
  color: var(--dark);
  border-color: var(--border-divider);
}
.btn-outline-dark:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
}
/* Success */
.btn-success {
  background: var(--success);
  border-color: var(--success);
  color: #ffffff;
}
.btn-success:hover {
  background: var(--success-hover);
  border-color: var(--success-hover);
  color: #ffffff;
}
/* =========================================================
NAVBAR
========================================================= */
.navbar {
  box-shadow: var(--shadow-xs);
}
.navbar.bg-dark {
  background: rgb(0 0 0) !important;
}
.navbar-brand {
  color: var(--text-white) !important;
  font-weight: 700;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active {
  color: var(--text-white);
}
/* =========================================================
PROFILE CARD
========================================================= */
.member-card {
  height: 100%;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}
.member-card:hover {
  transform: translateY(var(--card-hover-y));
  border-color: rgba(230, 0, 35, 0.16);
  box-shadow: var(--shadow-lg);
}
/* =========================================================
PROFILE IMAGE
========================================================= */
.member-photo-wrap {
  position: relative;
  height: var(--profile-image-height);
  overflow: hidden;
}
.member-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.member-card:hover .member-photo {
  transform: scale(1.05);
}
/* =========================================================
PROFILE IMAGE OVERLAY
========================================================= */
.photo-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--gradient-overlay);
}
/* =========================================================
PROFILE BADGE
========================================================= */
.member-badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 3;
}
.member-badges .badge {
  padding: 6px 10px;
  background: rgba(255,255,255,0.94) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(230, 0, 35, 0.10);
  font-size: var(--font-xs);
  font-weight: 700;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
}
/* =========================================================
FAVORITE BUTTON
========================================================= */
.favorite-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 38px;
  height: 38px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}
.favorite-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: scale(1.08);
}
/* =========================================================
PROFILE INFO
========================================================= */
.photo-info {
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  bottom: 15px;
  z-index: 3;
}
/* =========================================================
VERIFIED BADGE
========================================================= */
.verified-badge {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  background: var(--gradient-primary);
  color: var(--text-white);
  font-size: var(--font-xs);
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(230, 0, 35, 0.28);
}
/* =========================================================
PROFILE BODY
========================================================= */
.member-body {
  padding: 15px;
}
.profile-description {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-secondary);
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* =========================================================
ONLINE STATUS
========================================================= */
.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: var(--radius-pill);
  background: var(--success-soft);
  color: var(--success);
  font-size: var(--font-xs);
  font-weight: 700;
  white-space: nowrap;
}
.online-pill > span {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: var(--radius-circle);
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.10);
}
/* =========================================================
TAGS
========================================================= */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: var(--tag-bg);
  color: var(--primary);
  font-size: var(--font-xs);
  font-weight: 600;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.tag:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-1px);
}
/* =========================================================
PROFILE STATS
========================================================= */
.stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 11px 5px;
  background: var(--soft-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}
.stat {
  position: relative;
  text-align: center;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  width: 1px;
  background: var(--border-divider);
}
.stat strong {
  display: block;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.2;
}
.stat span {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 9px;
}
.member-body .btn {
  font-size: var(--font-sm);
  font-weight: 600;
}

/* =========================================================
CATEGORY CARD
========================================================= */
.image-category-card {
  position: relative;
  display: block;
  height: var(--category-image-height);
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.image-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
/* Category Image */
.category-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.image-category-card:hover .category-bg {
  transform: scale(1.08);
}
/* Category Overlay */
.category-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
}
/* Category Top */
.category-top {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
/* Category Badge */
.category-badge {
  display: inline-flex;
  padding: 6px 10px;
  background: rgba(255,255,255,0.94);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: var(--font-xs);
  font-weight: 700;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
}
/* Category Info */
.category-info {
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.category-info h3 {
  margin: 0 0 3px;
  color: var(--text-white);
  font-size: 19px;
  font-weight: 700;
}
.category-info p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
}
/* Category Arrow */
.category-open {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  font-size: 20px;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}
.image-category-card:hover .category-open {
  background: var(--primary);
  color: var(--text-white);
  transform: translateX(3px);
}
/* =========================================================
FAQ
========================================================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-accordion .accordion-item {
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}
/* FAQ Button */
.faq-accordion .accordion-button {
  padding: 18px 20px;
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary-soft);
  color: var(--primary);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: 0 0 0 0.15rem rgba(230, 0, 35, 0.07);
}
.faq-accordion .accordion-body {
  padding: 0 20px 18px;
  background: var(--primary-soft);
  color: var(--text-muted);
  font-size: var(--font-md);
  line-height: 1.7;
}
.faq-accordion .accordion-button::after {
  width: 18px;
  height: 18px;
  background-size: 18px;
}
/* =========================================================
TESTIMONIAL
========================================================= */
.testimonial-card {
  position: relative;
  padding: var(--space-5);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.testimonial-card:hover {
  transform: translateY(var(--card-hover-y));
  box-shadow: var(--shadow-lg);
}
/* Testimonial Avatar */
.testimonial-avatar {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 3px solid var(--text-white);
  border-radius: var(--radius-circle);
  box-shadow: 0 3px 12px rgba(90, 20, 30, 0.10);
}
/* Quote */
.quote-icon {
  color: #f5d5dc;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}
/* Rating */
.testimonial-rating {
  color: var(--warning);
  font-size: 15px;
  letter-spacing: 2px;
}
/* Review Text */
.testimonial-text {
  color: var(--text-secondary);
  font-size: var(--font-md);
  line-height: 1.7;
}
/* Testimonial Footer */
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
/* Verified Review */
.verified-review {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  background: var(--success-soft);
  color: var(--success);
  border-radius: var(--radius-pill);
  font-size: var(--font-xs);
  font-weight: 700;
}
/* =========================================================
OPTIONAL DATING LABEL
========================================================= */
/* =========================================================
FOOTER
========================================================= */
footer {
  margin-top: 0;
}
footer.bg-dark {
  background: var(--gradient-dark) !important;
}
footer .nav-link {
  transition: color var(--transition-fast);
}
footer .nav-link:hover {
  color: var(--text-white) !important;
}
/* =========================================================
TABLET
========================================================= */
@media (max-width: 1199px) {
  :root {
    --profile-image-height: 350px;
  }
}
@media (max-width: 991px) {
  :root {
    --category-image-height: 320px;
  }
}
/* =========================================================
MOBILE
========================================================= */
@media (max-width: 767px) {
  :root {
    --profile-image-height: 400px;
  }
  .member-body {
    padding: 14px;
  }
}
/* =========================================================
SMALL MOBILE
========================================================= */
@media (max-width: 575px) {
  :root {
    --profile-image-height: 430px;
    --category-image-height: 360px;
  }
  .member-card {
    border-radius: var(--radius-lg);
  }
  .image-category-card {
    border-radius: var(--radius-lg);
  }
  .category-info h3 {
    font-size: var(--font-xl);
  }
  .faq-section, .testimonial-section, .category-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .faq-accordion .accordion-button {
    padding: 15px;
    font-size: var(--font-md);
  }
  .faq-accordion .accordion-body {
    padding: 0 15px 15px;
    font-size: 13px;
  }
  .testimonial-card {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
  }
  .testimonial-avatar {
    width: 46px;
    height: 46px;
  }
  .testimonial-text {
    font-size: 13px;
  }
}
/* =========================================================
PRICING SECTION
========================================================= */
.pricing-section .section-description {
  max-width: 650px;
}
/* =========================================================
PRICING CARD
========================================================= */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}
.pricing-card:hover {
  transform: translateY(var(--card-hover-y));
  border-color: rgba(230, 0, 35, 0.18);
  box-shadow: var(--shadow-lg);
}
/* =========================================================
FEATURED PLAN
========================================================= */
.pricing-card-featured {
  border: 2px solid var(--primary);
  background: linear-gradient( 180deg, var(--primary-soft) 0, #ffffff 180px );
  box-shadow: 0 18px 45px rgba(230, 0, 35, 0.14);
  transform: translateY(-8px);
}
.pricing-card-featured:hover {
  transform: translateY(-13px);
  box-shadow: 0 24px 55px rgba(230, 0, 35, 0.20);
}
/* Most Popular */
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 16px;
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  color: var(--text-white);
  font-size: var(--font-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: var(--shadow-primary);
}
/* =========================================================
HEADER
========================================================= */
.pricing-header {
  text-align: center;
}
/* Icon */
/* Plan Label */
.pricing-plan-label {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: var(--font-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
/* Plan Name */
.pricing-name {
  margin-bottom: 7px;
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 800;
}
/* Description */
/* =========================================================
PRICE
========================================================= */
/* Saving */
/* Divider */
.pricing-divider {
  height: 1px;
  margin: 22px 0;
  background: var(--border-light);
}
/* =========================================================
FEATURES
========================================================= */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text-secondary);
  font-size: var(--font-sm);
  line-height: 1.5;
}
/* Check */
.pricing-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border-radius: var(--radius-circle);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
}
/* Disabled Feature */
.pricing-features .pricing-disabled {
  color: #b6a2a8;
}
.pricing-disabled > span {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  background: #f5f2f3;
  color: #b6a2a8;
  font-size: 13px;
}
/* =========================================================
PRICING BUTTON
========================================================= */
.pricing-button {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: var(--font-sm);
  font-weight: 700;
}
/* =========================================================
TABLET
========================================================= */
@media (max-width: 991px) {
  .pricing-card-featured {
    transform: none;
  }
  .pricing-card-featured:hover {
    transform: translateY(var(--card-hover-y));
  }
}
/* =========================================================
MOBILE
========================================================= */
@media (max-width: 575px) {
  .pricing-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .pricing-card {
    padding: 22px 18px;
    border-radius: var(--radius-lg);
  }
  
  
  .pricing-name {
    font-size: 21px;
  }
  
}
/* =========================================================
PROCESS / HOW IT WORKS
========================================================= */
.process-section .section-description {
  max-width: 600px;
}
/* Process Card */
.process-card {
  position: relative;
  padding: 28px 22px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}
.process-card:hover {
  transform: translateY(var(--card-hover-y));
  border-color: rgba(230, 0, 35, 0.20);
  box-shadow: var(--shadow-lg);
}
/* Step Number */
.process-number {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(230, 0, 35, 0.08);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}
/* Icon */
.process-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(230, 0, 35, 0.10);
  transition: transform var(--transition-normal), background var(--transition-normal), color var(--transition-normal);
}
.process-card:hover .process-icon {
  transform: scale(1.08);
  background: var(--gradient-primary);
  color: var(--text-white);
}
/* Title */
.process-title {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
}
/* Description */
.process-text {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--font-md);
  line-height: 1.65;
}
/* Decorative Bottom Line */
.process-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: width var(--transition-normal);
}
.process-card:hover::after {
  width: 70%;
}
/* Mobile */
@media (max-width: 575px) {
  .process-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .process-card {
    padding: 24px 18px;
  }
  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
  .process-number {
    font-size: 38px;
  }
  .process-title {
    font-size: 17px;
  }
  .process-text {
    font-size: 13px;
  }
}
.header {
  height: 650px;
  padding: 100px 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background:
    url("https://www.bookyourcompanion.com/website-images/banner.webp")
    no-repeat center center / cover;
}
/* Mobile */
@media (max-width: 768px) {
  .header {
    background-image: url("https://www.bookyourcompanion.com/website-images/m-banner.jpg");
    background-position: center center;
    background-size: cover;
  }
}
/* WHY CHOOSE US */
.why-choose-section .section-description {
  max-width: 650px;
}
/* Card */
.why-choose-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}
.why-choose-card:hover {
  transform: translateY(var(--card-hover-y));
  border-color: rgba(230, 0, 35, 0.20);
  box-shadow: var(--shadow-lg);
}
/* Icon */
.why-choose-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(230, 0, 35, 0.10);
  transition: background var(--transition-normal), color var(--transition-normal), transform var(--transition-normal);
}
.why-choose-card:hover .why-choose-icon {
  background: var(--gradient-primary);
  color: var(--text-white);
  transform: scale(1.08);
}
/* Content */
.why-choose-content {
  position: relative;
  z-index: 2;
}
.why-choose-content h4 {
  margin-bottom: 6px;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
}
.why-choose-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--font-md);
  line-height: 1.65;
}
/* Decorative Number */
.why-card-number {
  position: absolute;
  right: 14px;
  bottom: -3px;
  color: rgba(230, 0, 35, 0.05);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
/* Bottom Accent */
.why-choose-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}
.why-choose-card:hover::after {
  width: 100%;
}
/* Responsive */
@media (max-width: 767px) {
  .why-choose-card {
    padding: 18px;
  }
  .why-choose-icon {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .why-choose-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .why-choose-card {
    padding: 16px;
    border-radius: var(--radius-lg);
  }
  .why-choose-content h4 {
    font-size: 15px;
  }
  .why-choose-content p {
    font-size: 13px;
  }
  .why-card-number {
    font-size: 46px;
  }
}
/* Image Card*/
.escort-card {
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px #ddd;
    text-align: center;
}
.escort-card img {
    object-fit: cover;
    border: 2px solid #e33;
    border-radius: 2px;
}
.escort-card h6 {
    font-size: 12px;
    margin: 6px 2px;
    line-height: 1.2;
}
.buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
}
.buttons .btn {
    font-size: 10px;
    padding: 6px 10px;
}

/* Scrollable Locations Dropdown */
#membersDropdown + .dropdown-menu {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 260px;
}

/* Dropdown links */
#membersDropdown + .dropdown-menu .dropdown-item {
    padding: 9px 18px;
    white-space: nowrap;
}

/* Scrollbar */
#membersDropdown + .dropdown-menu::-webkit-scrollbar {
    width: 7px;
}

#membersDropdown + .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#membersDropdown + .dropdown-menu::-webkit-scrollbar-thumb {
    background: #777;
    border-radius: 10px;
}

#membersDropdown + .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Mobile */
@media (max-width: 991.98px) {
    #membersDropdown + .dropdown-menu {
        max-height: 50vh;
        width: 100%;
        overflow-y: auto;
    }
}