* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 30%, #06b6d4 60%, #10b981 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

navbar-custom {
    background: rgba(15, 12, 41, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    position: sticky;
    top: 0;
    z-index: 9998;
    width: 100%;
}

.navbar-custom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
}

.navbar-custom .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-custom .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.navbar-custom .navbar-brand:hover .logo-icon {
    transform: scale(1.05);
}

.navbar-custom .brand-text {
    background: linear-gradient(135deg, #ffffff, #c4b5fd, #f0b6d0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
}

.navbar-custom .brand-tagline {
    font-size: 0.55rem;
    color: #a78bfa;
    opacity: 0.7;
    display: block;
    margin-top: -2px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.navbar-custom .nav-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.navbar-custom .nav-links a {
    color: #c4b5fd;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.navbar-custom .nav-links a:hover {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.navbar-custom .nav-links a.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(236, 72, 153, 0.15));
    color: #ffffff;
}

.navbar-custom .nav-links a .icon {
    margin-right: 6px;
}


/* Dropdown */

.navbar-custom .dropdown {
    position: relative;
    display: inline-block;
}

.navbar-custom .dropdown-btn {
    color: #c4b5fd;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-custom .dropdown-btn:hover {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.navbar-custom .dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 200px;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 0.5rem;
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
    animation: dropdownAnim 0.3s ease;
}

@keyframes dropdownAnim {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-custom .dropdown:hover .dropdown-content {
    display: block;
}

.navbar-custom .dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1rem;
    color: #c4b5fd;
    text-decoration: none;
    border-radius: 0.6rem;
    transition: 0.2s;
    font-size: 0.85rem;
}

.navbar-custom .dropdown-content a:hover {
    background: rgba(139, 92, 246, 0.15);
    color: #ffffff;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .navbar-custom .container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    .navbar-custom .navbar-brand {
        gap: 10px;
    }
    .navbar-custom .logo-icon {
        width: 40px;
        height: 40px;
    }
    .navbar-custom .brand-text {
        font-size: 1.3rem;
    }
    .navbar-custom .nav-links {
        justify-content: center;
        width: 100%;
    }
}

    /* ===== CAROUSEL STYLES ===== */
        .carousel{
            width: 100%;
            position: relative;
        }
        
        .carousel-inner {
            width: 100%;
            position: relative;
            overflow: hidden;
           
        }
        
        .carousel-item {
            width: 100%;
            height: 500px;
            background-image:url(/images/IMG-20260717-WA0002\(1\).jpg);
            background-repeat: repeat;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
        }
        
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2);
            z-index: 1;
            pointer-events: none;
        }
        
        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            z-index: 3;
            width: 50px;
            height: 50px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .carousel-control-prev {
            left: 20px;
        }
        
        .carousel-control-next {
            right: 20px;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: rgba(0,0,0,0.7);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 30px;
            height: 30px;
        }
        
        /* Carousel Indicators */
        .carousel-indicators {
            z-index: 3;
            bottom: 20px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid white;
            background: transparent;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators .active {
            background: #fbbf24;
            border-color: #fbbf24;
            transform: scale(1.2);
        }
        
        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 768px) {
            .carousel-item {
                height: 400px;
            }
        }
        
        @media (max-width: 480px) {
            .carousel-item {
                height: 300px;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 35px;
                height: 35px;
            }
            
            .carousel-control-prev {
                left: 10px;
            }
            
            .carousel-control-next {
                right: 10px;
            }
            
            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 20px;
                height: 20px;
            }
        }
        
        @media (min-width: 1400px) {
            .carousel-item {
                height: 600px;
            }
        }
/* Cards styling */

.service-card {
    border: none;
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    background: white;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.25);
}

.card-text {
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.05);
}

.service-card .card-title {
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
}


/* Heading styling */

.display-4 {
    background: linear-gradient(135deg, #ffffff, #dbeafe, #c7d2fe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lead {
    color: #e2e8f0;
    font-size: 1.25rem;
    font-weight: 500;
}


/* Make container text readable on colorful background */

.container.my-5.py-4 .text-center.mb-5 p {
    color: #f1f5f9;
}


/* Modal Styles */

.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 1050;
    font-family: 'Segoe UI', sans-serif;
}

