/* Специфичные стили для лендинга "Экспресс стройность" */

/* Главный экран */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, #f5f9e9 100%);
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(162, 197, 35, 0.1), rgba(125, 68, 39, 0.05));
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.program-highlight {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--primary-green);
}

.highlight-item i {
    color: var(--green-light);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-medium);
    border: 3px solid white;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Особенности программы */
.program-features {
    background-color: var(--primary-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-green);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--green-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
}

.icon-green {
    background: linear-gradient(135deg, var(--green-light), var(--green-medium));
}

.icon-lilac {
    background: linear-gradient(135deg, var(--earth-brown), #9a5c3a);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--green-dark);
}

/* Услуги */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.service-item {
    background-color: var(--primary-green);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(162, 197, 35, 0.2);
}

.service-item:hover {
    transform: translateY(-5px);
    background-color: rgba(162, 197, 35, 0.1);
    border-color: var(--green-light);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--green-medium);
    margin-bottom: 15px;
}

.service-item h4 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--green-dark);
}

/* Расписание */
.schedule {
    background-color: var(--primary-light);
}

.schedule-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.schedule-timeline {
    position: relative;
}

.schedule-timeline:before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--green-light), var(--earth-brown));
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.time {
    background-color: var(--green-light);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
    margin-right: 20px;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(162, 197, 35, 0.3);
}

.activity {
    flex: 1;
}

.activity h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--green-dark);
}

.schedule-visual {
    background: linear-gradient(135deg, var(--primary-green), rgba(125, 68, 39, 0.1));
    border-radius: 20px;
    padding: 40px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(162, 197, 35, 0.2);
}

.schedule-visual:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background-color: rgba(162, 197, 35, 0.05);
    border-radius: 50%;
}

.visual-content {
    position: relative;
    z-index: 1;
    color: var(--text-dark);
}

.visual-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--green-dark);
}

.visual-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    min-width: 100px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--green-medium);
}

.stat-label {
    font-size: 0.9rem;
    margin-top: 5px;
    color: var(--text-medium);
}

/* Целевая аудитория */
.target-audience {
    background-color: white;
}

.audience-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.audience-list-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.audience-for h3, .participation-options h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--green-dark);
}

.audience-list {
    list-style-type: none;
}

.audience-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}

.audience-list li:last-child {
    border-bottom: none;
}

.audience-list i {
    color: var(--green-light);
    margin-right: 15px;
    font-size: 1.2rem;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.option-card {
    background-color: var(--primary-green);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
    border: 1px solid rgba(162, 197, 35, 0.2);
}

.option-card:hover {
    transform: translateY(-5px);
    background-color: white;
    border-color: var(--green-light);
    box-shadow: 0 10px 25px var(--shadow-light);
}

.option-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid var(--green-light);
}

.option-icon i {
    font-size: 1.8rem;
    color: var(--green-medium);
}

.option-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--green-dark);
}

.price-card {
    background: linear-gradient(135deg, var(--green-medium), var(--green-dark));
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(46, 70, 0, 0.2);
    height: fit-content;
    color: white;
}

.price-header {
    text-align: center;
    margin-bottom: 25px;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--green-light);
}

.price-details {
    margin-bottom: 20px;
}

.price-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.price-details i {
    margin-right: 10px;
    color: var(--green-light);
}

/* Свободные периоды */
.available-periods {
    background-color: var(--primary-light);
}

.periods-container {
    /*max-width: 800px;*/
	max-width: 100%;
    margin: 0 auto;
}

.periods-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.periods-head strong {
    color: var(--green-dark);
    font-size: 1.1rem;
}

.periods-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--primary-green);
    background: white;
    color: var(--text-medium);
    font-size: 0.85rem;
}

.periods-status.ok {
    border-color: rgba(76, 175, 80, 0.35);
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
}

.periods-status.error {
    border-color: rgba(244, 67, 54, 0.35);
    background: rgba(244, 67, 54, 0.08);
    color: #c62828;
}

.periods-list {
    /*display: flex;*/
	display: ruby;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.period-card {
    background-color: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px var(--shadow-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    border: 1px solid var(--primary-green);
	width: 23%;
    margin: 5px;
}

.period-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
    border-color: var(--green-light);
}

.period-info h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: var(--green-dark);
}

.period-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-medium);
}

.periods-note {
    text-align: center;
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--primary-green);
}

.periods-note i {
    color: var(--green-light);
    margin-right: 8px;
}

.section-subtitle span {
	background-color: var(--primary-green);
    border-radius: 6px;
    padding: 0.5px;
    transition: all 0.3s;
    border: 1px solid rgba(162, 197, 35, 0.2);
}

@media (max-width: 800px) {
	.period-card {
	width: 95%;
    margin: 5px;
}
}

/* FAQ */
.faq {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--primary-green);
}

.faq-question {
    background-color: var(--primary-light);
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    color: var(--green-dark);
}

.faq-question:hover {
    background-color: var(--primary-green);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--green-medium);
}

.faq-answer {
    background-color: white;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-question {
    background-color: var(--primary-green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--green-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px 25px;
}

/* Форма заявки */
.request-form {
    background-color: var(--primary-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-medium);
    border: 1px solid var(--primary-green);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    margin-bottom: 10px;
    color: var(--green-medium);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--green-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s;
    background-color: var(--primary-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(162, 197, 35, 0.1);
    background-color: white;
}

.radio-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-option input {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: border-color 0.3s;
}

.radio-option input:checked + .radio-custom {
    border-color: var(--green-light);
}

.radio-option input:checked + .radio-custom:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--green-light);
    border-radius: 50%;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.form-notice {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 15px;
}

/* Адаптивность для лендинга */
@media (max-width: 992px) {
    .hero-content,
    .schedule-container,
    .audience-content {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero-image {
        order: -1;
        height: 400px;
    }
    
    .schedule-timeline:before {
        left: 55px;
    }
    
    .time {
        min-width: 110px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .program-highlight {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .period-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .visual-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 300px;
    }
    
    .schedule-visual {
        height: 350px;
        padding: 25px;
    }
    
    .feature-card,
    .option-card,
    .period-card {
        padding: 20px;
    }
    
    .price-card {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

/* Дополнительные стили для периодов в файле express-stroinost/style.css */

.period-details {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.period-persons, .period-available, .period-unavailable {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.period-persons {
    background-color: rgba(162, 197, 35, 0.1);
    color: var(--green-medium);
}

.period-available {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
}

.period-unavailable {
    background-color: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
}

.period-persons i, .period-available i, .period-unavailable i {
    font-size: 0.8rem;
}

.periods-more-info {
    background-color: var(--primary-green);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid rgba(162, 197, 35, 0.2);
}

.periods-more-info i {
    color: var(--green-light);
    margin-right: 8px;
}

.periods-empty, .periods-error {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 20px;
    border: 1px solid var(--primary-green);
}

.empty-icon, .error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-icon i {
    color: var(--text-light);
}

.error-icon i {
    color: #f44336;
}

.periods-empty h3, .periods-error h3 {
    margin-bottom: 15px;
    color: var(--green-dark);
}

.periods-empty p, .periods-error p {
    margin-bottom: 20px;
    color: var(--text-medium);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
