/* Boost Services Page - Modern Hexagon Design */
/* Using Logo Colors: Orange (#FF9A3C), Pink (#FF4D7D), Purple (#8B5CF6), Blue (#3B82F6) */

.boost-services-page-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: rgba(13, 17, 23, 0.8);
    position: relative;
}

.boost-services-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 154, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Page Header */
.boost-services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.boost-services-hex-icon {
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #fff;
    animation: boost-services-hex-float 4s ease-in-out infinite;
}

@keyframes boost-services-hex-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.boost-services-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.boost-services-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Services Grid */
.boost-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Service Card */
.boost-service-card {
    transition: all 0.3s ease;
}

.boost-service-active {
    cursor: pointer;
}

.boost-service-hex-border {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.2), rgba(139, 92, 246, 0.2));
    padding: 2px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.boost-service-active:hover .boost-service-hex-border {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.4), rgba(255, 77, 125, 0.4));
    box-shadow: 0 10px 30px rgba(255, 154, 60, 0.3);
    transform: translateY(-5px);
}

.boost-service-hex-content {
    background: rgba(13, 17, 23, 0.95);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Icon Wrapper */
.boost-service-icon-wrapper {
    margin-bottom: 1.5rem;
}

.boost-service-hex-icon {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.2), rgba(139, 92, 246, 0.2));
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.boost-service-active:hover .boost-service-hex-icon {
    transform: rotate(180deg) scale(1.1);
}

.boost-service-hex-icon img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Title */
.boost-service-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Stats */
.boost-service-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.boost-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.boost-stat i {
    color: #FF9A3C;
}

/* Footer */
.boost-service-footer {
    margin-top: auto;
    width: 100%;
}

.boost-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.boost-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 154, 60, 0.4);
}

.boost-btn-hex {
    width: 25px;
    height: 25px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.boost-service-btn:hover .boost-btn-hex {
    transform: translateX(5px);
}

/* Coming Soon Badge */
.boost-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 77, 125, 0.3), rgba(255, 70, 85, 0.3));
    border: 1px solid rgba(255, 77, 125, 0.5);
    border-radius: 20px;
    color: #FF4D7D;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Coming Soon Card Styles */
.boost-service-soon .boost-service-hex-icon {
    opacity: 0.6;
}

.boost-service-soon .boost-service-title {
    color: rgba(255, 255, 255, 0.6);
}

.boost-service-soon:hover .boost-service-hex-border {
    background: linear-gradient(135deg, rgba(255, 77, 125, 0.3), rgba(255, 70, 85, 0.3));
    box-shadow: 0 10px 30px rgba(255, 77, 125, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .boost-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .boost-services-page-section {
        padding: 4rem 0;
    }
    
    .boost-services-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .boost-services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .boost-services-title {
        font-size: 2rem;
    }
    
    .boost-services-subtitle {
        font-size: 1rem;
    }
    
    .boost-services-hex-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .boost-service-hex-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .boost-services-page-section {
        padding: 3rem 0;
    }
    
    .boost-services-header {
        margin-bottom: 2.5rem;
    }
    
    .boost-service-hex-content {
        padding: 1.5rem;
    }
}

/* Loading Animation */
@keyframes boost-service-load {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.boost-service-card {
    animation: boost-service-load 0.5s ease forwards;
}
