/* ==========================================================================
   Base styles and Variables
   ========================================================================== */

:root {
    --primary-color: #8c0c2e;
    /* Burgundy from Logo */
    --primary-light: #b01b44;
    --primary-dark: #660620;
    --primary-subtle: rgba(140, 12, 46, 0.1);

    --navy-color: #0f183b;
    /* Navy from Logo */
    --navy-light: #1b2857;

    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition-slow: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.3s ease;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-body);
    font-weight: 700;
}

/* Typography Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-navy {
    color: var(--navy-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-navy {
    background-color: var(--navy-color) !important;
}

.bg-primary-subtle {
    background-color: var(--primary-subtle) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.max-w-700 {
    max-width: 700px;
}

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

.smooth-transition {
    transition: var(--transition-fast);
}

/* ==========================================================================
   Components
   ========================================================================== */

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:focus-visible {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary:focus-visible {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}


.btn-glow {
    box-shadow: 0 10px 20px -5px rgba(140, 12, 46, 0.4) !important;
}

.btn-glow:hover {
    box-shadow: 0 15px 25px -5px rgba(140, 12, 46, 0.6) !important;
}

/* Navbar */
.custom-nav {
    transition: var(--transition-fast);
    padding: 15px 0;
    background-color: transparent;
}

.custom-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.brand-text {
    line-height: 1.1;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    font-style: italic;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--navy-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-link {
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* ==========================================================================
   Hero Section & Glassmorphism
   ========================================================================== */
.hero-section {
    background-color: var(--bg-light);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(140, 12, 46, 0.15);
    top: -100px;
    right: -100px;
    animation: float 10s infinite alternate ease-in-out;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(15, 24, 59, 0.1);
    bottom: -100px;
    left: -100px;
    animation: float 12s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 30px) rotate(10deg);
    }
}

.glass-mockup {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-element {
    position: absolute;
    z-index: 2;
}

.float-1 {
    top: -20px;
    right: -20px;
    animation: bounce 3s infinite alternate;
}

.float-2 {
    bottom: 40px;
    left: -30px;
    animation: bounce 4s infinite alternate-reverse;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

.bounce-animation {
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #ffdee7 !important;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.feature-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, #fff, var(--bg-light));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md) !important;
    border-color: rgba(140, 12, 46, 0.1) !important;
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    transition: var(--transition-fast);
}

.feature-card:hover .icon-box {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.1) rotate(5deg);
}

.feature-number {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(15, 24, 59, 0.03);
    line-height: 1;
    z-index: -1;
    transition: var(--transition-slow);
}

.feature-card:hover .feature-number {
    color: rgba(140, 12, 46, 0.05);
    transform: translateX(-10px);
}

/* ==========================================================================
   Value / Benefits Section
   ========================================================================== */
.value-img-bg {
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
    min-height: 500px;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 24, 59, 0.9), rgba(140, 12, 46, 0.8));
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.process-card {
    transition: var(--transition-fast);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

.process-step {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.process-card:hover .process-step {
    transform: scale(1.1);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-card {
    transition: var(--transition-slow);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(15, 24, 59, 0.25) !important;
}

.popular-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ==========================================================================
   Loader
   ========================================================================== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   Custom Footer Design
   ========================================================================== */
.footer-custom {
    background-color: var(--navy-color);
    margin-top: 100px !important;
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-90%) scaleY(-1) scaleX(-1);
}

.footer-custom .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-custom .social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.hover-white {
    transition: var(--transition-fast);
}

.hover-white:hover {
    color: white !important;
}

.footer-links li a {
    position: relative;
    display: inline-block;
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    transform: translateX(5px);
}

/* ==========================================================================
   Select2 Global Customization
   ========================================================================== */
.select2-container .select2-selection--multiple {
    min-height: 48px;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 4px 8px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(137, 17, 54, 0.25);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--navy-color);
    border: none;
    color: white;
    border-radius: 6px;
    padding: 2px 8px 2px 24px;
    margin-top: 6px;
    font-size: 0.85rem;
    position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgba(255, 255, 255, 0.7);
    border-right: none;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    font-weight: bold;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: white;
    background: transparent;
}

/* Select2 Dropdown Menu Styling */
.select2-dropdown {
    border: 1px solid rgba(137, 17, 54, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 31, 79, 0.1);
    overflow: hidden;
    margin-top: 5px;
}

.select2-container--default .select2-results__option {
    padding: 10px 16px;
    color: var(--navy-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: rgba(137, 17, 54, 0.05);
    color: var(--primary-color);
    font-weight: 500;
}

.select2-container--default .select2-results__option--selected {
    background-color: rgba(15, 31, 79, 0.05) !important;
    color: var(--navy-color) !important;
}

/* Essential Utility Overrides for B2C */
.bg-white\/90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.backdrop-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(137, 17, 54, 0.15) !important;
}

.bg-light-soft {
    background-color: #f8fafc;
}

.shape-blob {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    animation: morph 8s infinite alternate ease-in-out;
    z-index: 0;
    pointer-events: none;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1.05);
    }
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--navy-color));
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent !important;
}

