@font-face {
    font-family: 'Bernadette';
    src: url('../fonts/bernadette/bernadette.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #FFD700;
    --primary-dark: #b8860b;
    --primary-light: #e5c76b;
    --dark: #111827;
    --dark2: #000000;
    --navy: #000000;
    --gold: #FFD700;
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-bg: #f1f5f9;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --text: #1e293b;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --gradient1: linear-gradient(to right, #d4af37, #b8860b);
    --gradient2: linear-gradient(135deg, #000000 0%, #d4af37 100%);
    --gradient-btn: linear-gradient(to right, #d4af37, #000000);
    /* Gold-Black gradient like reference */
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: #EFBF04;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-size: 0.78rem;
    color: #64748b;
}

.top-bar .welcome-msg {
    color: #94a3b8;
    font-weight: 500;
}

.top-bar .contact-info span {
    color: #64748b;
    font-weight: 500;
}

.top-bar .top-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar .top-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.85rem;
}

.top-bar .btn-top-login {
    background: var(--gradient1);
    color: var(--white) !important;
    padding: 7px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
}

.top-bar .btn-top-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: var(--gradient2);
}

.top-bar .btn-top-partner {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    background: transparent;
}

.top-bar .btn-top-partner:hover {
    background: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Nav Buttons */
.btn-mob-login {
    background: var(--gradient1);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    display: inline-block;
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-mob-login:hover {
    background: var(--gradient2);
    transform: translateY(-2px);
}

.btn-mob-partner {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    border-radius: 50px;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    display: inline-block;
    width: 80%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-mob-partner:hover {
    background: var(--primary);
    color: var(--white) !important;
}

/* ===== NAVBAR ===== */
.navbar-main {
    background: var(--white);
    padding: 1.2rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    background-color: #000;
    padding: 5px 10px;
    border-radius: 5px;
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-logo-text .main-name {
    font-size: 2.2rem;
    font-weight: normal;
    color: #FFD700;
    letter-spacing: 0;
    font-family: 'Bernadette', 'CommercialScriptBT', 'Commercial Script', 'Great Vibes', cursive;
    /* -webkit-text-stroke: 1px #d8b800; */

}

.brand-logo-text .sub-tag {
    margin-top: 0.7em;
    font-size: 0.65rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b !important;
    margin-left: 2rem;
    padding: 0.5rem 0 !important;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff2c61;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #ff2c61 !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO / SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    animation: fadeSlide 1s ease-in-out;
}

.hero-slide.active {
    position: relative;
    display: block;
    height: 100%;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Much lighter overlay since images have text */
    display: flex;
    align-items: center;
    z-index: 3;
}

.hero-content {
    color: var(--white);
    max-width: 600px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-content .btn-hero {
    background: var(--gradient1);
    color: var(--white);
    border: none;
    padding: .85rem 2.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
    margin-right: .5rem;
}

.hero-content .btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, .4);
}

.hero-content .btn-hero-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: .8rem 2.2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
}

.hero-content .btn-hero-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===== REGISTRATION CARD (Inside Hero) ===== */
.floating-reg-card {
    background: linear-gradient(135deg, rgba(45, 30, 15, 0.9) 0%, rgba(65, 45, 25, 0.8) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    color: var(--white);
    text-align: center;
    border: 1px solid rgba(245, 166, 35, 0.3);
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    margin-left: auto;
}

.hero-text-right {
    color: var(--white);
    text-align: right;
    padding-right: 20px;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.hero-text-right.hidden-text {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.hero-text-right h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-text-right p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

@media(max-width: 991px) {
    .hero-text-right {
        text-align: center;
        margin-bottom: 2rem;
        padding-right: 0;
    }

    .hero-text-right h1 {
        font-size: 2.5rem;
    }
}

.floating-reg-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid rgba(245, 166, 35, 0.3);
    display: inline-block;
    padding-bottom: 8px;
}

.reg-input-group {
    margin-bottom: 1rem;
    text-align: left;
}

.reg-input-group input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #f0f4f8;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
}

.reg-input-group input::placeholder {
    color: #64748b;
}

.reg-input-group input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
}

.reg-input-group .phone-input-wrap {
    display: flex;
    background: #f0f4f8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    align-items: center;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.reg-input-group .phone-input-wrap:focus-within {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
}

.reg-input-group .phone-input-wrap:focus-within input {
    color: var(--white);
}

.reg-input-group .phone-input-wrap img {
    width: 24px;
    height: auto;
    margin-right: .5rem;
}

.reg-input-group .phone-input-wrap i {
    color: #888;
    font-size: .7rem;
    margin-right: .8rem;
}

.reg-input-group .phone-input-wrap input {
    flex: 1;
    padding-left: 0.5rem;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    color: var(--dark);
    font-weight: 600;
    height: 100%;
}

.reg-input-group .phone-input-wrap:focus-within input {
    color: var(--white) !important;
}

.btn-reg-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.9rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

.btn-reg-submit:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

@media(max-width:1100px) {
    .floating-reg-container {
        right: 5%;
        width: 340px;
    }
}

@media(max-width:991px) {
    .floating-reg-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 90%;
        max-width: 400px;
        margin: -50px auto 3rem;
    }

    .hero-overlay {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 4rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

@media(max-width:768px) {
    .hero-slider {
        height: auto !important;
        min-height: auto !important;
        background: var(--dark) !important;
        padding: 0 !important;
        display: block;
    }

    .hero-slide {
        position: absolute !important;
        height: 100% !important;
        display: none;
    }

    .hero-slide.active {
        position: relative !important;
        display: block !important;
        height: auto !important;
    }

    .hero-slide img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .hero-overlay {
        position: relative !important;
        background: linear-gradient(135deg, #1a1a2e 0%, #000000 100%) !important;
        padding: 40px 20px !important;
        display: block !important;
        z-index: 3;
    }

    .hero-text-right {
        text-align: center !important;
        padding-right: 0 !important;
        margin-bottom: 30px !important;
    }

    .hero-text-right h1 {
        font-size: 2rem !important;
    }

    .floating-reg-card {
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .slider-dots {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   REDESIGNED LANDING PAGE SECTIONS
   All prefixed with cv- to avoid conflicts
   ═══════════════════════════════════════════════════════════════ */

/* ── SHARED UTILITIES ── */
.cv-section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.cv-badge {
    display: inline-block;
    background: rgba(212, 175, 55, .08);
    color: var(--primary);
    padding: .4rem 1.4rem;
    border-radius: 30px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.cv-section-head h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .8rem;
    line-height: 1.3;
}

.cv-section-head p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: .95rem;
}

.cv-text-gradient {
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cv-btn-primary {
    display: inline-block;
    background: var(--gradient1);
    color: var(--white);
    border: none;
    padding: .75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: all .35s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, .25);
}

.cv-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, .35);
    color: var(--white);
}

.cv-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: .7rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    text-align: center;
    transition: all .35s ease;
}

.cv-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, .2);
}

.cv-btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: .85rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.cv-btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
    color: var(--primary);
}


/* ── SCRIPTURE SECTION ── */
.cv-scripture-section {
    padding: 5rem 0;
    background: var(--off-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cv-scripture-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .03);
}

.cv-scripture-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(245, 166, 35, .04);
}

