@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* Main CSS Variables */
:root {
  /*--primary-burgundy: #29070c;*/
  /*--primary-burgundy-light: #03469e;*/
  /*--primary-burgundy-dark: ##29070c;*/
  --primary-burgundy: #6B1F2A;
  --primary-burgundy-light: #862A37;
  --primary-burgundy-dark: #4A121A;
  --gold: #D4AF37;
  --gold-light: #E9C75D;
  --gold-dark: #A6841C;
  --white: #FFFFFF;
  --charcoal: #333333;
  --light-cream: #FAF8F4;
  --cream-dark: #F2EDE2;
  --text-dark: #2A2A2A;
  --text-muted: #666666;

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(107, 31, 42, 0.04);
  --shadow-md: 0 12px 30px rgba(107, 31, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(107, 31, 42, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 30px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-burgundy-dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Typography Helpers */
.font-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
}

.font-heading {
  font-family: var(--font-heading);
}

.text-gold {
  color: var(--gold) !important;
}

.text-burgundy {
  color: var(--primary-burgundy) !important;
}

.bg-cream {
  background-color: var(--light-cream);
}

.bg-burgundy {
  background-color: var(--primary-burgundy);
}

/* Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium-burgundy {
  background-color: var(--primary-burgundy);
  color: var(--white);
}

.btn-premium-burgundy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gold);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-burgundy:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-premium-burgundy:hover {
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-premium-gold-outline {
  background-color: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn-premium-gold-outline:hover {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-premium-white {
  background-color: var(--white);
  color: var(--primary-burgundy);
  box-shadow: var(--shadow-sm);
}

.btn-premium-white:hover {
  background-color: var(--primary-burgundy);
  color: var(--white);
  border-color: var(--primary-burgundy);
}

/* Header & Navbar */
.navbar-custom {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 8px 0;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.navbar-custom.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar-brand img {
  height: 56px;
  object-fit: contain;
}

.navbar-nav {
  gap: 20px;
}

.nav-link-custom {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
  padding: 8px 16px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary-burgundy);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

/* Dividers & Watermarks */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 30px;
  width: 100%;
  max-width: 300px;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(214, 175, 55, 0), rgba(214, 175, 55, 1));
}

.gold-divider::after {
  background: linear-gradient(to left, rgba(214, 175, 55, 0), rgba(214, 175, 55, 1));
}

.gold-divider i,
.gold-divider svg {
  color: var(--gold);
  font-size: 18px;
  margin: 0 15px;
}

/* Sections Global Styling */
section {
  padding: 60px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
}

.section-title p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* HERO SECTION */
.hero-section {
  padding: 110px 0 50px 0;
  background: linear-gradient(135deg, var(--light-cream) 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-watermarks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.watermark-cross {
  position: absolute;
  top: 15%;
  left: 5%;
  opacity: 0.03;
  width: 150px;
  height: auto;
}

.watermark-dove {
  position: absolute;
  top: 25%;
  right: 45%;
  opacity: 0.04;
  width: 100px;
  height: auto;
  transform: rotate(-15deg);
}

.hero-left {
  position: relative;
  z-index: 2;
  margin-top: 82px;
}

.hero-headline {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.trust-item i {
  color: var(--gold-dark);
  font-size: 16px;
  margin-right: 8px;
}

/* HERO SEARCH WIDGET */
.hero-search-container {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(107, 31, 42, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 30px;
  position: relative;
  z-index: 3;
}

.hero-search-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-burgundy), var(--gold), var(--primary-burgundy));
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.hero-search-container::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: calc(var(--radius-md) - 6px);
  pointer-events: none;
}

.search-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--primary-burgundy-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.search-title i {
  color: var(--gold);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.search-field {
  display: flex;
  flex-direction: column;
}

.search-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 700;
}

.search-field select,
.search-field input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #E2E2E2;
  background-color: var(--light-cream);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-smooth);
  height: 45px;
}