.footer-premium {
    background-color: var(--navy-color);
    border-top: 4px solid var(--primary-color);
}

.hover-bg-primary {
    transition: all 0.3s ease;
}

.hover-bg-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-3px);
}

/* Specific B2C overrides to integrate with style.css */
.hero-b2c {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
    position: relative;
    overflow: hidden;
}

.search-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 40px 80px -15px rgba(15, 31, 79, 0.25), 0 0 0 10px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateY(40px);
    position: relative;
    z-index: 10;
}

/* Select2 Customization for Bootstrap 5 */
.select2-container .select2-selection--multiple {
    min-height: 54px;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 6px 12px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(137, 17, 54, 0.25);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--navy-color);
    border: none;
    color: white;
    border-radius: 6px;
    padding: 4px 10px;
    margin-top: 6px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: white;
    background: transparent;
}

/* Featured Provider Cards */
.provider-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 31, 79, 0.1);
}

.provider-avatar {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border: 3px solid rgba(137, 17, 54, 0.1);
}

/* Timeline Process */
.process-step-b2c {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    z-index: 1;
}

.process-step-b2c::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: dashed 2px var(--navy-color);
    opacity: 0.2;
    z-index: -1;
}

.col-md-3:last-child .process-step-b2c::after {
    display: none;
}

.step-icon-bg {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(137, 17, 54, 0.1);
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
}

@media (max-width: 768px) {
    .process-step-b2c::after {
        display: none;
    }
}

/* Index Template HTML Inline Style Replacements */
.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -10%;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: -5%;
    animation-delay: 2s;
}

.hero-content-container {
    margin-top: 80px;
}

.hero-lead-text {
    /* text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8); */
}

h1 .highlight {
    text-decoration-color: var(--primary-light) !important;
}

.z-index-10 {
    z-index: 10;
}

.how-it-works-section {
    margin-top: 60px;
}

.provider-cta-banner {
    background-color: var(--navy-color);
}

/* Header & Footer Custom Classes */
.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-dropdown-menu {
    border-radius: 16px;
    padding: 8px 0;
    margin-top: 10px;
    min-width: 200px;
}

.b2c-footer {
    margin-top: 0 !important;
    background-color: var(--navy-color);
}

.social-circle {
    width: 36px;
    height: 36px;
}

/* About Template Custom Classes */
.about-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(137, 17, 54, 0.05) 0%, rgba(15, 31, 79, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 31, 79, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 10px 0;
    margin-top: 40px;
}

.marquee-container {
    display: inline-flex;
    animation: marquee 100s linear infinite;
    gap: 1.5rem;
    padding-left: 1.5rem;
}

.marquee-container:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Half of the array handles full loop seamlessly */
}

.marquee-card {
    width: 250px;
    flex-shrink: 0;
    white-space: normal;
    transition: transform 0.3s ease;
}

.marquee-card:hover {
    transform: translateY(-5px);
}

.software-mockup-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    /* Matches rounded-4 */
}

.software-mockup-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: linear-gradient(to top, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 20%, transparent 100%);
    pointer-events: none;
    border-radius: 0 0 1.5rem 1.5rem;
}

/* Addons Marquee Styles */
.addon-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.addon-marquee-container {
    display: inline-flex;
    animation: addon-marquee 40s linear infinite;
    gap: 2.5rem;
}

.addon-marquee-container:hover {
    animation-play-state: paused;
}

@keyframes addon-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.addon-item {
    width: 280px;
    flex-shrink: 0;
    white-space: normal;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.addon-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
}

.addon-icon-circle {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary-color), var(--navy-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.15);
    transition: transform 0.3s ease;
}

.addon-item:hover .addon-icon-circle {
    animation: floatIcon 2.5s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(8deg);
    }
}

.addon-item h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Pricing Swiper Slider Styles */
.pricingSwiper {
    padding-bottom: 60px !important;
    /* Space for pagination */
    padding-left: 10px;
    padding-right: 10px;
}

.pricingSwiper .swiper-button-next,
.pricingSwiper .swiper-button-prev {
    background-color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color, #1e3a8a);
}

.pricingSwiper .swiper-button-next:after,
.pricingSwiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 800;
}

.pricingSwiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color, #1e3a8a);
}

.transform-scale-105 {
    transform: scale(1.05);
    z-index: 2;
}

@media (max-width: 991px) {
    .transform-scale-105 {
        transform: scale(1);
    }
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
}