.cv-scripture-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cv-scripture-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    font-size: 2rem;
    color: var(--gold);
}

.cv-scripture-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
    margin: 0 0 1rem;
    padding: 0;
    border: none;
}

.cv-scripture-cite {
    display: block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .85rem;
    font-style: normal;
}

.cv-scripture-divider {
    height: 2px;
    width: 60px;
    background: var(--gold);
    margin: 1.8rem auto;
}

.cv-scripture-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}


/* ── WHY CHOOSE US ── */
.cv-why-section {
    padding: 5rem 0;
    background: var(--white);
}

.cv-feature-card {
    background: var(--white);
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all .4s cubic-bezier(.25, .8, .25, 1);
    position: relative;
    overflow: hidden;
}

.cv-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient1);
    transition: height .4s ease;
    border-radius: 0 0 4px 0;
}

.cv-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, .08);
    border-color: rgba(212, 175, 55, .15);
}

.cv-feature-card:hover::before {
    height: 100%;
}

.cv-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(212, 175, 55, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    transition: all .4s ease;
}

.cv-feature-card:hover .cv-feature-icon {
    background: var(--gradient1);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.cv-feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
}

.cv-feature-card p {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}


/* ── HOW IT WORKS (Steps) ── */
.cv-steps-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.cv-steps-timeline {
    position: relative;
}

