

html {
  scroll-behavior: smooth;
}










/* ========== СТИЛІ ДЛЯ СТОРІНКИ DISABLED.HTML ========== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    background-color: #f8f9fa;
}

/* ========== Hero-секція ========== */
.page-hero {
    position: relative;
    background-color: #262625;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/directions/disabled-hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

.page-hero h1 {
    font-size: clamp(40px, 8vw, 70px);
    color: white;
    margin: 0;
    z-index: 2;
    position: relative;
    font-weight: 700;
}

.wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.wave-container svg {
    display: block;
    width: 100%;
    height: 120px;
}

.wave-container svg path {
    fill: #f8f9fa;
}

@media (max-width: 768px) {
    .wave-container svg {
        height: 60px;
    }
}

/* ========== Основний контейнер ========== */
.direction-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ========== Вступний блок ========== */
/* Вступний блок */
.direction-intro {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    background: #262625;
    color: white;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 28px;
    margin-bottom: 30px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.direction-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #262625;
    margin-bottom: 20px;
}

.direction-intro p {
    font-size: 18px;
    line-height: 1.5;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}


/* ========== Напрями допомоги ========== */
.help-directions h3 {
    font-size: 32px;
    font-weight: 700;
    color: #262625;
    text-align: center;
    margin-bottom: 40px;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.help-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.help-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.help-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #262625;
    margin-bottom: 15px;
}

.help-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #4a5568;
    margin: 0;
}

/* ========== АНКЕТА ========== */
.application-form-section {
    background: #fff;
    border-radius: 28px;
    padding: 40px 35px;
    margin-top: 60px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.application-form-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #262625;
    margin-bottom: 10px;
    text-align: center;
}

.application-form-section > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 30px;
}

.help-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #85abba;
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 10px 0;
    border: none;
}

.form-group small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    background-color: #85abba;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Manrope", sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #6c9aab;
    transform: scale(1.02);
}

/* ========== Адаптивність ========== */
@media (max-width: 768px) {
    .direction-intro h2 {
        font-size: 28px;
    }
    
    .direction-intro p {
        font-size: 16px;
    }
    
    .intro-image {
        border-radius: 20px;
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .help-card {
        padding: 25px 20px;
    }
    
    .help-card h4 {
        font-size: 20px;
    }
    
    .application-form-section {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .application-form-section h3 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .submit-btn {
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .direction-container {
        padding: 20px 15px 40px;
    }
    
    .help-icon {
        font-size: 40px;
    }
    
    .help-card h4 {
        font-size: 18px;
    }
    
    .help-card p {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        font-size: 15px;
        padding: 10px;
    }
}


/* ========== БЛОК ІНКЛЮЗІЯ ========== */
.inclusion-block {
    background: #fff;
    border-radius: 28px;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.inclusion-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #262625;
    margin-bottom: 20px;
    border-left: 5px solid #85abba;
    padding-left: 20px;
}

.inclusion-content p {
    font-size: 16px;
    line-height: 1.55;
    color: #4a5568;
    margin-bottom: 20px;
}

.inclusion-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.inclusion-content li {
    font-size: 16px;
    line-height: 1.55;
    color: #2d3e50;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.inclusion-content li::before {
    content: "✓";
    color: #85abba;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Адаптивність */
@media (max-width: 768px) {
    .inclusion-block {
        padding: 30px;
        margin: 40px 0;
    }
    
    .inclusion-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .inclusion-block {
        padding: 20px;
    }

    .inclusion-content h2 {
        font-size: 22px;
    }

    .inclusion-content p,
    .inclusion-content li {
        font-size: 14px;
    }
}

/* --- Фото hero (disabled.html) --- */
.page-hero-split .wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}
.page-hero-split .wave-container svg {
    display: block;
    width: 100%;
    height: 120px;
}

.page-hero-split {
    background-color: #262625;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.page-hero-split .hero-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px 20px;
}
.page-hero-split .hero-badge {
    display: inline-block;
    background: rgba(133, 171, 186, 0.18);
    color: #85abba;
    border: 1px solid rgba(133, 171, 186, 0.35);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.page-hero-split .hero-left h1 {
    font-size: clamp(36px, 4.5vw, 60px);
    color: #fff;
    margin: 0 0 24px;
    font-weight: 800;
    line-height: 1.1;
}
.page-hero-split .hero-desc {
    font-size: 17px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 38px;
    max-width: 440px;
}
.page-hero-split .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.page-hero-split .hero-btn-primary {
    display: inline-block;
    background: #85abba;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    transition: all 0.3s ease;
}
.page-hero-split .hero-btn-primary:hover {
    background: #6c9aab;
    transform: translateY(-2px);
}
.page-hero-split .hero-btn-secondary {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.78);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    transition: all 0.3s ease;
}
.page-hero-split .hero-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: translateY(-2px);
}
.page-hero-split .hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-hero-split .hero-right img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 28px;
    object-fit: cover;
    display: block;
}
.hero-stats {
    display: flex;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 148px;
    position: relative;
    z-index: 2;
}
.hero-stat {
    flex: 1;
    text-align: center;
    padding: 16px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat:last-child {
    border-right: none;
}
.stat-number {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: #85abba;
    margin-bottom: 6px;
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .page-hero-split .wave-container svg {
        height: 60px;
    }
    .page-hero-split .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 24px 70px;
        gap: 0;
        text-align: center;
    }
    .page-hero-split .hero-left {
        display: contents;
    }
    .page-hero-split .hero-badge { order: 1; margin-bottom: 16px; }
    .page-hero-split .hero-left h1 { order: 2; text-align: center; margin-bottom: 16px; }
    .page-hero-split .hero-desc { order: 3; margin: 0 auto 28px; }
    .page-hero-split .hero-right { order: 4; width: 100%; margin-bottom: 28px; }
    .page-hero-split .hero-right img { max-height: 280px; object-fit: cover; width: 100%; }
    .page-hero-split .hero-buttons { order: 5; justify-content: center; }
    .hero-stats {
        padding: 24px 20px 90px;
    }
    .stat-number {
        font-size: 26px;
    }
}
