:root {
    --primary-maroon: #660000;
    --primary-maroon-dark: #4d0000;
    --heritage-gold: #C5A059;
    --heritage-gold-dark: #b08d4b;
    --cream-bg: #FCF9F2;
    --text-dark: #2c2c2c;
    --text-muted: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream-bg);
    overflow-x: hidden;
    position: relative;
    /* Ambient Mesh Background */
    background: radial-gradient(circle at 0% 0%, rgba(102, 0, 0, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(197, 160, 89, 0.05) 0%, transparent 40%),
        var(--cream-bg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-maroon);
    border-radius: 5px;
    border: 2px solid var(--cream-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--heritage-gold);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
}

/* Utilities */
.text-gold {
    color: var(--heritage-gold);
}

.bg-cream {
    background-color: var(--cream-bg);
}

.bg-gold {
    background-color: var(--heritage-gold) !important;
    color: white;
}

.bg-maroon {
    background-color: var(--primary-maroon) !important;
    color: white;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-maroon);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Navigation */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 10px;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-maroon) !important;
}

/* Hero Section Redesign: Full-Width Background Slider */
#hero {
    height: 100vh;
    min-height: 750px;
    background: var(--primary-maroon-dark);
    overflow: hidden;
    position: relative;
}

#hero .carousel-inner,
#hero .carousel-item {
    height: 100%;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.carousel-item.active .hero-bg-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(61, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.hero-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(197, 160, 89, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 1);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff !important;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 1), 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span.text-gold {
    color: #ffffff !important;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-cta-glass {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    max-width: 500px;
    margin: 2rem auto 0;
    color: white;
    transition: transform 0.3s ease;
}

.hero-cta-glass:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.45);
}

.carousel-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 100;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--heritage-gold);
    transform: translateY(-5px) scale(1.1);
    color: white;
    border-color: var(--heritage-gold);
}

.carousel-indicators-custom {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.carousel-indicators-custom button {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.carousel-indicators-custom button.active {
    background: var(--heritage-gold);
    width: 80px;
}

.carousel-item .stagger-reveal>* {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

.carousel-item.active .stagger-reveal>*:nth-child(1) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .stagger-reveal>*:nth-child(2) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .stagger-reveal>*:nth-child(3) {
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .stagger-reveal>*:nth-child(4) {
    transition-delay: 1.0s;
    opacity: 1;
    transform: translateY(0);
}


/* Button UI Overrides */
.btn-primary {
    background-color: var(--primary-maroon) !important;
    border-color: var(--primary-maroon) !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--primary-maroon-dark) !important;
    border-color: var(--primary-maroon-dark) !important;
}

.btn-outline-primary {
    color: var(--primary-maroon) !important;
    border-color: var(--primary-maroon) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-maroon) !important;
    color: white !important;
}

.link-primary {
    color: var(--primary-maroon) !important;
}

.btn-gold {
    background-color: var(--heritage-gold);
    border-color: var(--heritage-gold);
    color: white;
}

/* Cultural Elements */
.cultural-divider {
    position: relative;
    color: var(--heritage-gold);
    display: flex;
    flex-direction: column;
}

.cultural-divider .symbol {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cultural-divider .line {
    height: 1px;
    background: linear-gradient(to right, var(--heritage-gold), transparent);
    width: 15rem;
}

.mandala-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background-image: url('../assets/mandala.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.mandala-bg.left {
    top: -100px;
    left: -100px;
    transform: rotate(15deg);
}

.mandala-bg.right {
    bottom: -100px;
    right: -100px;
    transform: rotate(-15deg);
}

/* News & Cards Modern Feel */
.glass-effect {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

.glass-effect:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1) !important;
    background: white !important;
}

/* Reveal Animation */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Premium Footer Refinements */
footer {
    background-color: var(--primary-maroon-dark) !important;
    position: relative;
    color: #ffffff !important;
    overflow: hidden;
    margin-top: 50px !important;
}

.footer-logo-wrapper img {
    background: white;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--heritage-gold);
}

.footer-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    color: var(--heritage-gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--heritage-gold);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.7rem;
    margin-right: 12px;
    color: var(--heritage-gold);
}

.footer-links a:hover {
    color: var(--heritage-gold) !important;
    transform: translateX(8px);
}

.contact-card-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card-glass i {
    width: 30px;
    text-align: center;
}

