/* 24/7 Support Hero Section */
.support-hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 50%, #4a7bb5 100%);
    padding: clamp(30px, 8vw, 60px) 0;
    position: relative;
    overflow: hidden;
}

.support-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(74, 123, 181, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.support-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Content */
.support-hero-left {
    color: white;
    padding-bottom: 80px;
}

.support-hero-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: white;
    font-weight: 700;
}

.support-hero-subtitle {
    font-size: clamp(0.938rem, 2.5vw, 1.125rem);
    line-height: 1.6;
    margin: 0 0 35px 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Services Grid */
.support-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 35px;
}

.support-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}

.support-service-item i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Phone Button */
.support-hero-phone-btn {
    background: #ff5722;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
    margin-bottom: 16px;
    max-width: 100%;
}

.support-hero-phone-btn:hover {
    background: #f4511e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.5);
}

.support-hero-phone-btn i {
    font-size: 1.25rem;
}

/* Availability Text */
.support-hero-availability {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.support-hero-availability i {
    font-size: 1rem;
}

/* Right Side - Image */
.support-hero-right {
    position: relative;
}

.support-hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.support-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Badges */
.support-badge {
    position: absolute;
    background: #ff5722;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.4);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.support-badge-rating {
    bottom: 30px;
    left: -30px;
    min-width: 160px;
}

.support-badge-award {
    top: 20px;
    right: -30px;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
}

.support-badge-award i {
    font-size: 1.75rem;
    color: white;
}

.badge-stars {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
    color: white;
}

.badge-text-small {
    font-size: 0.813rem;
    font-weight: 700;
    line-height: 1.3;
    color: white;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .support-hero-content {
        gap: 40px;
    }
    
    .support-hero-title {
        font-size: 2.5rem;
    }
    
    .support-badge-rating {
        left: 10px;
        bottom: 20px;
    }
    
    .support-badge-award {
        right: 10px;
        top: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .support-hero-section {
        padding: 40px 0;
    }
    
    .support-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-hero-right {
        display: none;
    }
    
    /* Hide specific Unsplash image */
    img[src*="photo-1702341562947-0936bbdd677f"] {
        display: none;
    }
    
    .support-hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .support-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    
    .support-services-grid {
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .support-service-item {
        font-size: 0.813rem;
        gap: 10px;
    }
    
    .support-service-item i {
        font-size: 1.125rem;
    }
    
    .support-hero-phone-btn {
        font-size: 1.25rem;
        padding: 16px 32px;
        width: 100%;
        justify-content: center;
    }
    
    .support-hero-availability {
        font-size: 0.813rem;
        justify-content: center;
    }
    
    .support-hero-image-container {
        border-radius: 12px;
    }
    
    .support-hero-image {
        border-radius: 12px;
    }
    
    .support-badge-rating {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        min-width: 140px;
        padding: 12px 16px;
    }
    
    .support-badge-award {
        top: 15px;
        right: 15px;
        left: auto;
        transform: none;
        min-width: 160px;
        padding: 16px 20px;
    }
    
    .badge-stars {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .badge-text-small {
        font-size: 0.75rem;
    }
    
    .support-badge-award i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .support-hero-title {
        font-size: 1.75rem;
    }
    
    .support-services-grid {
        grid-template-columns: 1fr;
    }
    
    .support-hero-phone-btn {
        font-size: 1.125rem;
        padding: 14px 28px;
    }
}