﻿

.service-card-clean {
    background: linear-gradient(180deg, rgba(26, 34, 56, 0.8) 0%, rgba(10, 17, 40, 0.9) 100%);
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    /* Top border gradient effect */
    .service-card-clean::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #0066FF, #00D9FF, #0066FF, transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-card-clean:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 102, 255, 0.6);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
    }

        .service-card-clean:hover::before {
            opacity: 1;
        }

/* Service Icon - Updated to circular container */
.service-icon-clean {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 217, 255, 0.2));
    border: 2px solid rgba(0, 102, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .service-icon-clean i {
        font-size: 2.5rem;
        color: #00D9FF;
        transition: all 0.3s ease;
    }

.service-card-clean:hover .service-icon-clean {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 217, 255, 0.3));
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

    .service-card-clean:hover .service-icon-clean i {
        transform: rotate(-10deg);
    }

/* Service Title */
.service-title-clean {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

/* Service Description */
.service-description-clean {
    font-size: 0.95rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Learn More Button */
.btn-service-learn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-service-learn:hover {
        background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
        color: #FFFFFF;
        border-color: transparent;
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 102, 255, 0.5);
    }

/* ============================================
   PACKAGES SECTION - UPDATED TO MATCH CUSTOM INSTALLATIONS
   ============================================ */

.pricing-card-clean {
    background: linear-gradient(180deg, rgba(26, 34, 56, 0.8) 0%, rgba(10, 17, 40, 0.9) 100%);
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    /* Top border gradient effect */
    .pricing-card-clean::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #0066FF, #00D9FF, #0066FF, transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .pricing-card-clean:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 102, 255, 0.6);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
    }

        .pricing-card-clean:hover::before {
            opacity: 1;
        }

/* Popular Package Badge */
.popular-card-clean::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: #FFFFFF;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px rgba(0, 102, 255, 0.5);
}

/* Package Header */
.package-header-clean {
    margin-bottom: 1.5rem;
}

/* Package Icon - Updated to circular container */
.package-icon-clean {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 217, 255, 0.2));
    border: 2px solid rgba(0, 102, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 2.5rem;
    color: #00D9FF;
}

.pricing-card-clean:hover .package-icon-clean {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 217, 255, 0.3));
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

/* Package Name */
.package-name-clean {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Package Subtitle */
.package-subtitle-clean {
    font-size: 0.95rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

/* Package Price - Updated to match custom installation card style */
.package-price-clean {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    margin-bottom: 1.5rem;
}

.price-amount-clean {
    font-size: 2rem;
    font-weight: 800;
    color: #00D9FF;
    line-height: 1;
}

.price-period-clean {
    font-size: 0.85rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Package Features - Updated to match custom installation style */
.package-features-clean {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

    .package-features-clean li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        color: #E5E7EB;
        font-size: 0.9rem;
    }

        .package-features-clean li i {
            color: #00E676;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

/* ============================================
   CUSTOM INSTALLATIONS - KEEP EXISTING STYLES
   (These are already perfect, just included for reference)
   ============================================ */

.custom-item-card {
    background: linear-gradient(180deg, rgba(26, 34, 56, 0.8) 0%, rgba(10, 17, 40, 0.9) 100%);
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .custom-item-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #0066FF, #00D9FF, #0066FF, transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .custom-item-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 102, 255, 0.6);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
    }

        .custom-item-card:hover::before {
            opacity: 1;
        }

.item-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 217, 255, 0.2));
    border: 2px solid rgba(0, 102, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .item-icon i {
        font-size: 2.5rem;
        color: #00D9FF;
        transition: all 0.3s ease;
    }

.custom-item-card:hover .item-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 217, 255, 0.3));
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

    .custom-item-card:hover .item-icon i {
        transform: rotate(-10deg);
    }

.item-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.item-description {
    font-size: 0.95rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.item-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.85rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #00D9FF;
    line-height: 1;
}

.price-unit {
    font-size: 0.85rem;
    color: #9CA3AF;
}

.item-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

    .item-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        color: #E5E7EB;
        font-size: 0.9rem;
    }

        .item-features li i {
            color: #00E676;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 968px) {
    .service-card-clean,
    .pricing-card-clean,
    .custom-item-card {
        padding: 1.75rem;
    }

    .service-icon-clean,
    .package-icon-clean,
    .item-icon {
        width: 70px;
        height: 70px;
    }

        .service-icon-clean i,
        .package-icon-clean,
        .item-icon i {
            font-size: 2rem;
        }

    .service-title-clean,
    .package-name-clean,
    .item-name {
        font-size: 1.15rem;
    }

    .price-amount-clean,
    .price-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .service-card-clean,
    .pricing-card-clean,
    .custom-item-card {
        padding: 1.5rem;
    }

    .service-icon-clean,
    .package-icon-clean,
    .item-icon {
        width: 60px;
        height: 60px;
    }

        .service-icon-clean i,
        .package-icon-clean,
        .item-icon i {
            font-size: 1.75rem;
        }

    .popular-card-clean::after {
        font-size: 0.65rem;
        padding: 4px 35px;
    }
}
/* ============================================
   PERFECT ICON CENTERING FIX
   For icons directly applied with package-icon-clean class
   ============================================ */