.cv-steps-line {
    position: absolute;
    top: 80px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(to right, rgba(212, 175, 55, .05), rgba(212, 175, 55, .15), rgba(212, 175, 55, .05));
    z-index: 0;
}

.cv-step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
    border: 1px solid rgba(212, 175, 55, .04);
    transition: all .4s cubic-bezier(.25, .8, .25, 1);
}

.cv-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, .1);
    border-color: rgba(212, 175, 55, .15);
}

.cv-step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(245, 166, 35, .3);
}

.cv-step-icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all .4s ease;
    border: 2px solid rgba(212, 175, 55, .08);
}

.cv-step-card:hover .cv-step-icon-ring {
    background: var(--gradient1);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, .25);
}

.cv-step-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
}

.cv-step-card p {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}


/* ── STATS SECTION ── */
.cv-stats-section {
    padding: 4.5rem 0;
    background: var(--gradient2);
    position: relative;
    overflow: hidden;
}

.cv-stats-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245, 166, 35, .06);
}

.cv-stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .1);
}

.cv-stat-card {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.cv-stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 2px solid rgba(245, 166, 35, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    color: var(--gold);
    transition: all .4s ease;
}

.cv-stat-card:hover .cv-stat-icon {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 25px rgba(245, 166, 35, .3);
}

.cv-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: .3rem;
}

.cv-stat-suffix {
    color: rgba(255, 255, 255, .5);
}

.cv-stat-label {
    font-size: .82rem;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}


/* ── SUCCESS STORIES ── */
.cv-stories-section {
    padding: 5rem 0;
    background: var(--white);
}

.cv-story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
    transition: all .4s cubic-bezier(.25, .8, .25, 1);
    height: 100%;
    border: 1px solid #eef2f7;
}

.cv-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.cv-story-img-wrap {
    overflow: hidden;
}

.cv-story-img-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.cv-story-card:hover .cv-story-img-wrap img {
    transform: scale(1.05);
}

.cv-story-body {
    padding: 1.5rem 1.8rem 2rem;
}

.cv-story-stars {
    margin-bottom: .8rem;
}

.cv-story-stars i {
    color: var(--gold);
    font-size: .85rem;
    margin-right: 2px;
}

.cv-story-body h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
}

.cv-story-body p {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}


/* ── FAQ ── */
.cv-faq-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.cv-faq-left {
    padding-right: 2rem;
}

.cv-faq-left .cv-badge {
    margin-bottom: 1rem;
}

.cv-faq-left h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cv-faq-left p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-size: .95rem;
}

.cv-faq-item {
    border: 1px solid #e8ecf1 !important;
    border-radius: 14px !important;
    margin-bottom: .8rem;
    overflow: hidden;
    background: var(--white);
    transition: all .3s ease;
}

.cv-faq-item:hover {
    border-color: rgba(212, 175, 55, .15) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
}

.cv-faq-item .accordion-button {
    font-weight: 600;
    font-size: .92rem;
    color: var(--dark) !important;
    padding: 1.1rem 1.4rem;
    background: var(--white) !important;
    box-shadow: none !important;
    border: none;
}

.cv-faq-item .accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    background: rgba(212, 175, 55, .02) !important;
}

