/* SoulOfSteppe - Доставка меблів та товарів для дому */

/* Базовий стиль */
* {
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Змінні кольорів */
:root {
    --primary-color: #539e4a;
    --secondary-color: #7e4632;
    --header-footer-bg: #111a24;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gradient-purple: linear-gradient(135deg, #539e4a, #7e4632);
}

/* Хедер */
.header {
    background-color: var(--header-footer-bg);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .navbar-brand {
    color: var(--white) !important;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
}

.header .navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.header .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.header .navbar-toggler {
    border-color: var(--white);
}

.header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: invert(1);
}

/* Отступ от фиксированного хедера */
body {
    padding-top: 85px;
}

/* Hero-секція з фоновим зображенням */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), url('./img/hero-delivery.webp');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Заголовки секцій */
.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-purple);
    border-radius: 2px;
}

/* Рейтинг зірочок */
.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Кнопки */
.btn-primary-custom {
    background: var(--gradient-purple);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 74, 158, 0.3);
    color: var(--white);
}

/* Заголовки сторінок */
.page-header {
    padding: 8rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header-1 { background: linear-gradient(135deg, #e8f4fd, #c3e7fc); }
.page-header-2 { background: linear-gradient(135deg, #fff2e8, #ffe4cc); }
.page-header-3 { background: linear-gradient(135deg, #f0f8e8, #e0f2cc); }
.page-header-4 { background: linear-gradient(135deg, #fce8f3, #f8d7e8); }

.page-header h1 {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Форма */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(93, 74, 158, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Контакти */
.contact-info {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

/* Карта */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 550px;
    border: none;
}

/* Футер */
.footer {
    background-color: var(--header-footer-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup p {
    margin-bottom: 1rem;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* Мобільна адаптація */
@media (max-width: 768px) {

    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.1rem;
    }
    
    .about-image-container {
        transform: none;
        margin-top: 2rem;
    }
    
    .about-image-container img {
        transform: none;
    }
    
    .process-step {
        margin-left: 15px;
        padding-left: 2rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        min-width: auto;
    }
}

/* new styles  */
/* Загальні стилі */
:root {
    --primary-color: #539e4a;
    --secondary-color: #7e4632;
    --header-footer-bg: #111a24;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gradient-purple: linear-gradient(135deg, #539e4a, #7e4632);
    --primary-bg: #f0f7ef;
}

.section-padding {
    padding: 80px 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Стилі для блоку 1 - О Казахстане */
.about-kazakhstan-section {
    background: var(--white);
    position: relative;
}


.about-content {
    position: relative;
    z-index: 2;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.unique-features {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(83, 158, 74, 0.1);
}

.features-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Стилі для блоку 2 - Популярные путеводители */
.guides-section {
    background: var(--primary-bg);
    position: relative;
}

.guides-intro {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guide-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(83, 158, 74, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(83, 158, 74, 0.25);
}

.guide-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
}

.guide-content {
    padding: 2rem;
}

.guide-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

.guide-title::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.guide-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}
/* Стилі для блоку 3 - Советы путешественникам */
.travel-tips-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.travel-tips-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    opacity: 0.1;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(1fr));
    gap: 1.5rem;
}

.tip-accordion {
    background: var(--white);
    border-radius: 15px;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tip-accordion:hover {
    transform: translateY(-3px);
}

.tip-header {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.tip-header:hover {
    background: #6d3b28;
}

.tip-icon {
    font-size: 1.5rem;
}

.tip-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.tip-content {
    padding: 1.5rem;
    background: var(--white);
    display: none;
    border-top: 2px solid var(--light-gray);
}

.tip-content.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tip-text {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Стилі для блоку 4 - Лучшие маршруты */
.routes-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    position: relative;
}

.routes-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.route-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(126, 70, 50, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.route-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(126, 70, 50, 0.25);
    border-color: var(--secondary-color);
}

.route-image-wrapper {
    position: relative;
    overflow: hidden;
}

.route-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.route-card:hover .route-image {
    transform: scale(1.1);
}

.route-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-card:hover .route-overlay {
    opacity: 0.15;
}

.route-content {
    padding: 2rem;
    position: relative;
}

.route-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.route-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Стилі для блоку 5 - Почему путешествовать по Казахстану стоит */
.why-travel-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
}

.why-travel-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(83, 158, 74, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 325px;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(83, 158, 74, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.advantage-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}
/* Стилі для блоку 6 - Невидимый Казахстан */
.hidden-kazakhstan-section {
    background: linear-gradient(135deg, #fef7e0 0%, #f4e4bc 100%);
    position: relative;
}

/* .hidden-kazakhstan-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.1;
} */

.hidden-content {
    position: relative;
    z-index: 2;
}

.hidden-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.hidden-images .col-md-6 {
    margin-bottom: 2rem;
}

.hidden-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(126, 70, 50, 0.2);
    transition: transform 0.4s ease;
}

.hidden-image-wrapper:hover {
    transform: translateY(-8px) rotateY(5deg);
}

.hidden-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hidden-image-wrapper:hover .hidden-image {
    transform: scale(1.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hidden-image-wrapper:hover .image-caption {
    transform: translateY(0);
}

/* Стилі для блоку 7 - Экологический взгляд */
.eco-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 100%);
    position: relative;
}

.eco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
}

.eco-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(83, 158, 74, 0.15);
    border-left: 6px solid var(--primary-color);
}

.eco-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    position: relative;
}

.eco-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -2rem;
    opacity: 0.3;
    font-family: serif;
}

/* Стилі для блоку 8 - О проекте */
.about-project-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    position: relative;
}

.project-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.project-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.project-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.mission-highlight {
    background: linear-gradient(135deg, var(--primary-bg), #fff);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

.mission-text {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
    font-style: italic;
}

/* Стилі для блоку 9 - Наша философия */
.philosophy-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    position: relative;
}



.philosophy-content {
    position: relative;
    z-index: 2;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.philosophy-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(126, 70, 50, 0.2);
}

.philosophy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.philosophy-image-wrapper:hover .philosophy-image {
    transform: scale(1.05);
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(83, 158, 74, 0.1), rgba(126, 70, 50, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-image-wrapper:hover .values-overlay {
    opacity: 1;
}

.values-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    padding: 1rem;
    background-color: #333;
    border-radius: 10px;
}
/* Стилі для блоку 10 - Основные маршруты */
.main-routes-section {
    background: linear-gradient(135deg, #fff1f2 0%, #fce7f3 100%);
    position: relative;
}

.main-routes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23539e4a" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%237e4632" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.routes-intro-content {
    position: relative;
    z-index: 2;
}

.route-intro-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(126, 70, 50, 0.15);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.route-intro-card:hover {
    transform: translateX(10px);
}

.route-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.route-intro-image {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.route-intro-image:hover {
    transform: scale(1.05) rotateY(5deg);
}

.routes-carousel-section {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    box-shadow: 0 20px 60px rgba(83, 158, 74, 0.1);
    position: relative;
    overflow: hidden;
}

.routes-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.carousel-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.route-carousel-item {
    background: linear-gradient(135deg, var(--light-gray), #f8f9fa);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 0 1rem;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: auto;
    min-height: 280px;
}

.route-carousel-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(83, 158, 74, 0.2);
    border-top-color: var(--secondary-color);
}

.route-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.route-item-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Bootstrap Carousel Custom Styles */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--secondary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    margin: 0 5px;
}

/* Стилі для блоку 11 - Авторские подборки */
.author-collections-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
}

/* .author-collections-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    opacity: 0.3;
} */

.collections-content {
    position: relative;
    z-index: 2;
}

.collections-text-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.collections-text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.collections-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.collections-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(83, 158, 74, 0.2);
}

.collections-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collections-image-wrapper:hover .collections-image {
    transform: scale(1.1);
}

.collections-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(83, 158, 74, 0.2), rgba(126, 70, 50, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collections-image-wrapper:hover .collections-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    padding: 1rem;
}

.author-signature {
    background: linear-gradient(135deg, var(--primary-bg), #f8f9fa);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    color: #666;
    text-align: center;
}
/* Стилі для блоку 12 - Практическая информация */
.practical-info-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    position: relative;
}

/* .practical-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    opacity: 0.4;
}

.practical-info-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 60%);
    opacity: 0.06;
    border-radius: 50%;
    transform: translate(100px, 100px);
} */

.info-cards-container {
    position: relative;
    z-index: 2;
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(126, 70, 50, 0.12);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-bg) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 15px 40px rgba(126, 70, 50, 0.2);
    border-top-color: var(--secondary-color);
}

.info-card:hover::before {
    opacity: 0.3;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.info-card:hover .info-icon {
    color: var(--secondary-color);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.info-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Альтернативный layout для разнообразия */
.info-card:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.info-card:nth-child(4) {
    border-top-color: var(--secondary-color);
}

/* Стилі для блоку 13 - Полезные ресурсы и подготовка */
.useful-resources-section {
    background: linear-gradient(135deg, #ecfccb 0%, #d9f99d 100%);
    position: relative;
}

.useful-resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(-75px, -75px);
}

.resources-content {
    position: relative;
    z-index: 2;
}

.resources-text-section {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(83, 158, 74, 0.12);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.resources-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    border-radius: 25px 25px 0 0;
}

.resources-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    position: relative;
}

.resources-text:last-child {
    margin-bottom: 0;
}

.resources-highlight {
    background: linear-gradient(135deg, var(--primary-bg), #f8f9fa);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: #666;
}

.resources-image-section {
    position: relative;
}

.resources-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(83, 158, 74, 0.2);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.resources-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.resources-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.resources-image-wrapper:hover .resources-image {
    transform: scale(1.08);
}

.resources-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(126, 70, 50, 0.3);
    transform: rotate(15deg);
    transition: transform 0.3s ease;
}

.resources-image-wrapper:hover .resources-badge {
    transform: rotate(0deg);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, var(--light-gray));
    border-radius: 20px;
    border: 2px dashed var(--primary-color);
}

.app-item {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.app-item:hover {
    transform: scale(1.05);
}

.app-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.app-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

@media (max-width: 768px) {

    .section-heading {
        font-size: 1.9rem;
    }
}