.modal-card {
    background: white;
    border-radius: 32px;
    width: 90%;
    max-width: 520px;
    overflow: hidden;
    animation: slideUp 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    color: white;
    padding: 1.3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.modal-header h3 i {
    margin-right: 10px;
    color: white;
}

.close-modal {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: #1e293b;
    font-size: 0.9rem;
}

.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background-color: white;
    color: #1e293b;
}

.form-control-custom:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-control-custom.invalid {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.error-msg {
    color: #ef4444;
    font-size: 0.7rem;
    margin-top: 5px;
    display: none;
}

.btn-submit,
.btn-next-step {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    background-size: 200% auto;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-submit:hover,
.btn-next-step:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

footer {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #cbd5e1;
    margin-top: 60px;
    padding: 30px 0;
    text-align: center;
}


/* Step indicators */

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 15px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.step.completed .step-circle {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border: none;
    color: white;
}

.step-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.2px;
}

.step.active .step-title {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.progress-bar-bg {
    background: #e2e8f0;
    height: 6px;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    background-size: 200% auto;
    width: 0%;
    height: 6px;
    border-radius: 10px;
    transition: width 0.4s ease;
}

.step-pane {
    display: none;
}

.step-pane.active-pane {
    display: block;
    animation: fadeSlide 0.35s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-group-flex {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-outline-step {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    color: #475569;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-outline-step:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    background: #faf5ff;
    transform: translateY(-1px);
}


/* Select dropdown styling */

select.form-control-custom {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233b82f6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
}


/* Container spacing */

.container.my-5.py-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}


/* White text on colorful background for main heading area */

.text-center.mb-5 h2 {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .modal-card {
        max-width: 95%;
        margin: 20px;
    }
    .modal-body {
        padding: 1.5rem;
    }
    .display-4 {
        font-size: 2rem;
    }
    .step-title {
        font-size: 0.65rem;
    }
    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}


/* Cookie Popup Styles - Only added, not modifying existing CSS */

.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #1e3a5f, #1e40af, #059669);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 650px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-popup.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-popup i {
    font-size: 2rem;
    margin-right: 15px;
}

.cookie-popup-content {
    flex: 1;
}

.cookie-popup h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.cookie-popup p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept {
    background: white;
    color: #1e40af;
    border: none;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-necessary {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-necessary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-popup {
        margin: 20px;
        left: 20px;
        right: 20px;
        transform: translateX(0);
        flex-direction: column;
        text-align: center;
    }
    .cookie-popup.show {
        transform: translateX(0);
    }
}

.chat-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .8rem
}

.chat-toggle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: none;
    box-shadow: 0 8px 32px rgba(140, 80, 220, .5);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2s infinite alternate;
    position: relative
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 8px 32px rgba(140, 80, 220, .4)
    }
    100% {
        box-shadow: 0 12px 48px rgba(140, 80, 220, .7)
    }
}

.chat-toggle:hover {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 48px rgba(140, 80, 220, .7)
}

.chat-toggle .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 30px
}