.cv-faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23004aad'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.cv-faq-item .accordion-body {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.8;
    padding: 0 1.4rem 1.2rem;
}


/* ── PLANS ── */
.cv-plans-section {
    padding: 5rem 0;
    background: var(--white);
}

.cv-plan-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    border: 2px solid #eef2f7;
    transition: all .4s cubic-bezier(.25, .8, .25, 1);
    position: relative;
}

.cv-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, .08);
    border-color: rgba(212, 175, 55, .2);
}

.cv-plan-popular {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, .1);
}

.cv-popular-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient1);
    color: var(--white);
    padding: .35rem 1.2rem;
    border-radius: 0 0 12px 12px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-plan-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all .3s ease;
}

.cv-plan-card:hover .cv-plan-icon {
    background: var(--gradient1);
    color: var(--white);
    transform: scale(1.1);
}

.cv-plan-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.cv-plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: .5rem;
}

.cv-plan-price span {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.cv-plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    text-align: left;
}

.cv-plan-features li {
    padding: .5rem 0;
    font-size: .88rem;
    color: var(--text-light);
    border-bottom: 1px solid #f1f5f9;
}

.cv-plan-features li:last-child {
    border: none;
}

.cv-plan-features li i {
    color: var(--primary);
    margin-right: .6rem;
    font-size: .8rem;
    width: 16px;
    text-align: center;
}

.cv-plan-disabled {
    opacity: .4;
}

.cv-plan-disabled i {
    color: var(--text-muted) !important;
}


/* ── CTA SECTION ── */
.cv-cta-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.cv-cta-inner {
    background: var(--gradient2);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cv-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245, 166, 35, .08);
}

.cv-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .15);
}

.cv-cta-inner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cv-cta-inner p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.cv-cta-inner .cv-btn-white {
    position: relative;
    z-index: 1;
}


/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .cv-section-head h2 {
        font-size: 1.8rem;
    }

    .cv-scripture-quote {
        font-size: 1.4rem;
    }

    .cv-faq-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .cv-cta-inner {
        padding: 3rem 1.5rem;
    }

    .cv-cta-inner h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .cv-section-head h2 {
        font-size: 1.5rem;
    }

    .cv-scripture-quote {
        font-size: 1.2rem;
    }

    .cv-stat-number {
        font-size: 2rem;
    }

    .cv-cta-inner h2 {
        font-size: 1.4rem;
    }

    .cv-plan-card {
        padding: 2rem 1.5rem;
    }
}



.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .badge-label {
    display: inline-block;
    background: rgba(212, 175, 55, .1);
    color: var(--primary);
    padding: .35rem 1.2rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .8rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .8rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== SUCCESS STORIES (split layout) ===== */
.success-section {
    background: var(--off-white);
}

.success-left {
    padding-right: 3rem;
}

.success-left .badge-label {
    display: inline-block;
    background: rgba(212, 175, 55, .1);
    color: var(--primary);
    padding: .35rem 1.2rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.success-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.success-left p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-primary-custom {
    background: var(--gradient1);
    color: var(--white);
    border: none;
    padding: .7rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, .3);
    color: var(--white);
}

/* Story Cards Slider */
.stories-slider {
    position: relative;
    overflow: hidden;
}

.stories-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .5s ease;
}

.story-card {
    min-width: 300px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s;
    flex-shrink: 0;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.story-card-img {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.story-card-body {
    padding: 1.2rem 1.5rem;
}

.story-card-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .5rem;
}

.story-card-body p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== FIND YOUR SOMEONE (split) ===== */
.find-section {
    background: var(--navy);
    background: var(--gradient2);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.find-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(226, 55, 68, .1);
}

.find-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.find-left p {
    opacity: .8;
    line-height: 1.8;
    max-width: 400px;
}

.find-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 1.8rem;
    backdrop-filter: blur(5px);
    transition: all .3s;
    height: 100%;
}

.find-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, .4);
}

