/* ==========================================================================
   CSS Variables (Client Palette & Typography)
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-primary: #fdfbfb;
    /* Off-White Canvas */
    --color-text-primary: #180107;
    /* Near Black */
    --color-secondary: #471922;
    /* Deep Burgundy */
    --color-accent: #9b3a4e;
    /* Bold Crimson */
    --color-highlight: #ee778e;
    /* Soft Rose */

    /* Typography */
    --font-heading: "Outfit", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

html,
body {
    /* overflow-x: hidden; */
    /* This absolutely prevents the page from scrolling left/right globally */
    width: 100%;
    position: relative;
}

/* ==========================================================================
   Global Resets & Base Styles
   ========================================================================== */
body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
}

/* Make the mega menu grid scrollable */
.mega-menu-grid {
    max-height: 70vh; /* Limits height to 70% of the viewport height */
    overflow-y: auto; /* Adds a vertical scrollbar if content exceeds max-height */
    overflow-x: hidden; /* Prevents horizontal scrolling */
    padding-right: 10px; /* Space for the scrollbar */
}

/* Custom Scrollbar Styling (Optional - for a cleaner look) */
.mega-menu-grid::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mega-menu-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.mega-menu-grid::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.mega-menu {
    overflow: visible !important;
}

@media (max-height: 800px) {
    .mega-menu-grid {
        max-height: 450px;
        overflow-y: auto;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-title {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.shadow-soft {
    box-shadow: 0 12px 30px rgba(71, 25, 34, 0.08) !important;
}

/* ==========================================================================
   Global Utility Classes
   ========================================================================== */
.section-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
}

.max-w-700 {
    max-width: 700px;
}

.tracking-wide {
    letter-spacing: 1.5px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-secondary);
}

.mob-lmenu-service {
    color: #555;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
    color: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 119, 142, 0.3);
}

.btn-outline-secondary {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg-primary);
}

/* ==========================================================================
   Navbar & Mega Menu
   ========================================================================== */
.custom-navbar {
    background-color: rgba(253, 251, 251, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(71, 25, 34, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

.brand-title {
    width: 180px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-primary) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent) !important;
}

/* The magic for full-width mega menus */
.mega-menu-wrapper {
    position: static !important;
    /* Forces dropdown to span screen width */
}

.mega-menu {
    width: 100vw;
    left: 0;
    right: 0;
    border: none;
    border-radius: 0 0 24px 24px;
    padding: 3rem 5%;
    background-color: var(--color-bg-primary);
    border-top: 1px solid rgba(71, 25, 34, 0.05);
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    display: block;
    /* Override bootstrap display none */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Show mega menu on hover for desktop */
@media (min-width: 992px) {
    .mega-menu-wrapper:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
}

.service-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.text-accent {
    color: var(--color-accent) !important;
}

.sub-services li {
    margin-bottom: 0.5rem;
}

.sub-services a {
    color: var(--color-text-primary);
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
}

.sub-services a:hover {
    color: var(--color-accent);
    opacity: 1;
    padding-left: 5px;
    /* Slight nudge effect */
}

.view-all-item a {
    color: var(--color-accent);
}

.view-all-item a:hover {
    color: var(--color-accent);
}

.pro-list a {
    font-weight: 500;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: var(--color-bg-primary);
    padding-top: 80px;
    /* Offset for fixed navbar */
    /* overflow: hidden; */
}

/* Organic Background Blobs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background-color: var(--color-highlight);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background-color: rgba(155, 58, 78, 0.1);
    /* Lighter accent */
    bottom: 10%;
    left: -50px;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.badge-organic {
    display: inline-block;
    background-color: rgba(238, 119, 142, 0.15);
    /* Highlight tint */
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 90%;
}

/* Search Bar Component */
.hero-search-bar {
    background: #ffffff;
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(71, 25, 34, 0.1);
}

/* Updated Search Group to row layout for the icons */
.search-input-group {
    display: flex;
    flex-direction: row;
    /* Changed from column to row */
    align-items: center;
}

/* Ensure the inputs don't have Bootstrap's default padding throwing off alignment */
.custom-input.p-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    height: auto;
}

.search-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 2px;
    /* padding-left: 0.75rem; */
}

.custom-input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 0.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-primary);
}

.custom-input::placeholder {
    color: #a0a0a0;
}