.chat-window {
    background: rgba(30, 12, 50, .92);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    width: 400px;
    max-width: 92vw;
    height: 540px;
    max-height: 80vh;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(160, 100, 200, .15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
    overflow: hidden;
    animation: slideUp .4s cubic-bezier(.34, 1.56, .64, 1)
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(.95)
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.chat-window.open {
    display: flex
}

.chat-header {
    padding: 1rem 1.5rem;
    background: rgba(40, 18, 60, .5);
    border-bottom: 1px solid rgba(160, 100, 200, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0
}

.chat-header h3 {
    color: #f0e6ff;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px
}

.chat-header h3 .online-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite
}

@keyframes blink {
    0%,
    100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

.chat-close {
    background: 0 0;
    border: none;
    color: #8a6e9e;
    font-size: 1.4rem;
    cursor: pointer;
    transition: .2s
}

.chat-close:hover {
    color: #fff;
    transform: rotate(90deg)
}

.chat-messages {
    flex: 1;
    padding: 1.2rem 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.chat-messages::-webkit-scrollbar {
    width: 4px
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(160, 100, 200, .05);
    border-radius: 10px
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(160, 100, 200, .3);
    border-radius: 10px
}

.chat-messages .msg {
    max-width: 88%;
    padding: .8rem 1.2rem;
    border-radius: 1.2rem;
    font-size: .92rem;
    line-height: 1.6;
    animation: msgIn .3s ease;
    white-space: pre-wrap;
    word-wrap: break-word
}

@keyframes msgIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(.95)
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.chat-messages .msg.bot {
    background: rgba(160, 100, 200, .15);
    color: #dcc8ee;
    align-self: flex-start;
    border-bottom-left-radius: 4px
}

.chat-messages .msg.user {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px
}

.chat-messages .msg.system {
    background: rgba(251, 191, 36, .1);
    color: #fef3c7;
    align-self: center;
    text-align: center;
    font-size: .82rem;
    border: 1px solid rgba(251, 191, 36, .15);
    border-radius: 2rem;
    padding: .5rem 1.2rem;
    max-width: 95%
}

.chat-footer {
    padding: .8rem 1.2rem 1.2rem;
    border-top: 1px solid rgba(160, 100, 200, .1);
    display: flex;
    gap: .6rem;
    flex-shrink: 0;
    flex-wrap: wrap
}

.chat-footer input {
    flex: 1;
    padding: .7rem 1.2rem;
    border-radius: 40px;
    border: 1px solid rgba(160, 100, 200, .15);
    background: rgba(40, 18, 60, .4);
    color: #f0e6ff;
    font-size: .95rem;
    outline: 0;
    min-width: 120px
}

.chat-footer input::placeholder {
    color: rgba(200, 170, 220, .4)
}

.chat-footer input:focus {
    border-color: #b07ad9;
    box-shadow: 0 0 0 4px rgba(160, 100, 200, .08)
}

.chat-footer .send-btn {
    padding: .7rem 1.5rem;
    border-radius: 40px;
    border: none;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .3s
}

.chat-footer .send-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(140, 80, 220, .4)
}

.chat-footer .send-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none
}

.auth-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    gap: 1rem;
    flex: 1;
    text-align: center
}

.auth-overlay.show {
    display: flex
}

.auth-overlay .auth-icon {
    font-size: 3rem;
    margin-bottom: .2rem
}

.auth-overlay h4 {
    color: #f0e6ff;
    font-size: 1.2rem
}

.auth-overlay p {
    color: #8a6e9e;
    font-size: .95rem;
    max-width: 280px
}

.auth-btns {
    display: flex;
    gap: .8rem;
    margin-top: .5rem;
    flex-wrap: wrap;
    justify-content: center
}

.auth-btns button {
    padding: .6rem 1.8rem;
    border-radius: 60px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: .3s
}

.auth-btns .login-btn {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff
}

.auth-btns .login-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(140, 80, 220, .4)
}

.auth-btns .register-btn {
    background: rgba(160, 100, 200, .15);
    color: #dcc8ee;
    border: 1px solid rgba(160, 100, 200, .15)
}

.auth-btns .register-btn:hover {
    background: rgba(160, 100, 200, .25);
    transform: scale(1.05)
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    padding: .4rem 1.2rem .8rem;
    border-top: 1px solid rgba(160, 100, 200, .05);
    justify-content: center
}

.quick-replies button {
    background: rgba(160, 100, 200, .1);
    border: 1px solid rgba(160, 100, 200, .12);
    color: #c9b0e0;
    padding: .3rem .8rem;
    border-radius: 30px;
    font-size: .7rem;
    cursor: pointer;
    transition: .2s
}

.quick-replies button:hover {
    background: rgba(160, 100, 200, .2);
    border-color: #b07ad9;
    color: #fff
}

@media(max-width:700px) {
    .chat-window {
        width: 95vw;
        height: 70vh
    }
    .chat-float {
        bottom: 1rem;
        right: 1rem
    }
    .chat-toggle {
        width: 60px;
        height: 60px;
        font-size: 1.6rem
    }
}