.search-field select:focus,
.search-field input:focus {
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.search-submit-btn {
  background-color: var(--primary-burgundy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  height: 48px;
  transition: var(--transition-smooth);
  cursor: pointer;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.search-submit-btn:hover {
  background-color: var(--gold);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* HERO RIGHT (Couple Image / Badges) */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 480px;
  height: 480px;
}

.hero-circle-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 2;
  background: linear-gradient(180deg, var(--light-cream) 0%, #FFFFFF 100%);
}

.hero-circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-bg {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  animation: rotate-dashed 40s linear infinite;
  z-index: 1;
}

@keyframes rotate-dashed {
  100% {
    transform: rotate(360deg);
  }
}

.hero-church-pattern {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background-image: radial-gradient(var(--gold-light) 0.5px, transparent 0.5px), radial-gradient(var(--gold-light) 0.5px, var(--light-cream) 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.15;
  z-index: 0;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background-color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.badge-1 {
  top: 15%;
  left: -40px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: 2s;
}

.badge-3 {
  top: 35%;
  right: -40px;
  animation-delay: 4s;
}

.floating-badge i {
  color: var(--gold-dark);
  font-size: 18px;
}

.floating-badge .badge-text {
  display: flex;
  flex-direction: column;
}

.floating-badge .badge-number {
  font-weight: 800;
  color: var(--primary-burgundy);
  font-size: 14px;
  line-height: 1.2;
}

.floating-badge .badge-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* HOW IT WORKS (Section 2) */
.how-it-works-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  z-index: 1;
}

.how-it-works-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.how-it-works-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(107, 31, 42, 0.02) 0%, rgba(212, 175, 55, 0.02) 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.how-it-works-card:hover::after {
  opacity: 1;
}

.how-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: var(--light-cream);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--gold-dark);
  transition: var(--transition-smooth);
}

.how-it-works-card:hover .how-icon-wrapper {
  background-color: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.how-step {
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: var(--font-heading);
  font-size: 24px;
  color: rgba(212, 175, 55, 0.3);
  font-weight: 700;
}

.how-it-works-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-burgundy-dark);
}

.how-it-works-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* FEATURED PROFILES (Section 3) */
.featured-profiles-section {
  background-color: var(--light-cream);
}

.profiles-slider {
  padding: 20px 0;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin: 15px;
  transition: var(--transition-smooth);
  position: relative;
  min-height: 515px !important;
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.profile-image-container {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.profile-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.profile-card:hover .profile-image-container img {
  transform: scale(1.08);
}

.profile-overlay-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.profile-badge-verify {
  background-color: rgba(107, 31, 42, 0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile-details {
  padding: 24px;
  position: relative;
}

.profile-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-burgundy-dark);
  margin-bottom: 14px;
}

.profile-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.profile-meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--charcoal);
}

.profile-meta-item i {
  color: var(--gold);
  width: 20px;
  margin-right: 8px;
}

.profile-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-denom {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-burgundy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-view-btn {
  background-color: var(--light-cream);
  color: var(--primary-burgundy);
  border: 1px solid rgba(107, 31, 42, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.profile-card:hover .profile-view-btn {
  background-color: var(--primary-burgundy);
  color: var(--white);
  border-color: var(--primary-burgundy);
  box-shadow: 0 4px 12px rgba(107, 31, 42, 0.2);
}

/* ABOUT HOLY MATRIMONY (Section 4) */
.about-section {
  background-color: var(--white);
}

.about-text h3 {
  font-size: 34px;
  margin-bottom: 20px;
  color: var(--primary-burgundy);
}

.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}

.about-buttons {
  display: flex;
  gap: 15px;
}

.about-grid-card {
  background-color: var(--light-cream);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  transition: var(--transition-smooth);
  height: 100%;
}

.about-grid-card:hover {
  background-color: var(--white);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-card-icon {
  font-size: 32px;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.about-grid-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-burgundy);
}

.about-grid-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* TRUST STATISTICS (Section 5) */
.stats-section {
  background: linear-gradient(135deg, var(--primary-burgundy-dark) 0%, var(--primary-burgundy) 100%);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats-bg-ornament {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  background-image: radial-gradient(var(--gold) 1px, transparent 1px);
  background-size: 30px 30px;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 15px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
}

/* SUCCESS STORIES (Section 6) */
.success-stories-section {
  background: linear-gradient(180deg, var(--primary-burgundy-dark) 0%, #3a0b12 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.success-stories-section .section-title h2 {
  color: var(--gold-light);
}

.success-stories-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.story-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.stories-slider {
  position: relative;
  z-index: 2;
}

.story-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  margin: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.story-card:hover {
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.05);
}

.story-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 350px;
  border: 3px solid rgba(212, 175, 55, 0.3);
}

.story-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.quote-icon {
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
}

.story-text {
  font-family: var(--font-accent);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.story-author {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.story-year {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MOBILE APP PROMOTION (Section 7) */
.app-section {
  background-color: var(--light-cream);
  overflow: hidden;
}

.app-features-list {
  list-style: none;
  margin-bottom: 35px;
  padding-left: 0px;
}

.app-features-list li {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.app-features-list li i {
  color: var(--primary-burgundy);
  margin-right: 12px;
  font-size: 18px;
}

.app-store-buttons {
  display: flex;
  gap: 15px;
}

.app-btn img {
  height: 55px;
  transition: var(--transition-smooth);
}

.app-btn:hover img {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.phone-mockup img {
  width: 100%;
  display: block;
}


/* CHRISTIAN MATCH SEARCH (Section 8) */
.advanced-search-card {
  background-color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  height: 100%;
}

.advanced-search-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-burgundy);
  background: linear-gradient(180deg, var(--white) 0%, var(--light-cream) 100%);
}

.adv-search-icon {
  font-size: 32px;
  color: var(--gold-dark);
  margin-bottom: 15px;
}

.advanced-search-card h4 {
  font-size: 18px;
  color: var(--primary-burgundy-dark);
  margin-bottom: 8px;
}

.advanced-search-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* COMMUNITY FEATURES (Section 9) */
.community-feature-card {
  background-color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.community-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.community-feature-card:hover::before {
  transform: scaleX(1);
}

.community-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.comm-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: var(--light-cream);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.community-feature-card:hover .comm-icon-wrapper {
  background-color: var(--primary-burgundy);
  color: var(--white);
}

.community-feature-card h4 {
  font-size: 20px;
  color: var(--primary-burgundy-dark);
  margin-bottom: 12px;
}

.community-feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
}

/* BLOGS SECTION (Section 10) */
.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.blog-img-container {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-container img {
  transform: scale(1.08);
}

.blog-category-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary-burgundy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--gold);
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-title a:hover {
  color: var(--primary-burgundy);
}

.blog-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-link:hover {
  color: var(--primary-burgundy);
}

/* NEWSLETTER (Section 11) */
.newsletter-section {
  background-color: var(--light-cream);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 50px 0;
}

.newsletter-bg-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: auto;
  opacity: 0.02;
  pointer-events: none;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-container h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--primary-burgundy);
}

.newsletter-container p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  background-color: var(--white);
  border-radius: 50px;
  padding: 6px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.newsletter-form input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 10px 25px;
  outline: none;
  font-size: 15px;
}

.newsletter-form button {
  background-color: var(--primary-burgundy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* FOOTER (Section 12) */
.footer-section {
  background: linear-gradient(180deg, var(--primary-burgundy-dark) 0%, #29070c 100%);
  color: var(--white);
  padding: 50px 0 20px;
  font-family: var(--font-body);
}

.footer-about img {
  height: 55px;
  margin-bottom: 25px;
  object-fit: contain;
}

.footer-faith-statement {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  border-left: 2px solid var(--gold);
  padding-left: 15px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 15px;
  transition: var(--transition-smooth);
}

.footer-social-links a:hover {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-contact-info i {
  color: var(--gold);
  margin-right: 12px;
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 25px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-bottom: 0;
}

/* Custom slick dots styles for dark section */
.success-stories-slider-dots .slick-dots li button:before {
  color: rgba(255, 255, 255, 0.5);
}

.success-stories-slider-dots .slick-dots li.slick-active button:before {
  color: var(--gold);
}

/* Slick Custom Arrows style */
.slick-prev-custom,
.slick-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
  background-color: var(--primary-burgundy);
  color: var(--white);
  border-color: var(--primary-burgundy);
}

.slick-prev-custom {
  left: -60px;
}

.slick-next-custom {
  right: -60px;
}



/* ================= NEW LAYOUT ELEMENTS ================= */
.stats-ribbon {
  background-color: var(--primary-burgundy);
  color: var(--white);
  padding: 30px 0;
  border-bottom: 4px solid var(--gold);
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-md);
}

.ribbon-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.ribbon-item:last-child {
  border-right: none;
}

.ribbon-icon {
  font-size: 30px;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.ribbon-number {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.2;
}

.ribbon-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-rect-image-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.hero-rect-image-inner {
  position: absolute;
  top: -171px;
}

.hero-rect-image-inner img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}



.brand-text-logo {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================= PREMIUM REFINEMENTS ================= */

/* Gold Light Sweep Hover Animation for Buttons */
.btn-premium {
  overflow: hidden;
  position: relative;
}

.btn-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 2;
}

.btn-premium:hover::after {
  animation: light-sweep 0.85s ease-in-out;
}

@keyframes light-sweep {
  0% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

/* Gold Corner Accented Container for Premium Visuals */
.corner-accented {
  position: relative;
}

.corner-accented::before,
.corner-accented::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: 10;
  transition: var(--transition-smooth);
}

.corner-accented::before {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.corner-accented::after {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

.corner-accented:hover::before {
  top: 4px;
  left: 4px;
}

.corner-accented:hover::after {
  bottom: 4px;
  right: 4px;
}

/* Elegant Cards Improvements */
.how-it-works-card,
.profile-card,
.about-grid-card,
.advanced-search-card,
.community-feature-card,
.blog-card {
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  box-shadow: 0 8px 25px rgba(107, 31, 42, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.how-it-works-card:hover,
.profile-card:hover,
.about-grid-card:hover,
.advanced-search-card:hover,
.community-feature-card:hover,
.blog-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 15px 35px rgba(107, 31, 42, 0.08) !important;
  background-color: var(--white) !important;
}

/* Specific Card Trims */
.community-feature-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 0;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

.community-feature-card:hover::after {
  height: 100%;
}

/* Premium Navigation Hover Line */
.nav-link-custom::after {
  height: 3px !important;
  background: linear-gradient(90deg, var(--primary-burgundy), var(--gold), var(--primary-burgundy)) !important;
}

/* Decorative Gold Separators Updates */
.gold-divider::before,
.gold-divider::after {
  height: 2px !important;
  background: linear-gradient(to right,
      rgba(214, 175, 55, 0),
      rgba(214, 175, 55, 0.8) 50%,
      rgba(214, 175, 55, 0)) !important;
}

/* Dynamic glow elements for religious motifs */
.glow-cross {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
  animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {

  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.3));
  }

  50% {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
  }
}

/* ================= SELECT2 CUSTOM PREMIUM STYLING ================= */

/* Hide default select2 outline styling */
.select2-container:focus,
.select2-container *:focus {
  outline: none !important;
}

/* Single Select Styling */
.select2-container--default .select2-selection--single {
  background-color: var(--light-cream) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 8px !important;
  height: 48px !important;
  padding: 10px 14px !important;
  display: flex !important;
  align-items: center !important;
  transition: var(--transition-smooth) !important;
}

/* Selection Text Single Styling */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: var(--text-dark) !important;
  padding-left: 0 !important;
  padding-right: 20px !important;
  line-height: normal !important;
}

/* Arrow Styling */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
  width: 30px !important;
  top: 1px !important;
  right: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Hide Select2 Default Arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}

/* Custom Gold Chevron Arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow::before {
  content: '\f078';
  /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold-dark);
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

/* Rotate Chevron on Open */
.select2-container--open .select2-selection--single .select2-selection__arrow::before {
  transform: rotate(180deg);
  color: var(--primary-burgundy);
}

/* Focus and Open States */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--gold) !important;
  background-color: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
}

/* Custom Dropdown Styling */
.select2-dropdown {
  background-color: var(--white) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 8px !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden !important;
  z-index: 9999 !important;
}

/* Dropdown Open Animations */
.select2-dropdown--below {
  animation: select2-slide-below 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.select2-dropdown--above {
  animation: select2-slide-above 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes select2-slide-below {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes select2-slide-above {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown Options List styling */
.select2-results__options {
  max-height: 220px !important;
}

.select2-results__option {
  padding: 10px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: var(--text-dark) !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Highlighted (Hover) option */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary-burgundy) !important;
  color: var(--white) !important;
}

/* Selected option style */
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: var(--light-cream) !important;
  color: var(--primary-burgundy) !important;
  font-weight: 600 !important;
}

/* Disabled option style */
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #c0c0c0 !important;
}

/* Custom scrollbar for results list */
.select2-results__options::-webkit-scrollbar {
  width: 6px;
}

.select2-results__options::-webkit-scrollbar-track {
  background: var(--light-cream);
}

.select2-results__options::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 3px;
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* MAIN CC */
.custom-dropdown{
    position:relative;
}

.dropdown-trigger{
    display:flex;
    align-items:center;
    gap:6px;
}

.custom-dropdown-menu{
    position:absolute;
    top:110%;
    left:50%;
    transform:translateX(-50%);
    min-width:200px;
    background:#fff;
    border-radius:15px;
    padding:10px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.custom-dropdown.active .custom-dropdown-menu{
    opacity:1;
    visibility:visible;
    top:calc(100% + 8px);
}

.dropdown-trigger i{
    transition: .3s;
}

.custom-dropdown.active .dropdown-trigger i{
    transform: rotate(180deg);
}

.custom-dropdown-menu a{
    display:block;
    padding:12px 20px;
    color:#2b0d0d;
    text-decoration:none;
}

.custom-dropdown-menu a:hover{
    background:#f7f7f7;
    color:#7d1f2f;
}
.drawer-submenu{
    list-style:none;
    padding-left:20px;
    /* margin-top:10px; */

    max-height:0;
    overflow:hidden;
    transition:.3s ease;
}

.drawer-dropdown.active .drawer-submenu{
    max-height:250px;
}

.drawer-submenu li a{
    display:block;
    padding:10px 0;
    color:#555;
    text-decoration:none;
}

.drawer-dropdown-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;

    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--charcoal);
    /* display: block; */
    padding: 10px 16px;
    border-radius: 10px;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

/* Toast*/
#toast-container {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: auto;
    max-width: 95vw
}

.toast-top-right {
    top: 20px;
    right: 20px
}

.toast-top-left {
    top: 20px;
    left: 20px
}

.toast-bottom-right {
    bottom: 20px;
    right: 20px
}

.toast-bottom-left {
    bottom: 20px;
    left: 20px
}

.toast-top-center {
    top: 20px;
    left: 50%;
    transform: translateX(-50%)
}

.toast-bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%)
}

.toast-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.toast-item {
    background: #111;
    color: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    width: auto;
    max-width: 90vw;
    word-break: break-word;
    overflow-wrap: anywhere;
    box-shadow: 0 10px 25px rgb(0 0 0 / .4);
    pointer-events: auto;
    animation: fadeSlide .3s ease
}

.toast-icon {
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff
}

.toast-message {
    margin: 0;
    line-height: 1.3
}

.toast-close {
    font-size: 18px;
    cursor: pointer;
    opacity: .6;
    margin-left: 6px
}

.toast-close:hover {
    opacity: 1
}

.toast-success .toast-icon {
    background: #16a34a
}

.toast-error .toast-icon {
    background: #dc2626
}

.toast-info .toast-icon {
    background: #2563eb
}

.toast-warning .toast-icon {
    background: #f59e0b
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}