.btn-search {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-search:hover {
    background-color: var(--color-text-primary);
    color: #ffffff;
}

/* Trust Indicators */
.avatar {
    width: 32px;
    height: 32px;
    border: 2px solid #ffffff;
    margin-right: -10px;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-accent {
    background-color: var(--color-accent) !important;
}

.bg-highlight {
    background-color: var(--color-highlight) !important;
}

.trust-text {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Hero Image & Organic Shapes */
.image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    /* The "Organic" Shape - asymmetric border radius */
    border-radius: 30px 120px 30px 120px;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.bg-accent-light {
    background-color: rgba(155, 58, 78, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none !important;
        border-radius: 0;
        padding: 1rem;
        display: none;
        /* Let bootstrap handle collapse on mobile */
    }

    .mega-menu.show {
        display: block;
    }

    .hero-search-bar form {
        flex-direction: column;
        gap: 1rem;
    }

    .search-input-group.border-end {
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding-bottom: 1rem;
    }

    .btn-search {
        width: 100%;
    }

    .floating-card {
        left: 10px;
        bottom: 10px;
    }
}

/* ==========================================================================
   Trusted Brands Marquee Section
   ========================================================================== */
.brand-marquee-section {
    background-color: var(--color-bg-primary);
    overflow: hidden;
}

/* Container with Gradient Masks for fading edges */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    /* This creates the fade effect on the left and right boundaries */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

/* The Track that holds the content and animates */
.marquee-track {
    display: flex;
    width: max-content; /* Changed from fit-content to ensure stability */
    animation: scrollMarquee 25s linear infinite; /* Lower = Faster */
}

/* Hover to Pause mechanic */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    /* justify-content: flex-start;  <-- Change from space-around to flex-start */
    justify-content: flex-start;
    gap: 15rem; /* INCREASE DISTANCE: Adjust this value for more/less space */
    padding-right: 15rem; /* Must match the gap value for a smooth loop */
}

.brand-logo {
    height: 100px;
    max-width: 180px;
    flex-shrink: 0; /* Prevents logos from squishing when space is tight */
    object-fit: contain;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Logo turns to full color and opacity on hover */
.brand-logo:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}

/* The Infinite Scroll Keyframes */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Translates exactly 50% of the total width (which equals one .marquee-content block) */
        transform: translateX(-50%);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .marquee-content {
        gap: 3rem;
        padding-right: 3rem;
    }

    .brand-logo {
        height: 30px;
    }
}

/* ==========================================================================
   Trust & Validation Section (Dark Theme Updates)
   ========================================================================== */
.bg-dark-burgundy {
    background-color: var(--color-secondary);
    /* #471922 */
    color: var(--color-bg-primary);
    /* Off-white base text */
}

/* Override text colors specifically for this dark section */
.bg-dark-burgundy .section-title,
.bg-dark-burgundy .trust-title {
    color: var(--color-bg-primary);
    /* Make headings white/off-white */
}

.bg-dark-burgundy .section-subtitle,
.bg-dark-burgundy .trust-desc {
    color: rgba(253, 251, 251, 0.75);
    /* Soft, slightly transparent white for readability */
}

.trust-card {
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 16px;
}

/* Subtle background glow on hover for the card */
.trust-card:hover {
    background-color: rgba(24, 1, 7, 0.2);
    /* Slight darkening using #180107 */
}

/* Icon Wrapper Styling */
.trust-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: rgba(238, 119, 142, 0.1);
    /* Highlight color (#EE778E) at 10% opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s ease;
}

/* SVG Icon Color */
.trust-svg {
    stroke: var(--color-highlight);
    /* Use #EE778E so it pops off the dark background */
}

.trust-card:hover .trust-icon-wrapper {
    transform: scale(1.1);
    background-color: rgba(238, 119, 142, 0.25);
    /* Brighten the background circle on hover */
}

/* ==========================================================================
   Core Services Section
   ========================================================================== */
.bg-rose-tint {
    /* A very faint, warm background to separate it from the white trust section */
    background-color: #fcf9fa;
}

.service-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.service-card {
    border-radius: 20px;
    border: 1px solid rgba(95, 68, 73, 0.493);
    /* Very faint secondary color border */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-title {
    color: var(--color-secondary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-action {
    font-size: 0.95rem;
    position: relative;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

/* Hover State Interactions */
.service-card-link:hover .service-card {
    transform: translateY(-8px);
    border-color: var(--color-highlight);
    box-shadow: 0 15px 35px rgba(71, 25, 34, 0.06);
}

.service-card-link:hover .service-title {
    color: var(--color-accent);
}

.service-card-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* ==========================================================================
   Featured Professionals Section (Light Theme)
   ========================================================================== */
.bg-light-canvas {
    background-color: var(--color-bg-primary);
    /* #FDFBFB */
}

/* --- Professional Profile Cards --- */
.pro-card {
    border: 1px solid rgba(46, 17, 23, 0.315);
    /* Faint burgundy border */
    border-radius: 24px;
    padding: 2.5rem 1.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pro-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-highlight);
    box-shadow: 0 15px 35px rgba(71, 25, 34, 0.06);
}

/* Image Wrapper (Gradient Ring) */
.pro-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    /* Space for the gradient border */
    background: linear-gradient(
        135deg,
        var(--color-highlight),
        var(--color-accent)
    );
}

.pro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    /* Matches the white card background so the ring floats */
}

/* Text & Typography within cards */
.pro-name {
    color: var(--color-secondary);
    /* Deep Burgundy */
    font-weight: 700;
}

.pro-title {
    font-size: 0.875rem;
    color: #666666;
    /* Muted gray for readability on white */
}

/* Skill Tags */
.pro-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background-color: rgba(155, 58, 78, 0.08);
    /* Very faint Accent color */
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

/* Action Button inside Card */
.btn-pro-link {
    background-color: transparent;
    color: var(--color-secondary);
    border: 1px solid rgba(71, 25, 34, 0.2);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pro-card:hover .btn-pro-link {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}

.pr-mt-custom1 {
    margin-top: 100px;
}

.pr-det-mt-custom1 {
    margin-top: 120px;
}

.pr-det-pad-custom1 {
    padding-bottom: 100px;
}

/* ==========================================================================
   Image & Quote Section (Mockup Matched)
   ========================================================================== */
.cta-section {
    overflow: hidden !important;
    width: 100%;
    max-width: 100vw;
}

.bg-dark-burgundy {
    background-color: var(--color-secondary);
    /* #471922 */
}

.min-vh-75 {
    min-height: 75vh;
    /* Ensures the split screen has substantial height */
}

.max-w-600 {
    max-width: 600px;
}

/* Background Circle Accent (Matched to mockup right side) */
.bg-shape-accent {
    position: absolute;
    top: 50%;
    right: -15%;
    transform: translateY(-50%);
    width: 55vw;
    height: 55vw;
    background-color: var(--color-text-primary);
    /* #180107 */
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
}

.text-white-50 {
    color: rgba(253, 251, 251, 0.7) !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Image Side Styling --- */
.media-wrapper {
    overflow: hidden;
    position: relative;
    /* Removed the border-radius so it sits flush like the mockup */
}

.media-image {
    object-fit: cover;
    object-position: center;
}

/* --- Form Styling to match the Mockup --- */
.custom-quote-form .custom-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    padding-left: 0.2rem;
}

.custom-quote-form .form-control {
    background-color: rgba(24, 1, 7, 0.3);
    /* Dark, borderless translucent background */
    border: 1px solid rgba(253, 253, 253, 0.226);
    color: var(--color-bg-primary);
    border-radius: 8px;
    /* Softer, smaller radius */
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.custom-quote-form .form-control:focus {
    background-color: rgba(24, 1, 7, 0.5);
    outline: none;
    box-shadow: 0 0 0 2px rgba(238, 119, 142, 0.3);
    /* Soft pink focus ring instead of harsh border */
    color: var(--color-bg-primary);
}

.custom-quote-form .form-control::placeholder {
    color: rgba(253, 251, 251, 0.3);
}

/* --- Custom Styled Dropdown --- */
.custom-select-styled {
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(24, 1, 7, 0.3);
    border: 1px solid rgba(253, 253, 253, 0.226);
    color: rgba(253, 251, 251, 0.5);
    /* Slightly faded until selected */
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    /* Custom SVG Arrow */
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 14px;
    transition: all 0.3s ease;
}

.custom-select-styled:focus {
    background-color: rgba(24, 1, 7, 0.5);
    outline: none;
    box-shadow: 0 0 0 2px rgba(238, 119, 142, 0.3);
    color: var(--color-bg-primary);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23EE778E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Scrollable dropdown list styling */
.custom-select-styled::-webkit-listbox {
    background-color: var(--color-secondary);
    color: var(--color-bg-primary);
}

.custom-select-styled option {
    background-color: var(--color-text-primary);
    color: var(--color-bg-primary);
    padding: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .media-wrapper {
        min-height: 400px;
    }

    .form-content-wrapper {
        padding-top: 2rem;
    }
}

/* ==========================================================================
   Customer Review / Testimonial Section
   ========================================================================== */
.bg-light-canvas {
    background-color: var(--color-bg-primary);
    /* #FDFBFB */
}

/* Review Card Styling */
.review-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(71, 25, 34, 0.05);
    /* Faint burgundy border */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin: 1rem;
    /* Prevents shadow clipping */
}

.quote-icon-wrapper {
    opacity: 0.2;
    transform: scale(1.2);
}

.review-text {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    /* Deep Burgundy */
    line-height: 1.6;
    font-weight: 500;
}

/* Client Details */
.client-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(238, 119, 142, 0.3);
    /* Soft pink border */
}

.client-name {
    color: var(--color-text-primary);
    font-weight: 700;
}

.matched-badge {
    background-color: rgba(155, 58, 78, 0.08);
    /* Transparent Accent */
    padding: 2px 10px;
    border-radius: 50px;
    display: inline-block;
}

/* --- Custom Override for Bootstrap Carousel Controls --- */
.custom-carousel {
    padding-bottom: 2rem;
}

/* Position the buttons nicely on the outside edges */
.custom-control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    color: var(--color-secondary);
    border-radius: 50%;
    border: 1px solid rgba(71, 25, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    /* Override Bootstrap's default opacity */
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev.custom-control-btn {
    left: 0px;
}

.carousel-control-next.custom-control-btn {
    right: 0px;
}

.custom-control-btn:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 8px 20px rgba(155, 58, 78, 0.3);
}

/* Make sure the SVGs inside the buttons size correctly */
.custom-control-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .review-card {
        padding: 2rem 1.5rem;
    }

    .review-text {
        font-size: 1.1rem;
    }

    /* Move controls below the card on mobile to prevent overlapping text */
    .custom-control-btn {
        top: auto;
        bottom: -10px;
        transform: none;
    }

    .carousel-control-prev.custom-control-btn {
        left: 0%;
    }

    .carousel-control-next.custom-control-btn {
        right: 0%;
    }
}

/* ==========================================================================
   Mega Footer Section
   ========================================================================== */
.mega-footer {
    /* Using Near Black variable we defined earlier */
    background-color: var(--color-text-primary);
    /* #180107 */
    color: var(--color-bg-primary);
    /* #FDFBFB */
    font-family: var(--font-body);
}

.footer-heading {
    font-family: var(--font-heading);
    color: var(--color-bg-primary);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

/* Subtle underline for the headings */
.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-highlight);
    /* #EE778E */
    border-radius: 2px;
}

.footer-text {
    color: rgba(253, 251, 251, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Social Media Icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(253, 251, 251, 0.05);
    color: var(--color-bg-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(253, 251, 251, 0.1);
}

.social-icon:hover {
    background-color: var(--color-accent);
    /* #9B3A4E */
    color: #ffffff;
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 58, 78, 0.3);
}

/* --- Lengthy Services List (CSS Columns) --- */
.footer-services-grid {
    column-count: 2;
    /* Splits the long list into two neat columns */
    column-gap: 3rem;
}

.service-category {
    color: var(--color-highlight);
    /* #EE778E */
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.footer-link-list li {
    margin-bottom: 0.5rem;
}

.footer-link-list a,
.footer-link {
    color: rgba(253, 251, 251, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-link-list a:hover,
.footer-link:hover {
    color: var(--color-highlight);
    /* #EE778E */
    padding-left: 5px;
    /* Slight nudge effect */
}

/* Contact Info */
.contact-icon {
    color: var(--color-highlight);
    flex-shrink: 0;
    /* Prevents icons from squishing if address is long */
}

/* Map Embedded Styling */
.footer-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(253, 251, 251, 0.05);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-map-wrapper:hover {
    opacity: 1;
}

/* Legal Bottom Bar */
.footer-legal-links a {
    color: rgba(253, 251, 251, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--color-bg-primary);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-services-grid {
        column-count: 1;
        /* Stack to 1 column on tablets/mobile */
    }
}

/* ==========================================================================
   Inner Page Banner (Services)
   ========================================================================== */
.page-banner {
    background-color: var(--color-secondary);
    /* Deep Burgundy */
    padding-top: 160px;
    /* Critical: Offsets the fixed navbar */
    padding-bottom: 80px;
}

/* Abstract geometric shape to prevent a flat background */
.bg-shape-banner {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background-color: var(--color-text-primary);
    /* Near Black */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    /* Organic shape from your CTA section */
    opacity: 0.3;
    z-index: 1;
    transform: rotate(-15deg);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* --- Custom Breadcrumb Styling for Dark Themes --- */
.custom-breadcrumb {
    align-items: center;
}

/* Custom sleek separator instead of the default slash */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(253, 251, 251, 0.4);
    font-size: 1.5rem;
    line-height: 0.8;
    vertical-align: middle;
}

.custom-breadcrumb .breadcrumb-item a {
    color: var(--color-highlight);
    /* Soft Rose/Pink */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    transition: opacity 0.3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--color-highlight);
    opacity: 0.7;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: rgba(253, 251, 251, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    padding-top: 2px;
    /* Visual vertical alignment fix */
}

/* ==========================================================================
   Banner Search & Animated Card Stack
   ========================================================================== */

/* 1. Search Bar Styling */
.search-container {
    max-width: 600px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    /* Translucent Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-highlight);
    box-shadow: 0 0 30px rgba(155, 58, 78, 0.3);
}

.search-icon {
    margin-left: 20px;
    color: var(--color-highlight);
    opacity: 0.8;
}

.search-box input {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 15px;
    font-size: 1rem;
}

.search-box input::placeholder {
    color: rgba(253, 251, 251, 0.5);
}

.search-box input:focus {
    background: transparent;
    box-shadow: none;
    color: white;
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--color-highlight);
    transform: translateY(-2px);
}

/* 2. Rummy Card Stack Animation */
.profile-card-stack {
    position: relative;
    height: 400px;
    width: 300px;
    margin-left: auto;
}

.stack-card {
    position: absolute;
    width: 280px;
    height: 360px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--color-secondary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.5s ease;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(24, 1, 7, 0.9), transparent);
    color: white;
}

.badge-mini {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-highlight);
    font-weight: 700;
}

/* Positioning cards like a rummy hand */
.card-1 {
    z-index: 3;
    transform: rotate(-5deg);
    top: 0;
    left: 0;
}

.card-2 {
    z-index: 2;
    transform: rotate(5deg);
    top: 15px;
    left: 40px;
}

.card-3 {
    z-index: 1;
    transform: rotate(15deg);
    top: 30px;
    left: 80px;
}

/* Floating Animation */
.profile-card-stack:hover .card-1 {
    transform: rotate(-8deg) translateY(-10px) translateX(-10px);
}

.profile-card-stack:hover .card-2 {
    transform: rotate(2deg) translateY(-20px);
}

.profile-card-stack:hover .card-3 {
    transform: rotate(12deg) translateY(-10px) translateX(10px);
}

/* 3. Loading Shimmer Animation */
.shimmer-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Mobile adjust */
@media (max-width: 991px) {
    .page-banner {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Advanced Sticky Sidebar (Sticky Header & Service Icons)
   ========================================================================== */

.sidebar-wrapper {
    position: -webkit-sticky;
    position: sticky !important;
    top: 120px !important;
    max-height: calc(100vh - 140px);
    /* Keeps it within viewport */
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1020;
    border: 1px solid rgba(71, 25, 34, 0.06);
}

/* Make the title stay at the top of the sidebar scroll */
.sidebar-header.sticky-top {
    top: 0 !important;
    /* Resets to the top of its parent container */
    border-bottom: 1px solid rgba(71, 25, 34, 0.03);
}

.app-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: #555;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Service-specific Icon (Left) */
.nav-main-icon {
    color: rgba(71, 25, 34, 0.4);
    /* Muted burgundy */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* Navigation Chevron (Right) */
.nav-chevron {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: var(--color-accent);
}

/* Hover/Active states */
.app-nav-link:hover {
    background-color: rgba(155, 58, 78, 0.03);
    color: var(--color-text-primary);
}

.app-nav-link.active {
    background-color: rgba(155, 58, 78, 0.08);
    color: var(--color-accent);
}

.app-nav-link:hover .nav-main-icon,
.app-nav-link.active .nav-main-icon {
    color: var(--color-accent);
    transform: scale(1.1);
}

.app-nav-link:hover .nav-chevron,
.app-nav-link.active .nav-chevron {
    opacity: 1;
    transform: translateX(0);
}

/* Premium Scrollbar */
.sidebar-wrapper::-webkit-scrollbar {
    width: 5px;
}

.sidebar-wrapper::-webkit-scrollbar-thumb {
    background: rgba(71, 25, 34, 0.1);
    border-radius: 10px;
}

.sidebar-wrapper {
    scrollbar-width: thin;
    scrollbar-color: rgba(71, 25, 34, 0.1) transparent;
}

/* Mobile logic: Disable scrollable sidebar behavior */
@media (max-width: 991px) {
    .sidebar-wrapper {
        position: static !important;
        max-height: none;
        overflow-y: visible;
    }

    .sidebar-header.sticky-top {
        position: static !important;
    }
}

/* ==========================================================================
   Interactive Process Section (Hover-Driven Progress Bar)
   ========================================================================== */

/* --- 1. Progress Bar Layout --- */
.progress-tracker-wrapper {
    position: relative;
    /* Centers the tracker over the 3-column grid below it */
    width: 66.666%;
    margin-left: 16.666%;
}

.progress-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(71, 25, 34, 0.08);
    transform: translateY(-50%);
    border-radius: 4px;
    z-index: 1;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    /* Default width (Node 1) */
    background-color: var(--color-accent);
    /* Crimson highlight */
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.progress-nodes-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.progress-node {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border: 2px solid rgba(71, 25, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(71, 25, 34, 0.4);
    transition: all 0.5s ease;
}

/* Default state before hovering */
.progress-node.active-default {
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 8px rgba(155, 58, 78, 0.1);
}

/* --- 2. The Process Cards --- */
.process-card {
    border: 1px solid rgba(71, 25, 34, 0.05);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    background-color: var(--color-bg-primary);
    /* Off-white */
}

.process-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(155, 58, 78, 0.05);
    /* Faint accent background */
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Card Hover Effects */
.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-highlight);
    /* Soft Pink Border */
    box-shadow: 0 20px 40px rgba(71, 25, 34, 0.06);
    background-color: #ffffff;
}

.process-card:hover .process-icon {
    background-color: var(--color-accent);
    color: #ffffff;
    transform: scale(1.1);
}

/* --- 3. The Magic: Hover-Driven Progress Bar Logic --- */

/* When hovering Step 1 */
.process-interactive-area:has(.step-1:hover) .progress-fill {
    width: 0%;
}

.process-interactive-area:has(.step-1:hover) .node-1 {
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 8px rgba(155, 58, 78, 0.1);
}

/* When hovering Step 2 */
.process-interactive-area:has(.step-2:hover) .progress-fill {
    width: 50%;
}

.process-interactive-area:has(.step-2:hover) .node-1 {
    box-shadow: none;
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
}

.process-interactive-area:has(.step-2:hover) .node-2 {
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 8px rgba(155, 58, 78, 0.1);
}

/* Override the default active shadow if user hovers anything else */
.process-interactive-area:has(.step-2:hover) .node-1.active-default,
.process-interactive-area:has(.step-3:hover) .node-1.active-default {
    box-shadow: none;
}

/* When hovering Step 3 */
.process-interactive-area:has(.step-3:hover) .progress-fill {
    width: 100%;
}

.process-interactive-area:has(.step-3:hover) .node-1,
.process-interactive-area:has(.step-3:hover) .node-2 {
    box-shadow: none;
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
}

.process-interactive-area:has(.step-3:hover) .node-3 {
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 8px rgba(155, 58, 78, 0.1);
}

/* ==========================================================================
   Final CTA Section (Light Background)
   ========================================================================== */

/* Target the specific heading color to ensure it uses the deep burgundy */
.final-cta-section .text-dark-burgundy {
    color: var(--color-secondary);
    /* #471922 */
}

/* Make the paragraph text slightly larger for better readability in a centered layout */
.final-cta-section .text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* The Decorative Icon Above the Title */
.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(155, 58, 78, 0.08);
    /* Faint accent background */
    color: var(--color-accent);
    /* Crimson icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(155, 58, 78, 0.15);
    /* Subtle pulse animation to draw the eye */
    animation: gentlePulse 3s infinite ease-in-out;
}

@keyframes gentlePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(155, 58, 78, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(155, 58, 78, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(155, 58, 78, 0);
    }
}

/* Ensure the secondary outline button looks good on the light background */
.final-cta-section .btn-outline-secondary {
    border-color: rgba(71, 25, 34, 0.2);
    /* Faint border so it isn't too harsh */
    color: var(--color-secondary);
}

.final-cta-section .btn-outline-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg-primary);
    border-color: var(--color-secondary);
}

/* ==========================================================================
   Professionals Directory Banner (Clean & Corrected)
   ========================================================================== */
.pro-directory-banner {
    position: relative;
    z-index: 10;
    /* Safe level: Above the next section, but safely below the Navbar */
    min-height: 85vh;
    padding-top: 100px;
    padding-bottom: 80px;
}

.text-dark-burgundy {
    color: var(--color-secondary);
    /* #471922 */
}

/* --- 1. Background Blur Animations --- */
.anim-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    z-index: 0;
    animation: driftPhysics 15s infinite alternate ease-in-out;
}

.ball-1 {
    width: 350px;
    height: 350px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.ball-2 {
    width: 450px;
    height: 450px;
    bottom: 5%;
    right: 5%;
    animation-delay: -5s;
}

.ball-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes driftPhysics {
    0% {
        transform: translate(0px, 0px);
    }

    50% {
        transform: translate(120px, 20px);
    }

    100% {
        transform: translate(-50px, 80px);
    }
}

/* --- 2. Corrected Professional Search Bar --- */
.pro-search-bar {
    max-width: 1050px;
    border-radius: 60px;
    border: 1px solid rgba(71, 25, 34, 0.08);
}

.pro-search-bar .search-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.pro-search-bar .form-control {
    font-size: 0.95rem;
    color: var(--color-text-primary);
}

.pro-search-bar .form-control::placeholder {
    color: #a0a0a0;
}

.pro-search-bar .form-control:focus {
    box-shadow: none;
    outline: none;
}

/* Stops the search button from stretching or squishing */
.search-button-wrapper {
    flex: 0 0 auto;
    min-width: 160px;
    /* Forces a minimum width so the pill shape remains intact */
}

/* --- Custom Type Dropdown --- */
.custom-type-dropdown .dropdown-menu-custom {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    min-width: 250px;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(71, 25, 34, 0.08);
    max-height: 280px;
    overflow-y: auto;
    z-index: 1050000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-type-dropdown:focus-within .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-category {
    padding: 12px 20px 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-accent);
}

.dropdown-item-custom {
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-item-custom:hover {
    background-color: rgba(238, 119, 142, 0.1);
    color: var(--color-accent);
    padding-left: 25px;
}

/* --- 3. Vertical Testimonial Stacks (Clean White Cards) --- */
.testimonial-vertical-stack {
    position: absolute;
    width: 260px;
    /* Slightly wider to fit the text cleanly */
    height: 80px;
    z-index: 1;
    /* Pushed behind center content */
}

.v-testimony-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(71, 25, 34, 0.05);
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    transform-origin: center center;
}

.testimony-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-highlight);
}

.testimony-text h6 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.testimony-text p {
    margin: 0;
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

/* Bottom Left Stack Positioning */
.stack-bottom-left {
    bottom: 40%;
    left: 2%;
}

.stack-bottom-left .card-3 {
    transform: translateY(40px) rotate(-12deg);
    z-index: 1;
    opacity: 0.7;
}

.stack-bottom-left .card-2 {
    transform: translateY(20px) rotate(-6deg);
    z-index: 2;
    opacity: 0.85;
}

.stack-bottom-left .card-1 {
    transform: translateY(0px) rotate(0deg);
    z-index: 3;
    opacity: 1;
}

.stack-bottom-left:hover .card-3 {
    transform: translate(-30px, 60px) rotate(-18deg);
    opacity: 1;
}

.stack-bottom-left:hover .card-2 {
    transform: translate(-15px, 30px) rotate(-9deg);
    opacity: 1;
}

.stack-bottom-left:hover .card-1 {
    transform: translate(10px, -10px) rotate(4deg);
}

/* Top Right Stack Positioning */
.stack-top-right {
    top: 22%;
    right: 5%;
}

.stack-top-right .card-3 {
    transform: translateY(40px) rotate(12deg);
    z-index: 1;
    opacity: 0.7;
}

.stack-top-right .card-2 {
    transform: translateY(20px) rotate(6deg);
    z-index: 2;
    opacity: 0.85;
}

.stack-top-right .card-1 {
    transform: translateY(0px) rotate(0deg);
    z-index: 3;
    opacity: 1;
}

.stack-top-right:hover .card-3 {
    transform: translate(30px, 60px) rotate(18deg);
    opacity: 1;
}

.stack-top-right:hover .card-2 {
    transform: translate(15px, 30px) rotate(9deg);
    opacity: 1;
}

.stack-top-right:hover .card-1 {
    transform: translate(-10px, -10px) rotate(-4deg);
}

/* Responsive adjustments */
@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid rgba(71, 25, 34, 0.1);
    }

    .search-button-wrapper {
        width: auto !important;
    }
}