/* Package Icon - The <i> element itself is the circular container */
.package-icon-clean {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 217, 255, 0.2));
    border: 2px solid rgba(0, 102, 255, 0.4);
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    font-size: 2.5rem;
    color: #00D9FF;
    position: relative;
}

    /* Center the FontAwesome icon content (::before pseudo-element) */
    .package-icon-clean::before {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        vertical-align: middle;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

/* Remove any inherited text-align that might offset the icon */
.package-header-clean {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover effect - rotate container but keep icon centered */
.pricing-card-clean:hover .package-icon-clean {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 217, 255, 0.3));
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

    .pricing-card-clean:hover .package-icon-clean::before {
        /* Counter-rotate to keep icon upright and centered */
        transform: translate(-50%, -50%) rotate(-10deg);
    }

/* Responsive sizing */
@media (max-width: 968px) {
    .package-icon-clean {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .package-icon-clean {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* ============================================
   APPLY SAME FIX TO SERVICES ICONS
   (in case they need it too)
   ============================================ */

.service-icon-clean {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 217, 255, 0.2));
    border: 2px solid rgba(0, 102, 255, 0.4);
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    position: relative;
}

    .service-icon-clean i {
        font-size: 2.5rem;
        color: #00D9FF;
        transition: all 0.3s ease;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* If service icon is also directly on <i> element */
    .service-icon-clean.fas,
    .service-icon-clean.far,
    .service-icon-clean.fab {
        font-size: 2.5rem;
        color: #00D9FF;
    }

        .service-icon-clean.fas::before,
        .service-icon-clean.far::before,
        .service-icon-clean.fab::before {
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            vertical-align: middle;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

/* ============================================
   CUSTOM INSTALLATION ICONS
   (ensure consistency)
   ============================================ */

.item-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 217, 255, 0.2));
    border: 2px solid rgba(0, 102, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

    .item-icon i {
        font-size: 2.5rem;
        color: #00D9FF;
        transition: all 0.3s ease;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ============================================
   ENSURE ALL FONTAWESOME ICONS ARE CENTERED
   ============================================ */

    /* Remove any default margins/padding from FontAwesome */
    .package-icon-clean,
    .service-icon-clean i,
    .item-icon i {
        margin: 0;
        padding: 0;
    }

        /* Force proper alignment */
        .package-icon-clean::before,
        .service-icon-clean::before,
        .service-icon-clean i::before,
        .item-icon i::before {
            margin: 0 !important;
            padding: 0 !important;
            display: inline-flex;
            vertical-align: middle;
        }

/* ============================================
   SERVICE MODAL ENHANCEMENTS
   ============================================ */

/* Modal Content Wrapper */
.service-modal-content {
    padding: 0.5rem;
}

.modal-intro {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    border-left: 4px solid #0066FF;
    border-radius: 8px;
}

    .modal-intro .lead {
        font-size: 1.1rem;
        color: #C5C9D4;
        margin: 0;
        line-height: 1.6;
    }

/* Packages Header */
.packages-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

    .packages-header i {
        color: #00D9FF;
    }

/* Individual Products Header */
.individual-products-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

    .individual-products-header i {
        color: #0066FF;
    }

/* Package Price in Modal Cards */
.package-price-modal {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
    border: 2px solid rgba(0, 102, 255, 0.4);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    color: #00D9FF;
    margin: 0.75rem 0 1rem;
}

/* Modal Footer Actions */
.modal-footer-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 102, 255, 0.2);
}

    .modal-footer-actions .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        font-weight: 600;
    }

/* Enhanced Suggestion Cards for Modals */
.custom-suggestions-grid .suggestion-card {
    position: relative;
    overflow: hidden;
}

    .custom-suggestions-grid .suggestion-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0066FF 0%, #00D9FF 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .custom-suggestions-grid .suggestion-card:hover::before {
        transform: scaleX(1);
    }

    .custom-suggestions-grid .suggestion-card .btn-primary {
        background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
        transition: all 0.3s ease;
    }

        .custom-suggestions-grid .suggestion-card .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 102, 255, 0.6);
        }

