/* ===== ULTIMATE FIXES - All Latest User Requests ===== */

/* 1. SWAP POSITIONS - Scroll LEFT, Slider RIGHT */

/* Move Scroll Indicator to LEFT Side */
.scroll-indicator {
    position: absolute !important;
    left: 2rem !important;
    right: auto !important;
    bottom: 3rem !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    animation: bounceAnimation 2s infinite !important;
    z-index: 20 !important;
}

/* Move Slider Dots to RIGHT Side */
.hero-slider-dots {
    display: flex !important;
    position: absolute !important;
    right: 2rem !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    flex-direction: column !important;
    gap: 1rem !important;
    z-index: 20 !important;
}

/* 2. OUR PROCESS SECTION - Fix Colors and Make Aesthetic */

.process {
    background: #f8f9fa !important;
    padding: 5rem 0 !important;
}

.process .section-badge {
    background: linear-gradient(135deg, #DC143C, #FF6B35) !important;
    color: #FFFFFF !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin-bottom: 1rem !important;
}

.process .section-title {
    color: #0A0A0A !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    margin-bottom: 1rem !important;
}

.process .section-subtitle {
    color: #666666 !important;
    font-size: 1.1rem !important;
    margin-bottom: 3rem !important;
}

/* Process Steps - Beautiful Cards */
.process-steps {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
}

.process-step {
    background: #FFFFFF !important;
    padding: 2.5rem 2rem !important;
    border-radius: 20px !important;
    border: 2px solid #e0e0e0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    text-align: center !important;
}

.process-step:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.15) !important;
    border-color: #DC143C !important;
}

/* Step Number - Gradient Background */
.step-number {
    position: absolute !important;
    top: -15px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #DC143C, #FF6B35) !important;
    color: #FFFFFF !important;
    font-size: 1.3rem !important;
    font-weight: 900 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3) !important;
}

/* Step Icon - Large and Colorful */
.step-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #FFF5F5, #FFE5E5) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
}

.step-icon i {
    font-size: 2.5rem !important;
    color: #DC143C !important;
    filter: drop-shadow(0 2px 8px rgba(220, 20, 60, 0.2)) !important;
}

/* Step Title */
.process-step h3 {
    color: #0A0A0A !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

/* Step Description */
.process-step p {
    color: #666666 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* 3. SERVICES DROPDOWN - Fix Functionality */

/* Ensure dropdown works on hover and click */
.dropdown {
    position: relative !important;
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #FFFFFF !important;
    min-width: 280px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    padding: 1rem 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    display: block !important;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Dropdown menu items */
.dropdown-menu li {
    list-style: none !important;
}

.dropdown-menu li a {
    display: block !important;
    padding: 0.8rem 1.5rem !important;
    color: #0A0A0A !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent !important;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #DC143C, #FF6B35) !important;
    color: #FFFFFF !important;
    border-left-color: #FFD700 !important;
    padding-left: 2rem !important;
}

/* Dropdown arrow indicator */
.dropdown > .nav-link::after {
    content: '\f107' !important;
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    margin-left: 0.5rem !important;
    font-size: 0.8rem !important;
    transition: transform 0.3s ease !important;
}

.dropdown:hover > .nav-link::after {
    transform: rotate(180deg) !important;
}

/* 4. MOUSE CURSOR - Hide old cursor effects */

/* Remove old complex cursor effects */
.cursor,
.cursor-follower,
.cursor-trail {
    display: none !important;
}

/* New elegant cursor will be handled by js/elegant-cursor.js */

/* 5. RESPONSIVE ADJUSTMENTS */

@media (max-width: 991px) {
    .scroll-indicator {
        left: 1rem !important;
        bottom: 2rem !important;
    }
    
    .hero-slider-dots {
        right: 1rem !important;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .process-step {
        padding: 2rem 1.5rem !important;
    }
    
    /* Mobile dropdown - show on click */
    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.05) !important;
        border-radius: 0 !important;
        margin-top: 0.5rem !important;
    }
}

@media (max-width: 767px) {
    .process .section-title {
        font-size: 2rem !important;
    }
    
    .process-steps {
        grid-template-columns: 1fr !important;
    }
}

/* 6. ENSURE HEADER STAYS ON TOP */
.header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    background: #FFFFFF !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.navbar {
    position: relative !important;
    z-index: 101 !important;
}

/* 7. ADDITIONAL AESTHETIC TOUCHES */

/* Smooth scroll */
html {
    scroll-behavior: smooth !important;
}

/* Better focus states */
a:focus,
button:focus {
    outline: 2px solid #DC143C !important;
    outline-offset: 2px !important;
}

/* Selection color */
::selection {
    background: #DC143C !important;
    color: #FFFFFF !important;
}

::-moz-selection {
    background: #DC143C !important;
    color: #FFFFFF !important;
}