@media (max-width: 991px) {
    .pro-search-bar {
        border-radius: 24px;
        padding: 1.5rem !important;
    }

    .border-end-lg {
        border-right: none;
        border-bottom: 1px solid rgba(71, 25, 34, 0.1);
        margin-bottom: 15px;
        padding-bottom: 15px !important;
    }

    .search-button-wrapper {
        min-width: 100%;
        padding: 0 !important;
    }
}

/* ==========================================================================
   Professionals Listing: Custom Sidebar Accordion
   ========================================================================== */

/* Overriding Bootstrap's default accordion borders and backgrounds */
.custom-pro-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(71, 25, 34, 0.05);
    /* Faint separator */
    background: transparent;
}

.custom-pro-accordion .accordion-item:last-child {
    border-bottom: none;
}

/* Accordion Main Category Buttons */
.custom-pro-accordion .accordion-button {
    background: transparent;
    color: var(--color-secondary);
    /* Deep Burgundy */
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    padding: 1.25rem 0.5rem;
    box-shadow: none !important;
    /* Removes harsh blue focus rings */
}

/* When the accordion is Open (Active State) */
.custom-pro-accordion .accordion-button:not(.collapsed) {
    color: var(--color-accent);
    /* Crimson highlight */
    background: transparent;
    box-shadow: none;
}

