/* ==========================================================================
   DevBhoomi Matrimony — Premium Stylesheet
   ========================================================================== */

:root {
  --maroon: #7B1E3A;
  --maroon-dark: #5c1529;
  --maroon-light: #9c2a4c;
  --gold: #C8A74E;
  --gold-light: #e0c98a;
  --cream: #FDF8F2;
  --ink: #2b2024;
  --muted: #7a6f73;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 40px rgba(123, 30, 58, 0.12);
  --shadow-strong: 0 20px 60px rgba(123, 30, 58, 0.25);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--maroon);
  margin: 0;
}

p {
  color: var(--muted);
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.section-padding {
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.divider-orn {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  border-radius: 3px;
  margin: 18px auto 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-brand-primary {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: #fff;
  border: none;
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 28px rgba(123, 30, 58, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-brand-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(123, 30, 58, 0.45);
  color: #fff;
}

.btn-brand-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid var(--gold);
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-brand-outline:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(200, 167, 78, 0.45);
  color: var(--maroon-dark);
}

.btn-outline-maroon {
  background: transparent;
  color: var(--maroon);
  border: 1.5px solid var(--maroon);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}

.btn-outline-maroon:hover {
  background: var(--maroon);
  color: #fff;
  transform: translateY(-3px);
}

/* ==========================================================================
   Navbar
   ========================================================================== */

#main-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

#main-navbar.scrolled {
  background: rgba(253, 248, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(123, 30, 58, 0.1);
  padding: 10px 0;
}

.navbar-brand-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

#main-navbar.scrolled .navbar-brand-logo {
  color: var(--maroon);
}

.navbar-brand-logo .logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(200, 167, 78, 0.4);
}

.navbar-brand-logo .logo-text-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-link-custom {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 12px;
  position: relative;
  transition: var(--transition);
  padding: 6px 0 !important;
}

#main-navbar.scrolled .nav-link-custom {
  color: var(--ink) !important;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 100%;
}

.nav-link-custom:hover {
  color: var(--gold) !important;
}

.nav-btn-login {
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 500;
  margin-left: 8px;
  transition: var(--transition);
}

#main-navbar.scrolled .nav-btn-login {
  color: var(--maroon) !important;
  border-color: var(--maroon);
}

.nav-btn-login:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--maroon-dark) !important;
}

.nav-btn-register {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark) !important;
  border-radius: 50px;
  padding: 8px 24px !important;
  font-weight: 600;
  margin-left: 10px;
  transition: var(--transition);
}

.nav-btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(200, 167, 78, 0.4);
  color: var(--maroon-dark) !important;
}

.navbar-toggler-custom {
  border: none;
  background: transparent;
  font-size: 1.6rem;
  color: #fff;
}

#main-navbar.scrolled .navbar-toggler-custom {
  color: var(--maroon);
}

@media (max-width: 991.98px) {
  .navbar-collapse-custom {
    background: rgba(253, 248, 242, 0.98);
    border-radius: var(--radius-md);
    margin-top: 14px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
  }
  .navbar-collapse-custom .nav-link-custom,
  .navbar-collapse-custom .nav-btn-login {
    color: var(--ink) !important;
  }
  .navbar-collapse-custom .nav-btn-login {
    border-color: var(--maroon);
    color: var(--maroon) !important;
  }
  .navbar-collapse-custom .nav-item {
    margin-bottom: 6px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

#hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://sspark.genspark.ai/cfimages?u1=LzuWhof%2FDXjQp4TI3%2Ff8S7Rn%2B9%2FBu%2FYLdTC2L2gEis%2FhuovPdge2ibmcVjhL%2FJu7Gs0TG2zg15GHBB4ghOVw9NkGCapdbbO9WdGR0m94&u2=F8JAzysCP59V7qWL&width=2560') center center / cover no-repeat fixed;
  padding-top: 120px;
  padding-bottom: 80px;
}

#hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(46, 10, 22, 0.88) 0%, rgba(123, 30, 58, 0.68) 45%, rgba(20, 8, 12, 0.55) 100%);
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 167, 78, 0.5);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero-heading {
  color: #fff;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.hero-heading span {
  color: var(--gold-light);
  font-style: italic;
  font-family: 'Poppins', serif;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero-stats-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat-item h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-stat-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

/* Search Card */

.hero-search-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-strong);
}

.hero-search-card h4 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-search-card .card-caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 22px;
  display: block;
}

.search-field-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
}

.search-field-group {
  margin-bottom: 16px;
}

.form-select-glass,
.form-control-glass {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--ink);
  width: 100%;
  transition: var(--transition);
}

.form-select-glass:focus,
.form-control-glass:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 167, 78, 0.45);
}

.hero-search-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 6px;
  letter-spacing: 0.4px;
  transition: var(--transition);
}

.hero-search-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(200, 167, 78, 0.5);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 1px;
  animation: bounceDown 2.2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ==========================================================================
   Featured Profiles
   ========================================================================== */

#profiles-section {
  background: var(--cream);
}

.profile-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(200, 167, 78, 0.15);
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.profile-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.profile-card:hover .profile-photo-wrap img {
  transform: scale(1.08);
}

.profile-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 15, 24, 0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.profile-photo-overlay h5 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.profile-photo-overlay span {
  color: var(--gold-light);
  font-size: 0.82rem;
}

.profile-card-body {
  padding: 18px 20px 22px;
}

.profile-detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.profile-detail-row i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}

