/* _content/Anis.Website/Components/Forms/GiftCardStatus.razor.rz.scp.css */
/* ===== Gift Card Status Component ===== */

.gift-status-container[b-wnwea55f97] {
    padding: 80px 0;
    position: relative;
}

.gift-status-container.in-progress[b-wnwea55f97] {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
}

.gift-status-container.not-winner[b-wnwea55f97] {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 50%, #d1d5db 100%);
}

.gift-status-card[b-wnwea55f97] {
    background: white;
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    animation: slideUp-b-wnwea55f97 0.6s ease-out;
}

.gift-status-container.in-progress .gift-status-card[b-wnwea55f97] {
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.3);
    border: 4px solid #3b82f6;
}

.gift-status-container.not-winner .gift-status-card[b-wnwea55f97] {
    box-shadow: 0 30px 80px rgba(107, 114, 128, 0.3);
    border: 4px solid #6b7280;
}

@keyframes slideUp-b-wnwea55f97 {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-badge[b-wnwea55f97] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -90px auto 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 6px solid white;
}

.gift-status-container.in-progress .status-badge[b-wnwea55f97] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    animation: pulse-b-wnwea55f97 2s ease-in-out infinite;
}

.gift-status-container.not-winner .status-badge[b-wnwea55f97] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

@keyframes pulse-b-wnwea55f97 {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.status-badge i[b-wnwea55f97] {
    font-size: 4rem;
    color: white;
}

.gift-status-title[b-wnwea55f97] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeIn-b-wnwea55f97 0.8s ease-out 0.2s backwards;
}

.gift-status-container.in-progress .gift-status-title[b-wnwea55f97] {
    color: #1e40af;
}

.gift-status-container.not-winner .gift-status-title[b-wnwea55f97] {
    color: #374151;
}

@keyframes fadeIn-b-wnwea55f97 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gift-status-message[b-wnwea55f97] {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.7;
    animation: fadeIn-b-wnwea55f97 0.8s ease-out 0.4s backwards;
}

.gift-status-container.in-progress .gift-status-message[b-wnwea55f97] {
    color: #1e3a8a;
}

.gift-status-container.not-winner .gift-status-message[b-wnwea55f97] {
    color: #4b5563;
}

.status-info-box[b-wnwea55f97] {
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 2px solid;
    animation: fadeIn-b-wnwea55f97 0.8s ease-out 0.6s backwards;
}

.gift-status-container.in-progress .status-info-box[b-wnwea55f97] {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
}

.gift-status-container.not-winner .status-info-box[b-wnwea55f97] {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-color: #9ca3af;
}

.status-info-box p[b-wnwea55f97] {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.8;
}

.gift-status-container.in-progress .status-info-box p[b-wnwea55f97] {
    color: #1e40af;
}

.gift-status-container.not-winner .status-info-box p[b-wnwea55f97] {
    color: #4b5563;
}