.find-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: var(--gradient1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.find-card h6 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: .5rem;
}

.find-card p {
    font-size: .85rem;
    opacity: .7;
    line-height: 1.6;
    margin: 0;
}

/* ===== FAQ (split) ===== */
.faq-section {
    background: var(--white);
}

.faq-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.faq-left p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.accordion-item {
    border: 1px solid var(--light-gray) !important;
    border-radius: 12px !important;
    margin-bottom: .8rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: .92rem;
    color: var(--dark) !important;
    padding: 1rem 1.3rem;
    background: var(--white) !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    background: rgba(212, 175, 55, .03) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23004aad'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.8;
    padding: 0 1.3rem 1.2rem;
}

/* ===== PREMIUM MEMBERS ===== */
.premium-section {
    background: var(--off-white);
}

.member-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s;
    text-align: center;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-card-img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center top !important;
}

.member-card-body {
    padding: 1.2rem;
}

.member-card-body h5 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: .2rem;
}

.member-card-body p {
    color: var(--text-muted);
    font-size: .8rem;
}

.member-badge {
    display: inline-block;
    background: rgba(212, 175, 55, .1);
    color: var(--primary);
    padding: .2rem .8rem;
    border-radius: 15px;
    font-size: .7rem;
    font-weight: 600;
    margin-top: .3rem;
}

/* ===== BANNERS ROW ===== */
.banners-section {
    background: var(--white);
    padding: 3rem 0;
}

.banner-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s;
}

.banner-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.banner-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: var(--off-white);
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .4s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.why-card-content {
    padding: 2rem;
}

.why-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient1);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.why-card-content h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .5rem;
}

.why-card-content p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.why-card-img img {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* ===== WHAT MAKES SPECIAL (stats) ===== */
.special-section {
    background: var(--navy);
    background: var(--gradient2);
    color: var(--white);
    position: relative;
}

.special-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .08);
}

.special-section .section-header h2,
.special-section .section-header p,
.find-section .section-header h2,
.find-section .section-header p {
    color: var(--white) !important;
}

.special-section .section-header .badge-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--gold);
    border: 2px solid rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-5px) rotate(10deg);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-num .suffix {
    color: var(--primary-light);
}

.stat-label {
    font-size: .85rem;
    opacity: 0.9;
    margin-top: .3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== NEW MEMBERS ===== */
.members-section {
    background: var(--white);
}

.new-member-card {
    text-align: center;
    padding: 1rem;
}

.new-member-avatar {
    width: 100px !important;
    height: 100px !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid var(--white) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .1) !important;
    margin-bottom: .8rem !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-block !important;
}

.new-member-card:hover .new-member-avatar {
    transform: scale(1.08);
    border-color: var(--primary);
}

.new-member-card h6 {
    font-weight: 600;
    font-size: .9rem;
    color: var(--dark);
    margin-bottom: .1rem;
}

.new-member-card p {
    font-size: .75rem;
    color: var(--text-muted);
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
    background: var(--light-bg);
}

.step-card {
    background: var(--white);
    padding: 40px 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-icon {
    font-size: 32px;
    color: var(--primary);
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    border: 2px solid var(--white);
}

.step-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== PACKAGES ===== */
.packages-section {
    background: var(--off-white);
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .3s;
    border: 2px solid transparent;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.package-card.popular {
    border-color: var(--primary);
    position: relative;
}

.package-card.popular::before {
    content: 'Popular';
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient1);
    color: var(--white);
    padding: .3rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: .75rem;
    font-weight: 600;
}

.package-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.package-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.package-price span {
    font-size: .9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.package-features li {
    padding: .4rem 0;
    font-size: .88rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--light-gray);
}

.package-features li:last-child {
    border: none;
}

.package-features li i {
    color: var(--primary);
    margin-right: .5rem;
    font-size: .8rem;
}

/* ===== BLOG ===== */
.blog-section {
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-date {
    font-size: .75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .5rem;
}

.blog-card-body h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .5rem;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .7);
    padding: 4rem 0 0;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--primary);
    margin-right: .5rem;
}