/* Customizing the Bootstrap Chevron Icon to match your brand */
.custom-pro-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23471922'%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");
    transition: transform 0.3s ease;
}

.custom-pro-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239B3A4E'%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");
    transform: rotate(-180deg);
}

/* The Sub-Services Links Inside the Accordion */
.pro-sub-service-list {
    padding-bottom: 1rem;
    padding-left: 0.5rem;
}

.pro-sub-service-link {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    color: #666666;
    /* Muted gray */
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    text-decoration: none;
    position: relative;
}

/* Add a tiny dot before the link to look like a precise app menu */
.pro-sub-service-link::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: transparent;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.pro-sub-service-link:hover {
    background-color: rgba(253, 251, 251, 0.8);
    color: var(--color-text-primary);
    padding-left: 1.25rem;
}

.pro-sub-service-link:hover::before {
    background-color: rgba(71, 25, 34, 0.2);
}

/* Active Selected Sub-Service State */
.pro-sub-service-link.active {
    background-color: rgba(238, 119, 142, 0.1);
    /* Highlight Pink tint */
    color: var(--color-accent);
    /* Crimson bold */
    font-weight: 600;
}

.pro-sub-service-link.active::before {
    background-color: var(--color-accent);
}

/* Allow the sidebar to scroll internally if the accordion gets too long */
.sidebar-wrapper {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .professionals-listing .sidebar-wrapper {
        position: static !important;
        max-height: none;
        margin-bottom: 2rem;
    }
}

