﻿:root {
    /* ===========================
       BRAND COLORS
    =========================== */

    --ch-primary: #C62828; /* Maple Red */
    --ch-primary-dark: #8E1B1B; /* Deep Maple */
    --ch-primary-light: #FDECEC;
    --ch-accent: #E86A92; /* Soft Canadian Pink */
    --ch-accent-soft: #FFF1F5;
    --ch-bg-soft: #F8FAFC; /* Snow */
    --ch-bg-white: #FFFFFF;
    --ch-text: #1F2937; /* Slate */
    --ch-text-light: #6B7280;
    --ch-border: #E5E7EB;
    /* ===========================
       SHADOWS
    =========================== */

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.08);
    --shadow-2xl: 0 25px 75px rgba(0,0,0,0.12);
    --shadow-3xl: 0 40px 120px rgba(0,0,0,0.18);
    /* ===========================
       GRADIENTS
    =========================== */

    --gradient-primary: linear-gradient( 135deg, #C62828 0%, #E86A92 100% );
    --gradient-soft: linear-gradient( 135deg, #FFF5F5 0%, #FFF1F5 100% );
    --radius-lg: 18px;
    --radius-xl: 24px;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a,
button,
.card,
.nav-link {
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    height: 100%;
}

body {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif!important;
    color: var(--ch-text);
    background: radial-gradient(circle at top right, #FFF5F5 0%, transparent 30%), #ffffff;
    letter-spacing: 0.01em;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    /*padding-top: 4.5rem;*/ /* space for sticky navbar */
}

.drop-shadow-text {
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.text-white-emphasis {
    color: #f8f9fc !important;
}

.lift-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .lift-hover:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: var(--shadow-3xl) !important;
    }

.backdrop-blur-md {
    backdrop-filter: blur(16px);
}

@media (max-width: 991px) {
    .hero {
        min-height: 70vh !important;
        font-size: 0.9em;
    }

    .trust-badge-1, .trust-badge-2, .trust-badge-3 {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 2.5rem !important;
    }
}

/* ===========================
   PREMIUM HERO
=========================== */

.hero {
    background: #000;
    isolation: isolate;
}

/* Background Video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark cinematic overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(15,23,42,0.70), rgba(15,23,42,0.60) );
    z-index: 1;
}

/* Soft maple tint */
.hero-tint {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at top right, rgba(198,40,40,0.18), transparent 35% );
    z-index: 1;
}

/* Content */
.hero .container {
    z-index: 2;
    position: relative;
}

/* Badge */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Headline */
.hero-title {
    font-size: clamp(3rem, 8vw, 5.8rem);
    font-weight: 800;
    line-height: 1.05;
    color: white;
    letter-spacing: -0.04em;
}

    .hero-title span {
        color: #FECACA;
        font-weight: 500;
    }

/* Subtitle */
.hero-text {
    max-width: 760px;
    margin-inline: auto;
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

/* Buttons */
.hero-btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(198,40,40,0.25);
}

    .hero-btn-primary:hover {
        transform: translateY(-3px);
    }

.hero-btn-secondary {
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    border-width: 1.5px;
    backdrop-filter: blur(10px);
}

/* Stats */
.hero-stats {
    margin-top: 3rem;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.hero-stat-label {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
}

/* Bottom fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    height: 180px;
    background: linear-gradient( transparent, #F8FAFC );
    z-index: 2;
}

/* Mobile */
@media (max-width: 768px) {

    .hero-title {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }
}

/* Premium navbar */
.navbar {
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229,231,235,0.7);
}

.navbar-shadow {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.navbar-nav .nav-link {
    color: var(--ch-text);
    transition: all 0.25s ease;
}

    .navbar-nav .nav-link:hover {
        color: var(--ch-primary);
    }

.nav-link.active {
    color: var(--ch-primary) !important;
    font-weight: 600;
}
.navbar-shadow {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.navbar-brand img {
    height: 64px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}

.nav-link.active {
    color: var(--ch-primary) !important;
}

/* ===========================
   PREMIUM NAVBAR
=========================== */

.navbar {
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.45);
    transition: all 0.3s ease;
}

/* Logo */
.navbar-brand img {
    height: 58px;
    width: auto;
    transition: all 0.3s ease;
}

/* Nav Links */
.navbar-light .navbar-nav .nav-link {
    position: relative;
    color: #475569 !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: all 0.25s ease;
}

    /* Hover */
    .navbar-light .navbar-nav .nav-link:hover {
        color: var(--ch-primary) !important;
    }

    /* Underline Animation */
    .navbar-light .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 1rem;
        bottom: 0.3rem;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: var(--gradient-primary);
        transition: width 0.25s ease;
    }

    /* Hover underline */
    .navbar-light .navbar-nav .nav-link:hover::after {
        width: calc(100% - 2rem);
    }

    /* Active */
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--ch-primary) !important;
        font-weight: 600;
    }

        /* Active underline */
        .navbar-light .navbar-nav .nav-link.active::after {
            width: calc(100% - 2rem);
        }

