/* CSS для страницы оплаты BeeТек Телеком */
/* Белый фон, оранжевые вставки (#ee6e04), графитовый текст (#3c3c3b) */

.payment-page {
    background-color: #ffffff;
    color: #3c3c3b;
    font-family: 'Calibri', 'Arial', sans-serif;
    line-height: 1.6;
}

/* Основные цвета */
.orange-accent {
    color: #ee6e04 !important;
}

.orange-bg {
    background-color: #ee6e04 !important;
    color: #ffffff !important;
}

.text-graphite {
    color: #3c3c3b !important;
}

/* Секции страницы */
.payment-section {
    margin: 30px 0;
    padding: 20px;
    border-radius: 10px;
}

.payment-section.highlight {
    background-color: #f8f9fa;
    border-left: 4px solid #ee6e04;
}

/* Кнопки оплаты */
.payment-button {
    background: linear-gradient(45deg, #ee6e04, #f39c42);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 110, 4, 0.3);
    cursor: pointer;
    text-transform: uppercase;
}

.payment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 110, 4, 0.4);
    color: white !important;
    text-decoration: none;
}

.payment-button:focus,
.payment-button:active {
    outline: none;
    box-shadow: 0 0 0 3px rgba(238, 110, 4, 0.2);
}

/* Элементы выгод */
.benefit-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    color: #ee6e04;
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

/* Карточки информации */
.info-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h3 {
    border-bottom: 2px solid #ee6e04;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Быстрые ссылки */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.quick-link {
    background-color: #ee6e04;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quick-link:hover {
    background-color: #d15d03;
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

.quick-link:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(238, 110, 4, 0.3);
}

/* Сетка функций */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 3px solid #ee6e04;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 48px;
    color: #ee6e04;
    margin-bottom: 15px;
    display: block;
}

.feature-card h4 {
    color: #3c3c3b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Промо акция за год */
.year-promo {
    background: linear-gradient(135deg, #ee6e04 0%, #f39c42 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.year-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    pointer-events: none;
}

.year-promo h2 {
    color: white !important;
    margin-bottom: 20px;
    font-size: 2rem;
}

.year-promo .benefit-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Шаги процесса */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.process-step {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #ee6e04;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
}

.step-number {
    background: #ee6e04;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 18px;
}

.process-step h4 {
    color: #3c3c3b;
    margin-bottom: 10px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .payment-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .year-promo {
        padding: 20px;
    }
    
    .year-promo h2 {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .quick-links {
        justify-content: center;
    }
    
    .info-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .payment-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .payment-button {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
    
    .quick-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .feature-icon {
        font-size: 36px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card,
.feature-card,
.process-step {
    animation: fadeInUp 0.6s ease-out;
}

/* Стили для специальных элементов */
.alert-info {
    background-color: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.alert-info .orange-accent {
    margin-right: 8px;
}

/* Улучшенные стили для списков */
.payment-page ul {
    list-style: none;
    padding: 0;
}

.payment-page ul li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.payment-page ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #ee6e04;
}

/* Стили для изображений */
.payment-page img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Карточки платежных систем */
.payment-systems {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.payment-systems i {
    font-size: 2rem;
    transition: transform 0.2s ease;
}

.payment-systems i:hover {
    transform: scale(1.1);
}

.fa-cc-visa {
    color: #1A1F71;
}

.fa-cc-mastercard {
    color: #EB001B;
}

/* Контактная информация */
.contact-info {
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
}

.contact-info h3 {
    color: #ee6e04;
    margin-bottom: 20px;
}

/* Эффект для основной кнопки оплаты */
.main-payment-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #ee6e04;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    position: relative;
}

.main-payment-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ee6e04, #f39c42, #ee6e04);
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
