/* Booster Applications Page - Modern Hexagon Design */
/* Using Logo Colors: Orange (#FF9A3C), Pink (#FF4D7D), Purple (#8B5CF6), Blue (#3B82F6) */

.booster-applications-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: rgba(13, 17, 23, 0.8);
    position: relative;
}

.booster-applications-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 */
.booster-app-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.booster-app-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: booster-app-hex-float 4s ease-in-out infinite;
}

@keyframes booster-app-hex-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.booster-app-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;
}

.booster-app-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Form Wrapper */
.booster-app-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.booster-app-hex-border {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.2), rgba(139, 92, 246, 0.2));
    padding: 3px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.booster-app-hex-border:hover {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.3), rgba(139, 92, 246, 0.3));
    box-shadow: 0 15px 40px rgba(255, 154, 60, 0.2);
}

.booster-app-hex-content {
    background: rgba(13, 17, 23, 0.95);
    border-radius: 22px;
    padding: 3rem;
}

/* Form Styles */
.booster-application-form {
    width: 100%;
}

.booster-form-group {
    margin-bottom: 1.5rem;
}

.booster-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.booster-form-label i {
    color: #FF9A3C;
    font-size: 1rem;
}

.booster-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 154, 60, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booster-form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 154, 60, 0.5);
    box-shadow: 0 0 20px rgba(255, 154, 60, 0.2);
}

.booster-form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Select Dropdown */
.booster-form-input option {
    background: rgba(13, 17, 23, 0.95);
    color: #fff;
}

/* Checkbox */
.booster-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 154, 60, 0.1);
    border-radius: 12px;
}

.booster-checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FF9A3C;
}

.booster-checkbox-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    cursor: pointer;
    margin: 0;
}

/* Submit Button */
.booster-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booster-submit-btn::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;
}

.booster-submit-btn:hover::before {
    left: 100%;
}

.booster-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 154, 60, 0.4);
}

.booster-submit-hex {
    width: 35px;
    height: 35px;
    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: 1rem;
    transition: all 0.3s ease;
}

.booster-submit-btn:hover .booster-submit-hex {
    transform: rotate(180deg) scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .booster-applications-section {
        padding: 4rem 0;
    }
    
    .booster-app-title {
        font-size: 2.5rem;
    }
    
    .booster-app-hex-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .booster-app-title {
        font-size: 2rem;
    }
    
    .booster-app-subtitle {
        font-size: 1rem;
    }
    
    .booster-app-hex-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .booster-app-hex-content {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .booster-applications-section {
        padding: 3rem 0;
    }
    
    .booster-app-header {
        margin-bottom: 2.5rem;
    }
    
    .booster-app-hex-content {
        padding: 1.5rem;
    }
    
    .booster-form-input {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .booster-submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Loading Animation */
@keyframes booster-form-load {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.booster-app-form-wrapper {
    animation: booster-form-load 0.6s ease forwards;
}

/* Input Focus Animation */
@keyframes booster-input-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 154, 60, 0.2); }
    50% { box-shadow: 0 0 30px rgba(255, 77, 125, 0.4); }
}

.booster-form-input:focus {
    animation: booster-input-glow 2s ease infinite;
}
