/* START: Rudrassa Redesign Styles - Consolidated from NepFlow & Anubhabi Palette */
:root {
    /* Primary brand colors from Anubhabi.com */
    --primary-dark: #d46142;   /* Deep trust-inspiring blue */
    --primary-base: #E32249;    /* Energetic action blue */
    --primary-light: #e6e9ff;   /* Light background blue */
    --accent-teal: #4cc9f0;     /* Accent from NepFlow/anubhabi */
    --accent-purple: #7b2cbf;   /* Secondary accent */
    --success-green: #38b000;
}

/* Apply Inter font globally */
body {
    font-family: 'Inter', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Override Bootstrap's primary to match new palette */
.btn-primary {
    background-color: var(--primary-base) !important;
    border-color: var(--primary-base) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2) !important;
}
.text-primary {
    color: var(--primary-base) !important;
}
.border-primary {
    border-color: var(--primary-base) !important;
}
.bg-primary {
    background-color: var(--primary-base) !important;
}

/* Hero Badge (NepFlow style) */
.hero-badge {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-base);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(67, 97, 238, 0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f5f7ff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Stats Card */
.stat-card {
    border: none;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

/* Feature Icons */
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(123, 44, 191, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-base);
}

/* Pricing Toggle Styles */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}
.pricing-period-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 1rem;
    font-size: 1.1rem;
}
.pricing-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}
.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.pricing-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .pricing-slider {
    background-color: var(--primary-base);
}
input:checked + .pricing-slider:before {
    transform: translateX(30px);
}

/* Pricing Cards */
.pricing-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}
.pricing-card.popular {
    border-top: 4px solid var(--accent-teal);
    position: relative;
}
.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-teal);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a365d 100%);
    color: white;
    padding: 5rem 0;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* Updated Navbar */
.navbar-brand h1 {
    font-weight: 800;
    color: var(--primary-dark) !important;
    font-size: 1.8rem;
    margin: 0;
}
.nav-link {
    font-weight: 500;
    color: var(--primary-dark) !important;
}
.nav-link:hover {
    color: var(--primary-base) !important;
}

/* Updated Footer */
/*footer.bg-white.footer {*/
/*    background-color: var(--primary-dark) !important;*/
/*    color: white;*/
/*}*/
/*footer .text-white-50 {*/
/*    color: rgba(255,255,255,0.7) !important;*/
/*}*/
/*footer a {*/
/*    color: rgba(255,255,255,0.8);*/
/*    text-decoration: none;*/
/*    transition: color 0.2s;*/
/*}*/
/*footer a:hover {*/
/*    color: white !important;*/
/*}*/
/*footer .navbar-brand.text-white {*/
/*    color: white !important;*/
/*}*/
/* END: Redesign Styles */