.list-no-style {

    list-style-type: none;

}

i {

    font-size: 2.5rem;
    
}


body {
    background: #d9e0e8 !important;
}

.bg-light {
    background-color: #F3F3F4 !important;
    /* border-radius: 15px; */
}

/*#d9e0e8*/

.fa-brands {

    font-size: 3rem;

}

/* .text-primary-custom {

	color: #E6936C;

} */

.icon {

    width: 3rem;
    color: #330000;

}

.link-contact {

    font-size: 1.6rem;

}

input[name='contact-type'] {

    height: 1.5rem;

    width: 1.5rem;

}

.alert-danger {

    font-size: 0.8em;

    padding: 4px;

}



.register-question {

    -ms-transform: scale(1.2);

    -webkit-transform: scale(1.2);

    transform: scale(1.2);

}

.form-check {
    /* padding-left: none !important; */
    
}


/* --- Modern Course Card Styles (главная страница) --- */
.course-card {
    max-width: 420px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    background: white;
    margin: 24px auto;
    animation: fadeInUp 0.8s ease-out;
}
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}
.course-hero {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 96px;
    position: relative;
    overflow: hidden;
}

/*
.course-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}
*/
.course-hero-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    
    z-index: 1;
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}
.course-hero > *:not(.course-hero-img) {
    position: relative;
    z-index: 2;
}
/*@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}*/
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.tech-badge {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.tech-badge:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.05);
}
.course-title {
    color: #1E252D;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}
.course-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}
.course-content {
    padding: 28px 24px 24px;
}

.no-gutters.row > * {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.row > * {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.course-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.meta-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}
.meta-badge.duration {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}
.description {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.course-features {
    margin-bottom: 28px;
}
.features-title {
    color: #2d3748;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.features-title::before {
    content: '🎯';
    margin-right: 8px;
}
.features-list {
    list-style: none;
}
.features-list li {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}
.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 16px;
}
.cta-section {
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.cta-button {
    background: #43A7FD;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.cta-button::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;
}
.cta-button:hover::before {
    left: 100%;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}
.cta-button:active {
    transform: translateY(0);
}
@media (max-width: 480px) {
    .course-card {
        margin: 0 10px;
    }
    .course-hero {
        padding: 24px 20px;
    }
    .course-title {
        font-size: 24px;
    }
    .course-content {
        padding: 24px 20px 20px;
    }
}
@keyframes fadeInUp {
    from

{
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- End Modern Course Card Styles --- */


/* Main Content */
.main-content {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.content-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.hero-section {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.course-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.course-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.stat-icon.calendar { background: linear-gradient(135deg, #60A5FA, #3B82F6); }
.stat-icon.clock { background: linear-gradient(135deg, #34D399, #10B981); }
.stat-icon.location { background: linear-gradient(135deg, #F472B6, #EC4899); }
.stat-icon.language { background: linear-gradient(135deg, #A78BFA, #8B5CF6); }
.stat-icon.price { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.stat-icon.hours { background: linear-gradient(135deg, #FB7185, #F43F5E); }

.stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.25rem 0;
}

/* Section Styles */
.section {
    padding: 2rem;
    border-top: 1px solid var(--border-light);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 2px;
}

.course-card {
    border-radius: 15px;
}

/* Course Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-blue);
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.25rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1rem;
}

.info-card li::before {
    content: '•';
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Program Table */
.program-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.program-table th {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.program-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.program-table tr:hover {
    background: var(--bg-light);
}

.module-number {
    font-weight: 600;
    color: var(--primary-blue);
}

.module-duration {
    font-weight: 600;
    color: var(--primary-orange);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.6s ease-out;
}

.cta-button {
    /* background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple)); */
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quick Benefits */
.benefits-card {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
}

.benefits-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        padding: 1rem 0;
    }

    .course-title {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 1.5rem;
    }

    .program-table {
        font-size: 0.9rem;
    }

    .program-table th,
    .program-table td {
        padding: 0.75rem;
    }
}

/* Interactive Elements */
.interactive-hover {
    transition: all 0.3s ease;
}

.interactive-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Progress Timeline */
.timeline {
    position: relative;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow);
}