/* --- Accordion Icon Styling --- */
.custom-pro-accordion .accordion-button .acc-icon {
    color: rgba(71, 25, 34, 0.4);
    /* Muted burgundy for inactive */
    transition: all 0.3s ease;
}

.custom-pro-accordion .accordion-button:hover .acc-icon {
    color: var(--color-highlight);
    /* Lightens on hover */
}

/* Active State Icon Color */
.custom-pro-accordion .accordion-button:not(.collapsed) .acc-icon {
    color: var(--color-accent);
    /* Crimson highlight when open */
    transform: scale(1.1);
    /* Subtle pop effect */
}

/* Fix spacing issue with inner flexbox in Bootstrap accordion */
.custom-pro-accordion .accordion-button {
    display: flex;
    align-items: center;
}

/* --- Ensure Sidebar Wrapper acts correctly --- */
.professionals-listing .sidebar-wrapper {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    /* Enables internal scroll for the accordion */
    overflow-x: hidden;
}

/* Premium internal scrollbar specifically for the filter sidebar */
.professionals-listing .sidebar-wrapper::-webkit-scrollbar {
    width: 5px;
}

.professionals-listing .sidebar-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.professionals-listing .sidebar-wrapper::-webkit-scrollbar-thumb {
    background: rgba(71, 25, 34, 0.1);
    border-radius: 10px;
}