/* Navbar shadow */
.navbar-shadow {
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

/* ===========================
   PREMIUM NAVBAR
=========================== */

.navbar {
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.45);
    transition: all 0.3s ease;
}

/* Logo */
.navbar-brand img {
    height: 58px;
    width: auto;
    transition: all 0.3s ease;
}

/* Nav Links */
.navbar-light .navbar-nav .nav-link {

    position: relative;
    color: #475569 !important;

    font-size: 1rem;
    font-weight: 500;

    padding: 0.75rem 1rem !important;

    transition: all 0.25s ease;
}

/* Hover */
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--ch-primary) !important;
}

/* Underline Animation */
.navbar-light .navbar-nav .nav-link::after {

    content: "";

    position: absolute;

    left: 1rem;
    bottom: 0.3rem;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background: var(--gradient-primary);

    transition: width 0.25s ease;
}

/* Hover underline */
.navbar-light .navbar-nav .nav-link:hover::after {
    width: calc(100% - 2rem);
}

/* Active */
.navbar-light .navbar-nav .nav-link.active {

    color: var(--ch-primary) !important;
    font-weight: 600;
}

/* Active underline */
.navbar-light .navbar-nav .nav-link.active::after {
    width: calc(100% - 2rem);
}

/* Navbar shadow */
.navbar-shadow {
    box-shadow:
        0 10px 40px rgba(0,0,0,0.04);
}

.navbar-nav .nav-item {
    margin-inline: 0.25rem;
}

.btn-cta {
    border-radius: 999px;
    padding-inline: 1.25rem;
    font-weight: 600;
}

.btn-ghost {
    border-radius: 999px;
    border-width: 1px;
}

.btn-primary,
.btn-cta {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 10px 24px rgba(198,40,40,0.18);
    transition: all 0.3s ease;
}

    .btn-primary:hover,
    .btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(198,40,40,0.28);
    }

.btn-outline-primary {
    border-color: var(--ch-primary);
    color: var(--ch-primary);
}

    .btn-outline-primary:hover {
        background: var(--ch-primary);
        color: white;
    }

.btn-white {
    background: white;
    color: var(--ch-primary-dark);
    border: 1px solid var(--ch-border);
}
.card,
.feature-card,
.quote-card,
.service-card {
    border: 1px solid rgba(229,231,235,0.7);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
}

    .card:hover,
    .feature-card:hover,
    .quote-card:hover,
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

/* ===========================
   HOW IT WORKS
=========================== */

.how-it-works-section {
    background: linear-gradient( 180deg, #ffffff 0%, #F8FAFC 100% );
    padding-block: 7rem;
}

/* Soft background glow */
.how-it-works-glow {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient( circle, rgba(198,40,40,0.08), transparent 70% );
    pointer-events: none;
}

/* Section Heading */
.section-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(198,40,40,0.08);
    color: var(--ch-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.section-title {
    color: var(--ch-text);
    letter-spacing: -0.03em;
}

.section-subtitle {
    max-width: 620px;
    font-size: 1.15rem;
}

/* Cards */
.how-card {
    position: relative;
    padding: 3rem 2rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(229,231,235,0.7);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    overflow: hidden;
}

    .how-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(0,0,0,0.10);
    }

    /* Top Accent */
    .how-card::before {
        content: "";
        position: absolute;
        inset-inline: 0;
        top: 0;
        height: 4px;
        background: var(--gradient-primary);
    }

/* Step Number */
.step-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(198,40,40,0.5);
    letter-spacing: 0.1em;
}

/* Icon Circle */
.step-icon {
    width: 90px;
    height: 90px;
    margin-inline: auto;
    border-radius: 50%;
    background: linear-gradient( 135deg, rgba(198,40,40,0.12), rgba(232,106,146,0.12) );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ch-primary);
}

/* Connector Line */
.steps-connector {
    position: absolute;
    top: 85px;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient( 90deg, rgba(198,40,40,0.15), rgba(232,106,146,0.25), rgba(198,40,40,0.15) );
    z-index: 0;
}

