/* WhatsApp Floating Button - Enhanced with Floating Animation */
.whatsapp-chat-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    top: 50%;
    right: 20px;
    transform: translateY(calc(-50% - 65px));
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 3px 15px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: float-whatsapp 3s ease-in-out infinite, whatsapp-pulse 2s infinite;
}

.whatsapp-chat-btn:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    text-decoration: none;
}

.whatsapp-chat-btn i {
    margin-top: 3px;
}

/* WhatsApp Floating Animation */
@keyframes float-whatsapp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Book Service Floating Button - Enhanced with Gradient and Blinking */
.book-service-fab {
    position: fixed;
    bottom: 130px;
    right: 20px;
    background: linear-gradient(135deg, #dc143c 0%, #8b1538 50%, #4a0e0e 100%);
    color: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(220, 20, 60, 0.4);
    z-index: 10000;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
    animation: float-book 3s ease-in-out infinite, blink-book 2s ease-in-out infinite;
}

.book-service-fab:hover {
    background: linear-gradient(135deg, #4a0e0e 0%, #8b1538 50%, #dc143c 100%);
    color: #FFF;
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.7);
    text-decoration: none;
    animation: float-book 3s ease-in-out infinite;
}

.book-service-fab span {
    font-size: 8px;
    font-weight: 700;
    margin-top: 1px;
    letter-spacing: 0.3px;
}

/* Book Button Floating Animation */
@keyframes float-book {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Book Button Blinking Animation */
@keyframes blink-book {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(220, 20, 60, 0.5);
        opacity: 1;
    }
    50% {
        box-shadow: 0 4px 30px rgba(220, 20, 60, 0.9), 0 0 0 15px rgba(220, 20, 60, 0);
        opacity: 0.9;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-chat-btn {
        width: 45px;
        height: 45px;
        top: 50%;
        right: 15px;
        transform: translateY(calc(-50% - 55px));
        font-size: 20px;
    }
    
    .book-service-fab {
        width: 45px;
        height: 45px;
        bottom: 110px !important;
        right: 15px;
        font-size: 16px;
    }
    
    .book-service-fab span {
        font-size: 7px;
    }
}

/* Electrozot Animated Text with Lightning Effect - Optimized */
.electrozot-animated {
    font-weight: 900;
    display: inline-block;
    background: linear-gradient(
        90deg,
        #dc143c 0%,
        #4a0e0e 10%,
        #8b1538 20%,
        #e91e63 30%,
        #c2185b 40%,
        #6d1b2b 50%,
        #dc143c 60%,
        #4a0e0e 70%,
        #8b1538 80%,
        #e91e63 90%,
        #dc143c 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: lightningMove 3s linear infinite;
    text-shadow: none;
    position: relative;
    -webkit-text-stroke: 0;
    text-stroke: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    filter: none;
    /* Use GPU acceleration for smoother animation */
    will-change: background-position, transform;
    transform: scale(1) translateZ(0);
    transition: transform 0.3s ease-out;
}

/* Lightning movement animation - simplified without heavy filters */
@keyframes lightningMove {
    0% {
        background-position: -200% center;
    }
    50% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Pulse effect on hover - simplified with proper transform reset */
.hero-title:hover .electrozot-animated {
    animation: lightningMove 1.5s linear infinite, pulse 0.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) translateZ(0);
    }
    50% {
        transform: scale(1.05) translateZ(0);
    }
}

/* Book Service Now Header Gradient Animation */
.booking-header {
    background-size: 200% 200% !important;
    animation: gradientShift 8s ease infinite !important;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Shine Effect for Header */
.header-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
    z-index: 1;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Feature Card Gradient Backgrounds */
.feature-gradient-bg,
.feature-gradient-bg-2,
.feature-gradient-bg-3,
.feature-gradient-bg-4 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.feature-gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-gradient-bg-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-gradient-bg-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-gradient-bg-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-card:hover .feature-gradient-bg,
.feature-card:hover .feature-gradient-bg-2,
.feature-card:hover .feature-gradient-bg-3,
.feature-card:hover .feature-gradient-bg-4 {
    opacity: 0.15;
}

/* Feature Card Hover Effects */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Feature Icon Bounce Animation */
.icon-bounce {
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-icon i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card-2 .feature-icon i {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card-3 .feature-icon i {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card-4 .feature-icon i {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Content Spacing */
.hero-content {
    padding-right: 30px;
}

.hero-title {
    max-width: 100%;
    word-wrap: break-word;
}

/* Responsive adjustments for hero section */
@media (max-width: 991px) {
    .hero-content {
        padding-right: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
        text-align: center;
    }
    
    .hero-section-enhanced {
        padding: 70px 0 40px 0 !important;
    }
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem !important;
        text-align: center;
        margin-bottom: 15px !important;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
        text-align: center;
    }
    
    .hero-section-enhanced {
        padding: 60px 0 30px 0 !important;
    }
    
    /* Ensure proper spacing on mobile */
    body {
        overflow-x: hidden !important;
    }
    
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: hidden !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Fix any horizontal scroll issues */
    * {
        max-width: 100% !important;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* Work Portfolio Responsive Images */
.work-portfolio-img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 992px) {
    .work-portfolio-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .work-portfolio-img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .work-portfolio-img {
        height: 250px;
    }
}

/* Carousel caption responsive */
@media (max-width: 768px) {
    .carousel-caption {
        display: block !important;
        background: rgba(0,0,0,0.8) !important;
        padding: 10px !important;
        border-radius: 5px !important;
        bottom: 10px !important;
        left: 10px !important;
        right: 10px !important;
    }
    
    .carousel-caption h5 {
        font-size: 1rem !important;
        margin-bottom: 5px !important;
    }
    
    .carousel-caption p {
        font-size: 0.85rem !important;
        margin-bottom: 0 !important;
    }
}

/* Testimonials Auto-Sliding Animation */
.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-slider {
    display: flex;
    white-space: nowrap;
    animation: slideTestimonials 40s linear infinite;
    will-change: transform;
}

.testimonial-slide {
    flex-shrink: 0;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonial-slide {
        width: 300px !important;
        margin: 0 10px !important;
    }
}

@media (max-width: 576px) {
    .testimonial-slide {
        width: 280px !important;
        margin: 0 8px !important;
    }
    
    .testimonial-text {
        font-size: 0.95rem !important;
        min-height: 100px !important;
    }
}


/* ========================================
   SCROLLABLE DROPDOWN FOR SMALL SCREENS
   ======================================== */

/* Make dropdown scrollable on all devices */
select.service-dropdown,
#guestServiceSubcategory,
#guestService {
    /* Enable scrolling for long option lists */
    overflow-y: auto !important;
    max-height: none !important;
}

/* Mobile: Add scrollable dropdown with max height */
@media (max-width: 768px) {
    /* Make select dropdown scrollable */
    select.service-dropdown,
    #guestServiceSubcategory,
    #guestService {
        /* Set maximum height for dropdown - REDUCED */
        max-height: 180px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important; /* Smooth scrolling on iOS */
    }
    
    /* Style the scrollbar for better visibility */
    select.service-dropdown::-webkit-scrollbar,
    #guestServiceSubcategory::-webkit-scrollbar,
    #guestService::-webkit-scrollbar {
        width: 8px !important;
    }
    
    select.service-dropdown::-webkit-scrollbar-track,
    #guestServiceSubcategory::-webkit-scrollbar-track,
    #guestService::-webkit-scrollbar-track {
        background: #f1f1f1 !important;
        border-radius: 4px !important;
    }
    
    select.service-dropdown::-webkit-scrollbar-thumb,
    #guestServiceSubcategory::-webkit-scrollbar-thumb,
    #guestService::-webkit-scrollbar-thumb {
        background: #888 !important;
        border-radius: 4px !important;
    }
    
    select.service-dropdown::-webkit-scrollbar-thumb:hover,
    #guestServiceSubcategory::-webkit-scrollbar-thumb:hover,
    #guestService::-webkit-scrollbar-thumb:hover {
        background: #555 !important;
    }
}

/* Small phones - even smaller max height */
@media (max-width: 400px) {
    select.service-dropdown,
    #guestServiceSubcategory,
    #guestService {
        max-height: 250px !important;
    }
}