/* ==========================================================================
   Professionals Listing: Custom Sort Dropdown
   ========================================================================== */

/* The interactive pill button */
.custom-sort-dropdown .btn-sort {
    background-color: #ffffff;
    border: 1px solid rgba(71, 25, 34, 0.05) !important;
    font-size: 0.95rem;
    min-width: 170px;
    transition: all 0.3s ease;
}

.custom-sort-dropdown .btn-sort:hover,
.custom-sort-dropdown .btn-sort:focus,
.custom-sort-dropdown .btn-sort.show {
    border-color: var(--color-highlight) !important;
    box-shadow: 0 5px 15px rgba(238, 119, 142, 0.1) !important;
    color: var(--color-secondary);
}

/* Chevron Rotation Animation */
.custom-sort-dropdown .sort-chevron {
    transition: transform 0.3s ease;
}

.custom-sort-dropdown .btn-sort.show .sort-chevron {
    transform: rotate(-180deg);
}

/* The floating dropdown menu box */
.custom-sort-dropdown .dropdown-menu {
    min-width: 200px;
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: 16px !important;
    /* Premium rounded corners */
    animation: fadeInSort 0.2s ease forwards;
}

/* Individual list items */
.custom-sort-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.custom-sort-dropdown .dropdown-item:hover {
    background-color: rgba(253, 251, 251, 0.8);
    /* Faint gray background */
    color: var(--color-accent);
    padding-left: 1.25rem;
    /* Signature right-nudge effect */
}

/* The currently selected item */
.custom-sort-dropdown .dropdown-item.active {
    background-color: rgba(238, 119, 142, 0.1);
    /* Soft Highlight Pink tint */
    color: var(--color-accent);
    /* Crimson bold */
    font-weight: 700;
}