.profile-view-btn {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 14px;
  background: transparent;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  border-radius: 50px;
  padding: 9px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.profile-view-btn:hover {
  background: var(--maroon);
  color: #fff;
}

.view-all-wrap {
  text-align: center;
  margin-top: 46px;
}

/* ==========================================================================
   Membership Plans
   ========================================================================== */

#membership-section {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  position: relative;
}

.plan-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(123, 30, 58, 0.08);
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.plan-card.plan-highlighted {
  background: linear-gradient(160deg, var(--maroon), var(--maroon-dark));
  transform: scale(1.04);
  box-shadow: 0 25px 60px rgba(123, 30, 58, 0.4);
  z-index: 2;
}

.plan-card.plan-highlighted:hover {
  transform: scale(1.04) translateY(-8px);
}

.plan-ribbon {
  position: absolute;
  top: 18px;
  right: -34px;
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.plan-name {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--maroon);
  margin-bottom: 14px;
}

.plan-highlighted .plan-name {
  color: var(--gold-light);
}

.plan-price {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.plan-highlighted .plan-price {
  color: #fff;
}

.plan-price sup {
  font-size: 1.2rem;
  top: -1em;
}

.plan-duration {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 22px;
  display: block;
}

.plan-highlighted .plan-duration {
  color: rgba(255, 255, 255, 0.7);
}

.plan-contact-limit {
  display: inline-block;
  background: rgba(200, 167, 78, 0.12);
  color: var(--maroon);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.plan-highlighted .plan-contact-limit {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-light);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-highlighted .plan-features li {
  color: rgba(255, 255, 255, 0.85);
}

.plan-features li i {
  color: var(--gold);
  margin-top: 3px;
}

.plan-highlighted .plan-features li i {
  color: var(--gold-light);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

#why-choose-section {
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}

#why-choose-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(200, 167, 78, 0.12);
}

#why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(200, 167, 78, 0.08);
}

#why-choose-section .section-title,
#why-choose-section .section-subtitle {
  color: #fff;
}

#why-choose-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.feature-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
  border-color: var(--gold);
}

.feature-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--maroon-dark);
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  transform: rotate(10deg) scale(1.08);
}

.feature-card h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

#cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

#cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://sspark.genspark.ai/cfimages?u1=LzuWhof%2FDXjQp4TI3%2Ff8S7Rn%2B9%2FBu%2FYLdTC2L2gEis%2FhuovPdge2ibmcVjhL%2FJu7Gs0TG2zg15GHBB4ghOVw9NkGCapdbbO9WdGR0m94&u2=F8JAzysCP59V7qWL&width=2560') center / cover no-repeat;
  opacity: 0.14;
  mix-blend-mode: multiply;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.6rem;
  color: var(--maroon-dark);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--maroon-dark);
  opacity: 0.85;
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 30px;
}

.cta-btn {
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 15px 44px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.4px;
  box-shadow: 0 16px 34px rgba(123, 30, 58, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 44px rgba(123, 30, 58, 0.45);
  background: var(--maroon-dark);
  color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */

#main-footer {
  background: #2b0f18;
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-about-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--gold);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.footer-social-row a:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  transform: translateY(-4px);
}

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

.footer-bottom-bar span {
  color: var(--gold);
}

/* ==========================================================================
   Floating Buttons
   ========================================================================== */

#back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

#back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top-btn:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

#whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulseGlow 2.4s infinite;
}

#whatsapp-float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Reveal Animations
   ========================================================================== */

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199.98px) {
  .hero-heading { font-size: 2.7rem; }
}

@media (max-width: 991.98px) {
  #hero-section {
    background-attachment: scroll;
    text-align: center;
    padding-top: 140px;
  }
  .hero-btn-row,
  .hero-stats-row {
    justify-content: center;
  }
  .hero-search-card {
    margin-top: 46px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .plan-card.plan-highlighted {
    transform: scale(1);
    margin-bottom: 20px;
  }
  .plan-card.plan-highlighted:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 767.98px) {
  .hero-heading { font-size: 2.1rem; }
  .section-title { font-size: 1.9rem; }
  .cta-content h2 { font-size: 2rem; }
  #back-to-top-btn, #whatsapp-float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
    bottom: 18px;
  }
  #back-to-top-btn { right: 18px; }
  #whatsapp-float-btn { left: 18px; }
}

@media (max-width: 575.98px) {
  .hero-btn-row .btn-brand-primary,
  .hero-btn-row .btn-brand-outline {
    width: 100%;
    justify-content: center;
  }
  .section-padding { padding: 60px 0; }
}
/*==============================
PROFILE SLIDER
==============================*/

.profileSwiper{
    padding:15px 5px 70px;
}

.profileSwiper .swiper-slide{
    height:auto;
}

.profileSwiper .swiper-button-next,
.profileSwiper .swiper-button-prev{

    color:#7B1E3A;

    width:45px;
    height:45px;

    background:white;

    border-radius:50%;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.profileSwiper .swiper-button-next::after,
.profileSwiper .swiper-button-prev::after{

    font-size:18px;
    font-weight:bold;

}

.profileSwiper .swiper-pagination{

    bottom:15px;

}

.profileSwiper .swiper-pagination-bullet{

    width:10px;
    height:10px;

    opacity:1;

    background:#d6d6d6;

}

.profileSwiper .swiper-pagination-bullet-active{

    background:#7B1E3A;

}