@media(max-width:480px) {
    .chat-footer {
        flex-direction: column
    }
    .chat-footer .send-btn {
        width: 100%;
        justify-content: center
    }
    .auth-btns {
        flex-direction: column;
        width: 100%
    }
    .auth-btns button {
        width: 100%
    }
} 
        /* ===== ALL YOUR EXISTING STYLES - KEPT EXACTLY AS IS ===== */
        /* ... (all your styles go here - same as before) ... */
        
        /* Toast Notification */
        .toast-notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            z-index: 10001;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            font-weight: 600;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .toast-notification.show {
            transform: translateY(0);
            opacity: 1;
        }
        
        .toast-notification.error {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }
        
        .custom-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 99999;
            align-items: center;
            justify-content: center;
        }
        
        .custom-modal.active {
            display: flex;
        }
        
        .modal-card {
            background: rgba(15, 12, 41, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 2rem;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            border: 1px solid rgba(139, 92, 246, 0.2);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
            animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        @keyframes modalIn {
            0% {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        .modal-header {
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h3 {
            color: #e0d4ff;
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0;
        }
        
        .modal-header h3 i {
            color: #8b5cf6;
            margin-right: 10px;
        }
        
        .close-modal {
            background: none;
            border: none;
            color: #8a6e9e;
            font-size: 2rem;
            cursor: pointer;
            transition: 0.3s;
            line-height: 1;
        }
        
        .close-modal:hover {
            color: #fff;
            transform: rotate(90deg);
        }
        
        .modal-body {
            padding: 1.5rem;
        }
        
        .form-control-custom {
            width: 100%;
            padding: 0.7rem 1.2rem;
            border-radius: 40px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: #e0d4ff;
            font-size: 0.95rem;
            transition: 0.3s;
            outline: none;
        }
        
        .form-control-custom:focus {
            border-color: #8b5cf6;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .form-control-custom::placeholder {
            color: rgba(200, 180, 220, 0.4);
        }
        
        .form-control-custom.invalid {
            border-color: #ef4444;
        }
        
        .error-msg {
            color: #ef4444;
            font-size: 0.8rem;
            margin-top: 0.3rem;
            display: none;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            width: 100%;
        }
        
        .btn-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
        }
        
        .btn-next-step {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .btn-next-step:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
        }
        
        .btn-outline-step {
            background: transparent;
            border: 1px solid rgba(139, 92, 246, 0.3);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            color: #c4b5fd;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .btn-outline-step:hover {
            background: rgba(139, 92, 246, 0.1);
        }
        
        .btn-group-flex {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .step-indicators {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .step {
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0.5;
            transition: 0.3s;
        }
        
        .step.active {
            opacity: 1;
        }
        
        .step.completed {
            opacity: 0.8;
        }
        
        .step-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.2);
            border: 2px solid rgba(139, 92, 246, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c4b5fd;
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .step.active .step-circle {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            border-color: #8b5cf6;
            color: #fff;
        }
        
        .step.completed .step-circle {
            background: #10b981;
            border-color: #10b981;
            color: #fff;
        }
        
        .step-title {
            color: #c4b5fd;
            font-size: 0.8rem;
        }
        
        .progress-bar-bg {
            width: 100%;
            height: 4px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 10px;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #8b5cf6, #a855f7);
            border-radius: 10px;
            transition: width 0.5s ease;
            width: 0%;
        }
        
        .step-pane {
            display: none;
        }
        
        .step-pane.active-pane {
            display: block;
            animation: fadeInStep 0.4s ease;
        }
        
        @keyframes fadeInStep {
            0% {
                opacity: 0;
                transform: translateX(10px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .category-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 20px;
        }
        
        .category-option {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 15px 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .category-option:hover {
            border-color: #f59e0b;
            background: #fffbeb;
            transform: translateY(-3px);
        }
        
        .category-option i {
            font-size: 28px;
            margin-bottom: 8px;
            display: block;
        }
        
        .category-option span {
            font-size: 13px;
            font-weight: 600;
            color: #1e293b;
        }
        
        .category-option.selected {
            border-color: #10b981;
            background: #ecfdf5;
        }
        
        .service-card {
            border: none;
            border-radius: 28px;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
            background: white;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 45px -15px rgba(59, 130, 246, 0.25);
        }
        
        .service-card .card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #3b82f6;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover .card-icon {
            transform: scale(1.05);
        }
        
        .ad-card {
            border: none;
            border-radius: 28px;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
            background: white;
            position: relative;
        }
        
        .ad-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #f59e0b, #f97316, #ef4444, #ec489a);
        }
        
        .ad-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 45px -15px rgba(245, 158, 11, 0.25);
        }
        
        .ad-card .card-title {
            background: linear-gradient(135deg, #b45309, #d97706);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
        }
        
        .ad-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #f59e0b, #f97316, #ef4444);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: transform 0.3s ease;
        }
        
        .ad-card:hover .ad-icon {
            transform: scale(1.05);
        }
        
        .chat-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.8rem;
        }
        
        .chat-toggle {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            border: none;
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulseGlow 2s infinite alternate;
            position: relative;
        }
        
        @keyframes pulseGlow {
            0% {
                box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
            }
            100% {
                box-shadow: 0 12px 48px rgba(139, 92, 246, 0.7);
            }
        }
        
        .chat-toggle:hover {
            transform: scale(1.08) rotate(-5deg);
            box-shadow: 0 12px 48px rgba(139, 92, 246, 0.7);
        }
        
        .chat-toggle .badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ef4444;
            color: #fff;
            font-size: 0.55rem;
            font-weight: 700;
            padding: 0.2rem 0.5rem;
            border-radius: 30px;
            box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
        }
        
        .chat-window {
            background: rgba(15, 12, 41, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 1.8rem;
            width: 380px;
            max-width: 92vw;
            height: 520px;
            max-height: 75vh;
            display: none;
            flex-direction: column;
            border: 1px solid rgba(139, 92, 246, 0.2);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
            overflow: hidden;
            animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        @keyframes slideUp {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .chat-window.open {
            display: flex;
        }
        
        .chat-header {
            padding: 0.8rem 1.2rem;
            background: rgba(139, 92, 246, 0.1);
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-shrink: 0;
        }
        
        .chat-header h3 {
            color: #e0d4ff;
            font-size: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
        }
        
        .chat-header h3 .online-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            display: inline-block;
            animation: blink 1.5s infinite;
        }
        
        @keyframes blink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }
        
        .chat-close {
            background: none;
            border: none;
            color: #8a6e9e;
            font-size: 1.3rem;
            cursor: pointer;
            transition: 0.2s;
            padding: 0 0.3rem;
            line-height: 1;
        }
        
        .chat-close:hover {
            color: #fff;
            transform: rotate(90deg);
        }
        
        .chat-messages {
            flex: 1;
            padding: 1rem 1.2rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        
        .chat-messages .msg {
            max-width: 88%;
            padding: 0.6rem 1rem;
            border-radius: 1rem;
            font-size: 0.88rem;
            line-height: 1.5;
            animation: msgIn 0.3s ease;
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        
        @keyframes msgIn {
            0% {
                opacity: 0;
                transform: translateY(10px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .chat-messages .msg.bot {
            background: rgba(139, 92, 246, 0.15);
            color: #c4b5fd;
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }
        
        .chat-messages .msg.user {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            color: #fff;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }
        
        .chat-messages .msg.system {
            background: rgba(251, 191, 36, 0.1);
            color: #fef3c7;
            align-self: center;
            text-align: center;
            font-size: 0.78rem;
            border: 1px solid rgba(251, 191, 36, 0.15);
            border-radius: 2rem;
            padding: 0.4rem 1rem;
            max-width: 95%;
        }
        
        .chat-footer {
            padding: 0.6rem 1rem 0.8rem;
            border-top: 1px solid rgba(139, 92, 246, 0.1);
            display: flex;
            gap: 0.5rem;
            flex-shrink: 0;
            flex-wrap: wrap;
            background: rgba(15, 12, 41, 0.5);
        }
        
        .chat-footer input {
            flex: 1;
            padding: 0.6rem 1rem;
            border-radius: 40px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: #e0d4ff;
            font-size: 0.9rem;
            outline: none;
            min-width: 100px;
            transition: 0.2s;
        }
        
        .chat-footer input::placeholder {
            color: rgba(200, 180, 220, 0.4);
        }
        
        .chat-footer input:focus {
            border-color: #8b5cf6;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .chat-footer .send-btn {
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.9rem;
        }
        
        .chat-footer .send-btn:hover {
            transform: scale(1.04);
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
        }
        
        .chat-footer .send-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }
        
        .auth-overlay {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            gap: 0.8rem;
            flex: 1;
            text-align: center;
        }
        
        .auth-overlay.show {
            display: flex;
        }
        
        .auth-overlay .auth-icon {
            font-size: 2.5rem;
            margin-bottom: 0.2rem;
        }
        
        .auth-overlay h4 {
            color: #e0d4ff;
            font-size: 1.1rem;
        }
        
        .auth-overlay p {
            color: #8a6e9e;
            font-size: 0.9rem;
            max-width: 260px;
        }
        
        .auth-btns {
            display: flex;
            gap: 0.6rem;
            margin-top: 0.3rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .auth-btns button {
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.9rem;
        }
        
        .auth-btns .login-btn {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            color: #fff;
        }
        
        .auth-btns .login-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
        }
        
        .auth-btns .register-btn {
            background: rgba(139, 92, 246, 0.15);
            color: #c4b5fd;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }
        
        .auth-btns .register-btn:hover {
            background: rgba(139, 92, 246, 0.25);
            transform: scale(1.05);
        }
        
        .quick-replies {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            padding: 0.3rem 0.8rem 0.6rem;
            border-top: 1px solid rgba(139, 92, 246, 0.05);
            justify-content: center;
            background: rgba(15, 12, 41, 0.3);
        }
        
        .quick-replies button {
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.12);
            color: #c4b5fd;
            padding: 0.25rem 0.7rem;
            border-radius: 30px;
            font-size: 0.65rem;
            cursor: pointer;
            transition: 0.2s;
            font-family: inherit;
        }
        
        .quick-replies button:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: #8b5cf6;
            color: #fff;
        }
        
        .footer {
            background: linear-gradient(135deg, #0f0c29, #1a1040, #1e3a5f);
            color: #c4b5fd;
            padding: 3rem 0 1.5rem 0;
            margin-top: 4rem;
            border-top: 1px solid rgba(139, 92, 246, 0.15);
        }
        
        .footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
        }
        
        .footer .footer-logo .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #8b5cf6, #ec489a);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .footer .footer-logo .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .footer .footer-logo .brand-text {
            font-size: 1.4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, #c4b5fd, #f0b6d0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .footer .footer-logo .brand-tagline {
            font-size: 0.55rem;
            color: #a78bfa;
            opacity: 0.7;
            display: block;
            letter-spacing: 0.5px;
        }
        
        .footer h5 {
            color: #e0d4ff;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #8b5cf6, #a855f7);
            border-radius: 10px;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer ul li a {
            color: #b8a5d4;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .footer ul li a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }
        
        .footer .social-links {
            display: flex;
            gap: 12px;
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }
        
        .footer .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.12);
            color: #c4b5fd;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            text-decoration: none;
            border: 1px solid rgba(139, 92, 246, 0.08);
        }
        
        .footer .social-links a:hover {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }
        
        .footer .partner-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.4rem 0.8rem;
            background: rgba(139, 92, 246, 0.06);
            border-radius: 12px;
            border: 1px solid rgba(139, 92, 246, 0.06);
            transition: all 0.3s ease;
        }
        
        .footer .partner-item:hover {
            background: rgba(139, 92, 246, 0.12);
            border-color: rgba(139, 92, 246, 0.15);
        }
        
        .footer .partner-item .partner-icon {
            font-size: 1.3rem;
        }
        
        .footer .partner-item .partner-name {
            font-size: 0.85rem;
            color: #e0d4ff;
            font-weight: 500;
        }
        
        .footer .partner-item .partner-desc {
            font-size: 0.65rem;
            color: #8a6e9e;
        }
        
        .footer .footer-bottom {
            border-top: 1px solid rgba(139, 92, 246, 0.08);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #8a6e9e;
        }
        
        .footer .footer-bottom a {
            color: #a78bfa;
            text-decoration: none;
        }
        
        .footer .footer-bottom a:hover {
            color: #ffffff;
        }
        
        @media (max-width: 768px) {
            .cookie-popup {
                margin: 20px;
                left: 20px;
                right: 20px;
                transform: translateX(0);
                flex-direction: column;
                text-align: center;
            }
            .cookie-popup.show {
                transform: translateX(0);
            }
            .category-grid {
                grid-template-columns: 1fr;
            }
            .chat-window {
                width: 95vw;
                height: 65vh;
                border-radius: 1.5rem;
            }
            .chat-float {
                bottom: 0.8rem;
                right: 0.8rem;
            }
            .chat-toggle {
                width: 55px;
                height: 55px;
                font-size: 1.5rem;
            }
            .navbar-custom .navbar-nav {
                padding-top: 0.5rem;
            }
            .navbar-custom .nav-link {
                padding: 0.6rem 1rem !important;
                text-align: center;
            }
            .footer .col-md-3 {
                margin-bottom: 2rem;
            }
            .footer .social-links {
                justify-content: center;
            }
            .footer h5::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .footer .footer-logo {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .chat-footer {
                flex-direction: column;
                gap: 0.4rem;
            }
            .chat-footer .send-btn {
                width: 100%;
                justify-content: center;
            }
            .auth-btns {
                flex-direction: column;
                width: 100%;
            }
            .auth-btns button {
                width: 100%;
            }
            .quick-replies {
                gap: 0.2rem;
                padding: 0.2rem 0.5rem 0.4rem;
            }
            .quick-replies button {
                font-size: 0.6rem;
                padding: 0.2rem 0.5rem;
            }
        }
        
        .navbar-custom {
            background: rgba(15, 12, 41, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(139, 92, 246, 0.15);
            position: sticky;
            top: 0;
            z-index: 9998;
        }
        
        .navbar-custom .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
            padding: 0;
        }
        
        .navbar-custom .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #8b5cf6, #ec489a);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: bold;
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }
        
        .navbar-custom .brand-text {
            background: linear-gradient(135deg, #ffffff, #c4b5fd, #f0b6d0);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }
        
        .navbar-custom .brand-tagline {
            font-size: 0.55rem;
            color: #a78bfa;
            opacity: 0.7;
            display: block;
            margin-top: -2px;
            letter-spacing: 0.5px;
        }
        
        .navbar-custom .nav-link {
            color: #c4b5fd !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            border-radius: 40px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .navbar-custom .nav-link:hover {
            color: #ffffff !important;
            background: rgba(139, 92, 246, 0.15);
            transform: translateY(-2px);
        }
        
        .navbar-custom .nav-link.active {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(236, 72, 153, 0.15));
            color: #ffffff !important;
        }
        
        .navbar-custom .nav-link .icon {
            margin-right: 6px;
        }
        
        .navbar-custom .dropdown-menu {
            background: rgba(15, 12, 41, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 1rem;
            padding: 0.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            min-width: 200px;
        }
        
        .navbar-custom .dropdown-item {
            color: #c4b5fd;
            padding: 0.6rem 1rem;
            border-radius: 0.6rem;
            transition: all 0.2s ease;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-custom .dropdown-item:hover {
            background: rgba(139, 92, 246, 0.15);
            color: #ffffff;
        }
        
        .navbar-custom .dropdown-item .icon {
            font-size: 1rem;
        }
        
        .navbar-custom .dropdown-toggle::after {
            margin-left: 6px;
            opacity: 0.6;
        }
        
        .navbar-custom .navbar-toggler {
            border-color: rgba(139, 92, 246, 0.3);
            color: #c4b5fd;
            padding: 0.4rem 0.8rem;
        }
        
        .navbar-custom .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(196, 181, 253, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .cookie-popup {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: linear-gradient(135deg, #1e3a5f, #1e40af, #059669);
            color: white;
            padding: 20px 30px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            z-index: 10000;
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 650px;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            pointer-events: none;
        }
        
        .cookie-popup.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
            pointer-events: all;
        }
        
        .cookie-popup i {
            font-size: 2rem;
            margin-right: 15px;
        }
        
        .cookie-popup-content {
            flex: 1;
        }
        
        .cookie-popup h4 {
            margin: 0 0 5px 0;
            font-size: 1.2rem;
        }
        
        .cookie-popup p {
            margin: 0;
            font-size: 0.85rem;
            opacity: 0.9;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-accept {
            background: white;
            color: #1e40af;
            border: none;
            padding: 8px 25px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .cookie-necessary {
            background: transparent;
            color: white;
            border: 1px solid white;
            padding: 8px 25px;
            border-radius: 25px;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .cookie-accept:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-necessary:hover {
            background: rgba(255, 255, 255, 0.1);
        }
    