/* ============================
   ROOT VARIABLES
============================ */
:root {
  --pink: #e31777;
  --pink-dark: #c0105f;
  --pink-light: #fce4f0;
  --pink-glow: rgba(227,23,119,0.18);
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1c1c1c;
  --dark4: #252525;
  --white: #ffffff;
  --offwhite: #f9f3f6;
  --text: #c8c8c8;
  --text-muted: #dfd7d7;
  --gold: #f0c040;
  --green: #1fa34a;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-pink: 0 8px 32px rgba(227,23,119,0.22);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: 62px;
}
a { text-decoration: none !important; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--white); }
img { display: block; }

/* ============================
   SCROLLBAR
============================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 4px; }

/* ============================
   ANIMATIONS
============================ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(227,23,119,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(227,23,119,0); }
  100% { box-shadow: 0 0 0 0 rgba(227,23,119,0); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes borderGlow {
  0%,100% { border-color: var(--pink); }
  50%      { border-color: var(--pink-dark); }
}

.animate-fadeup { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ============================
   NAVBAR
============================ */
.site-header {
  background: #5f0000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(227,23,119,0.2);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(227,23,119,0.12);
}
.navbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  position: relative;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo span { color: var(--pink); }
.logo-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-ring 2s infinite;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(227,23,119,0.4);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 10px;
  transition: .2s;
}
.menu-toggle:hover { background: var(--pink-glow); }
.site-nav {
  display: flex;
  gap: 6px;
}
.site-nav a {
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  transition: .25s;
  letter-spacing: .2px;
  position: relative;
}
.site-nav a::after {
  content:'';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .3s;
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { width: 60%; }

/* ============================
   HERO
============================ */
.hero-wrap {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: url('../images/main-banner.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(215 41 41 / 78%) 0%, rgba(227, 23, 119, 0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(227,23,119,0.15);
  border: 1px solid rgba(227,23,119,0.35);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-badge i { font-size: 10px; }
.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title em {
  color: var(--pink);
  font-style: normal;
  position: relative;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

/* SEARCH BOX */
.hero-search-box {
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(227,23,119,0.3);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  max-width: 580px;
  backdrop-filter: blur(10px);
  animation: fadeUp .8s ease both;
}
.hero-search-box .row { gap: 0; }
.search-select-wrap {
  position: relative;
  flex: 1;
}
.search-select-wrap select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-family: 'Nunito', sans-serif;
  outline: none;
  appearance: none;
  transition: border-color .2s;
  cursor: pointer;
}
.search-select-wrap select option { background: #1c1c1c; color: #fff; }
.search-select-wrap select:focus { border-color: var(--pink); }
.search-select-wrap::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 12px;
  pointer-events: none;
}
.search-selects-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.btn-search {
  width: 100%;
  padding: 13px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-search:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: var(--shadow-pink); }

/* CTA BUTTONS */
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  transition: .25s;
  color: var(--white);
}
.cta-btn:hover { color: var(--white); transform: translateY(-3px); }
.cta-call {
  background: linear-gradient(135deg, #b30000, #e63333);
  box-shadow: 0 6px 20px rgba(180,0,0,0.35);
}
.cta-call:hover { box-shadow: 0 10px 28px rgba(180,0,0,0.5); }
.cta-wa {
  background: linear-gradient(135deg, #128c3b, #25d366);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.cta-wa:hover { box-shadow: 0 10px 28px rgba(37,211,102,0.45); }

/* ============================
   STATS BAR
============================ */
.stats-bar {
  background: linear-gradient(90deg, var(--pink-dark) 0%, var(--pink) 100%);
  padding: 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background .25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.08); }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.82);
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3px;
}

/* ============================
   SECTION COMMONS
============================ */
.section { padding: 70px 0; background: var(--white); }
.section-alt { background: #870000; }
.section-dark { background: var(--dark3); }

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-tag::before, .sec-tag::after {
  content:'';
  flex: 1;
  height: 1px;
  background: var(--pink);
  opacity: .4;
  width: 30px;
}
.sec-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #bb5454;
  margin-bottom: 10px;
  line-height: 1.25;
}
.sec-title span { color: var(--pink); }
.sec-sub {
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.section-video{
   background: var(--white); 
}
/* ============================
   CONTENT / TEXT SECTIONS
============================ */
.content-card {
  background: #ad0000;
  border: 1px solid rgba(227,23,119,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  transition: border-color .3s;
}
.content-card:hover { border-color: rgba(227,23,119,0.3); }
.content-card h2 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--white);
}
.content-card h2::after {
  content:'';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  margin-top: 8px;
}
.content-card h3 {
  font-size: 17px;
  color: var(--white);
  margin: 24px 0 10px;
}
.content-card p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 14px;
}
.content-card ul { margin-bottom: 16px; }
.content-card ul li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  padding: 6px 0 6px 26px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.content-card ul li::before {
  content:'';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
}
.content-card ol { padding-left: 20px; margin-bottom: 16px; }
.content-card ol li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 10px;
  padding-left: 6px;
}
.content-card ol li::marker { color: var(--pink); font-weight: 700; }