/* Mobile */
@media (max-width: 991px) {

    .how-it-works-section {
        padding-block: 5rem;
    }

    .how-card {
        padding: 2.5rem 1.75rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}


/* Footer */
.footer {
    background: linear-gradient( 135deg, #1F2937 0%, #111827 100% );
    color: #e5e7eb;
    margin-top: auto;
}

    .footer a {
        color: #9ca3af;
        text-decoration: none;
    }

        .footer a:hover {
            color: #ffffff;
        }

.footer-heading {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-logo img {
    height: 36px;
}

.footer small,
.footer p {
    font-size: 0.85rem;
}

.footer .list-unstyled li + li {
    margin-top: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

/* Chatbot placement (only on non-admin/cleaner) */
.chatbot-container {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1040;
}

/* Accessibility: focus outline */
:focus-visible {
    outline: 3px solid var(--ch-accent);
    outline-offset: 2px;
}

/* Utility */
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
}

@media (max-width: 991.98px) {
    .content {
        padding-top: 4rem;
    }
}

.hover-shadow-lg {
    transition: all 0.3s ease;
}

    .hover-shadow-lg:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
    }

.btn-white {
    background: #ffffff;
    color: var(--ch-primary-dark);
    border: none;
}

    .btn-white:hover {
        background: #f8f9fa;
        color: var(--ch-primary-dark);
    }

.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.z-index-2 {
    z-index: 2;
}

.min-vh-70 {
    min-height: 70vh;
}


/* ===========================
   CHATBOT CONTAINER
=========================== */
#chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 340px;
    height: min(560px, 80vh);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    z-index: 9999;
}

/* THIS IS THE KEY */
#chatbot-scroll-area {
    flex: 1 1 auto;
    min-height: 0; /* 🔥 CRITICAL */
    overflow: hidden;
    display: flex;
}

/* ===========================
   HEADER
=========================== */
#chatbot-header {
    background: var(--gradient-primary);
    color: #fff;
    padding: 14px 16px;
    font-weight: 600;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* ===========================
   CHAT BODY (SCROLL FIXED)
=========================== */
#chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    /* Scrollbar */
    #chatbot-body::-webkit-scrollbar {
        width: 6px;
    }

    #chatbot-body::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.25);
        border-radius: 10px;
    }

/* ===========================
   MESSAGES
=========================== */
.chat-user {
    align-self: flex-end;
    background: var(--ch-primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px 12px 2px 12px;
    max-width: 80%;
    font-size: 14px;
    word-wrap: break-word;
}

.chat-bot {
    align-self: flex-start;
    background: #e9ecef;
    color: #000;
    padding: 8px 12px;
    border-radius: 12px 12px 12px 2px;
    max-width: 80%;
    font-size: 14px;
    word-wrap: break-word;
}

/* ===========================
   QUICK REPLIES
=========================== */
#chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
}

    #chatbot-quick-replies.hidden {
        display: none;
    }

    #chatbot-quick-replies button {
        background: #f1f3f5;
        border: none;
        border-radius: 18px;
        padding: 6px 14px;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        #chatbot-quick-replies button:hover {
            background: var(--ch-primary);
            color: #fff;
        }

/* ===========================
   FOOTER
=========================== */
#chatbot-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background: #fff;
    border-radius: 0 0 16px 16px;
}

/* Ensure footer + quick replies NEVER scroll */
#chatbot-footer,
#chatbot-quick-replies {
    flex-shrink: 0;
}

#chatbot-input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    border-radius: 20px;
    background: #f1f3f5;
    outline: none;
    font-size: 14px;
}

#chatbot-send {
    background: var(--ch-primary);
    border: none;
    color: #fff;
    margin-left: 8px;
    padding: 0 16px;
    border-radius: 20px;
    cursor: pointer;
}

/* ===========================
   FLOATING LAUNCHER
=========================== */
#chatbot-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ch-primary), var(--ch-primary-dark));
    color: white;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

/* ===========================
   TYPING INDICATOR
=========================== */
#chatbot-typing {
    padding: 8px 14px;
    display: flex;
    gap: 6px;
    align-items: center;
}

    #chatbot-typing span {
        width: 6px;
        height: 6px;
        background: #adb5bd;
        border-radius: 50%;
        animation: typing 1.4s infinite ease-in-out;
    }

        #chatbot-typing span:nth-child(2) {
            animation-delay: .2s;
        }

        #chatbot-typing span:nth-child(3) {
            animation-delay: .4s;
        }