/* Very small screens - compact dropdown */
@media (max-width: 360px) {
    select.service-dropdown,
    #guestServiceSubcategory,
    #guestService {
        max-height: 200px !important;
    }
}

/* Ensure dropdown options are visible and scrollable */
@media (max-width: 768px) {
    /* Make sure options don't get cut off */
    select option,
    select optgroup {
        display: block !important;
        padding: 10px 8px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    /* Add visual indicator for scrollable content */
    select.service-dropdown::after,
    #guestServiceSubcategory::after,
    #guestService::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 20px !important;
        background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9)) !important;
        pointer-events: none !important;
    }
}

/* Native select dropdown styling for better mobile experience */
@media (max-width: 768px) {
    /* Use native mobile dropdown for better UX */
    select.service-dropdown,
    #guestServiceSubcategory,
    #guestService {
        -webkit-appearance: menulist !important;
        -moz-appearance: menulist !important;
        appearance: menulist !important;
        /* This allows native mobile scrolling */
    }
}

/* For browsers that support size attribute */
@media (max-width: 768px) {
    select[size] {
        height: auto !important;
        max-height: 300px !important;
        overflow-y: auto !important;
    }
}

/* Ensure dropdown popup is scrollable on mobile */
@media (max-width: 768px) {
    /* Style for dropdown when opened */
    select:focus,
    select:active {
        outline: 2px solid #667eea !important;
        outline-offset: -2px !important;
    }
    
    /* Ensure options container is scrollable */
    select option {
        padding: 12px 10px !important;
        min-height: 40px !important; /* Touch-friendly height */
    }
    
    select optgroup {
        padding: 10px 8px !important;
        font-weight: bold !important;
        background-color: #f8f9fa !important;
    }
}