.value-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 31, 79, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(137, 17, 54, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tracking-wide-1 {
    letter-spacing: 1px;
}

.about-office-img {
    object-fit: cover;
    height: 500px;
    width: 100%;
}

.max-w-250 {
    max-width: 250px;
}

.max-w-600 {
    max-width: 600px;
}

/* Contact Template Custom Classes */
.contact-hero {
    background: linear-gradient(135deg, var(--navy-color), var(--navy-light));
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(15, 31, 79, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(137, 17, 54, 0.1);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-box {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 400px;
}

.contact-content-section {
    margin-top: -50px;
}

.shape-blob-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -5%;
}

.shape-blob-2 {
    width: 500px;
    height: 500px;
    bottom: -20%;
    right: -5%;
    animation-delay: 2s;
}

.contact-social-btn {
    width: 45px;
    height: 45px;
}

.z-10 {
    z-index: 10;
}

.max-w-700 {
    max-width: 700px;
}

/* Auth Modals Custom Classes */
.auth-modal-content {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 31, 79, 0.25);
}

.auth-modal-content .modal-header {
    padding: 24px 24px 0;
}

.auth-modal-content .btn-close {
    background-color: var(--bg-light);
    border-radius: 50%;
    padding: 12px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.auth-modal-content .btn-close:hover {
    opacity: 1;
    background-color: rgba(140, 12, 46, 0.1);
    color: var(--primary-color);
}

.auth-modal-content .form-control {
    border-radius: 12px;
    padding: 14px 20px;
    transition: var(--transition-fast);
}

.auth-modal-content .form-control:focus {
    background-color: #fff !important;
    border: 1px solid var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(137, 17, 54, 0.1) !important;
}


/* Essential Utility Overrides for B2C */
.bg-white\/90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.backdrop-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(137, 17, 54, 0.15) !important;
}

.bg-light-soft {
    background-color: #f8fafc;
}

/* General UI Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--navy-color));
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent !important;
}

.hover-bg-primary {
    transition: all 0.3s ease;
}

.hover-bg-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-3px);
}

/* Filter Sidebar Styles */
.filter-sidebar {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(15, 31, 79, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    /* Under the navbar */
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-color);
    margin-bottom: 8px;
    display: block;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Provider Cards */
.provider-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 31, 79, 0.08);
    border-color: rgba(137, 17, 54, 0.1);
}

.provider-avatar {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    border: 3px solid rgba(137, 17, 54, 0.1);
}

.provider-body {
    flex: 1;
    padding: 25px;
}