@keyframes typing {
    0% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .3;
    }
}

.hidden {
    display: none !important;
}

#chatbot-new-msg {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ch-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    z-index: 10;
}

    #chatbot-new-msg.hidden {
        display: none;
    }

#chatbot-container {
    border: 1px solid rgba(229,231,235,0.7);
    backdrop-filter: blur(18px);
}

.chat-user {
    background: var(--gradient-primary);
}

.chat-bot {
    background: #F3F4F6;
    color: var(--ch-text);
}

#chatbot-send {
    background: var(--gradient-primary);
}

#chatbot-launcher {
    background: var(--gradient-primary);
}


/* ===========================
   MOBILE
=========================== */
@media (max-width: 480px) {
    #chatbot-container {
        width: 95%;
        right: 2.5%;
        height: 80%;
        bottom: 90px;
    }
}

/* ===========================
   SERVICE AREAS
=========================== */

.service-area-glow {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient( circle, rgba(198,40,40,0.08), transparent 70% );
    pointer-events: none;
}

/* Cards */
.area-card {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(229,231,235,0.8);
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}

    .area-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    }

/* Province Icon */
.province-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient( 135deg, rgba(198,40,40,0.12), rgba(232,106,146,0.12) );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-primary);
    font-size: 1.2rem;
}

/* City Pills */
.city-pill {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    color: var(--ch-text);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

    .city-pill:hover {
        background: rgba(198,40,40,0.08);
        border-color: rgba(198,40,40,0.18);
        color: var(--ch-primary);
    }

/* CTA */
.service-cta-card {
    max-width: 720px;
    margin-inline: auto;
    padding: 4rem 2rem;
    border-radius: 32px;
    background: linear-gradient( 135deg, rgba(198,40,40,0.05), rgba(232,106,146,0.06) );
    border: 1px solid rgba(229,231,235,0.7);
}

/* Spacing */
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pb-6 {
    padding-bottom: 6rem;
}

.mt-6 {
    margin-top: 6rem;
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-glow {
    position: absolute;
    top: -200px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient( circle, rgba(198,40,40,0.08), transparent 70% );
    pointer-events: none;
}

/* Cards */
.contact-info-card,
.contact-form-card {
    padding: 3rem;
    border-radius: 32px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(229,231,235,0.8);
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

/* Contact Items */
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

/* Icons */
.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient( 135deg, rgba(198,40,40,0.12), rgba(232,106,146,0.12) );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ch-primary);
    flex-shrink: 0;
}

/* Inputs */
.contact-input {
    border-radius: 18px;
    border: 1px solid #E5E7EB;
    padding: 0.95rem 1.2rem;
    background: #fff;
    transition: all 0.25s ease;
    box-shadow: none;
}

    .contact-input:focus {
        border-color: rgba(198,40,40,0.4);
        box-shadow: 0 0 0 4px rgba(198,40,40,0.08);
    }

/* Responsive */
@media (max-width: 991px) {

    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }
}

/* ===========================
   AUTH LAYOUT
=========================== */

.auth-body {
    margin: 0;
    background: #F8FAFC;
    overflow-x: hidden;
}

/* Wrapper */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
}

/* Left Panel */
.auth-brand-panel {
    width: 45%;
    position: relative;
    background: linear-gradient( 135deg, rgba(198,40,40,0.92), rgba(142,27,27,0.95) );
    color: white;
    overflow: hidden;
    padding: 4rem;
    align-items: center;
}

    /* Glow */
    .auth-brand-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top right, rgba(255,255,255,0.15), transparent 30% );
    }

/* Content */
.auth-brand-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.auth-logo {
    max-width: 180px;
}

/* Stats */
.auth-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

    .auth-stats strong {
        display: block;
        font-size: 1.5rem;
    }

    .auth-stats span {
        color: rgba(255,255,255,0.75);
    }

/* Right Panel */
.auth-content-panel {
    flex: 1;
    background: linear-gradient( 180deg, #ffffff 0%, #F8FAFC 100% );
    position: relative;
}

/* Header */
.auth-topbar {
    padding: 2rem 3rem;
}

.auth-home-link {
    color: var(--ch-primary);
    text-decoration: none;
    font-weight: 600;
}

/* Main */
.auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 2rem;
}