/* Smooth fade-up entry for the menu */
@keyframes fadeInSort {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Service Detail Page Styles
   ========================================================================== */

/* 1. Detail Page Banner (Shorter than the main directory banner) */
.service-detail-banner {
    position: relative;
    z-index: 10;
    min-height: 45vh;
    /* A tighter, more focused header */
    padding-top: 140px;
    /* Adjusts for fixed navbar */
    padding-bottom: 60px;
}

/* Ensure Breadcrumb links on the detail page stay highly visible */
.service-detail-banner .custom-breadcrumb .breadcrumb-item a {
    color: var(--color-accent);
}

.service-detail-banner .custom-breadcrumb .breadcrumb-item.active {
    color: var(--color-secondary);
}

/* 2. Service Overview Section */
.line-height-lg {
    line-height: 1.8;
    /* Increases readability for dense descriptive text */
}

.service-overview .bg-light-canvas {
    transition: all 0.3s ease;
}

/* Subtle interactive hover for the Quick Values box */
.service-overview .bg-light-canvas:hover {
    box-shadow: 0 10px 30px rgba(71, 25, 34, 0.05);
    transform: translateY(-2px);
}

/* ==========================================================================
   Similar Services Carousel Controls
   ========================================================================== */

/* Custom Circular Navigation Buttons for Top Right Header */
.btn-nav-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--color-secondary);
    border: 1px solid rgba(71, 25, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-nav-circle:hover,
.btn-nav-circle:focus {
    background-color: var(--color-secondary);
    color: #ffffff;
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(71, 25, 34, 0.15) !important;
}

/* Ensure smooth transition between slides without squishing the cards */
#similarServicesCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Adjustments for smaller screens */
@media (max-width: 576px) {
    .btn-nav-circle {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   Professional Detail Page (Zocdoc-Style UX)
   ========================================================================== */

/* --- 1. Profile Header & Avatar --- */
.pro-detail-avatar-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(
        135deg,
        var(--color-highlight),
        var(--color-accent)
    );
    box-shadow: 0 10px 25px rgba(155, 58, 78, 0.2);
}

.pro-detail-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
}

/* --- 2. Info Grids & Lists --- */
.highlight-box {
    border-color: rgba(71, 25, 34, 0.05) !important;
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(71, 25, 34, 0.05) !important;
}

.cred-icon-box {
    width: 54px;
    height: 54px;
}

.line-height-lg {
    line-height: 1.8;
}

/* --- 3. Sticky Booking Widget (Right Column) --- */
.sticky-booking-widget {
    position: -webkit-sticky;
    position: sticky;
    z-index: 10;
    transition: top 0.3s ease;
}

/* Ensures the form elements look clean, spacious, and premium */
.pro-contact-form .light-input {
    background-color: var(--color-bg-primary);
    /* Off-white canvas */
    border: 1px solid rgba(71, 25, 34, 0.1) !important;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    border-radius: 14px;
    /* Slightly softer radius */
    transition: all 0.3s ease;
}

.pro-contact-form .light-input:focus,
.custom-form-dropdown .btn-form-select.show {
    background-color: #ffffff;
    border-color: var(--color-highlight) !important;
    box-shadow: 0 0 0 3px rgba(238, 119, 142, 0.15) !important;
    outline: none;
}

.pro-contact-form .light-input::placeholder {
    color: #a0a0a0;
}

/* --- Custom Form Dropdown Styles --- */
.custom-form-dropdown .btn-form-select {
    cursor: pointer;
    color: var(--color-text-primary);
}

.custom-form-dropdown .dropdown-chevron {
    color: #a0a0a0;
    transition: transform 0.3s ease;
}

/* Rotate chevron when open */
.custom-form-dropdown .btn-form-select.show .dropdown-chevron {
    transform: rotate(-180deg);
    color: var(--color-accent);
}

/* Dropdown Menu Box */
.custom-form-dropdown .dropdown-menu {
    border-radius: 16px !important;
    background-color: #ffffff;
    animation: fadeInSort 0.2s ease forwards;
}

.custom-form-dropdown .dropdown-item {
    font-size: 0.95rem;
    color: var(--color-text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.custom-form-dropdown .dropdown-item:hover,
.custom-form-dropdown .dropdown-item.active {
    background-color: rgba(238, 119, 142, 0.08);
    /* Faint highlight pink */
    color: var(--color-accent);
    padding-left: 1.25rem;
    /* Nudge effect */
}

/* About Page */

/* Background Gradient */
.bg-dark-maroon-gradient {
    background: radial-gradient(circle at center, #4a1010 0%, #2d0a0a 100%);
    padding: 100px 0;
}

/* Card Stack Styling */
.diverse-card-stack {
    position: relative;
    height: 450px;
    width: 100%;
}

.stack-card {
    position: absolute;
    width: 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.stack-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Positioning to match the generated image */
.card-top {
    z-index: 3;
    top: 0;
    left: 20%;
}

.card-middle {
    z-index: 2;
    top: 60px;
    left: 50%;
}

.card-bottom {
    z-index: 1;
    top: 140px;
    left: 30%;
}

/* Verified Tag */
.verified-tag {
    background: white;
    color: #2d0a0a;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    width: 85%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.verified-tag i {
    color: #4a1010;
    margin-right: 5px;
}

/* About Page */

/* Contact Page */

.inner-banner-sec {
    /* Adjust '90px' to match the actual height of your header */
    margin-top: 90px;

    /* This ensures the image doesn't have extra white space below it */
    line-height: 0;
}

.inner-banner-sec img {
    /* Ensures the image behaves like a block and fills width */
    display: block;
    width: 100%;
    height: auto;
}

.ibm-bcrms-main {
    position: relative;
    background: #fff;
    padding-top: 0px;
}

.ibm-bcrms {
    position: relative;
    padding: 13px 013px;
    text-align: left;
}

.ibm-breadcrumb {
    margin-bottom: 0;
    list-style: none;
    border-radius: 0;
    padding: 0px 0;
}

.ibm-breadcrumb li {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color);
    font-weight: 500;
}

.ibm-breadcrumb li a {
    color: var(--title-color);
    font-weight: 500;
}

.ibm-breadcrumb li i {
    color: #fff;
}

.ibm-breadcrumb li:after {
    position: relative;
    margin-left: 10px;
    font-weight: 900;
    font-size: 13px;
    font-weight: 600;
    content: "/";
    color: var(--title-color);
    margin-right: 3px;
}

.ibm-breadcrumb li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.ibm-breadcrumb li:last-child:after {
    content: unset !important;
}

.ibm-bcrms h3 {
    color: var(--theme-color);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    font-family: var(--font-heading);
    text-transform: uppercase;

    margin-bottom: 0;
}

.ibm-bcrms-main-head {
    position: relative;
}

.ibm-bcrms-main-head-sub {
    position: relative;
    background: #eaeaea;
    padding: 30px 30px;
    border-radius: 10px;
}

.ibm-bcrms-main-head-sub h3 {
    color: var(--title-color);
    margin-bottom: 0;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.Contact-sec {
    position: relative;
    padding: 30px 0 30px;
    background: #fff;
    position: relative;
}

.Contact-sec .container {
    position: relative;
}

.coleft-main {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-direction: column;
}

.coleft-1 {
    position: relative;
    width: 100%;
    display: block;
}

.text-theme {
    color: var(--color-highlight) !important;
}

.coleft-2 {
    position: relative;
    width: 100%;
    display: block;
}

.sebox {
    margin-top: 0px;
}

.coniuy {
    margin-top: 0px;
}

.style-eight {
    position: relative;
    min-height: unset;
    width: 100%;
    margin-bottom: 27px;
    margin-top: 0;
    padding-right: 26px;
    background: #fffff2;
    padding: 20px 20px;
    border-radius: 10px;
    --body-color: #000000;
    --title-color: #000000;
}

.style-eight .service-box-icon {
    position: relative;
    margin-bottom: 10px;
    color: var(--title-color);
    font-size: 35px;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.style-eight .service-box-icon {
    color: #333;
    font-size: 35px;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.style-eight .service-box-icon i {
    color: var(--theme-color);
    font-size: 30px;

    border-radius: 50%;
    background: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
    background: var(--theme-color);
}

.style-eight .service-box-icon i {
    margin-bottom: 11px;
    display: inline-block;
    color: #fff;
    color: var(--theme-color);
    background: transparent;
    font-size: 50px;
}
.style-eight .service-content {
    position: relative;
    z-index: 1;
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.style-eight .service-content h3 {
    font-size: 22px;

    font-weight: 600;
    margin-bottom: 10px;
    color: var(--title-color);
}
.style-eight .service-content h3 {
    color: var(--theme-color2);
}
.style-eight .service-content p {
    margin-bottom: 0px;
    margin-top: 0px;

    line-height: 28px;
    font-weight: 400;
}
.style-eight .service-content p a {
    color: var(--white-color);
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
}
.style-eight .service-content p {
    color: var(--title-color);
}
.style-eight .service-content p a {
    color: var(--title-color);
}
.style-eight .service-content p a:hover {
    color: var(--theme-color);
}
.style-eight .service-box-icon i {
    color: var(--theme-color);
}
.style-eight.centerr .service-box-icon i {
    color: var(--theme-color);
}

.service-content {
    max-width: 690px;
    display: block;
    margin: 80px auto auto auto;
}

.main-e_socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px; /* Increased gap for a cleaner look */
    margin-top: 20px;
}

.main-e_socials a {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 42px;
    height: 42px;
    border-radius: 12px; /* Modern squircle instead of a plain circle */
    background: #f8f9fa; /* Light neutral background */
    color: var(--theme-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.main-e_socials a:hover {
    /* Only transform effects */
    transform: translateY(-5px) scale(1.2);

    /* Ensuring no color or background changes */
    color: var(--theme-color) !important;
}

/* Specific Bold Fix for WhatsApp */
.fa-whatsapp {
    font-weight: 900 !important;
}

.Contact-sec .co-in-form {
    margin-bottom: 30px;
}

.Contact-sec .co-in-form-inner textarea {
    padding-top: 15px;
    height: 113px;
    resize: none;
    min-height: 113px;
}

.co-in-form-inner form label {
    text-align: left;
    font-size: 17px;
    margin-bottom: 5px;
    font-weight: 600;
    margin-top: 5px;
}

.co-in-form {
    position: relative;
    padding: 0px 0px 0px;
    position: relative;
    background-color: #fff;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.co-in-form-inner {
    position: relative;
}

.co-in-form-inner form {
    width: 100%;
    background: #f0ffee;
    padding: 30px;
}

.co-in-form-inner input,
.co-in-form-inner select,
.co-in-form-inner textarea {
    height: 53px;
    position: relative;
    padding: 0 20px;
    font-size: 15px;
    background-color: #fff;
    display: block;
    width: 100%;
    border: none;
    border-bottom: solid 1px #e1e1e1;
    transition: border-bottom-color 1s ease 0s;
    font-weight: 500;
    color: var(--color-text-primary);
}

.co-in-form-inner textarea {
    padding-top: 15px;
    height: 100px;
    resize: none;
}

.co-in-form-inner input::placeholder {
    color: var(--color-text-primary);
}

.title-area {
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.title-area .sec-title {
    margin-bottom: 15px;
}

.sec-title {
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 600;
    font-size: 46px;
    line-height: 1.2;
}

.sec-title.style2 {
    font-weight: 600;
    font-size: 46px;
    line-height: 1.2;
    font-family: var(--title-font);
}

.form-group {
    margin-bottom: var(--bs-gutter-x);
    position: relative;
}

.clearfix {
    clear: both;
}

/* Target the placeholder specifically for the textarea */
.co-in-form-inner textarea::placeholder {
    color: var(--color-text-primary);
    /* Ensuring opacity is 1 as some browsers (like Firefox) default to 0.5 */
    opacity: 1;
}

/* For broader compatibility across older browsers */
.co-in-form-inner textarea::-webkit-input-placeholder {
    color: var(--color-text-primary);
}
.co-in-form-inner textarea::-moz-placeholder {
    color: var(--color-text-primary);
}

.co-in-form-inner input:focus,
.co-in-form-inner textarea:focus,
.co-in-form-inner select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #e1e1e1; /* Keeps your original bottom border color */
}

.style-eight .service-box-icon i {
    color: var(--color-accent); /* Replace with your desired hex code */
}

/* Contact Page */

/* Responsive adjustment for Mobile */
@media (max-width: 991px) {
    .sticky-booking-widget {
        position: relative;
        /* Removes sticky behavior on mobile to prevent layout breakage */
        top: 0 !important;
        margin-top: 1rem;
    }
}

/* Offcanvas Custom Styling */
.offcanvas {
    background-color: var(--color-bg-primary);
    width: 300px !important;
}

.offcanvas-header {
    background-color: #fff;
}

.offcanvas .nav-link {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.offcanvas .nav-link.active {
    color: var(--color-accent) !important;
}

/* Sub-menu styling */
.offcanvas .collapse {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 0.75rem;
}

.offcanvas .text-accent {
    color: var(--color-accent);
}

/* Ensure navbar toggler is visible only where needed */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block !important;
        border: none;
        padding: 0;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
}
