/* ================================================================
   DESIGN ENHANCEMENTS - COMPREHENSIVE IMPROVEMENTS
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES & VARIABLES
   ---------------------------------------------------------------- */
:root {
    /* Enhanced Color Palette */
    --primary-blue: #015fc6;
    --primary-blue-light: #0170e0;
    --primary-blue-dark: #014a9d;
    --primary-blue-darker: #013775;

    --accent-cyan: #0dcaf0;
    --accent-orange: #ff6b35;
    --accent-teal: #14b8a6;
    --success-green: #1ebe5a;

    --gray-50: #f8f9fa;
    --gray-100: #f0f0f0;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Enhanced Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);

    /* Colored Shadows */
    --shadow-blue: 0 4px 15px rgba(1, 95, 198, 0.25);
    --shadow-blue-lg: 0 8px 25px rgba(1, 95, 198, 0.4);
    --shadow-cyan: 0 10px 25px rgba(13, 202, 240, 0.2);
    --shadow-orange: 0 10px 25px rgba(255, 107, 53, 0.2);
    --shadow-teal: 0 10px 25px rgba(20, 184, 166, 0.2);

    /* Enhanced Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

/* ----------------------------------------------------------------
   2. SMOOTH PAGE LOAD ANIMATION
   ---------------------------------------------------------------- */
@keyframes pageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body {
    animation: pageLoad 0.3s ease-in;
}

/* ----------------------------------------------------------------
   3. ENHANCED HEADER & NAVIGATION
   ---------------------------------------------------------------- */

/* Enhanced scrolled header shadow */
.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    border-bottom: none !important;
}

/* Enhanced navigation hover effects */
.navmenu ul li a {
    position: relative;
    transition: var(--transition-base);
}

.navmenu ul li a.active {
    background: linear-gradient(to bottom, transparent 0%, rgba(1, 95, 198, 0.08) 100%);
    border-radius: var(--radius-md);
    padding: 8px 16px;
}

/* Enhanced underline animation */
.navmenu ul li a::after {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    box-shadow: 0 2px 8px rgba(1, 95, 198, 0.3);
}

/* Modernized language button */
.lang-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%) !important;
    box-shadow: var(--shadow-blue) !important;
    transition: var(--transition-base) !important;
}

.lang-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(1, 95, 198, 0.35) !important;
}

/* ----------------------------------------------------------------
   4. HERO SLIDER ENHANCEMENTS
   ---------------------------------------------------------------- */

/* Enhanced gradient overlay */
.slide::before {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%) !important;
}

/* Enhanced text shadows */
.slide-content h2 {
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.slide-content p {
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.4) !important;
}

/* Glassmorphism slider arrows */
.slider-arrows {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    transition: var(--transition-base) !important;
}

.slider-arrows:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-50%) scale(1.05) !important;
}

/* Enhanced navigation dots */
.nav-dot {
    transition: var(--transition-base) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-dot.active {
    background: white !important;
    transform: scale(1.3) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
}

/* Enhanced slide button */
.slide-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%) !important;
    box-shadow: var(--shadow-blue-lg) !important;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base) !important;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.slide-btn:hover::before {
    left: 100%;
}

.slide-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(1, 95, 198, 0.6) !important;
}

/* ----------------------------------------------------------------
   5. ENHANCED BUTTONS & CTAs
   ---------------------------------------------------------------- */

/* Primary buttons */
.btn-get-started,
.cta-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%) !important;
    box-shadow: var(--shadow-blue) !important;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base) !important;
    border: none !important;
}

.btn-get-started::before,
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-get-started:hover::before,
.cta-btn:hover::before {
    left: 100%;
}

.btn-get-started:hover,
.cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(1, 95, 198, 0.5) !important;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%) !important;
}

/* Read more button */
.read-more {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%) !important;
    box-shadow: var(--shadow-blue) !important;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base) !important;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.read-more:hover::before {
    left: 100%;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 95, 198, 0.5) !important;
}

/* ----------------------------------------------------------------
   6. ENHANCED CARD DESIGN SYSTEM
   ---------------------------------------------------------------- */

/* Enhanced icon boxes */
.hero .icon-box {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.hero .icon-box:hover::before {
    opacity: 1;
}

.hero .icon-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        var(--shadow-xl),
        0 0 0 1px rgba(1, 95, 198, 0.1);
}