.footer-desc {
    font-size: .85rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer h6 {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: .8rem;
}

.footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: .6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .85rem;
    transition: all .3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: .6rem;
    margin-top: 1rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: all .4s;
    font-size: .9rem;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.newsletter-input {
    display: flex;
    gap: 0;
    margin-top: .8rem;
}

.newsletter-input input {
    flex: 1;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    padding: .6rem 1rem;
    border-radius: 25px 0 0 25px;
    font-size: .85rem;
    outline: none;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.newsletter-input button {
    background: var(--gradient1);
    border: none;
    color: var(--white);
    padding: .6rem 1.2rem;
    border-radius: 0 25px 25px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.2rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient1);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(226, 55, 68, .4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
    .success-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .find-left {
        margin-bottom: 2rem;
    }

    .faq-left {
        margin-bottom: 2rem;
    }
}

@media(max-width:767px) {
    .section-padding {
        padding: 3.5rem 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .story-card {
        min-width: 260px;
    }
}

/* ===== NEW WHITE PREMIUM REGISTRATION CARD STYLES ===== */
.reg-card-white {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 2.2rem 2rem 1.8rem 2rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    color: #1e293b !important;
    text-align: center !important;
    border: none !important;
    width: 100% !important;
    max-width: 450px !important;
    backdrop-filter: none !important;
    transition: all 0.4s ease !important;
    margin-left: auto !important;
    position: relative !important;
}

.reg-card-white .reg-card-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
}

.reg-card-white .custom-select-wrapper {
    position: relative;
    text-align: left;
}

.reg-card-white .custom-select-trigger {
    border: 1px solid #111827 !important;
    border-radius: 10px !important;
    padding: 0.9rem 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #ffffff !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    transition: all 0.3s ease !important;
}

.reg-card-white .custom-select-trigger:hover {
    background: #f8fafc !important;
}

.reg-card-white .chevron-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #64748b;
}

.reg-card-white .custom-select-options {
    border: 1px solid #111827 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    padding: 1.2rem !important;
    margin-top: 6px !important;
    display: none;
}

.reg-card-white .custom-select-options.open {
    display: block !important;
    animation: fadeInSlideUp 0.25s ease-out;
}

.reg-card-white .options-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.8rem 0.5rem !important;
    text-align: center !important;
}

.reg-card-white .custom-option {
    padding: 0.6rem 0.2rem !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    color: #1e293b !important;
    transition: all 0.2s ease !important;
    border: 1px solid transparent;
}

.reg-card-white .custom-option:hover {
    background: #f1f5f9 !important;
    color: #000000 !important;
}

.reg-card-white .custom-option.selected {
    background: #f1f5f9 !important;
    color: #d4af37 !important;
    border-color: rgba(212, 175, 55, 0.2);
}

.reg-card-white .expandable-fields {
    overflow: hidden !important;
    max-height: 0 !important;
    opacity: 0 !important;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, margin-top 0.4s ease-out !important;
    margin-top: 0 !important;
    text-align: left !important;
}

.reg-card-white .expandable-fields.expanded {
    max-height: 350px !important;
    opacity: 1 !important;
    margin-top: 1rem !important;
}

.reg-card-white .field-group {
    margin-bottom: 1rem;
}