.provider-footer {
    background: #f8fafc;
    padding: 20px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* Page Header */
.page-header {
    padding: 130px 0 60px;
    background: linear-gradient(135deg, rgba(137, 17, 54, 0.03) 0%, rgba(15, 31, 79, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Pagination Overrides */
.pagination {
    gap: 8px;
}

.page-item .page-link {
    border: none;
    border-radius: 12px !important;
    color: var(--navy-color);
    background-color: white;
    font-weight: 600;
    padding: 12px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.page-item .page-link:hover {
    background-color: rgba(137, 17, 54, 0.05);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(137, 17, 54, 0.2);
}

.page-item.disabled .page-link {
    background-color: transparent;
    box-shadow: none;
    color: #adb5bd;
}

/* Profile Layout - Provider Details */
.profile-header-area {
    padding: 140px 0 50px;
    background: linear-gradient(135deg, rgba(137, 17, 54, 0.03) 0%, rgba(15, 31, 79, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.provider-logo-large {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(15, 31, 79, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(15, 31, 79, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.service-badge {
    background: rgba(15, 31, 79, 0.05);
    color: var(--navy-color);
    border: 1px solid rgba(15, 31, 79, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.service-badge:hover {
    background: rgba(137, 17, 54, 0.05);
    border-color: rgba(137, 17, 54, 0.2);
    color: var(--primary-color);
}

/* Review Item */
.review-item {
    padding: 24px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.review-item:hover {
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

/* Locked Contacts Card */
.locked-contact-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 31, 79, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.locked-contact-header {
    background: var(--navy-color);
    padding: 24px;
    text-align: center;
    color: white;
}

.locked-content {
    padding: 30px;
    position: relative;
}

/* The Blur Effect */
.blurred-data {
    filter: blur(6px);
    user-select: none;
    opacity: 0.6;
    pointer-events: none;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    z-index: 10;
    padding: 20px;
    text-align: center;
}

.lock-icon-circle {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(137, 17, 54, 0.15);
    margin-bottom: 15px;
}

/* Map Container */
.locked-map-container {
    height: 200px;
    background: #e9ecef;
    position: relative;
    overflow: hidden;
}

.locked-map-bg {
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23f8f9fa" width="100" height="100"/><path fill="%23dee2e6" d="M0,50 L100,20 L100,100 L0,100 Z M50,0 L100,0 L100,20 L50,50 Z"/></svg>');
    background-size: cover;
    filter: blur(4px);
    opacity: 0.5;
}

.provider-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 5px;
    border-radius: 24px;
}

.contact-icon-circle {
    width: 45px;
    height: 45px;
}

/* My Enquiries Page Styles */
.dashboard-header-area {
    padding: 130px 0 40px;
    background: linear-gradient(135deg, rgba(137, 17, 54, 0.03) 0%, rgba(15, 31, 79, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.enquiry-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 31, 79, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.enquiry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 31, 79, 0.08);
    border-color: rgba(137, 17, 54, 0.1);
}

.provider-avatar-small {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    border: 2px solid rgba(137, 17, 54, 0.1);
}

.status-badge {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-pending {
    background: rgba(255, 193, 7, 0.1);
    color: #d39e00;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.status-quotation {
    background: rgba(13, 110, 253, 0.1);
    color: #0a58ca;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.status-accepted {
    background: rgba(25, 135, 84, 0.1);
    color: #146c43;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

/* Enquiry Details Page Styles */
.details-header-area {
    padding: 130px 0 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.details-header-area.status-accepted-bg {
    background: linear-gradient(135deg, rgba(8, 163, 114, 0.05) 0%, rgba(20, 108, 67, 0.05) 100%);
    border-bottom: 1px solid rgba(25, 135, 84, 0.1);
}

.details-header-area.status-quotation-bg,
.details-header-area.status-pending-bg {
    background: linear-gradient(135deg, rgba(137, 17, 54, 0.03) 0%, rgba(15, 31, 79, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 31, 79, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.provider-avatar-lg {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    border: 3px solid rgba(137, 17, 54, 0.1);
}

.provider-avatar-lg.accepted-border {
    border: 3px solid rgba(25, 135, 84, 0.2);
}

.unlocked-action-card {
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(25, 135, 84, 0.3);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(25, 135, 84, 0.05);
    position: sticky;
    top: 100px;
}

.unlocked-action-header {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.05), rgba(20, 108, 67, 0.1));
    padding: 25px;
    border-bottom: 1px solid rgba(25, 135, 84, 0.1);
    position: relative;
}

.unlocked-badge-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #198754;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    background: white;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.unlocked-action-body {
    padding: 30px 25px;
}

.locked-action-card {
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(13, 110, 253, 0.2);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.1);
    position: sticky;
    top: 100px;
}

.locked-action-header {
    background: rgba(13, 110, 253, 0.05);
    padding: 25px;
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
    text-align: center;
}

.locked-action-body {
    padding: 30px 25px;
}

.price-highlight {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-color);
    line-height: 1;
}

.lock-overlay-mini {
    background: rgba(248, 249, 250, 0.9);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px dashed #dee2e6;
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
}

/* ==========================================================================
   Provider Auth Layout (Registration Steps)
   ========================================================================== */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.auth-header {
    padding: 1.5rem 0;
    background-color: #fff;
    border-bottom: 1px solid #edf1f7;
}

.auth-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background-color: #f8f9fa;
    background-image:
        radial-gradient(at 0% 0%, rgba(23, 107, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(12, 49, 115, 0.1) 0px, transparent 50%);
}

.auth-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(12, 49, 115, 0.05);
    border: 1px solid rgba(12, 49, 115, 0.05);
    overflow: hidden;
    width: 100%;
}

.auth-bg-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
}

.auth-blob {
    position: absolute;
    border-radius: 50%;
}

.auth-blob-1 {
    top: -10%;
    left: -5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.18) 0%, rgba(13, 110, 253, 0) 70%);
    filter: blur(40px);
}

.auth-blob-2 {
    bottom: -15%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(12, 49, 115, 0.15) 0%, rgba(12, 49, 115, 0) 70%);
    filter: blur(60px);
}

.auth-blob-3 {
    top: 30%;
    right: 5%;
    width: 25vw;
    height: 25vw;
    background: radial-gradient(circle, rgba(235, 52, 148, 0.08) 0%, rgba(235, 52, 148, 0) 70%);
    filter: blur(40px);
}

.auth-blob-4 {
    top: 10%;
    right: 20%;
    width: 15vw;
    height: 15vw;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, rgba(255, 193, 7, 0) 70%);
    filter: blur(30px);
}

.provider-auth-loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(11, 11, 11, 0.9);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.provider-auth-loader h2,
.provider-auth-loader h3,
.provider-auth-loader p {
    color: white;
    margin-bottom: 0.5rem;
}

.profile-card {
    border: none;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.avatar-section {
    width: 100px;
    height: 100px;
    background: #001f3f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}