/* Enhanced icon styling */
.hero .icon-box .icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-bounce);
}

.hero .icon-box:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

/* Glass cards */
.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

/* Category icon wrapper */
.category-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)) !important;
    box-shadow: var(--shadow-blue);
    transition: var(--transition-bounce);
}

.glass-card:hover .category-icon-wrapper {
    transform: scale(1.15) rotate(8deg) !important;
    box-shadow: 0 8px 25px rgba(1, 95, 198, 0.5);
}

/* ----------------------------------------------------------------
   7. SERVICE CARDS ENHANCEMENT
   ---------------------------------------------------------------- */

.service-item {
    border-top: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-item:hover::after {
    opacity: 1;
}

/* Cyan service item */
.service-item.item-cyan:hover {
    border-top-color: var(--accent-cyan);
    transform: translateY(-8px);
    box-shadow: var(--shadow-cyan);
}

/* Orange service item */
.service-item.item-orange:hover {
    border-top-color: var(--accent-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-orange);
}

/* Teal service item */
.service-item.item-teal:hover {
    border-top-color: var(--accent-teal);
    transform: translateY(-8px);
    box-shadow: var(--shadow-teal);
}

/* Enhanced service icons */
.service-item .icon {
    position: relative;
    z-index: 1;
}

.service-item .icon i {
    transition: var(--transition-bounce);
}

.service-item:hover .icon i {
    transform: scale(1.15) rotate(5deg);
}

/* ----------------------------------------------------------------
   8. PRODUCT CARDS ENHANCEMENT
   ---------------------------------------------------------------- */

.product-slide-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.product-slide-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
    z-index: 10;
}

/* Enhanced product image wrapper */
.slide-img-wrapper {
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.slide-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 60%, rgba(1, 95, 198, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-slide-card:hover .slide-img-wrapper::after {
    opacity: 1;
}

.slide-img-wrapper img {
    transition: var(--transition-slow);
}

.product-slide-card:hover .slide-img-wrapper img {
    transform: scale(1.05);
}

/* Product card entry animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------------------------------
   9. BRANCHES SLIDER ENHANCEMENT
   ---------------------------------------------------------------- */

/* Enhanced center slide effect */
.swiper-slide {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.swiper-slide-active {
    transform: scale(1.15) !important;
    z-index: 20 !important;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 2px rgba(1, 95, 198, 0.1) !important;
}

/* Enhanced swiper navigation */
.swiper-button-next,
.swiper-button-prev {
    background: white !important;
    box-shadow: var(--shadow-md) !important;
    transition: var(--transition-base) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-blue) !important;
    color: white !important;
    transform: scale(1.15) !important;
    box-shadow: var(--shadow-blue-lg) !important;
}

/* ----------------------------------------------------------------
   10. FOOTER ENHANCEMENT
   ---------------------------------------------------------------- */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(1, 95, 198, 0.5) 50%,
            transparent);
}

/* Enhanced social links */
.footer .social-links a {
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.footer .social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: 4px;
}

.footer .social-links a:hover::before {
    opacity: 1;
}

.footer .social-links a i {
    position: relative;
    z-index: 1;
    transition: var(--transition-bounce);
}

.footer .social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-blue);
}

.footer .social-links a:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Enhanced footer links */
.footer .footer-links ul a {
    position: relative;
    transition: var(--transition-base);
}

.footer .footer-links ul a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-base);
}

.footer .footer-links ul a:hover::after {
    width: 100%;
}

/* ----------------------------------------------------------------
   11. SCROLL TO TOP BUTTON
   ---------------------------------------------------------------- */

.scroll-top {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%) !important;
    box-shadow: var(--shadow-blue) !important;
    transition: var(--transition-base) !important;
}

.scroll-top:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 6px 30px rgba(1, 95, 198, 0.6) !important;
}

.scroll-top i {
    transition: var(--transition-base);
}

.scroll-top:hover i {
    transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   12. TYPOGRAPHY ENHANCEMENT
   ---------------------------------------------------------------- */

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.4;
}

/* ----------------------------------------------------------------
   13. ACCESSIBILITY ENHANCEMENTS
   ---------------------------------------------------------------- */