/* Mobile */
@media (max-width: 991px) {

    .auth-wrapper {
        display: block;
    }

    .auth-content-panel {
        width: 100%;
    }

    .auth-topbar {
        padding: 1.5rem;
    }

    .auth-main {
        min-height: auto;
        padding: 1rem;
    }
}


/* ===========================
   LOGIN PAGE
=========================== */

.login-section {
    min-height: 100vh;
    background: linear-gradient( 180deg, #ffffff 0%, #F8FAFC 100% );
}

/* Glow */
.login-glow {
    position: absolute;
    top: -200px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient( circle, rgba(198,40,40,0.10), transparent 70% );
}

/* Card */
.login-card {
    padding: 3rem;
    border-radius: 32px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(229,231,235,0.8);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Icon */
.login-icon {
    width: 90px;
    height: 90px;
    margin-inline: auto;
    border-radius: 50%;
    background: linear-gradient( 135deg, rgba(198,40,40,0.12), rgba(232,106,146,0.12) );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ch-primary);
}

/* Inputs */
.login-input {
    border-radius: 18px;
    border: 1px solid #E5E7EB;
    padding: 0.95rem 1.2rem;
    transition: all 0.25s ease;
    box-shadow: none;
}

    .login-input:focus {
        border-color: rgba(198,40,40,0.4);
        box-shadow: 0 0 0 4px rgba(198,40,40,0.08);
    }

/* Button */
.login-btn {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 14px 30px rgba(198,40,40,0.22);
}

    .login-btn:hover {
        transform: translateY(-2px);
    }

/* Links */
.login-link {
    color: var(--ch-primary);
    text-decoration: none;
    transition: all 0.25s ease;
}

    .login-link:hover {
        color: var(--ch-primary-dark);
    }

/* Mobile */
@media (max-width: 768px) {

    .login-card {
        padding: 2rem;
        border-radius: 24px;
    }
}

/* Common Badge Style */
.status-badge,
.badge {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

/* Pending */
.status-pending,
.bg-warning {
    background: #fef3c7 !important;
    color: #b45309 !important;
    border-color: #fde68a;
}

/* Payment Failed */
.status-payment-failed,
.status-rejected,
.bg-danger {
    background: #fee2e2 !important;
    color: #b91c1c !important;
    border-color: #fecaca;
}

/* Confirmed */
.status-confirmed,
.bg-primary {
    background: #dbeafe !important;
    color: #1d4ed8 !important;
    border-color: #bfdbfe;
}

/* Assigned */
.status-assigned,
.bg-info {
    background: #cffafe !important;
    color: #0f766e !important;
    border-color: #a5f3fc;
}

/* Cleaner Accepted */
.status-accepted {
    background: #dcfce7 !important;
    color: #15803d !important;
    border-color: #bbf7d0;
}

/* In Progress */
.status-progress,
.bg-dark {
    background: #e5e7eb !important;
    color: #374151 !important;
    border-color: #d1d5db;
}

/* Awaiting Verification */
.status-awaiting,
.bg-secondary {
    background: #ede9fe !important;
    color: #6d28d9 !important;
    border-color: #ddd6fe;
}

/* Completed */
.status-completed,
.bg-success {
    background: #dcfce7 !important;
    color: #15803d !important;
    border-color: #bbf7d0;
}

/* Cancelled */
.status-cancelled {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    border-color: #e5e7eb;
}

/* Expired */
.status-expired {
    background: #fee2e2 !important;
    color: #991b1b !important;
    border-color: #fecaca;
}

/* NOTIFICATIONS */
.notification-bell {
    font-size: 20px;
    color: #5f6368;
    transition: all .2s ease;
}

    .notification-bell:hover {
        color: #0d6efd;
    }

.notification-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    background: #ff4d4f;
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.notification-menu {
    width: 360px;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    margin-top: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.notification-header {
    padding: 14px 18px;
    font-weight: 600;
    border-bottom: 1px solid #f1f3f5;
    background: #fff;
}

.notification-item {
    padding: 14px 18px;
    border-bottom: 1px solid #f5f5f5;
    transition: all .2s ease;
}

    .notification-item:hover {
        background: #f8fbff;
    }

    .notification-item.unread {
        background: #eef5ff;
    }

.notification-title {
    font-weight: 600;
    color: #1b1f24;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

.notification-time {
    color: #9aa0a6;
}

.notification-footer {
    padding: 12px;
    text-align: center;
    background: #fafbfc;
}

    .notification-footer a {
        text-decoration: none;
        font-weight: 500;
    }

.empty-notifications {
    padding: 24px;
    text-align: center;
    color: #9aa0a6;
}



