@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald.ttf') format('truetype');    
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');    
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333333;
    background-color: #FFFFFF;
    line-height: 1.6;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: #2D1B69;
    margin-bottom: 1.6vh;
}

/* Шапка сайта */
.site-header {
    box-shadow: 0 0.4vh 0.8vh rgba(0, 0, 0, 0.1);
}

.logo-img {
    height: 5vh;
    margin-right: 1vh;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4vh;
    color: #2D1B69 !important;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: #2D1B69 !important;
    font-size: 1.8vh;
    font-weight: 500;
    padding: 1vh 2vh !important;
    transition: all 0.3s ease;
    border-radius: 0.5vh;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-0.2vh);
}

.register-btn .nav-link,
.application-btn .nav-link {
    background: linear-gradient(135deg, #FF6B6B, #4A2E80);
    color: #FFFFFF !important;
    border-radius: 2.5vh;
    padding: 1vh 3vh !important;
}

.register-btn .nav-link:hover,
.application-btn .nav-link:hover {
    transform: translateY(-0.3vh);
    box-shadow: 0 0.6vh 1.2vh rgba(74, 46, 128, 0.3);
}

/* Подвал сайта */
.site-footer {
    background: linear-gradient(135deg, #7EC8C1 0%, #B8A1D9 100%);
    color: #2D1B69;
    padding: 6vh 0 3vh;
}

.footer-logo-img {
    height: 6vh;
    margin-bottom: 2vh;
}

.footer-title {
    font-size: 2.8vh;
    margin-bottom: 1vh;
}

.footer-description {
    font-size: 1.6vh;
    opacity: 0.9;
}

.social-links {
    margin-top: 3vh;
}

.social-link {
    display: inline-block;
    width: 4vh;
    height: 4vh;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 4vh;
    margin-right: 1vh;
    color: #2D1B69;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2D1B69;
    color: #FFFFFF;
    transform: translateY(-0.3vh);
}

.footer-heading {
    font-size: 2.2vh;
    margin-bottom: 2.5vh;
    position: relative;
    padding-bottom: 1vh;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5vh;
    height: 0.3vh;
    background: #F0C987;
}

.footer-nav .nav-link {
    color: #2D1B69;
    padding: 0.5vh 0;
    font-size: 1.6vh;
    transition: all 0.3s ease;
}

.footer-nav .nav-link:hover {
    color: #F0C987;
    padding-left: 1vh;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1.5vh;
    font-size: 1.6vh;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 1vh;
    color: #F0C987;
    width: 2vh;
}

.footer-policy {
    margin-top: 3vh;
}

.policy-link {
    display: block;
    color: #2D1B69;
    font-size: 1.4vh;
    margin-bottom: 0.8vh;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-link:hover {
    color: #F0C987;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 0.1vh solid rgba(45, 27, 105, 0.2);
    padding-top: 3vh;
    margin-top: 3vh;
}

.copyright,
.powered {
    font-size: 1.4vh;
    opacity: 0.8;
}

/* Основной контент */
.main-container {
    padding: 12vh 0 6vh;
}

.section-title {
    text-align: center;
    margin-bottom: 6vh;
    font-size: 3.6vh;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5vh;
    left: 50%;
    transform: translateX(-50%);
    width: 10vh;
    height: 0.5vh;
    background: linear-gradient(to right, #4A2E80, #7EC8C1);
}

/* Геро-секция */
.hero-section {
    background: linear-gradient(135deg, 
        rgba(240, 201, 135, 0.95) 0%, 
        rgba(255, 154, 61, 0.85) 100%),
        url('../img/hero-bg.jpg') center/cover no-repeat;
    padding: 15vh 0 12vh;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 4vh 4vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(126, 200, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 161, 217, 0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #2D1B69;
}

.hero-title {
    font-size: 5.6vh;
    font-weight: 700;
    margin-bottom: 2vh;
    background: linear-gradient(90deg, #2D1B69, #4A2E80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0.4vh 0.8vh rgba(45, 27, 105, 0.1);
    animation: titleSlide 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-subtitle {
    font-size: 2.4vh;
    max-width: 90%;
    margin: 0 auto 4vh;
    line-height: 1.6;
    color: #4A2E80;
    opacity: 0.9;
    animation: subtitleSlide 1s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.hero-btn {
    background: linear-gradient(135deg, #4A2E80 0%, #7EC8C1 100%);
    color: white;
    border: none;
    padding: 1.8vh 4.8vh;
    font-size: 2.2vh;
    font-weight: 600;
    border-radius: 3vh;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 1vh;
    box-shadow: 
        0 0.8vh 1.6vh rgba(74, 46, 128, 0.3),
        0 0.4vh 0.8vh rgba(126, 200, 193, 0.2),
        inset 0 0.2vh 0.4vh rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s infinite;
}

.hero-btn:hover {
    transform: translateY(-0.3vh);
    box-shadow: 0 0.6vh 1.2vh rgba(0, 0, 0, 0.3);
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-btn::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.6s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-0.4vh) scale(1.05);
    box-shadow: 
        0 1.2vh 2.4vh rgba(74, 46, 128, 0.4),
        0 0.6vh 1.2vh rgba(126, 200, 193, 0.3),
        inset 0 0.2vh 0.4vh rgba(255, 255, 255, 0.4);
}

/* Карточки туров */
.tour-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2vh);
    border: 0.1vh solid rgba(74, 46, 128, 0.1);
    border-radius: 2vh;
    overflow: hidden;
    box-shadow: 
        0 0.4vh 0.8vh rgba(0, 0, 0, 0.05),
        0 1vh 3vh rgba(126, 200, 193, 0.1),
        inset 0 0 0 0.1vh rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.6vh;
    background: linear-gradient(90deg, #4A2E80, #7EC8C1, #F0C987);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-1vh) scale(1.03);
    box-shadow: 
        0 1.2vh 2.4vh rgba(74, 46, 128, 0.15),
        0 0.4vh 0.8vh rgba(126, 200, 193, 0.2),
        inset 0 0 0 0.1vh rgba(255, 255, 255, 0.9);
    border-color: rgba(74, 46, 128, 0.2);
}

.tour-card:hover::before {
    opacity: 1;
}

.tour-card-img {
    height: 25vh;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tour-card:hover .tour-card-img {
    transform: scale(1.1);
}

.tour-card-body {
    padding: 2.5vh;
}

.tour-card-title {
    font-size: 2.4vh;
    background: linear-gradient(90deg, #2D1B69, #4A2E80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1.2vh;
    transition: all 0.3s ease;
}

.tour-card:hover .tour-card-title {
    background: linear-gradient(90deg, #4A2E80, #2D1B69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-card-description {
    font-size: 1.6vh;
    color: #666666;
    margin-bottom: 2vh;
    height: 6vh;
    overflow: hidden;
}

.tour-card-price {
    font-size: 2.2vh;
    font-weight: 700;
    background: linear-gradient(90deg, #4A2E80, #7EC8C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5vh 0;
}

.tour-card-date {
    font-size: 1.4vh;
    color: #888888;
    margin-bottom: 2vh;
}

.tour-card-btn {
    background: linear-gradient(135deg, #4A2E80 0%, #7EC8C1 100%);
    color: white;
    border: none;
    padding: 1.2vh 0;
    font-size: 1.6vh;
    font-weight: 600;
    border-radius: 2vh;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    position: relative;
    overflow: hidden;
}

.tour-card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.tour-card-btn:hover::before {
    width: 40vh;
    height: 40vh;
}

.tour-card-btn:hover {
    transform: translateY(-0.3vh);
    box-shadow: 0 0.8vh 1.6vh rgba(74, 46, 128, 0.3);
}

.tour-card-btn span {
    position: relative;
    z-index: 1;
}

/* Блок услуг */
.services-section {
    background: #F8F9FA;
    padding: 6vh 0;
    margin: 6vh 0;
}

.service-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.9) 100%);
    border: 0.1vh solid rgba(74, 46, 128, 0.1);
    border-radius: 2vh;
    padding: 3vh 2.5vh;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.4vh;
    background: linear-gradient(90deg, #4A2E80, #7EC8C1);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-0.8vh);
    box-shadow: 
        0 1.2vh 2.4vh rgba(74, 46, 128, 0.1),
        0 0.4vh 0.8vh rgba(126, 200, 193, 0.2);
    border-color: rgba(74, 46, 128, 0.2);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    font-size: 4.8vh;
    margin-bottom: 2vh;
    background: linear-gradient(135deg, #4A2E80, #7EC8C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-title {
    font-size: 2vh;
    margin-bottom: 1.5vh;
    color: #2D1B69;
}

.service-description {
    font-size: 1.6vh;
    color: #666666;
}

/* Отзывы */
.reviews-section {
    padding: 6vh 0;
}

.review-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.95) 100%);
    border: 0.1vh solid rgba(240, 201, 135, 0.2);
    border-radius: 2vh;
    padding: 3vh;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    height: 100%;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.4vh;
    background: linear-gradient(90deg, #F0C987, #FF9A3D);
    border-radius: 2vh 2vh 0 0;
}

.review-card:hover {
    transform: translateY(-0.8vh);
    box-shadow: 
        0 1.2vh 2.4vh rgba(240, 201, 135, 0.15),
        0 0.4vh 0.8vh rgba(255, 154, 61, 0.1);
    border-color: rgba(240, 201, 135, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 2vh;
}

.review-avatar {
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A2E80, #7EC8C1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.4vh;
    font-weight: 700;
    margin-right: 2vh;
    flex-shrink: 0;
}

.review-author {
    font-size: 1.8vh;
    font-weight: 600;
    color: #2D1B69;
}

.review-date {
    font-size: 1.4vh;
    color: #888888;
}

.review-rating {
    font-size: 1.8vh;
    color: #FF9A3D;
    margin: 1.5vh 0;
}

.review-text {
    font-size: 1.6vh;
    line-height: 1.7;
    color: #4A2E80;
    position: relative;
    padding-left: 2vh;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    color: #7EC8C1;
    font-size: 3vh;
    font-family: Georgia, serif;
    line-height: 1;
}

.no-reviews {
    background: linear-gradient(135deg, 
        rgba(126, 200, 193, 0.1) 0%,
        rgba(184, 161, 217, 0.1) 100%);
    border: 0.2vh dashed rgba(74, 46, 128, 0.2);
    border-radius: 2vh;
    padding: 6vh 3vh;
    text-align: center;
}

.no-reviews i {
    font-size: 8vh;
    background: linear-gradient(135deg, #7EC8C1, #4A2E80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3vh;
    display: inline-block;
}

/* Контактная информация */
.contact-section {
    padding: 6vh 0;
    background: linear-gradient(rgba(126, 200, 193, 0.1), rgba(184, 161, 217, 0.1));
}

.contact-info-card {
    background: linear-gradient(135deg, 
        rgba(126, 200, 193, 0.1) 0%,
        rgba(184, 161, 217, 0.1) 100%);
    border: 0.1vh solid rgba(74, 46, 128, 0.1);
    border-radius: 2vh;
    padding: 3vh;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.contact-info-card:hover {
    transform: translateY(-0.8vh);
    box-shadow: 
        0 1.2vh 2.4vh rgba(126, 200, 193, 0.15),
        0 0.4vh 0.8vh rgba(184, 161, 217, 0.1);
    border-color: rgba(74, 46, 128, 0.2);
}


.contact-icon {
    font-size: 4vh;
    background: linear-gradient(135deg, #4A2E80, #7EC8C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2vh;
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 1.5vh;
    font-size: 1.6vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details i {
    margin-right: 1vh;
    color: #7EC8C1;
}

/* Кнопки */
.btn-primary {
    background: linear-gradient(135deg, #4A2E80 0%, #7EC8C1 100%);
    color: white;
    border: none;
    padding: 1.5vh 3.6vh;
    font-size: 1.8vh;
    font-weight: 600;
    border-radius: 2vh;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0.4vh 0.8vh rgba(74, 46, 128, 0.3),
        0 0.2vh 0.4vh rgba(126, 200, 193, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-0.3vh) scale(1.05);
    box-shadow: 
        0 0.8vh 1.6vh rgba(74, 46, 128, 0.4),
        0 0.4vh 0.8vh rgba(126, 200, 193, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(3vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.tour-card:nth-child(1) { animation-delay: 0.1s; }
.tour-card:nth-child(2) { animation-delay: 0.2s; }
.tour-card:nth-child(3) { animation-delay: 0.3s; }
.tour-card:nth-child(4) { animation-delay: 0.4s; }
.tour-card:nth-child(5) { animation-delay: 0.5s; }
.tour-card:nth-child(6) { animation-delay: 0.6s; }

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-card:nth-child(2) { animation-delay: 0.2s; }
.contact-info-card:nth-child(3) { animation-delay: 0.3s; }

.about-content {
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.9) 0%,
        rgba(255, 255, 255, 0.9) 100%);
    border-radius: 2vh;
    padding: 3vh;
    border: 0.1vh solid rgba(74, 46, 128, 0.1);
}

.advantages-list li {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1vh;
    padding: 1.5vh;
    margin-bottom: 1vh;
    border: 0.1vh solid rgba(126, 200, 193, 0.2);
    transition: all 0.3s ease;
}

.advantages-list li:hover {
    transform: translateX(0.8vh);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(126, 200, 193, 0.4);
}

.advantages-list i {
    background: linear-gradient(135deg, #7EC8C1, #4A2E80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8vh;
}

.about-media img {
    border-radius: 1vh;
    transition: all 0.4s ease;
    filter: saturate(0.9);
}

.about-media img:hover {
    transform: scale(1.05);
    filter: saturate(1.2);
    box-shadow: 0 1.2vh 2.4vh rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.application-create {
    padding: 8vh 0;
}

.card {
    border-radius: 2vh;
    overflow: hidden;
    border: none;
}

.card-header {
    background: linear-gradient(135deg, #4A2E80, #7EC8C1) !important;
    border-bottom: none;
}

.application-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4vh;
    position: relative;
}

.application-steps::before {
    content: '';
    position: absolute;
    top: 2.5vh;
    left: 10%;
    right: 10%;
    height: 0.3vh;
    background: #E9ECEF;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step.active .step-number {
    background: linear-gradient(135deg, #4A2E80, #7EC8C1);
    color: white;
    transform: scale(1.1);
}

.step-number {
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    background: #E9ECEF;
    color: #6C757D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2vh;
    margin-bottom: 1vh;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 1.4vh;
    color: #6C757D;
    text-align: center;
    font-weight: 600;
}

.step.active .step-title {
    color: #4A2E80;
}

.section-title {
    font-size: 2.2vh;
    text-align: left;
    margin-bottom: 2vh;
    color: #4A2E80;
    position: relative;
    padding-bottom: 1vh;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8vh;
    height: 0.3vh;
    background: #7EC8C1;
}

.form-control,
.form-select {
    border: 0.1vh solid #DEE2E6;
    border-radius: 0.8vh;
    padding: 1.2vh 1.5vh;
    font-size: 1.6vh;
    transition: all 0.3s ease;
    height: auto;
}

.form-control:focus,
.form-select:focus {
    border-color: #7EC8C1;
    box-shadow: 0 0 0 0.2vh rgba(126, 200, 193, 0.25);
}

.form-label {
    font-weight: 600;
    color: #2D1B69;
    margin-bottom: 0.8vh;
    font-size: 1.6vh;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5vh;
    margin-top: 1vh;
}

.payment-method {
    background: #F8F9FA;
    border: 0.1vh solid #E9ECEF;
    border-radius: 0.8vh;
    padding: 1.5vh;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-method:hover {
    border-color: #7EC8C1;
    background-color: rgba(126, 200, 193, 0.05);
}

.payment-method .form-check-input {
    margin-top: 0.5vh;
}

.payment-method .form-check-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #2D1B69;
}

.alert-info {
    background-color: rgba(126, 200, 193, 0.1);
    border: 0.1vh solid #7EC8C1;
    border-radius: 1vh;
    color: #2D1B69;
}

.alert-info h5 {
    color: #4A2E80;
}

.alert-info ul {
    padding-left: 2vh;
}

.alert-info li {
    margin-bottom: 0.5vh;
    font-size: 1.6vh;
}

.btn-primary {
    background: linear-gradient(135deg, #4A2E80, #7EC8C1);
    border: none;
    padding: 1.5vh 3vh;
    font-size: 1.8vh;
    border-radius: 1vh;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-0.2vh);
    box-shadow: 0 0.6vh 1.2vh rgba(74, 46, 128, 0.3);
}

.btn-secondary {
    background: #6C757D;
    border: none;
    padding: 1.5vh 3vh;
    font-size: 1.8vh;
    border-radius: 1vh;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5A6268;
    transform: translateY(-0.2vh);
}

.invalid-feedback {
    font-size: 1.4vh;
    margin-top: 0.5vh;
}

#tour-info-container .card {
    border: 0.2vh solid #4A2E80;
    background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.7));
}

#tour-info-container .card-title {
    color: #4A2E80;
    font-weight: 600;
}

.tour-select {
    cursor: pointer;
}

.application-index {
    padding: 8vh 0 6vh;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    min-height: 100vh;
}

.application-index h1 {
    font-size: 4.2vh;
    color: #2D1B69;
    position: relative;
    padding-bottom: 2vh;
}

.application-index h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12vh;
    height: 0.6vh;
    background: linear-gradient(90deg, #4A2E80, #7EC8C1);
    border-radius: 0.3vh;
}

.table th {
    color: #4A2E80;
    font-weight: 600;
    border-bottom: 0.2vh solid #4A2E80;
    font-size: 1.6vh;
}

.table td {
    vertical-align: middle;
    font-size: 1.6vh;
}

.badge {
    font-size: 1.4vh;
    padding: 0.6vh 1.2vh;
    border-radius: 1vh;
}

.btn-outline-primary {
    color: #4A2E80;
    border-color: #4A2E80;
}

.btn-outline-primary:hover {
    background-color: #4A2E80;
    border-color: #4A2E80;
}

.card {
    border-radius: 1.5vh;
    border: none;
}

.fa-inbox {
    opacity: 0.7;
}

.application-index {
    padding: 8vh 0 4vh;
}

.application-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2vh);
    border: 0.1vh solid rgba(74, 46, 128, 0.1);
    border-radius: 2vh;
    box-shadow: 
        0 0.4vh 0.8vh rgba(0, 0, 0, 0.05),
        0 1vh 3vh rgba(126, 200, 193, 0.1),
        inset 0 0 0 0.1vh rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    overflow: hidden;
    position: relative;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.6vh;
    background: linear-gradient(90deg, #4A2E80, #7EC8C1, #F0C987);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.application-card:hover {
    transform: translateY(-0.8vh) scale(1.02);
    box-shadow: 
        0 1.2vh 2.4vh rgba(74, 46, 128, 0.15),
        0 0.4vh 0.8vh rgba(126, 200, 193, 0.2),
        inset 0 0 0 0.1vh rgba(255, 255, 255, 0.9);
    border-color: rgba(74, 46, 128, 0.2);
}

.application-card:hover::before {
    opacity: 1;
}

.application-card:hover .card-title {
    background: linear-gradient(90deg, #4A2E80, #2D1B69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.application-card .card-title {
    font-size: 2.4vh;
    background: linear-gradient(90deg, #2D1B69, #4A2E80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.status-badge {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 0.8vh 1.6vh;
    border-radius: 2vh;
    font-size: 1.4vh;
    letter-spacing: 0.05vh;
    box-shadow: 0 0.2vh 0.4vh rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.application-card:hover .status-badge {
    transform: scale(1.05);
}

.status-new {
    background: linear-gradient(135deg, #7EC8C1, #4A2E80);
    color: white;
}

.status-review {
    background: linear-gradient(135deg, #F0C987, #FF9A3D);
    color: #2D1B69;
}

.status-accepted {
    background: linear-gradient(135deg, #7EC8C1, #38B2AC);
    color: white;
}

.status-rejected {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
}

.info-row {
    background: rgba(248, 249, 250, 0.6);
    border-radius: 1vh;
    padding: 1.5vh;
    margin-bottom: 1.5vh;
    border: 0.1vh solid rgba(74, 46, 128, 0.08);
}

.info-row i {
    color: #4A2E80;
    width: 2vh;
    text-align: center;
    margin-right: 1vh;
}

.wishes-preview {
    background: linear-gradient(135deg, rgba(126, 200, 193, 0.1), rgba(184, 161, 217, 0.1));
    border-left: 0.4vh solid #7EC8C1;
    border-radius: 0 1vh 1vh 0;
    padding: 1.5vh;
    margin-top: 1.5vh;
}

.actions-container {
    padding-top: 2vh;
    border-top: 0.1vh solid rgba(74, 46, 128, 0.1);
}

.card-title {
    color: #4A2E80;
    font-weight: 600;
    font-size: 2vh;
}

.badge {
    font-size: 1.4vh;
    padding: 0.5vh 1vh;
    border-radius: 0.5vh;
}

.btn-outline-primary {
    background: transparent;
    border: 0.2vh solid #4A2E80;
    color: #4A2E80;
    padding: 0.8vh 1.8vh;
    border-radius: 2vh;
    font-size: 1.4vh;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A2E80, #7EC8C1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-outline-primary:hover::before {
    width: 30vh;
    height: 30vh;
}

.btn-outline-primary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-0.3vh);
    box-shadow: 0 0.8vh 1.6vh rgba(74, 46, 128, 0.2);
}

.btn-outline-primary span {
    position: relative;
    z-index: 1;
}

.btn-warning {
    background: linear-gradient(135deg, #F0C987, #FF9A3D);
    border: none;
    color: #2D1B69;
    padding: 0.8vh 1.8vh;
    border-radius: 2vh;
    font-size: 1.4vh;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0.4vh 0.8vh rgba(240, 201, 135, 0.3);
}

.btn-warning:hover {
    transform: translateY(-0.3vh) scale(1.05);
    box-shadow: 0 0.8vh 1.6vh rgba(240, 201, 135, 0.4);
    background: linear-gradient(135deg, #FF9A3D, #F0C987);
}

.review-badge {
    background: linear-gradient(135deg, #7EC8C1, #38B2AC);
    color: white;
    padding: 0.6vh 1.2vh;
    border-radius: 2vh;
    font-size: 1.2vh;
    font-weight: 600;
    box-shadow: 0 0.2vh 0.4vh rgba(56, 178, 172, 0.3);
}

.badge.bg-success {
    background-color: #7EC8C1 !important;
    color: #2D1B69;
    font-size: 1.4vh;
    padding: 0.5vh 1vh;
}

.application-view {
    padding: 8vh 0 6vh;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    min-height: 100vh;
}

/* Заголовок */
.application-view .card-header {
    background: linear-gradient(135deg, #4A2E80 0%, #2D1B69 100%) !important;
    border-bottom: 0.4vh solid #7EC8C1;
    position: relative;
    overflow: hidden;
}

.application-view .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

.application-view .card-header h3 {
    color: white;
    text-shadow: 0 0.2vh 0.4vh rgba(0, 0, 0, 0.2);
    font-size: 3.2vh;
    position: relative;
    z-index: 1;
}

.card-header.bg-gradient-primary {
    background: linear-gradient(135deg, #4A2E80, #7EC8C1) !important;
}

.badge {
    font-size: 1.4vh;
    padding: 0.5vh 1vh;
}

.detail-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2vh);
    border: 0.1vh solid rgba(74, 46, 128, 0.1);
    border-radius: 2vh;
    box-shadow: 
        0 0.4vh 0.8vh rgba(0, 0, 0, 0.05),
        0 1vh 3vh rgba(126, 200, 193, 0.1),
        inset 0 0 0 0.1vh rgba(255, 255, 255, 0.8);
}

.detail-row {
    display: grid;
    grid-template-columns: 30% 70%;
    padding: 1.8vh 0;
    border-bottom: 0.1vh solid rgba(74, 46, 128, 0.08);
    transition: background-color 0.3s ease;
}

.detail-row:hover {
    background-color: rgba(126, 200, 193, 0.05);
    border-radius: 1vh;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 700;
    color: #4A2E80;
    font-size: 1.6vh;
    display: flex;
    align-items: center;
}

.detail-label i {
    margin-right: 1vh;
    color: #7EC8C1;
    width: 2vh;
}

.detail-value {
    color: #2D1B69;
    font-size: 1.6vh;
    line-height: 1.6;
}

.tour-info-card {
    background: linear-gradient(135deg, 
        rgba(126, 200, 193, 0.1) 0%,
        rgba(184, 161, 217, 0.1) 100%);
    border: 0.1vh solid rgba(74, 46, 128, 0.1);
    border-radius: 2vh;
    position: relative;
    overflow: hidden;
}

.tour-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.6vh;
    background: linear-gradient(90deg, #4A2E80, #7EC8C1, #F0C987);
}

.tour-info-card h6 {
    color: #2D1B69;
    font-size: 2vh;
    font-weight: 700;
    margin-bottom: 1.5vh;
}

.tour-price {
    font-size: 2.4vh;
    font-weight: 700;
    background: linear-gradient(90deg, #4A2E80, #7EC8C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.review-card-section {
    background: linear-gradient(135deg, 
        rgba(240, 201, 135, 0.1) 0%,
        rgba(255, 154, 61, 0.1) 100%);
    border: 0.1vh solid rgba(240, 201, 135, 0.2);
    border-radius: 2vh;
    position: relative;
    overflow: hidden;
}

.review-card-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.6vh;
    background: linear-gradient(90deg, #F0C987, #FF9A3D);
}

.rating-display {
    font-size: 2.4vh;
    color: #FF9A3D;
    margin-bottom: 1.5vh;
}

.review-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5vh;
    padding: 2vh;
    margin-top: 2vh;
    border: 0.1vh solid rgba(240, 201, 135, 0.3);
}

.table-borderless td, .table-borderless th {
    border: none;
    padding: 1vh 0;
    font-size: 1.6vh;
}

.table-borderless tr:not(:last-child) {
    border-bottom: 0.1vh solid #F0F0F0;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.8vh;
}

.review-box {
    background: #F8F9FA;
    border-radius: 1vh;
    padding: 1.5vh;
    border-left: 0.3vh solid #F0C987;
}

.btn-warning {
    background-color: #F0C987;
    border-color: #F0C987;
    color: #2D1B69;
}

.btn-warning:hover {
    background-color: #E0B977;
    border-color: #E0B977;
    color: #2D1B69;
}

.text-primary {
    color: #4A2E80 !important;
}

.btn-outline-primary {
    color: #4A2E80;
    border-color: #4A2E80;
}

.btn-outline-primary:hover {
    background-color: #4A2E80;
    border-color: #4A2E80;
}

/* Добавим в конец style.css */

.review-footer {
    border-top: 0.1vh solid #E9ECEF;
    padding-top: 1.5vh;
    margin-top: 1.5vh;
}

.review-card {
    background: #FFFFFF;
    border-radius: 1vh;
    padding: 3vh;
    box-shadow: 0 0.4vh 0.8vh rgba(0, 0, 0, 0.1);
    margin-bottom: 3vh;
    border-left: 0.5vh solid #F0C987;
    transition: all 0.3s ease;
    height: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 2vh;
}

.review-avatar {
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    background: linear-gradient(135deg, #7EC8C1, #4A2E80);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.4vh;
    font-weight: 600;
    margin-right: 2vh;
}

.review-author {
    font-size: 1.8vh;
    font-weight: 600;
    color: #2D1B69;
}

.review-date {
    font-size: 1.4vh;
    color: #888888;
}

.review-rating {
    color: #FFD700;
    margin-bottom: 1.5vh;
    font-size: 1.8vh;
}

.review-text {
    font-size: 1.6vh;
    line-height: 1.8;
    color: #555555;
    min-height: 12vh;
}

.badge.bg-primary {
    background-color: #4A2E80 !important;
    font-size: 1.2vh;
    padding: 0.5vh 1vh;
}

/* Анимация появления карточек */
@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(3vh) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.application-card {
    animation: cardAppear 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.application-card:nth-child(1) { animation-delay: 0.1s; }
.application-card:nth-child(2) { animation-delay: 0.2s; }
.application-card:nth-child(3) { animation-delay: 0.3s; }
.application-card:nth-child(4) { animation-delay: 0.4s; }

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

.action-btn {
    padding: 1.2vh 0;
    border-radius: 2vh;
    font-weight: 600;
    font-size: 1.6vh;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.action-btn:hover::before {
    width: 40vh;
    height: 40vh;
}

.btn-back {
    background: transparent;
    border: 0.2vh solid #6C757D;
    color: #6C757D;
}

.btn-back::before {
    background: rgba(108, 117, 125, 0.1);
}

.btn-back:hover {
    border-color: #4A2E80;
    color: #4A2E80;
    transform: translateY(-0.3vh);
}

.btn-review {
    background: linear-gradient(135deg, #F0C987, #FF9A3D);
    border: none;
    color: #2D1B69;
    box-shadow: 0 0.4vh 0.8vh rgba(240, 201, 135, 0.3);
}

.btn-review::before {
    background: rgba(255, 255, 255, 0.2);
}

.btn-review:hover {
    transform: translateY(-0.3vh) scale(1.02);
    box-shadow: 0 0.8vh 1.6vh rgba(240, 201, 135, 0.4);
}

.btn-print {
    background: transparent;
    border: 0.2vh solid #4A2E80;
    color: #4A2E80;
}

.btn-print::before {
    background: linear-gradient(135deg, 
        rgba(74, 46, 128, 0.1) 0%,
        rgba(126, 200, 193, 0.1) 100%);
}

.btn-print:hover {
    background: linear-gradient(135deg, #4A2E80, #7EC8C1);
    color: white;
    transform: translateY(-0.3vh);
}

/* Индикатор статуса */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.8vh;
    padding: 0.8vh 1.6vh;
    border-radius: 2vh;
    font-weight: 600;
    font-size: 1.4vh;
    position: relative;
    overflow: hidden;
}

.status-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
}

.status-new {
    color: white;
}

.status-new::before {
    background: linear-gradient(135deg, #7EC8C1, #4A2E80);
}

.status-accepted {
    color: white;
}

.status-accepted::before {
    background: linear-gradient(135deg, #38B2AC, #7EC8C1);
}

.status-review {
    color: #2D1B69;
}

.status-review::before {
    background: linear-gradient(135deg, #F0C987, #FF9A3D);
}

.status-rejected {
    color: white;
}

.status-rejected::before {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
}

.status-indicator span {
    position: relative;
    z-index: 1;
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-card,
.tour-info-card,
.review-card-section,
.action-buttons > * {
    animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.tour-info-card { animation-delay: 0.1s; }
.review-card-section { animation-delay: 0.2s; }
.action-buttons > *:nth-child(1) { animation-delay: 0.3s; }
.action-buttons > *:nth-child(2) { animation-delay: 0.4s; }
.action-buttons > *:nth-child(3) { animation-delay: 0.5s; }

/* Стили для карточек туров */
.tour-card {
    background: white;
    border-radius: 1vh;
    overflow: hidden;
    box-shadow: 0 0.4vh 0.8vh rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 0.1vh solid #eee;
}

.tour-card:hover {
    transform: translateY(-0.5vh);
    box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.15);
}

.tour-card-img {
    width: 100%;
    height: 25vh;
    object-fit: cover;
}

.tour-card-body {
    padding: 2vh;
}

.tour-card-title {
    font-size: 1.8vh;
    font-weight: 600;
    color: #333;
    margin-bottom: 1vh;
    min-height: 5.5vh;
}

.tour-card-description {
    font-size: 1.4vh;
    color: #666;
    margin-bottom: 1.5vh;
    min-height: 8vh;
}

.tour-card-price {
    font-size: 2vh;
    font-weight: 700;
    color: #4A2E80;
    margin-bottom: 0.5vh;
}

.tour-card-date {
    font-size: 1.3vh;
    color: #888;
    margin-bottom: 1.5vh;
}

.tour-card-btn {
    display: inline-block;
    background: #4A2E80;
    color: white;
    padding: 1vh 2vh;
    border-radius: 0.5vh;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
}

.tour-card-btn:hover {
    background: #3a2366;
    color: white;
    text-decoration: none;
}

/* Стили для страницы тура */
.tour-hero {
    background: linear-gradient(135deg, #4A2E80 0%, #7EC8C1 100%);
    color: white;
    padding: 5vh 0;
}

.tour-title {
    font-size: 3.5vh;
    font-weight: 700;
}

.tour-price-card {
    background: white;
    border-radius: 1vh;
    box-shadow: 0 0.5vh 1.5vh rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.price-header {
    background: #4A2E80;
    color: white;
    padding: 2vh;
    text-align: center;
}

.price-title {
    margin: 0;
    font-size: 2vh;
    font-weight: 600;
}

.price-body {
    padding: 2.5vh;
}

.price-amount {
    font-size: 3.5vh;
    font-weight: 700;
    color: #4A2E80;
    text-align: center;
    margin-bottom: 0.5vh;
}

.price-description {
    text-align: center;
    color: #666;
    margin-bottom: 2vh;
}

.price-features {
    border-top: 0.1vh solid #eee;
    padding-top: 2vh;
}

.feature-item {
    margin-bottom: 1vh;
    font-size: 1.4vh;
}

.tour-info-card,
.tour-reviews-card {
    border: 0.1vh solid #eee;
    border-radius: 1vh;
    overflow: hidden;
    margin-bottom: 2vh;
}

.card-header {
    background: #f8f9fa;
    padding: 1.5vh 2vh;
    border-bottom: 0.1vh solid #eee;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 1vh 0;
    border-bottom: 0.1vh solid #f8f9fa;
}

.info-list li:last-child {
    border-bottom: none;
}

.review-preview {
    border-bottom: 0.1vh solid #eee;
    padding-bottom: 1.5vh;
}

.review-preview:last-child {
    border-bottom: none;
}

.text-small {
    font-size: 1.3vh;
}

/* Фильтры */
.filters-card {
    background: white;
    border-radius: 1vh;
    padding: 2vh;
    box-shadow: 0 0.4vh 0.8vh rgba(0, 0, 0, 0.1);
}

.no-tours {
    background: #f8f9fa;
    border-radius: 1vh;
}

/* Анимации */
.fade-in {
    opacity: 0;
    transform: translateY(2vh);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}