.status-info-box strong[b-wnwea55f97] {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.status-icon-text[b-wnwea55f97] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.status-icon-text i[b-wnwea55f97] {
    font-size: 2rem;
}

.gift-status-container.in-progress .status-icon-text i[b-wnwea55f97] {
    color: #3b82f6;
    animation: spin-b-wnwea55f97 3s linear infinite;
}

@keyframes spin-b-wnwea55f97 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gift-status-container.not-winner .status-icon-text i[b-wnwea55f97] {
    color: #6b7280;
}

.status-actions[b-wnwea55f97] {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeIn-b-wnwea55f97 0.8s ease-out 0.8s backwards;
}

.status-action-btn[b-wnwea55f97] {
    padding: 16px 35px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.gift-status-container.in-progress .status-action-btn.primary[b-wnwea55f97] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.gift-status-container.not-winner .status-action-btn.primary[b-wnwea55f97] {
    background: linear-gradient(135deg, #790b05 0%, #5e0903 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(121, 11, 5, 0.3);
}

.status-action-btn.primary:hover[b-wnwea55f97] {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.status-action-btn.secondary[b-wnwea55f97] {
    background: white;
    color: #374151;
    border: 3px solid #d1d5db;
}

.status-action-btn.secondary:hover[b-wnwea55f97] {
    background: #f9fafb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #9ca3af;
}

.encouragement-message[b-wnwea55f97] {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 15px;
    border-left: 4px solid #f59e0b;
    animation: fadeIn-b-wnwea55f97 0.8s ease-out 1s backwards;
}

.encouragement-message p[b-wnwea55f97] {
    margin: 0;
    color: #92400e;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.encouragement-message i[b-wnwea55f97] {
    color: #f59e0b;
    font-size: 1.5rem;
}

/* Progress Indicator for In-Progress Status */
.progress-indicator[b-wnwea55f97] {
    margin-top: 30px;
    animation: fadeIn-b-wnwea55f97 0.8s ease-out 0.8s backwards;
}

.progress-bar-container[b-wnwea55f97] {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar-fill[b-wnwea55f97] {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 10px;
    animation: progress-b-wnwea55f97 2s ease-out;
}

@keyframes progress-b-wnwea55f97 {
    from { width: 0; }
}

.progress-text[b-wnwea55f97] {
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gift-status-container[b-wnwea55f97] {
        padding: 60px 0;
    }
    
    .gift-status-card[b-wnwea55f97] {
        padding: 50px 30px;
        border-radius: 25px;
    }
    
    .status-badge[b-wnwea55f97] {
        width: 100px;
        height: 100px;
        margin: -80px auto 25px;
    }
    
    .status-badge i[b-wnwea55f97] {
        font-size: 3.5rem;
    }
    
    .gift-status-title[b-wnwea55f97] {
        font-size: 2rem;
    }
    
    .gift-status-message[b-wnwea55f97] {
        font-size: 1.1rem;
    }
    
    .status-info-box[b-wnwea55f97] {
        padding: 25px;
    }
    
    .status-actions[b-wnwea55f97] {
        flex-direction: column;
        gap: 15px;
    }
    
    .status-action-btn[b-wnwea55f97] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gift-status-card[b-wnwea55f97] {
        padding: 40px 20px;
    }
    
    .gift-status-title[b-wnwea55f97] {
        font-size: 1.6rem;
    }
    
    .gift-status-message[b-wnwea55f97] {
        font-size: 1rem;
    }
    
    .status-info-box p[b-wnwea55f97] {
        font-size: 1rem;
    }
    
    .encouragement-message p[b-wnwea55f97] {
        font-size: 0.95rem;
        flex-direction: column;
    }
}
/* _content/Anis.Website/Components/Forms/GiftCardWinner.razor.rz.scp.css */
/* ===== Gift Card Winner Component ===== */

.gift-winner-container[b-nwu6smrdq8] {
    padding: 40px 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
    position: relative;
    overflow: hidden;
}

.gift-winner-container .container[b-nwu6smrdq8] {
    max-width: 620px;
}

.gift-winner-container[b-nwu6smrdq8]::before {
    content: '🎉';
    position: absolute;
    font-size: 8rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-b-nwu6smrdq8 20s linear infinite;
}

@keyframes rotate-b-nwu6smrdq8 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.gift-winner-card[b-nwu6smrdq8] {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.25);
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #10b981;
    position: relative;
    animation: slideUp-b-nwu6smrdq8 0.6s ease-out;
}

@keyframes slideUp-b-nwu6smrdq8 {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.winner-badge[b-nwu6smrdq8] {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -55px auto 18px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35);
    border: 4px solid white;
    animation: bounce-b-nwu6smrdq8 2s ease-in-out infinite;
}

@keyframes bounce-b-nwu6smrdq8 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.winner-badge i[b-nwu6smrdq8] {
    font-size: 2.5rem;
    color: white;
}

.gift-winner-title[b-nwu6smrdq8] {
    font-size: 1.75rem;
    color: #065f46;
    font-weight: 800;
    margin-bottom: 12px;
    animation: fadeIn-b-nwu6smrdq8 0.8s ease-out 0.2s backwards;
}

@keyframes fadeIn-b-nwu6smrdq8 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gift-winner-message[b-nwu6smrdq8] {
    font-size: 1.05rem;
    color: #047857;
    margin-bottom: 25px;
    font-weight: 600;
    animation: fadeIn-b-nwu6smrdq8 0.8s ease-out 0.4s backwards;
}

.gift-card-details[b-nwu6smrdq8] {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid #10b981;
    animation: fadeIn-b-nwu6smrdq8 0.8s ease-out 0.6s backwards;
}

.gift-detail-item[b-nwu6smrdq8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
    background: white;
    border-radius: 10px;
    border-left: 3px solid #10b981;
    transition: all 0.3s ease;
}

.gift-detail-item:hover[b-nwu6smrdq8] {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.gift-detail-item:last-child[b-nwu6smrdq8] {
    margin-bottom: 0;
}

.gift-detail-label[b-nwu6smrdq8] {
    font-weight: 700;
    color: #065f46;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gift-detail-label i[b-nwu6smrdq8] {
    color: #10b981;
    font-size: 1.1rem;
}

.gift-detail-value[b-nwu6smrdq8] {
    font-size: 1rem;
    color: #047857;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    background: white;
    padding: 5px 14px;
    border-radius: 8px;
    border: 2px solid #d1fae5;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.copy-btn-inline[b-nwu6smrdq8] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.copy-btn-inline:hover[b-nwu6smrdq8] {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.copy-btn-inline:active[b-nwu6smrdq8] {
    transform: scale(0.95);
}

.code-block[b-nwu6smrdq8] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.gift-instructions[b-nwu6smrdq8] {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid #f59e0b;
    margin-bottom: 20px;
    animation: fadeIn-b-nwu6smrdq8 0.8s ease-out 0.8s backwards;
}

.gift-instructions p[b-nwu6smrdq8] {
    margin: 0;
    color: #92400e;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gift-instructions i[b-nwu6smrdq8] {
    color: #f59e0b;
    font-size: 1.1rem;
}

.gift-actions[b-nwu6smrdq8] {
    display: flex;
    gap: 12px;
    justify-content: center;
    animation: fadeIn-b-nwu6smrdq8 0.8s ease-out 1s backwards;
}

.gift-action-btn[b-nwu6smrdq8] {
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.gift-action-btn.primary[b-nwu6smrdq8] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.gift-action-btn.primary:hover[b-nwu6smrdq8] {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.gift-action-btn.secondary[b-nwu6smrdq8] {
    background: white;
    color: #065f46;
    border: 3px solid #10b981;
}

.gift-action-btn.secondary:hover[b-nwu6smrdq8] {
    background: #ecfdf5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

/* Confetti Animation */
.confetti[b-nwu6smrdq8] {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #10b981;
    animation: confetti-fall-b-nwu6smrdq8 3s linear infinite;
}

@keyframes confetti-fall-b-nwu6smrdq8 {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .gift-winner-container[b-nwu6smrdq8] {
        padding: 60px 0;
    }
    
    .gift-winner-card[b-nwu6smrdq8] {
        padding: 50px 30px;
        border-radius: 25px;
    }
    
    .winner-badge[b-nwu6smrdq8] {
        width: 100px;
        height: 100px;
        margin: -80px auto 25px;
    }
    
    .winner-badge i[b-nwu6smrdq8] {
        font-size: 3.5rem;
    }
    
    .gift-winner-title[b-nwu6smrdq8] {
        font-size: 2rem;
    }
    
    .gift-winner-message[b-nwu6smrdq8] {
        font-size: 1.1rem;
    }
    
    .gift-card-details[b-nwu6smrdq8] {
        padding: 25px;
    }
    
    .gift-detail-item[b-nwu6smrdq8] {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .gift-actions[b-nwu6smrdq8] {
        flex-direction: column;
        gap: 15px;
    }
    
    .gift-action-btn[b-nwu6smrdq8] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gift-winner-card[b-nwu6smrdq8] {
        padding: 40px 20px;
    }
    
    .gift-winner-title[b-nwu6smrdq8] {
        font-size: 1.6rem;
    }
    
    .gift-detail-label[b-nwu6smrdq8],
    .gift-detail-value[b-nwu6smrdq8] {
        font-size: 1rem;
    }
    
    .gift-instructions p[b-nwu6smrdq8] {
        font-size: 0.95rem;
    }
}
/* _content/Anis.Website/Components/Forms/Redeem.razor.rz.scp.css */
/* ===== Modern Redeem Form Styles ===== */

/* Hero Section / Slider */
#home-slider[b-ljm4t1de46] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sl-slider-wrapper[b-ljm4t1de46] {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg-img-ban[b-ljm4t1de46] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/img/hero-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-img-ban[b-ljm4t1de46]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(121, 11, 5, 0.75) 100%);
}

.slide-caption[b-ljm4t1de46] {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caption-content[b-ljm4t1de46] {
    width: 100%;
    padding: 40px 20px;
}

/* Modern Form Container */
.form-container-comp[b-ljm4t1de46] {
    max-width: 550px;
    margin: 0;
    margin-right: 0;
    padding: 0 20px;
}

.subscribe-form[b-ljm4t1de46] {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    padding: 55px 50px;
    border-radius: 35px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.subscribe-form[b-ljm4t1de46]::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB400 25%, #FF8C00 50%, #FFB400 75%, #FF8C00 100%);
    background-size: 200% 200%;
    border-radius: 37px;
    z-index: -1;
    animation: gradientShift-b-ljm4t1de46 4s ease-in-out infinite;
    opacity: 0.8;
}

.subscribe-form[b-ljm4t1de46]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slideLight-b-ljm4t1de46 6s ease-in-out infinite;
}

@keyframes shimmer-b-ljm4t1de46 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes gradientShift-b-ljm4t1de46 {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes slideLight-b-ljm4t1de46 {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.subscribe-form:hover[b-ljm4t1de46] {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.subscribe-form:hover[b-ljm4t1de46]::before {
    opacity: 1;
}

/* Form Title (if needed) */
.form-title[b-ljm4t1de46] {
    text-align: center;
    margin-bottom: 30px;
    color: #790b05;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-title i[b-ljm4t1de46] {
    color: #f1a936;
    animation: pulse-b-ljm4t1de46 2s ease-in-out infinite;
}

/* Form Groups */
.form-group[b-ljm4t1de46] {
    margin-bottom: 28px;
    position: relative;
}

.form-group:last-of-type[b-ljm4t1de46] {
    margin-bottom: 30px;
}

.form-group[b-ljm4t1de46]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.05));
    border-radius: 16px;
    transition: width 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.form-group:focus-within[b-ljm4t1de46]::before {
    width: 100%;
}

/* Form Controls */
.form-control[b-ljm4t1de46] {
    width: 100%;
    padding: 20px 55px 20px 24px;
    font-size: 1.08rem;
    border: 3px solid #e2e8f0;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    color: #1f2937;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Almarai', sans-serif;
    direction: rtl;
    text-align: right;
    font-weight: 600;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
                inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.form-control:hover[b-ljm4t1de46] {
    border-color: #cbd5e1;
    background: linear-gradient(135deg, #ffffff 0%, #fefeff 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06),
                inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.form-control:focus[b-ljm4t1de46] {
    outline: none;
    border-color: #FF8C00;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf7 100%);
    box-shadow: 0 0 0 6px rgba(255, 140, 0, 0.12),
                0 8px 24px rgba(255, 140, 0, 0.25),
                inset 0 1px 3px rgba(255, 255, 255, 0.9);
    transform: translateY(-4px) scale(1.01);
}

.form-control:disabled[b-ljm4t1de46] {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    cursor: not-allowed;
    opacity: 0.65;
    border-color: #d1d5db;
}

.form-control[b-ljm4t1de46]::placeholder {
    color: #9ca3af;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control:focus[b-ljm4t1de46]::placeholder {
    color: #cbd5e1;
    transform: translateX(-5px);
}

/* Input Icons */
.form-group[b-ljm4t1de46]::after {
    content: '\f06b';
    font-family: 'FontAwesome';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.form-group:nth-child(1)[b-ljm4t1de46]::after {
    content: '\f145';
}

.form-group:nth-child(2)[b-ljm4t1de46]::after {
    content: '\f095';
}

.form-group:nth-child(3)[b-ljm4t1de46]::after {
    content: '\f007';
}

.form-group:focus-within[b-ljm4t1de46]::after {
    color: #FF8C00;
    transform: translateY(-50%) scale(1.15) rotate(5deg);
}

/* Validation Messages */
.validation-message[b-ljm4t1de46],
.field-validation-error[b-ljm4t1de46] {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    color: #c53030;
    padding: 14px 20px;
    border-radius: 12px;
    border-right: 5px solid #e53e3e;
    margin-top: 12px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: shake-b-ljm4t1de46 0.5s ease-in-out, fadeIn-b-ljm4t1de46 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.15);
}

.validation-message i[b-ljm4t1de46] {
    font-size: 1.3rem;
    color: #e53e3e;
    animation: pulse-b-ljm4t1de46 2s ease-in-out infinite;
}

/* Loading Overlay */
.loading-overlay[b-ljm4t1de46] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 50px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    animation: fadeIn-b-ljm4t1de46 0.4s ease-out;
}

.loading-overlay .spinner[b-ljm4t1de46] {
    width: 70px;
    height: 70px;
    border: 7px solid #f3f4f6;
    border-top: 7px solid #FF8C00;
    border-right: 7px solid #FFB400;
    border-radius: 50%;
    margin: 0 auto 25px;
    animation: spin-b-ljm4t1de46 1s linear infinite;
}

.loading-overlay p[b-ljm4t1de46] {
    margin: 0;
    color: #790b05;
    font-weight: 700;
    font-size: 1.2rem;
    animation: pulse-b-ljm4t1de46 1.5s ease-in-out infinite;
}

/* Competition Links */
.competition-links[b-ljm4t1de46] {
    margin-top: 35px;
}

.competition-links .row[b-ljm4t1de46] {
    margin: 0;
}

.competition-links .col-md-12[b-ljm4t1de46] {
    padding: 0 0 18px 0;
}

.competition-link[b-ljm4t1de46] {
    width: 100%;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #790b05 0%, #5e0903 100%);
    padding: 18px 35px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 3px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(121, 11, 5, 0.3);
}

.competition-link[b-ljm4t1de46]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.competition-link:hover[b-ljm4t1de46]::before {
    left: 100%;
}

.competition-link:hover[b-ljm4t1de46] {
    background: linear-gradient(135deg, #5e0903 0%, #790b05 100%);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(121, 11, 5, 0.5);
    border-color: #FF8C00;
}

.competition-link:active[b-ljm4t1de46] {
    transform: translateY(-2px);
}

.competition-link:disabled[b-ljm4t1de46] {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    cursor: not-allowed;
    opacity: 0.6;
}

.competition-link:disabled:hover[b-ljm4t1de46] {
    transform: none;
    box-shadow: none;
}

.competition-link i[b-ljm4t1de46] {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.competition-link:hover i[b-ljm4t1de46] {
    transform: scale(1.25) rotate(5deg);
}

/* Animations */
@keyframes fadeIn-b-ljm4t1de46 {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake-b-ljm4t1de46 {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

@keyframes spin-b-ljm4t1de46 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-b-ljm4t1de46 {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container-comp[b-ljm4t1de46] {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }

    .subscribe-form[b-ljm4t1de46] {
        padding: 35px 30px;
        border-radius: 25px;
    }

    .form-title[b-ljm4t1de46] {
        font-size: 1.5rem;
    }

    .form-control[b-ljm4t1de46] {
        padding: 17px 50px 17px 20px;
        font-size: 1rem;
    }
    
    .form-group[b-ljm4t1de46]::after {
        left: 18px;
        font-size: 1.2rem;
    }

    .competition-link[b-ljm4t1de46] {
        padding: 16px 28px;
        font-size: 1.05rem;
    }

    .loading-overlay .spinner[b-ljm4t1de46] {
        width: 60px;
        height: 60px;
        border-width: 6px;
    }
    
    .bg-img-ban[b-ljm4t1de46] {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    #home-slider[b-ljm4t1de46] {
        min-height: 100vh;
    }
    
    .sl-slider-wrapper[b-ljm4t1de46] {
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    .form-container-comp[b-ljm4t1de46] {
        max-width: 100%;
        padding: 0 15px;
    }

    .subscribe-form[b-ljm4t1de46] {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .form-control[b-ljm4t1de46] {
        padding: 15px 45px 15px 18px;
        font-size: 0.95rem;
    }
    
    .form-group[b-ljm4t1de46]::after {
        left: 15px;
        font-size: 1.1rem;
    }

    .competition-link[b-ljm4t1de46] {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .validation-message[b-ljm4t1de46],
    .field-validation-error[b-ljm4t1de46] {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    #home-slider[b-ljm4t1de46] {
        min-height: 100vh;
    }
    
    .sl-slider-wrapper[b-ljm4t1de46] {
        min-height: 100vh;
    }
    
    .bg-img-ban[b-ljm4t1de46] {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    .slide-caption[b-ljm4t1de46] {
        padding: 20px 0;
    }
    
    .caption-content[b-ljm4t1de46] {
        padding: 20px 10px;
    }
}

/* Focus visible for accessibility */
.form-control:focus-visible[b-ljm4t1de46],
.competition-link:focus-visible[b-ljm4t1de46] {
    outline: 3px solid #FF8C00;
    outline-offset: 3px;
}
/* _content/Anis.Website/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-yssb9zp6uk] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-yssb9zp6uk] {
    flex: 1;
}

.sidebar[b-yssb9zp6uk] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-yssb9zp6uk] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-yssb9zp6uk]  a, .top-row[b-yssb9zp6uk]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-yssb9zp6uk]  a:hover, .top-row[b-yssb9zp6uk]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-yssb9zp6uk]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-yssb9zp6uk] {
        justify-content: space-between;
    }

    .top-row[b-yssb9zp6uk]  a, .top-row[b-yssb9zp6uk]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-yssb9zp6uk] {
        flex-direction: row;
    }

    .sidebar[b-yssb9zp6uk] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-yssb9zp6uk] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-yssb9zp6uk]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-yssb9zp6uk], article[b-yssb9zp6uk] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-yssb9zp6uk] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-yssb9zp6uk] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Anis.Website/Components/Pages/Home.razor.rz.scp.css */
/* ===== Modern Home Page Styles ===== */

/* Enhanced Navigation */
#navigation[b-pfsqsox9ty] {
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#navigation.animated-header[b-pfsqsox9ty] {
    background-color: rgba(121, 11, 5, 0.95);
}

.navbar-brand img[b-pfsqsox9ty] {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img[b-pfsqsox9ty] {
    transform: scale(1.05);
}

.navbar-nav > li > a[b-pfsqsox9ty] {
    position: relative;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.navbar-nav > li > a i[b-pfsqsox9ty] {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.navbar-nav > li > a:hover i[b-pfsqsox9ty] {
    transform: translateY(-2px);
}

.navbar-nav > li > a[b-pfsqsox9ty]::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 3px;
    background: #f1a936;
    transition: all 0.3s ease;
    transform: translateX(50%);
}

.navbar-nav > li > a:hover[b-pfsqsox9ty]::after {
    width: 80%;
}

/* Enhanced About Section */
#about[b-pfsqsox9ty] {
    background: linear-gradient(135deg, #FF8C00 0%, #f46827 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #1f2937 !important;
}

#about *[b-pfsqsox9ty] {
    color: inherit;
}

#about[b-pfsqsox9ty]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.recent-works[b-pfsqsox9ty] {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.recent-works:hover[b-pfsqsox9ty] {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.recent-works h3[b-pfsqsox9ty] {
    color: #790b05 !important;
    font-size: 2rem !important;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f1a936;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recent-works h3 i[b-pfsqsox9ty] {
    color: #f1a936 !important;
    animation: pulse-b-pfsqsox9ty 2s ease-in-out infinite;
    font-size: 1.8rem;
}

#about .work-item[b-pfsqsox9ty],
.work-item[b-pfsqsox9ty] {
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 12px;
    border-right: 4px solid #f1a936;
    transition: all 0.3s ease;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 15px;
    direction: rtl;
}

#about .work-item:hover[b-pfsqsox9ty],
.work-item:hover[b-pfsqsox9ty] {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(241, 169, 54, 0.3);
    border-right-width: 6px;
}

.work-item i[b-pfsqsox9ty] {
    font-size: 1.8rem !important;
    min-width: 30px;
    margin-top: 2px;
    animation: bounce-b-pfsqsox9ty 2s ease-in-out infinite;
    color: #f1a936 !important;
    flex-shrink: 0;
}

.work-item p[b-pfsqsox9ty] {
    margin: 0;
    color: #1f2937 !important;
    line-height: 1.9 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    flex: 1;
    text-align: right;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.recent-works .work-item p[b-pfsqsox9ty] {
    color: #1f2937 !important;
    display: block !important;
}

.welcome-block[b-pfsqsox9ty] {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.welcome-block:hover[b-pfsqsox9ty] {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.welcome-block h3[b-pfsqsox9ty] {
    color: #790b05 !important;
    font-size: 2.2rem !important;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.welcome-block h3 i[b-pfsqsox9ty] {
    color: #e74c3c !important;
    animation: heartbeat-b-pfsqsox9ty 1.5s ease-in-out infinite;
    font-size: 2rem;
}

#about .message-body[b-pfsqsox9ty],
.message-body[b-pfsqsox9ty] {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-right: 4px solid #f1a936;
    direction: rtl;
    font-size: 1.05rem !important;
    line-height: 1.9 !important;
}

.message-body p[b-pfsqsox9ty] {
    color: #1f2937 !important;
    font-size: 1.1rem !important;
    line-height: 2 !important;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 600;
    direction: rtl;
}

.message-body p:last-child[b-pfsqsox9ty] {
    margin-bottom: 0;
}

/* Enhanced Services Section */
#service[b-pfsqsox9ty] {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

#service[b-pfsqsox9ty]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f8f9fa" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
}

.sec-title[b-pfsqsox9ty] {
    position: relative;
    z-index: 1;
}

.sec-title h2[b-pfsqsox9ty] {
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.sec-title h2[b-pfsqsox9ty]::before,
.sec-title h2[b-pfsqsox9ty]::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f1a936);
}

.sec-title h2[b-pfsqsox9ty]::before {
    right: 100%;
}

.sec-title h2[b-pfsqsox9ty]::after {
    left: 100%;
    background: linear-gradient(-90deg, transparent, #f1a936);
}

.sec-title p[b-pfsqsox9ty] {
    font-size: 1.3rem;
    color: #718096;
    margin-top: 15px;
    font-weight: 500;
}

.service-item[b-pfsqsox9ty] {
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-item[b-pfsqsox9ty]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #790b05, #f1a936);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover[b-pfsqsox9ty]::before {
    transform: scaleX(1);
}

.service-item:hover[b-pfsqsox9ty] {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(121, 11, 5, 0.2);
    border-color: #f1a936;
}

.service-icon[b-pfsqsox9ty] {
    margin-bottom: 25px;
    position: relative;
}

.service-icon i[b-pfsqsox9ty] {
    transition: all 0.4s ease;
    color: #790b05;
}

.service-item:hover .service-icon i[b-pfsqsox9ty] {
    transform: scale(1.2) rotate(5deg);
    color: #f1a936;
}

.service-item h3[b-pfsqsox9ty] {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
    transition: color 0.3s ease;
}

.service-item:hover h3[b-pfsqsox9ty] {
    color: #790b05;
}

.service-item p[b-pfsqsox9ty] {
    color: #718096;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Enhanced Social Section */
#social[b-pfsqsox9ty] {
    background-image: url(/img/slider/banner1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#social .overlay[b-pfsqsox9ty] {
    background: linear-gradient(135deg, rgba(121, 11, 5, 0.92) 0%, rgba(94, 9, 3, 0.95) 100%);
    padding: 100px 0 120px;
    position: relative;
}

#social .overlay[b-pfsqsox9ty]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
}

#social .sec-title.white h2[b-pfsqsox9ty] {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem;
}

#social .sec-title.white p[b-pfsqsox9ty] {
    font-size: 1.2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-button[b-pfsqsox9ty] {
    margin: 40px 0 0;
    padding: 0;
}

.social-button li a[b-pfsqsox9ty] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-button li a[b-pfsqsox9ty]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-button li a:hover[b-pfsqsox9ty]::before {
    width: 100px;
    height: 100px;
}

.social-button li a:hover[b-pfsqsox9ty] {
    border-color: #f1a936;
    background: rgba(241, 169, 54, 0.2);
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 30px rgba(241, 169, 54, 0.4);
}

.social-button li a i[b-pfsqsox9ty] {
    position: relative;
    z-index: 1;
}

/* Enhanced Footer */
#footer[b-pfsqsox9ty] {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

#footer[b-pfsqsox9ty]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23790b05" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
}

.footer-content[b-pfsqsox9ty] {
    position: relative;
    z-index: 1;
}

.footer-social ul li a[b-pfsqsox9ty] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-social ul li a:hover[b-pfsqsox9ty] {
    background: #790b05;
    transform: translateY(-10px) rotate(360deg);
    border-color: #f1a936;
    box-shadow: 0 10px 30px rgba(241, 169, 54, 0.4);
}

.footer-content > p[b-pfsqsox9ty] {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: #a0aec0;
}

/* Animations */
@keyframes pulse-b-pfsqsox9ty {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes heartbeat-b-pfsqsox9ty {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

@keyframes bounce-b-pfsqsox9ty {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .recent-works[b-pfsqsox9ty],
    .welcome-block[b-pfsqsox9ty] {
        margin-bottom: 30px;
    }

    .service-item[b-pfsqsox9ty] {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    #about[b-pfsqsox9ty],
    #service[b-pfsqsox9ty] {
        padding: 50px 0;
    }

    .recent-works h3[b-pfsqsox9ty],
    .welcome-block h3[b-pfsqsox9ty] {
        font-size: 1.5rem;
    }

    .sec-title h2[b-pfsqsox9ty] {
        font-size: 1.8rem;
    }

    .service-item[b-pfsqsox9ty] {
        padding: 30px 20px;
    }

    #social .overlay[b-pfsqsox9ty] {
        padding: 70px 0 90px;
    }

    #social .sec-title.white h2[b-pfsqsox9ty] {
        font-size: 1.8rem;
    }

    .social-button li a[b-pfsqsox9ty] {
        width: 70px;
        height: 70px;
        line-height: 76px;
    }

    .social-button li:nth-child(2)[b-pfsqsox9ty] {
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .recent-works[b-pfsqsox9ty],
    .welcome-block[b-pfsqsox9ty] {
        padding: 20px;
    }

    .work-item[b-pfsqsox9ty] {
        padding: 15px;
        flex-direction: column;
        align-items: start;
    }

    .message-body[b-pfsqsox9ty] {
        padding: 20px;
    }

    .service-item[b-pfsqsox9ty] {
        padding: 25px 15px;
    }

    .sec-title h2[b-pfsqsox9ty]::before,
    .sec-title h2[b-pfsqsox9ty]::after {
        width: 30px;
    }
}

/* ===== Competition Results Section ===== */
.competition-results-section[b-pfsqsox9ty] {
    padding: 50px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.competition-results-section[b-pfsqsox9ty]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 169, 54, 0.3), transparent);
}

.competition-results-header[b-pfsqsox9ty] {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.competition-results-header h2[b-pfsqsox9ty] {
    color: #790b05;
    font-size: 1.85rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.competition-results-header h2 i[b-pfsqsox9ty] {
    color: #FFB400;
    animation: bounce-b-pfsqsox9ty 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 180, 0, 0.3));
}

.competitor-info[b-pfsqsox9ty] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 18px 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(241, 169, 54, 0.08);
    border: 2px solid rgba(241, 169, 54, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.competitor-info:hover[b-pfsqsox9ty] {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(241, 169, 54, 0.15);
    transform: translateY(-3px);
    border-color: rgba(241, 169, 54, 0.35);
}

.competitor-info-item[b-pfsqsox9ty] {
    padding: 10px 8px;
    font-size: 0.95rem;
    color: #374151;
    position: relative;
    transition: all 0.3s ease;
}

.competitor-info-item[b-pfsqsox9ty]::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00, #FFB400);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.competitor-info-item:hover[b-pfsqsox9ty] {
    color: #1f2937;
}

.competitor-info-item:hover[b-pfsqsox9ty]::after {
    width: 100%;
}

.competitor-info-item i[b-pfsqsox9ty] {
    color: #FF8C00;
    margin-left: 8px;
    font-size: 1.1rem;
}

.competitor-info-item strong[b-pfsqsox9ty] {
    color: #790b05;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 6px;
}

.competition-card-enhanced[b-pfsqsox9ty] {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 25px;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.competition-card-enhanced[b-pfsqsox9ty]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 169, 54, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.competition-card-enhanced:hover[b-pfsqsox9ty] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(241, 169, 54, 0.2);
    border-color: rgba(241, 169, 54, 0.4);
}

.competition-card-enhanced:hover[b-pfsqsox9ty]::before {
    opacity: 1;
}

.competition-image-wrapper[b-pfsqsox9ty] {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.competition-image-wrapper[b-pfsqsox9ty]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.competition-card-enhanced:hover .competition-image-wrapper[b-pfsqsox9ty]::after {
    opacity: 1;
}

.competition-image-wrapper img[b-pfsqsox9ty] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.competition-card-enhanced:hover .competition-image-wrapper img[b-pfsqsox9ty] {
    transform: scale(1.08);
}

.competition-badge[b-pfsqsox9ty] {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 0.5s ease-out;
}

.competition-badge.badge-won[b-pfsqsox9ty] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(5, 150, 105, 0.95) 100%);
    color: white;
}

.competition-badge.badge-progress[b-pfsqsox9ty] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    color: white;
}

.competition-badge.badge-lost[b-pfsqsox9ty] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.95) 0%, rgba(75, 85, 99, 0.95) 100%);
    color: white;
}

.competition-details[b-pfsqsox9ty] {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.competition-title[b-pfsqsox9ty] {
    color: #1f2937;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.competition-card-enhanced:hover .competition-title[b-pfsqsox9ty] {
    color: #790b05;
}

.competition-description[b-pfsqsox9ty] {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.competition-status-text[b-pfsqsox9ty] {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.competition-card-enhanced.status-won .competition-status-text[b-pfsqsox9ty],
.competition-card-enhanced.competition-win .competition-status-text[b-pfsqsox9ty] {
    color: #10b981;
}

.competition-card-enhanced.status-in-progress .competition-status-text[b-pfsqsox9ty],
.competition-card-enhanced.competition-progress .competition-status-text[b-pfsqsox9ty] {
    color: #3b82f6;
}

.competition-card-enhanced.status-lost .competition-status-text[b-pfsqsox9ty],
.competition-card-enhanced.competition-lose .competition-status-text[b-pfsqsox9ty] {
    color: #6b7280;
}

.competition-details .text-muted[b-pfsqsox9ty] {
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 15px;
}

.competition-details .text-muted i[b-pfsqsox9ty] {
    color: #FF8C00;
    margin-left: 8px;
}

.countdown-timer[b-pfsqsox9ty] {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.12) 0%, rgba(241, 169, 54, 0.12) 100%);
    padding: 14px;
    border-radius: 12px;
    margin-top: 15px;
    font-weight: 700;
    color: #790b05;
    text-align: center;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.countdown-timer:hover[b-pfsqsox9ty] {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.18) 0%, rgba(241, 169, 54, 0.18) 100%);
    border-color: rgba(255, 140, 0, 0.4);
}

.countdown-timer i[b-pfsqsox9ty] {
    color: #FF8C00;
    margin-left: 10px;
    font-size: 1.2rem;
}

.countdown-timer.expired[b-pfsqsox9ty] {
    background: rgba(107, 114, 128, 0.08);
    color: #6b7280;
    border-color: rgba(107, 114, 128, 0.2);
}

.countdown-timer.expired i[b-pfsqsox9ty] {
    color: #6b7280;
}

/* Competition Results Responsive */
@media (max-width: 768px) {
    .competition-results-section[b-pfsqsox9ty] {
        padding: 60px 0;
    }
    
    .competition-results-header h2[b-pfsqsox9ty] {
        font-size: 2rem;
        gap: 15px;
    }
    
    .competition-image-wrapper[b-pfsqsox9ty] {
        height: 220px;
    }
    
    .competitor-info[b-pfsqsox9ty] {
        padding: 20px 18px;
    }
    
    .competitor-info-item[b-pfsqsox9ty] {
        margin-bottom: 15px;
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    
    .competitor-info-item i[b-pfsqsox9ty] {
        font-size: 1rem;
    }
    
    .competition-details[b-pfsqsox9ty] {
        padding: 25px;
    }
    
    .competition-title[b-pfsqsox9ty] {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .competition-results-header h2[b-pfsqsox9ty] {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .competitor-info-item[b-pfsqsox9ty] {
        font-size: 1rem;
    }
    
    .competition-image-wrapper[b-pfsqsox9ty] {
        height: 180px;
    }
    
    .competition-details[b-pfsqsox9ty] {
        padding: 20px;
    }
    
    .competition-title[b-pfsqsox9ty] {
        font-size: 1.2rem;
    }
    
    .competition-badge[b-pfsqsox9ty] {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