/* Enhanced focus states */
*:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

*:focus:not(:focus-visible) {
    outline: none;
}

/* Keyboard navigation support */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(1, 95, 198, 0.2);
}

/* ----------------------------------------------------------------
   14. REDUCED MOTION SUPPORT
   ---------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ----------------------------------------------------------------
   15. MOBILE OPTIMIZATIONS
   ---------------------------------------------------------------- */

@media (max-width: 768px) {

    /* Larger touch targets */
    button,
    a {
        min-height: 44px;
        min-width: 44px;
    }

    /* Simplified animations */
    .hero .icon-box:hover,
    .glass-card:hover,
    .product-slide-card:hover {
        transform: translateY(-4px);
    }

    /* Improved mobile navigation */
    .navmenu ul {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
    }

    .navmenu a {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* ----------------------------------------------------------------
   16. LOADING ANIMATIONS
   ---------------------------------------------------------------- */

/* Fade in sections on scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Skeleton loading for images */
.img-skeleton {
    background: linear-gradient(90deg,
            var(--gray-100) 0%,
            var(--gray-200) 50%,
            var(--gray-100) 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ----------------------------------------------------------------
   17. LINK ANIMATIONS
   ---------------------------------------------------------------- */

/* Enhanced link underlines */
a:not(.btn):not(.nav-link):not(.social-links a) {
    position: relative;
    display: inline-block;
}

a:not(.btn):not(.nav-link):not(.social-links a)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width var(--transition-base);
}

a:not(.btn):not(.nav-link):not(.social-links a):hover::after {
    width: 100%;
}

/* ----------------------------------------------------------------
   18. ENHANCED FORM INPUTS
   ---------------------------------------------------------------- */

input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 3px rgba(1, 95, 198, 0.1) !important;
    transform: translateY(-1px);
    transition: var(--transition-base);
}

/* ----------------------------------------------------------------
   19. CERTIFICATE/PARTNER CARDS
   ---------------------------------------------------------------- */

.certificate-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

/* ----------------------------------------------------------------
   20. CLIENT LOGOS ENHANCEMENT
   ---------------------------------------------------------------- */

.clients .client-logo img {
    transition: var(--transition-base);
}

.clients .client-logo img:hover {
    filter: none !important;
    opacity: 1 !important;
    transform: scale(1.15) !important;
}

/* ----------------------------------------------------------------
   21. CALL TO ACTION SECTION
   ---------------------------------------------------------------- */

.call-to-action {
    position: relative;
    overflow: hidden;
}

.call-to-action::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ----------------------------------------------------------------
   22. SMOOTH SCROLL BEHAVIOR
   ---------------------------------------------------------------- */

html {
    scroll-behavior: smooth;
}

/* ----------------------------------------------------------------
   23. PERFORMANCE OPTIMIZATIONS
   ---------------------------------------------------------------- */

/* GPU acceleration for animations */
.hero .icon-box,
.glass-card,
.product-slide-card,
.service-item,
.btn-get-started,
.slider-arrows {
    will-change: transform;
}

.hero .icon-box:not(:hover),
.glass-card:not(:hover),
.product-slide-card:not(:hover),
.service-item:not(:hover) {
    will-change: auto;
}

/* ----------------------------------------------------------------
   24. FIXED ACTION BUTTONS - FIXES & ENHANCEMENTS
   ---------------------------------------------------------------- */

/* Ensure fixed action buttons stay on top and work properly */
.fixed-action-btn {
    z-index: 9998 !important;
    position: fixed !important;
    /* Don't apply will-change to avoid conflicts */
    will-change: auto !important;
    /* Perfect centering for icons */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 50px !important;
}

/* Center the icon element inside */
.fixed-action-btn i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

/* Enhanced WhatsApp button */
.whatsapp-fixed-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-fixed-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6) !important;
    color: white !important;
}

/* Enhanced Call button */
.call-fixed-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4) !important;
}

.call-fixed-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%) !important;
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.6) !important;
    color: white !important;
}

/* Ensure buttons don't get focus outline conflicts */
.fixed-action-btn:focus {
    outline: 2px solid white !important;
    outline-offset: 3px !important;
}

/* Make sure pulse animation still works */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}