/* ============================
   MEMBER CARDS
============================ */
.member-grid .col-6, .member-grid .col-lg-3 { margin-bottom: 24px; }

.member-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(227,23,119,0.2);
  border-color: rgba(227,23,119,0.4);
}
.member-card:hover .card-overlay { opacity: 1; }
.member-card:hover .card-actions { transform: translateY(0); opacity: 1; }

.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.member-card:hover .card-img-wrap img { transform: scale(1.07); }

/* Avatar placeholder */
.card-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  background: linear-gradient(135deg, var(--pink-dark), var(--pink));
  transition: transform .4s;
}
.member-card:hover .card-avatar { transform: scale(1.07); }
.card-avatar.gold-av { background: linear-gradient(135deg, #b8850a, #f0c040); }
.card-avatar.green-av { background: linear-gradient(135deg, #0c5c25, #1fa34a); }

/* Gradient overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.3) 55%, transparent 100%);
  opacity: .85;
  transition: opacity .3s;
}

/* Badges */
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--pink);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  z-index: 3;
}
.card-badge.gold { background: var(--gold); color: #333; }
.card-badge.green-b { background: var(--green); }
.card-rating {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.6);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 3;
  backdrop-filter: blur(4px);
}

/* Card info */
.card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 14px 14px 8px;
}
.card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  font-family: 'Playfair Display', serif;
}
.card-meta {
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3px;
}
.card-loc {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

/* Action buttons */
.card-actions {
  display: flex;
  gap: 7px;
  transform: translateY(8px);
  opacity: 0;
  transition: .3s;
}
.card-btn {
  flex: 1;
  text-align: center;
  padding: 7px 6px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.card-btn-call { background: rgba(227,23,119,0.85); border: 1px solid var(--pink); }
.card-btn-call:hover { background: var(--pink); color: white; }
.card-btn-wa { background: rgba(31,163,74,0.85); border: 1px solid var(--green); }
.card-btn-wa:hover { background: var(--green); color: white; }

/* ============================
   ABOUT / FEATURES BOXES
============================ */
.feature-box {
  background: #ad0404;
  border: 1px solid rgba(227,23,119,0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: .3s;
  margin-bottom: 16px;
}
.feature-box:hover {
  border-color: var(--pink);
  background: #7c0202;
  transform: translateX(5px);
  box-shadow: -4px 0 0 var(--pink);
}
.feature-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(227,23,119,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background .3s;
}
.feature-box:hover .feature-icon { background: rgba(227,23,119,0.22); }
.feature-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  font-family: 'Nunito', sans-serif;
}
.feature-text span {
  display: block;
  font-size: 12px;
  color: var(--pink);
  font-weight: 600;
  margin-top: 2px;
}

/* ============================
   CTA STRIP
============================ */
.cta-strip {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 50%, #ff4fa1 100%);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content:'';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-strip::after {
  content:'';
  position: absolute;
  bottom: -50px; left: -30px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-strip h2 { font-size: 22px; color: white; margin-bottom: 6px; }
.cta-strip p { color: rgba(255,255,255,0.82); font-size: 14px; margin-bottom: 20px; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--pink);
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  transition: .25s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  animation: pulse-ring 2.5s infinite;
}
.btn-cta-white:hover { transform: translateY(-3px); color: var(--pink-dark); }

/* ============================
   IMAGE + TEXT LAYOUT
============================ */
.img-text-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  background: url('../images/dehradun.jpg') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.img-text-placeholder::after {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(181 51 51 / 85%), rgba(13, 13, 13, 0.1));
}
.img-text-inner {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.img-text-inner h4 {
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.img-text-inner p { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ============================
   VIDEO SECTION
============================ */
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(227,23,119,0.25);
  position: relative;
  background: var(--dark3);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrap video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* ============================
   VIP SECTION
============================ */
.vip-section {
  background: linear-gradient(135deg, #a13b3b 0%, #990199 50%, #6e2020 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.vip-section::before {
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}
.vip-section::after {
  content:'';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

/* ============================
   FOOTER
============================ */
footer { background: #9f0000; }
.footer-main {
  padding: 50px 0 30px;
  border-top: 1px solid rgba(227,23,119,0.2);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: inline-block;
}
.footer-logo span { color: var(--pink); }
.footer-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color .2s;
  font-weight: 600;
}
.footer-links a:hover { color: var(--pink); }
.footer-social {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(227,23,119,0.1);
  border: 1px solid rgba(227,23,119,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 14px;
  transition: .25s;
}
.social-icon:hover { background: var(--pink); color: white; transform: translateY(-2px); }
.footer-contact-block { margin-top: 10px; }
.footer-contact-block p { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.footer-contact-block p i { color: var(--pink); margin-right: 7px; width: 14px; }
.footer-bottom {
  background: rgba(0,0,0,0.4);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); margin: 0; }
.footer-bottom span { color: var(--pink); }

/* ============================
   BOTTOM BAR
============================ */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  height: 54px;
}
.bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  font-family: 'Nunito', sans-serif;
  transition: filter .2s;
}
.bottom-bar a:hover { filter: brightness(1.15); color: white; }
.bb-call { background: var(--pink); }
.bb-wa { background: var(--green); }

/* ============================
   FLOATING TELEGRAM
============================ */
.float-tg {
  position: fixed;
  right: 18px;
  bottom: 70px;
  z-index: 9998;
}
.float-tg a {
  width: 50px; height: 50px;
  border-radius: 50%;
  /*background: #1fa34a;*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(34,158,217,0.4);
  transition: .25s;
  animation: float 3s ease-in-out infinite;
}
.float-tg .cta-call{
        background: linear-gradient(135deg, #b30000, #e63333);
}
.float-tg .cta-wa{
    background: linear-gradient(135deg, #128c3b, #25d366);
}
.float-tg a:hover { transform: scale(1.12); }

/* ============================
   SCROLL TO TOP
============================ */
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 132px;
  z-index: 9997;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--pink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  border: none;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--pink-dark); transform: translateY(-2px); }

/* ============================
   RESPONSIVE
============================ */
@media(max-width: 991px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(13,13,13,0.98);
    border-bottom: 1px solid rgba(227,23,119,0.2);
    gap: 0;
    display: none;
    padding: 8px 0 14px;
  }
  .site-nav.show { display: flex; }
  .site-nav a {
    padding: 12px 22px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .site-nav a::after { display: none; }
  .hero-wrap { min-height: 480px; }
  .card-img-wrap { height: 190px; }
  .content-card { padding: 26px 22px; }
  .img-text-placeholder { min-height: 260px; margin-bottom: 28px; }
}
@media(max-width: 576px) {
  .search-selects-row { flex-direction: column; }
  .card-img-wrap { height: 170px; }
  .hero-title { font-size: 26px; }
  .hero-search-box { padding: 16px; }
  .stats-row { gap: 0; }
  .stat-item { min-width: 50%; }
  .card-actions { opacity: 1; transform: translateY(0); }
}

/* ============================
   INTERSECTION OBSERVER ANIM
============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

  /* ============================
   NAVIGATION WITH HOVER DROPDOWN
============================ */

.site-header {
   
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 0;
    position: relative;
}

/* Logo */
.site-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-logo .logo-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #ff4fa1, #ff6b9d);
    border-radius: 50%;
}
.site-logo span {
    color: #ff4fa1;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}

/* Navigation */
.site-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}
.site-nav > a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}
.site-nav > a:hover,
.site-nav > a.active {
    color: #ff4fa1;
}
/*.site-nav > a.active::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 32px;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    background: #ff4fa1;*/
/*}*/

/* ============================
   DROPDOWN - HOVER
============================ */

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Toggle */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted) !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dropdown-toggle:hover {
    color: #ff4fa1 !important;
}
.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    max-height: 400px;
    overflow-y: auto;
    background: #1a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.25s ease;
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    list-style: none;
    display: block;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown Items */
.dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(255,79,161,0.1);
    color: #ff4fa1;
}