/* Enhanced Modal Checkbox Items */
.custom-options-checkboxes .custom-checkbox-item label {
    cursor: pointer;
    user-select: none;
}

.custom-options-checkboxes .custom-checkbox-item:active label {
    transform: scale(0.98);
}

/* Modal Body Improvements */
.modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

    .modal-body::-webkit-scrollbar {
        width: 8px;
    }

    .modal-body::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    .modal-body::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #0066FF 0%, #00D9FF 100%);
        border-radius: 10px;
    }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #00D9FF 0%, #0066FF 100%);
        }

/* Extra Large Modal Styling */
.modal-xl {
    max-width: 1200px;
}

/* Service Card Icons Animation */
.suggestion-card-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Modal Adjustments */
@media (max-width: 1200px) {
    .modal-xl {
        max-width: 95%;
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {
    .custom-suggestions-grid {
        grid-template-columns: 1fr;
    }

    .modal-footer-actions {
        flex-direction: column-reverse;
    }

        .modal-footer-actions .btn {
            width: 100%;
        }

    .packages-header {
        font-size: 1.25rem;
    }

    .individual-products-header {
        font-size: 1.1rem;
    }
}

/* Improved Focus States for Accessibility */
.suggestion-card:focus-within,
.custom-checkbox-item:focus-within label {
    outline: 2px solid #00D9FF;
    outline-offset: 2px;
}

/* Click Effect for Cards */
.suggestion-card:active {
    transform: translateY(-3px) scale(0.98);
}

/* Package Card Glow Effect */
.suggestion-card {
    position: relative;
}

    .suggestion-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        border-radius: 15px;
    }

    .suggestion-card:hover::after {
        opacity: 1;
    }

/* Button Loading State */
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Enhanced Transition Effects */
.suggestion-card,
.custom-checkbox-item label,
.btn-primary,
.modal-footer-actions .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    /* Badge Styling for Popular/Featured Items */
    .suggestion-card .badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
        color: #FFFFFF;
        padding: 0.375rem 0.875rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* Smooth Modal Transitions */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: none;
}

/* Grid Gap Adjustments */
.custom-suggestions-grid {
    gap: 1.75rem;
}

/* Icon Color Variations */
.suggestion-card-icon.text-primary {
    color: #0066FF !important;
}

.suggestion-card-icon.text-success {
    color: #00E676 !important;
}

.suggestion-card-icon.text-warning {
    color: #FFD600 !important;
}

/* Enhanced List Styling in Cards */
.suggestion-card-examples ul li {
    transition: color 0.2s ease;
}

.suggestion-card:hover .suggestion-card-examples ul li {
    color: #E0E5F0;
}

