/* Цветовая палитра */
:root {
    --primary-color: #0097dc;
    --primary-light: #00b4ff;
    --primary-dark: #007bb5;
    --secondary-color: #00dcb4;
    --gradient-primary: linear-gradient(135deg, #0097dc 0%, #00b4ff 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 151, 220, 0.05) 0%, rgba(0, 220, 180, 0.05) 100%);
}

/* Hero секция */
.reestr-hero {
    position: relative;
    height: 10vh;
    min-height: 130px;
    overflow: hidden;
    background: var(--gradient-primary);
    color: white;
    margin-bottom: 60px;
}

.reestr-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.reestr-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.custom-breadcrumbs {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.custom-breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.custom-breadcrumbs a:hover {
    text-decoration: underline;
}

.custom-breadcrumbs span {
    margin: 0 8px;
}

.reestr-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

/* Описание */
.reestr-intro-section {
    padding: 80px 0;
    background: white;
}

.reestr-intro-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 151, 220, 0.1);
    text-align: left;
    position: relative;
}

.intro-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 151, 220, 0.3);
}

.intro-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.reestr-intro-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.8;
}

.reestr-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.info-box {
    background: linear-gradient(135deg, rgba(0, 151, 220, 0.08) 0%, rgba(0, 220, 180, 0.08) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-box p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Назначение */
.reestr-purpose-section {
    padding: 80px 0;
    background: var(--gradient-overlay);
}

.reestr-purpose-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.purpose-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 151, 220, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 151, 220, 0.2);
}

.purpose-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 151, 220, 0.3);
    transition: all 0.3s ease;
}

.purpose-card:hover .purpose-icon {
    transform: scale(1.1) rotateY(360deg);
}

.purpose-icon i {
    color: white;
    font-size: 2rem;
}

.purpose-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.purpose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purpose-list li {
    padding: 15px 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.purpose-list li:last-child {
    border-bottom: none;
}

.purpose-list li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.purpose-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.admin-panel-info {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(0, 151, 220, 0.3);
    transition: all 0.3s ease;
}

.admin-panel-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 151, 220, 0.4);
}

.admin-panel-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.admin-panel-info:hover .admin-panel-icon {
    transform: rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.admin-panel-content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.admin-panel-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Стоимость */
.reestr-pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-card {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 151, 220, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 151, 220, 0.2);
}

.pricing-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 151, 220, 0.3);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 151, 220, 0.4);
}

.pricing-icon i {
    color: white;
    font-size: 3rem;
}

.pricing-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.pricing-card p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.pricing-actions {
    margin-top: 35px;
}

.btn-submit-modern {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 151, 220, 0.3);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 151, 220, 0.4);
    color: white;
}

/* Документы */
.reestr-documents-section {
    padding: 80px 0;
    background: var(--gradient-overlay);
}

.reestr-documents-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.document-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 151, 220, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 151, 220, 0.2);
}

.document-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 151, 220, 0.3);
    transition: all 0.3s ease;
}

.document-card:hover .document-icon {
    transform: scale(1.1) rotateY(360deg);
}

.document-icon i {
    color: white;
    font-size: 2rem;
}

.document-card h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.document-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.document-download-btn {
    margin-top: auto;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.document-download-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 151, 220, 0.3);
}

/* Разделители */
.custom-divider {
    margin: 20px 0;
}

.divider-primary hr {
    background: var(--gradient-primary);
    height: 3px;
    border: none;
}

/* Адаптивность */
@media (max-width: 768px) {
    .reestr-hero h1 {
        font-size: 2rem;
    }

    .reestr-intro-content {
        padding: 30px 20px;
    }

    .intro-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .intro-icon-wrapper i {
        font-size: 2rem;
    }

    .purpose-card,
    .document-card {
        margin-bottom: 30px;
    }

    .admin-panel-info {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .pricing-icon {
        width: 100px;
        height: 100px;
    }

    .pricing-icon i {
        font-size: 2.5rem;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }
}