/* Add scroll hint for users */
@media (max-width: 768px) {
    .form-group:has(select.service-dropdown) small,
    .form-group:has(#guestServiceSubcategory) small,
    .form-group:has(#guestService) small {
        display: block !important;
        margin-top: 5px !important;
        font-size: 0.75rem !important;
        color: #6c757d !important;
    }
}


/* ========================================
   IMPROVED DROPDOWN FOR MOBILE - NO TEXT CUTOFF
   ======================================== */

@media (max-width: 768px) {
    /* Make the select input readable - full width on mobile */
    select.service-dropdown,
    #guestServiceSubcategory,
    #guestService {
        font-size: 14px !important;
        padding: 10px 12px !important;
        height: auto !important;
        min-height: 42px !important;
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    /* Readable options - NO CUTOFF */
    select.service-dropdown option,
    #guestServiceSubcategory option,
    #guestService option {
        padding: 10px 8px !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        min-height: 44px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    /* Readable optgroups */
    select.service-dropdown optgroup,
    #guestServiceSubcategory optgroup,
    #guestService optgroup {
        padding: 8px 6px !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        font-weight: bold !important;
    }
}

@media (max-width: 400px) {
    /* Still readable on small phones */
    select.service-dropdown,
    #guestServiceSubcategory,
    #guestService {
        font-size: 13px !important;
        padding: 9px 10px !important;
        min-height: 40px !important;
    }
    
    select option {
        padding: 9px 7px !important;
        font-size: 13px !important;
        min-height: 42px !important;
    }
    
    select optgroup {
        padding: 7px 5px !important;
        font-size: 12px !important;
    }
}


/* ========================================
   MOBILE RESPONSIVE FIXES - PREVENT HORIZONTAL SCROLL
   ======================================== */