/* Mobile Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    .suggestion-card:hover {
        transform: none;
    }

    .suggestion-card:active {
        transform: scale(0.98);
    }
}

/* Print Styles */
@media print {
    .modal-footer-actions {
        display: none;
    }

    .suggestion-card {
        page-break-inside: avoid;
    }
}

/* Dark Mode Enhancements (if applicable) */
@media (prefers-color-scheme: dark) {
    .modal-intro {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 217, 255, 0.08) 100%);
    }

    .package-price-modal {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 217, 255, 0.15) 100%);
    }
}

/* Accessibility: High Contrast Mode */
@media (prefers-contrast: high) {
    .suggestion-card {
        border-width: 3px;
    }

    .btn-primary {
        border: 2px solid #FFFFFF;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .suggestion-card,
    .custom-checkbox-item label,
    .btn-primary,
    .suggestion-card-icon {
        animation: none;
        transition: none;
    }
}
/* ============================================
   SERVICE MODAL ENHANCEMENTS
   ============================================ */

/* Modal Content Wrapper */
.service-modal-content {
    padding: 0.5rem;
}

/* Location Notice Alert */
.location-notice {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.15) 0%, rgba(0, 230, 118, 0.05) 100%);
    border: 2px solid rgba(0, 230, 118, 0.4);
    border-left: 5px solid #00E676;
    color: #C5C9D4;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

    .location-notice i {
        font-size: 1.5rem;
        color: #00E676;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .location-notice strong {
        color: #FFFFFF;
        font-weight: 700;
    }

.modal-intro {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    border-left: 4px solid #0066FF;
    border-radius: 8px;
}

    .modal-intro .lead {
        font-size: 1.1rem;
        color: #C5C9D4;
        margin: 0;
        line-height: 1.6;
    }

/* Packages Header */
.packages-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

    .packages-header i {
        color: #00D9FF;
    }

/* Individual Products Header */
.individual-products-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

    .individual-products-header i {
        color: #0066FF;
    }

/* Package Price in Modal Cards */
.package-price-modal {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
    border: 2px solid rgba(0, 102, 255, 0.4);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    color: #00D9FF;
    margin: 0.75rem 0 1rem;
}

/* Modal Footer Actions */
.modal-footer-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 102, 255, 0.2);
}

    .modal-footer-actions .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        font-weight: 600;
    }

/* Enhanced Suggestion Cards for Modals */
.custom-suggestions-grid .suggestion-card {
    position: relative;
    overflow: hidden;
}

    .custom-suggestions-grid .suggestion-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0066FF 0%, #00D9FF 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .custom-suggestions-grid .suggestion-card:hover::before {
        transform: scaleX(1);
    }

    .custom-suggestions-grid .suggestion-card .btn-primary {
        background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
        transition: all 0.3s ease;
    }

        .custom-suggestions-grid .suggestion-card .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 102, 255, 0.6);
        }

/* Enhanced Modal Checkbox Items */
.custom-options-checkboxes .custom-checkbox-item label {
    cursor: pointer;
    user-select: none;
}

.custom-options-checkboxes .custom-checkbox-item:active label {
    transform: scale(0.98);
}

/* Modal Body Improvements */
.modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

    .modal-body::-webkit-scrollbar {
        width: 8px;
    }

    .modal-body::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    .modal-body::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #0066FF 0%, #00D9FF 100%);
        border-radius: 10px;
    }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #00D9FF 0%, #0066FF 100%);
        }

/* Extra Large Modal Styling */
.modal-xl {
    max-width: 1200px;
}