.reg-card-white .reg-card-input {
    border: 1px solid #111827 !important;
    border-radius: 10px !important;
    padding: 0.9rem 1.2rem !important;
    background: #ffffff !important;
    color: #1e293b !important;
    width: 100% !important;
    outline: none !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.reg-card-white .reg-card-input::placeholder {
    color: #94a3b8 !important;
    font-weight: 500 !important;
}

.reg-card-white .reg-card-input:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

.reg-card-white .reg-card-phone-row {
    display: flex !important;
    gap: 0.8rem !important;
    align-items: center !important;
}

.reg-card-white .country-code-wrap {
    border: 1px solid #111827 !important;
    border-radius: 10px !important;
    padding: 0.9rem 0.8rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    width: 90px !important;
    justify-content: space-between !important;
    background: #ffffff !important;
    color: #1e293b !important;
    cursor: default !important;
}

.reg-card-white .phone-input-wrap-white {
    flex: 1 !important;
}

.reg-card-white .btn-orange-submit {
    background: #d4af37 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.9rem !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    margin-top: 1.2rem !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.reg-card-white .btn-orange-submit:hover {
    background: #b8860b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.45) !important;
    color: #ffffff !important;
}

.reg-card-white .reg-card-disclaimer {
    font-size: 0.78rem !important;
    color: #64748b !important;
    margin-top: 1rem !important;
    text-align: center !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
}

.reg-card-white .reg-card-disclaimer a {
    color: #64748b !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
}

.reg-card-white .reg-card-disclaimer a:hover {
    color: #000000 !important;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CUSTOM PREMIUM FOOTER STYLES ===== */
.site-footer {
    background-color: #000000 !important;
    /* Slate 900 */
    color: #94a3b8 !important;
    /* Slate 400 */
    padding: 80px 0 30px !important;
    position: relative !important;
    border-top: 4px solid #d4af37 !important;
    /* Orange top border line */
}

/* Subtle gold decorative gradient line under the orange border */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #d4af37, #d4af37);
}

.site-footer-logo-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    margin-bottom: 1.5rem !important;
}

.site-footer-brand-name {
    font-size: 2rem !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    font-family: 'Bernadette' !important;
}

.site-footer-brand-tag {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    color: #d4af37 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.site-footer-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    padding-bottom: 10px !important;
}

.site-footer-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 30px !important;
    height: 2px !important;
    background: #d4af37 !important;
}

.site-footer-text {
    font-size: 0.9rem !important;
    line-height: 1.8 !important;
    color: #94a3b8 !important;
}

.site-footer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-footer-list li {
    margin-bottom: 0.8rem !important;
}

.site-footer-list a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
}

.site-footer-list a:hover {
    color: #ffffff !important;
    padding-left: 5px !important;
    text-decoration: underline !important;
}

.site-footer-contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
    margin-bottom: 1rem !important;
    font-size: 0.9rem !important;
    color: #94a3b8 !important;
    word-break: break-word !important;
}

.site-footer-contact-item a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.site-footer-contact-item a:hover {
    color: #ffffff !important;
}

.site-footer-contact-item i {
    color: #d4af37 !important;
    margin-top: 0.2rem !important;
}

.site-footer-social-links {
    display: flex !important;
    gap: 0.8rem !important;
    margin-top: 1.5rem !important;
}

.site-footer-social-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.site-footer-social-btn:hover {
    background: #d4af37 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4) !important;
    border-color: #d4af37 !important;
}

/* Newsletter styling */
.site-footer-newsletter-form {
    margin-top: 1rem !important;
}

.site-footer-newsletter-group {
    display: flex !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 50px !important;
    overflow: hidden !important;
    padding: 3px 3px 3px 15px !important;
    transition: all 0.3s ease !important;
    align-items: center !important;
}

.site-footer-newsletter-group:focus-within {
    border-color: #d4af37 !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.site-footer-newsletter-input {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    padding: 0.5rem 0.5rem !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    outline: none !important;
    min-width: 0 !important;
}

.site-footer-newsletter-input::placeholder {
    color: #64748b !important;
}

.site-footer-newsletter-btn {
    background: #d4af37 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.site-footer-newsletter-btn:hover {
    background: #b8860b !important;
}

.site-footer-copyright-bar {
    margin-top: 60px !important;
    padding-top: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #64748b !important;
    font-size: 0.85rem !important;
}

.site-footer-legal-links {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important;
}

@media (min-width: 768px) {
    .site-footer-legal-links {
        justify-content: flex-end !important;
    }
}

.site-footer-legal-links a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.site-footer-legal-links a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}