.dropdown-menu li a i {
    color: #ff4fa1;
    font-size: 14px;
    width: 18px;
}

.dropdown-menu li a .city-state {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-left: auto;
}

/* Dropdown Arrow Effect */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 14px;
    height: 14px;
    background: #1a0a0a;
    border-left: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: rotate(45deg);
}

/* Scrollbar Styling */
.dropdown-menu::-webkit-scrollbar {
    width: 4px;
}
.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
    background: #ff4fa1;
    border-radius: 10px;
}

/* Phone Number in Nav */
.nav-phone {
    background: linear-gradient(135deg, #ff4fa1, #ff6b9d) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}
.nav-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,79,161,0.3);
    color: var(--white) !important;
}
.nav-phone i {
    margin-right: 6px;
}

/* ============================
   MOBILE RESPONSIVE
============================ */

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0505;
        flex-direction: column;
        align-items: stretch;
        padding: 20px 25px;
        gap: 5px;
        border-top: 1px solid rgba(255,255,255,0.05);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .site-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .site-nav > a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    
    /* Dropdown on Mobile */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.03);
        border-radius: 8px;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        display: block !important;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu.show {
        max-height: 300px;
        padding: 8px 0;
        border: 1px solid rgba(255,255,255,0.05);
    }
    
    .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 14px;
        white-space: normal;
    }
    
    .nav-phone {
        margin-top: 10px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 20px;
    }
    .site-nav {
        padding: 15px 20px;
    }
    .dropdown-menu {
        max-height: 200px;
    }
    .dropdown-menu li a {
        font-size: 13px;
        padding: 8px 12px;
    }
    .nav-phone {
        font-size: 13px !important;
        padding: 8px 15px !important;
    }
}