/* Service Card Icons Animation */
.suggestion-card-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Modal Adjustments */
@media (max-width: 1200px) {
    .modal-xl {
        max-width: 95%;
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {
    .custom-suggestions-grid {
        grid-template-columns: 1fr;
    }

    .modal-footer-actions {
        flex-direction: column-reverse;
    }

        .modal-footer-actions .btn {
            width: 100%;
        }

    .packages-header {
        font-size: 1.25rem;
    }

    .individual-products-header {
        font-size: 1.1rem;
    }

    .location-notice {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

        .location-notice i {
            margin: 0;
        }
}

/* Improved Focus States for Accessibility */
.suggestion-card:focus-within,
.custom-checkbox-item:focus-within label {
    outline: 2px solid #00D9FF;
    outline-offset: 2px;
}

/* Click Effect for Cards */
.suggestion-card:active {
    transform: translateY(-3px) scale(0.98);
}

/* Package Card Glow Effect */
.suggestion-card {
    position: relative;
}

    .suggestion-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        border-radius: 15px;
    }

    .suggestion-card:hover::after {
        opacity: 1;
    }

/* Button Loading State */
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Enhanced Transition Effects */
.suggestion-card,
.custom-checkbox-item label,
.btn-primary,
.modal-footer-actions .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    /* Badge Styling for Popular/Featured Items */
    .suggestion-card .badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
        color: #FFFFFF;
        padding: 0.375rem 0.875rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* Smooth Modal Transitions */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: none;
}

/* Grid Gap Adjustments */
.custom-suggestions-grid {
    gap: 1.75rem;
}

/* Icon Color Variations */
.suggestion-card-icon.text-primary {
    color: #0066FF !important;
}

.suggestion-card-icon.text-success {
    color: #00E676 !important;
}

.suggestion-card-icon.text-warning {
    color: #FFD600 !important;
}

/* Enhanced List Styling in Cards */
.suggestion-card-examples ul li {
    transition: color 0.2s ease;
}

.suggestion-card:hover .suggestion-card-examples ul li {
    color: #E0E5F0;
}

/* Mobile Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    .suggestion-card:hover {
        transform: none;
    }

    .suggestion-card:active {
        transform: scale(0.98);
    }
}

/* Print Styles */
@media print {
    .modal-footer-actions {
        display: none;
    }

    .suggestion-card {
        page-break-inside: avoid;
    }
}

/* Dark Mode Enhancements (if applicable) */
@media (prefers-color-scheme: dark) {
    .modal-intro {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 217, 255, 0.08) 100%);
    }

    .package-price-modal {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 217, 255, 0.15) 100%);
    }
}

/* Accessibility: High Contrast Mode */
@media (prefers-contrast: high) {
    .suggestion-card {
        border-width: 3px;
    }

    .btn-primary {
        border: 2px solid #FFFFFF;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .suggestion-card,
    .custom-checkbox-item label,
    .btn-primary,
    .suggestion-card-icon {
        animation: none;
        transition: none;
    }
}
/* ============================================
   ENHANCED WHY CHOOSE INNOTEKSO SECTION
   ============================================ */

.why-choose-section-enhanced {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 17, 40, 1) 0%, rgba(5, 10, 25, 1) 100%);
    position: relative;
    overflow: hidden;
}

    .why-choose-section-enhanced::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.08) 0%, transparent 40%);
        pointer-events: none;
    }

.why-choose-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.why-item-enhanced {
    background: linear-gradient(180deg, rgba(26, 34, 56, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    .why-item-enhanced::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0066FF 0%, #00D9FF 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .why-item-enhanced:hover::before {
        transform: scaleX(1);
    }

    .why-item-enhanced::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.6s ease;
        border-radius: 50%;
        pointer-events: none;
    }

    .why-item-enhanced:hover::after {
        transform: translate(-50%, -50%) scale(1);
    }

    .why-item-enhanced:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 102, 255, 0.6);
        box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3), 0 0 40px rgba(0, 217, 255, 0.2);
    }