.social-icon-modern {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none !important;
    margin-right: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-modern i {
    font-size: 1.2rem;
    line-height: 1;
}

.social-icon-modern:hover {
    background: var(--heritage-gold);
    color: var(--primary-maroon-dark) !important;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--heritage-gold);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Premium Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-maroon);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.loader-content {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-mandala {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('../assets/mandala.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    filter: sepia(1) saturate(5) hue-rotate(330deg) brightness(1.5);
    animation: loader-spin 8s linear infinite;
}

.loader-text {
    margin-top: 20px;
    color: var(--heritage-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: loader-fade 2s ease-in-out infinite;
}

@keyframes loader-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes loader-fade {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    #hero {
        text-align: center;
        height: auto;
        padding: 100px 0 150px;
    }

    .hero-arch-container {
        padding-right: 0;
        justify-content: center;
    }

    .arch-frame {
        width: 90%;
        height: 50vh;
    }

    .carousel-controls {
        right: 50%;
        transform: translateX(50%);
        bottom: 30px;
    }

    .carousel-indicators-custom {
        left: 50%;
        transform: translateX(50%);
        bottom: 100px;
    }
}

/* Matrimonial Page Styles */
.matrimonial-container {
    background: transparent;
}

.search-sidebar-modern {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.search-sidebar-modern h3 {
    color: var(--primary-maroon);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-search-modern {
    background-color: var(--primary-maroon);
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-search-modern:hover {
    background-color: var(--primary-maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 0, 0, 0.2);
}

.profile-card-modern {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.profile-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--heritage-gold);
}

.profile-img-container {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 250px;
    border: 5px solid #f8f9fa;
}

.profile-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.profile-card-modern:hover .profile-img-modern {
    transform: scale(1.1);
}

.profile-id-tag-modern {
    background-color: var(--heritage-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    margin: 10px 0;
    letter-spacing: 1px;
}

.profile-name-modern {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.btn-request-modern {
    background-color: transparent;
    color: var(--primary-maroon);
    border: 1px solid var(--primary-maroon);
    font-size: 0.85rem;
    padding: 8px 0;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
}

.btn-request-modern:hover {
    background-color: var(--primary-maroon);
    color: white;
}

.registration-center {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reg-step-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 0, 0, 0.05);
    color: var(--primary-maroon);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.btn-download-premium {
    background-color: var(--primary-maroon);
    color: white !important;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 0, 0, 0.15);
}

.btn-download-premium:hover {
    background-color: var(--primary-maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 0, 0, 0.2);
}

.reg-notice-badge {
    background: #fff8e1;
    color: #b7791f;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Seekbar Styles */
.age-range-container {
    padding: 10px 0;
}

.age-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #dfe3e8;
    border-radius: 5px;
    outline: none;
    margin: 15px 0;
}

.age-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-maroon);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.age-val-display {
    background: var(--primary-maroon);
    color: white;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
}

.custom-radio .form-check-input:checked {
    background-color: var(--primary-maroon);
    border-color: var(--primary-maroon);
}

/* Dashboard Styles */
.dashboard-container {
    background: #fdfbf7;
    min-height: 80vh;
}

.dash-sidebar {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dash-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dash-nav-link i {
    width: 25px;
    margin-right: 15px;
    font-size: 1.1rem;
    color: var(--primary-maroon);
    opacity: 0.7;
}

.dash-nav-link:hover,
.dash-nav-link.active {
    background: rgba(102, 0, 0, 0.05);
    color: var(--primary-maroon);
}

.dash-nav-link.active i {
    opacity: 1;
}

.dash-stat-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.dash-stat-card:hover {
    transform: translateY(-5px);
}

.dash-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-maroon {
    background: rgba(102, 0, 0, 0.08);
    color: var(--primary-maroon);
}

.stat-gold {
    background: rgba(197, 160, 89, 0.1);
    color: var(--heritage-gold);
}

.stat-blue {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

.dash-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.dash-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-maroon);
}

.badge-status {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-active {
    background: #e8f5e9;
    color: #2e7d32;
}

@media (max-width: 991px) {
    .dash-sidebar {
        margin-bottom: 2rem;
    }
}

.dash-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 10px auto 20px;
    display: block;
}

/* Login Page Styles */
.login-page {
    background: linear-gradient(135deg, #fdfbf7 0%, #f7f1e3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 450px;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.login-logo {
    height: 80px;
    margin-bottom: 25px;
}

.login-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--primary-maroon);
    margin-bottom: 10px;
}

.login-form .form-control {
    background: white;
    border: 1.5px solid #eee;
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    border-color: var(--primary-maroon);
    box-shadow: 0 0 0 4px rgba(102, 0, 0, 0.05);
}

.btn-login-premium {
    background: var(--primary-maroon);
    color: white !important;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 0, 0, 0.2);
}

.btn-login-premium:hover {
    background: var(--primary-maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(102, 0, 0, 0.3);
}

.login-footer-link {
    color: var(--text-dark);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-footer-link:hover {
    color: var(--primary-maroon);
}

.social-login-btn {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.social-login-btn:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

/* Navbar Button Hover Fix */
.nav-link:hover:not(.btn),
.nav-link.active:not(.btn) {
    color: var(--primary-maroon) !important;
}

.btn-primary {
    background-color: var(--primary-maroon) !important;
    border-color: var(--primary-maroon) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background-color: var(--primary-maroon-dark) !important;
    border-color: var(--primary-maroon-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 0, 0, 0.2);
}

/* Missing Matrimonial Styles */
.img-overlay-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(102, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-card-modern .profile-img-container {
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.section-title-modern {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--heritage-gold);
    border-radius: 3px;
}

/* Mobile Sidebar Fix */
@media (max-width: 991px) {
    .search-sidebar-modern {
        position: static;
        margin-bottom: 3rem;
    }
}

/* Range Slider Visual Polish */
.age-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(102, 0, 0, 0.3);
}

/* Success Story Polish */
.success-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.success-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.custom-pagination-dots .swiper-pagination-bullet-active {
    background: var(--primary-maroon) !important;
}

/* Matrimonial Hero Customization */
#hero-mat {
    background: var(--cream-bg);
}

.hero-subtitle {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-maroon);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
}