@media (max-width: 576px) {
    /* Prevent horizontal scroll on mobile */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Fix container widths */
    .container,
    .container-fluid {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Fix row margins */
    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
    
    .col, [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Ensure cards don't overflow */
    .card {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Fix hero section on mobile */
    .hero-section-enhanced {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Fix booking form on mobile */
    .booking-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 5px !important;
    }
    
    .booking-form-card {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix feature and service sections */
    .features-section,
    .services-section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Fix buttons on mobile */
    .hero-buttons-wrapper {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .hero-btn {
        max-width: calc(50% - 5px) !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Fix images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix carousel on mobile */
    .carousel,
    .carousel-inner,
    .carousel-item {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Ensure text doesn't overflow */
    h1, h2, h3, h4, h5, h6, p, span, div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-description {
        font-size: 0.8rem !important;
    }
    
    .hero-btn {
        font-size: 0.75rem !important;
        padding: 6px 10px !important;
    }
    
    .section-title {
        font-size: 1.2rem !important;
    }
    
    .card-title {
        font-size: 0.9rem !important;
    }
    
    .card-text {
        font-size: 0.75rem !important;
    }
}

/* Landscape mode on mobile - keep portrait */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section-enhanced {
        padding: 40px 0 30px 0 !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-description {
        font-size: 0.8rem !important;
        margin-bottom: 10px !important;
    }
    
    .booking-card {
        margin-top: 15px !important;
    }
}


/* ========================================
   ENABLE TEXT SELECTION AND COPYING
   ======================================== */

/* Enable text selection on entire website */
* {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Enable text selection on body */
body {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Enable selection on all text elements */
p, h1, h2, h3, h4, h5, h6, span, div, a, li, td, th, label {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Ensure input fields remain selectable */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Enable right-click context menu for text selection */
body {
    -webkit-touch-callout: default !important;
}

/* Allow drag on images but prevent accidental dragging */
img {
    -webkit-user-drag: auto !important;
    -khtml-user-drag: auto !important;
    -moz-user-drag: auto !important;
    -o-user-drag: auto !important;
    user-drag: auto !important;
    pointer-events: auto !important;
}

/* Enable selection on links while keeping them clickable */
a {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    -webkit-touch-callout: default !important;
}

/* Enable text selection cursor */
* {
    cursor: auto !important;
}

/* Keep pointer cursor for clickable elements */
a, button, input[type="submit"], input[type="button"], .btn, [role="button"] {
    cursor: pointer !important;
}

/* Keep text cursor for input fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea {
    cursor: text !important;
}

/* ========================================
   MOBILE MENU FIX - SLIDE FROM RIGHT
   ======================================== */

/* Mobile Menu Fix - Add to your CSS */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed !important;
        top: 94px !important;
        right: -100% !important;
        width: 250px !important;
        height: auto !important;
        max-height: calc(100vh - 100px) !important;
        background: #4a5568 !important;
        padding: 20px !important;
        box-shadow: -3px 3px 12px rgba(0,0,0,0.25) !important;
        transition: right 0.3s ease-in-out !important;
        z-index: 99999 !important;
        overflow-y: auto !important;
        border-radius: 8px 0 0 8px !important;
    }
    
    .navbar-collapse.show {
        right: 0 !important;
    }
    
    .navbar-collapse .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .navbar-collapse .nav-link {
        color: #ffffff !important;
        font-weight: 600 !important;
        padding: 12px 15px !important;
        margin-bottom: 5px !important;
        border-radius: 6px !important;
        font-size: 0.9rem !important;
    }
    
    .navbar-collapse .nav-link:hover {
        background: rgba(102, 126, 234, 0.3) !important;
    }
    
    /* Backdrop overlay */
    .navbar-collapse.show::before {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: -1 !important;
    }
}

/* Fix navbar toggler button */
@media (max-width: 991px) {
    .navbar-toggler {
        border: none !important;
        padding: 2px 4px !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 4px !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 32px !important;
        width: 26px !important;
    }
    
    .navbar-toggler:focus {
        outline: none !important;
        box-shadow: none !important;
    }
    
    .navbar-toggler .fas {
        font-size: 0.6rem !important;
        color: #ffffff !important;
    }
}
/* ========================================
   ADDITIONAL MOBILE MENU FIXES
   ======================================== */

/* Ensure navbar toggler is clickable */
.navbar-toggler {
    position: relative !important;
    z-index: 10001 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Fix for navbar collapse positioning */
@media (max-width: 991px) {
    .navbar-collapse {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-collapse:not(.show) {
        right: -100% !important;
    }
    
    /* Ensure menu items are clickable */
    .navbar-collapse .nav-link {
        pointer-events: auto !important;
        cursor: pointer !important;
        display: block !important;
    }
    
    /* Fix for arrow close button */
    .mobile-menu-arrow-close {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10002 !important;
    }
}

/* Mobile menu is now properly configured */