.why-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.why-icon-enhanced {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 217, 255, 0.15) 100%);
    border: 3px solid rgba(0, 102, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00D9FF;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

    .why-icon-enhanced::before {
        content: '';
        position: absolute;
        inset: -3px;
        background: linear-gradient(135deg, #0066FF, #00D9FF);
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

.why-item-enhanced:hover .why-icon-enhanced {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
}

    .why-item-enhanced:hover .why-icon-enhanced::before {
        opacity: 0.3;
        animation: pulse-ring 2s infinite;
    }

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.why-item-enhanced h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-item-enhanced p {
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.75;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

.why-item-enhanced:hover p {
    color: #C5C9D4;
}

/* Badge Styling */
.why-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.2) 0%, rgba(0, 230, 118, 0.1) 100%);
    border: 2px solid rgba(0, 230, 118, 0.4);
    color: #00E676;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    transition: all 0.3s ease;
}

.why-item-enhanced:hover .why-badge {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.3) 0%, rgba(0, 230, 118, 0.15) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

/* Location Notice in Modals */
.location-notice {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.15) 0%, rgba(0, 230, 118, 0.05) 100%);
    border: 2px solid rgba(0, 230, 118, 0.4);
    border-left: 5px solid #00E676;
    color: #C5C9D4;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

    .location-notice i {
        font-size: 1.5rem;
        color: #00E676;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .location-notice strong {
        color: #FFFFFF;
        font-weight: 700;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-grid-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section-enhanced {
        padding: 4rem 0;
    }

    .why-choose-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-item-enhanced {
        padding: 2rem 1.5rem;
    }

    .why-icon-enhanced {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .why-item-enhanced h3 {
        font-size: 1.3rem;
    }

    .why-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.35rem 0.85rem;
        font-size: 0.7rem;
    }

    .location-notice {
        flex-direction: column;
        text-align: center;
    }

        .location-notice i {
            margin: 0;
        }
}

@media (max-width: 480px) {
    .why-item-enhanced {
        padding: 1.75rem 1.25rem;
    }

        .why-item-enhanced h3 {
            font-size: 1.2rem;
        }

        .why-item-enhanced p {
            font-size: 0.95rem;
        }
}

/* Animation for scroll-triggered appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll.why-item-enhanced {
    animation: fadeInUp 0.6s ease-out forwards;
}

    .animate-on-scroll.why-item-enhanced:nth-child(1) {
        animation-delay: 0.1s;
    }

    .animate-on-scroll.why-item-enhanced:nth-child(2) {
        animation-delay: 0.2s;
    }

    .animate-on-scroll.why-item-enhanced:nth-child(3) {
        animation-delay: 0.3s;
    }

    .animate-on-scroll.why-item-enhanced:nth-child(4) {
        animation-delay: 0.4s;
    }

    .animate-on-scroll.why-item-enhanced:nth-child(5) {
        animation-delay: 0.5s;
    }

    .animate-on-scroll.why-item-enhanced:nth-child(6) {
        animation-delay: 0.6s;
    }

/* Accessibility */
.why-item-enhanced:focus-within {
    outline: 3px solid #00D9FF;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .why-choose-section-enhanced {
        background: white;
        padding: 2rem 0;
    }

    .why-item-enhanced {
        page-break-inside: avoid;
        border: 1px solid #000;
    }

    .why-badge {
        border: 1px solid #000;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .why-choose-section-enhanced {
        background: linear-gradient(180deg, rgba(5, 10, 20, 1) 0%, rgba(2, 5, 15, 1) 100%);
    }

    .why-item-enhanced {
        background: linear-gradient(180deg, rgba(20, 28, 45, 0.9) 0%, rgba(10, 15, 30, 0.95) 100%);
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .why-item-enhanced {
        border-width: 3px;
    }

    .why-icon-enhanced {
        border-width: 4px;
    }

    .why-badge {
        border-width: 3px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .why-item-enhanced,
    .why-icon-enhanced,
    .why-item-enhanced::before,
    .why-item-enhanced::after,
    .why-badge {
        animation: none;
        transition: none;
    }

        .why-item-enhanced:hover {
            transform: none;
        }

            .why-item-enhanced:hover .why-icon-enhanced {
                transform: none;
            }
}

/* Hover effects for touch devices */
@media (hover: none) and (pointer: coarse) {
    .why-item-enhanced:hover {
        transform: none;
    }

    .why-item-enhanced:active {
        transform: scale(0.98);
    }
}
