/* ============================================
   24/7 SUPPORT SECTION - Modern UI Design
   ============================================ */

/* Support Section Container */
.support-section-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #8b5cf6 100%);
    overflow: hidden;
}

.support-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Content Wrapper */
.support-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Modern Heading */
.support-section-modern .heading-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.support-section-modern .heading-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 20px;
}

/* Description Text */
.support-section-modern .support-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 600px;
}

/* Feature List */
.support-features-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.support-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.support-features-list li:hover {
    transform: translateX(8px);
    color: #ffffff;
}

.support-features-list li i {
    font-size: 1.25rem;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Modern Button Design */
.btn-support-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #160f3e;
    background: linear-gradient(135deg, #d4af37 0%, #f6e27a 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.4),
        0 0 0 0 rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-support-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f6e27a 0%, #d4af37 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-support-contact span {
    position: relative;
    z-index: 1;
}

.btn-support-contact i {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    transition: transform 0.4s ease;
}

.btn-support-contact:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(212, 175, 55, 0.6),
        0 0 0 8px rgba(212, 175, 55, 0.2);
    color: #160f3e;
}

.btn-support-contact:hover::before {
    opacity: 1;
}

.btn-support-contact:hover i {
    transform: translateX(4px);
}

.btn-support-contact:active {
    transform: translateY(-2px) scale(1.02);
}

/* Support Image Container */
.support-image-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.support-image-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Decorative Elements */
.support-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.support-decoration.deco-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.support-decoration.deco-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    animation-delay: 1s;
}

.support-decoration.deco-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Info Cards */
.support-info-cards {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.support-info-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.support-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.support-info-card .card-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 12px;
}

.support-info-card .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.support-info-card .card-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .support-section-modern {
        padding: 80px 0;
    }

    .support-section-modern .heading-title {
        font-size: 2.5rem;
    }

    .support-section-modern .support-description {
        font-size: 1rem;
    }

    .btn-support-contact {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .support-image-container {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .support-section-modern {
        padding: 60px 0;
    }

    .support-section-modern .heading-title {
        font-size: 2rem;
    }

    .support-section-modern .heading-subtitle {
        font-size: 0.875rem;
        letter-spacing: 1.5px;
    }

    .support-section-modern .support-description {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    .support-features-list li {
        font-size: 0.9375rem;
        margin-bottom: 12px;
    }

    .btn-support-contact {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .support-info-cards {
        flex-direction: column;
    }

    .support-info-card {
        min-width: 100%;
    }

    .support-decoration {
        display: none;
    }
}

@media (max-width: 576px) {
    .support-section-modern .heading-title {
        font-size: 1.75rem;
    }

    .support-features-list li {
        font-size: 0.875rem;
    }

    .support-features-list li i {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .btn-support-contact {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
}
