/* =====================================
   One-Stop Service Hub Section
   ===================================== */

.service-hub-section {
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.service-hub-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Service Hub Grid */
.service-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Service Hub Card */
.service-hub-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(255, 107, 53, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-hub-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

/* Service Hub Icon */
.service-hub-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    position: relative;
}

.service-hub-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.2));
    transition: transform 0.4s ease;
}

.service-hub-card:hover .service-hub-icon img {
    transform: scale(1.1) rotate(5deg);
}

/* Service Hub Title */
.service-hub-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Tags Container */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

/* Service Tag Styling */
.service-tag-hub {
    display: inline-block;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    border: 2px solid #ffe5d9;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.service-tag-hub:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* ===================================== 
   One-Stop Badge Enhanced with Image
   ===================================== */

.one-stop-badge-enhanced {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 240, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 60px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.08);
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.one-stop-badge-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.03) 100%);
    pointer-events: none;
}

.one-stop-badge-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.25);
}

/* Badge Image Wrapper */
.badge-image-wrapper {
    flex-shrink: 0;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.badge-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.one-stop-badge-enhanced:hover .badge-image {
    transform: scale(1.02);
}

/* Badge CTA Wrapper */
.badge-cta-wrapper {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.badge-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1A2332 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-cta-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Explore Services Button */
.btn-explore-services {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-explore-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-explore-services:hover::before {
    left: 100%;
}

.btn-explore-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-explore-services:active {
    transform: translateY(-1px);
}

.btn-explore-services i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-explore-services:hover i {
    transform: translateX(5px);
}

/* Responsive for Enhanced Badge */
@media (max-width: 1024px) {
    .one-stop-badge-enhanced {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }
    
    .badge-image-wrapper {
        max-width: 500px;
    }
    
    .badge-cta-wrapper {
        text-align: center;
    }
    
    .badge-cta-title {
        font-size: 1.8rem;
    }
    
    .badge-cta-desc {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .one-stop-badge-enhanced {
        margin: 40px 15px 0;
        padding: 35px 25px;
        gap: 30px;
    }
    
    .badge-image-wrapper {
        max-width: 100%;
    }
    
    .badge-cta-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .badge-cta-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .btn-explore-services {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .one-stop-badge-enhanced {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .badge-cta-title {
        font-size: 1.4rem;
    }
    
    .badge-cta-desc {
        font-size: 0.9rem;
    }
    
    .btn-explore-services {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* One-Stop Badge - Glass Effect (Original) */
.one-stop-badge-glass {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #FF6B35, #F7931E) 1;
    position: relative;
    overflow: hidden;
}

.one-stop-badge-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    pointer-events: none;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.badge-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.badge-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    min-width: 30px;
    text-align: center;
}

.badge-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.4;
}

/* Kaleidoscope Arrow */
.kalei-arrow {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    animation: arrowPulse 2s infinite;
}

.kalei-arrow i {
    display: inline-block;
    filter: drop-shadow(0 3px 8px rgba(247, 147, 30, 0.3));
}

/* =====================================
   Execution Example Section
   ===================================== */

.execution-example-section {
    background: var(--white);
    position: relative;
}

/* Execution Flow */
.execution-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 20px;
}

/* Execution Phase */
.execution-phase {
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    border: 2px solid #ffe5d9;
    transition: all 0.4s ease;
    position: relative;
}

.execution-phase:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

/* Phase Number */
.phase-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Phase Icon */
.phase-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.phase-icon i {
    display: inline-block;
    transition: transform 0.4s ease;
}

.execution-phase:hover .phase-icon i {
    transform: scale(1.2) rotate(10deg);
}

/* Phase Title */
.execution-phase h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

/* Phase Services */
.phase-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-pill {
    display: inline-block;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    border: 1px solid #ffe5d9;
    transition: all 0.3s ease;
}

.service-pill:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Phase Arrow */
.phase-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0 10px;
}

.phase-arrow i {
    animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.6; }
}

/* Execution Highlight */
.execution-highlight {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #1A2332 0%, #2C3E50 100%);
    border-radius: 20px;
    color: white;
}

.execution-highlight i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
    display: block;
}

.execution-highlight h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

/* =====================================
   Responsive Design
   ===================================== */

@media (max-width: 1024px) {
    .service-hub-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .execution-flow {
        flex-direction: column;
    }
    
    .execution-phase {
        max-width: 100%;
        width: 100%;
    }
    
    .phase-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .one-stop-badge-glass {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .service-hub-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-hub-card {
        padding: 30px 20px;
    }
    
    .service-hub-icon {
        width: 100px;
        height: 100px;
    }
    
    .one-stop-badge-glass {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }
    
    .badge-item {
        padding: 15px;
    }
    
    .badge-item i {
        font-size: 1.5rem;
    }
    
    .badge-item span {
        font-size: 0.9rem;
    }
    
    .execution-phase {
        padding: 25px 20px;
    }
    
    .phase-services {
        gap: 6px;
    }
    
    .service-pill {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .execution-highlight h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .service-hub-card h3 {
        font-size: 1.2rem;
    }
    
    .service-tag-hub {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    .execution-phase h3 {
        font-size: 1.1rem;
    }
    
    .phase-icon {
        font-size: 2rem;
    }
    
    .badge-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
