/* tourism.css - Полные стили для страницы водного туризма */

/* Hero секция туризма в стиле news-hero */
.tourism-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tourism-hero::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,100 100,0 200,50 300,0 400,80 500,20 600,60 700,0 800,40 900,0 1000,30 1000,100"/></svg>') repeat-x;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-50px); }
}

.tourism-hero-content {
    position: relative;
    z-index: 2;
}

.tourism-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.tourism-hero p {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.tourism-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tourism-stat {
    text-align: center;
    transition: transform 0.3s ease;
}

.tourism-stat:hover {
    transform: scale(1.05);
}

.tourism-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tourism-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Иконки для туризма */
.tourism-icon-water {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.tourism-icon-booking {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Карточки программ */
.tourism-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.program-content {
    padding: 0 1.5rem 1.5rem;
}

.program-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    transition: color 0.3s ease;
}

.program-card:hover .program-content h3 {
    color: #3b82f6;
}

.program-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.program-duration,
.program-difficulty {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-duration {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.difficulty-easy { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #065f46; border: 1px solid #86efac; }
.difficulty-medium { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; border: 1px solid #fcd34d; }
.difficulty-hard { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #991b1b; border: 1px solid #f87171; }

.program-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.program-features {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: transform 0.3s ease;
}

.program-card:hover .feature {
    transform: translateY(-2px);
}

.feature i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.feature span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Водные активности */
.water-activities-section {
    padding: 3rem 0;
}

.water-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.activity-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #10b981, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.activity-content {
    padding: 0 1.5rem 1.5rem;
}

.activity-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    transition: color 0.3s ease;
}

.activity-card:hover .activity-content h3 {
    color: #3b82f6;
}

.activity-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.activity-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-tag {
    transform: scale(1.05);
}

.tag-extreme { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; }
.tag-speed { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; }
.tag-fun { background: linear-gradient(135deg, #10b981, #059669); color: white; }
.tag-relax { background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: white; }
.tag-individual { background: linear-gradient(135deg, #6366f1, #4f46e5); color: white; }
.tag-group { background: linear-gradient(135deg, #ec4899, #db2777); color: white; }
.tag-balance { background: linear-gradient(135deg, #06b6d4, #0891b2); color: white; }

.activity-highlights {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: transform 0.3s ease;
}

.activity-card:hover .highlight-item {
    transform: translateY(-3px);
}

.highlight-item i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.highlight-item span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Безопасность */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.safety-item::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;
}

.safety-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
    border-left-width: 6px;
}

.safety-item:hover::before {
    left: 100%;
}

.safety-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.safety-item:hover .safety-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.safety-content h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.safety-item:hover .safety-content h4 {
    color: #ef4444;
}

.safety-content p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Форма записи */
.tourism-form {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tourism-form:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.tourism-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tourism-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tourism-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.tourism-form input[type="tel"],
.tourism-form input[type="text"],
.tourism-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    font-family: inherit;
    position: relative;
    z-index: 1;
}

.tourism-form input[type="tel"]:focus,
.tourism-form input[type="text"]:focus,
.tourism-form select:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

/* Специальные стили для select */
.tourism-form select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.tourism-form select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%233b82f6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

.tourism-form select option {
    background: white;
    color: #374151;
    padding: 0.5rem;
}

.tourism-form select:invalid,
.tourism-form select[value=""] {
    color: #9ca3af;
}

.tourism-form select:valid {
    color: #374151;
}

.tourism-form select option[value=""] {
    color: #9ca3af;
    font-style: italic;
}

.tourism-form select:hover {
    border-color: #3b82f6;
    background-color: #f8fafc;
}

.tourism-btn-submit {
    background: linear-gradient(135deg, #10b981, #059669);
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tourism-btn-submit::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;
}

.tourism-btn-submit:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.tourism-btn-submit:hover::before {
    left: 100%;
}

.tourism-btn-submit:active {
    transform: translateY(0);
}

/* Градиенты для разных секций */
.tourism-intro {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #06b6d4;
    transition: all 0.3s ease;
}

.tourism-intro:hover {
    border-left-width: 6px;
    transform: translateX(3px);
}

.tourism-safety {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 4px solid #ef4444;
    transition: all 0.3s ease;
}

.tourism-safety:hover {
    border-left-width: 6px;
    transform: translateX(3px);
}

.tourism-booking {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.tourism-booking:hover {
    border-left-width: 6px;
    transform: translateX(3px);
}

/* Карта и контактная информация */
.map-section {
    transition: all 0.3s ease;
}

.map-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-container {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.map-container:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Новые стили для contact-info-grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0;
}

.contact-info-item {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #059669);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-info-item:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-info-item:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.contact-info-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-info-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-info-item:nth-child(4) .contact-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.contact-info-item:hover .contact-details h4 {
    color: #3b82f6;
}

.contact-details p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-links a:first-child {
    background: linear-gradient(135deg, #0088cc, #0088cc);
    color: white;
}

.social-links a:last-child {
    background: linear-gradient(135deg, #4c75a3, #5d84b0);
    color: white;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-note{
    margin-top: 1.5rem;
}

.form-help{
    color: #8b8b8b !important;
}

.included-category:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.location-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

/* CTA секция */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="%23ffffff" opacity="0.1"><circle cx="10" cy="10" r="3"/><circle cx="30" cy="10" r="2"/><circle cx="50" cy="10" r="4"/><circle cx="70" cy="10" r="2"/><circle cx="90" cy="10" r="3"/></svg>') repeat;
    animation: float 15s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Стили для загрузки */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Стили для уведомлений */
.form-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #10b981;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    animation: slideInDown 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s ease-in-out;
}

.form-error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #ef4444;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    animation: slideInDown 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s ease-in-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Popup для информации о программах */
.program-info-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: slideInDown 0.3s ease;
    transition: all 0.3s ease;
}

.program-info-popup:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.program-info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.program-info-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.program-info-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.program-info-details span:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}

.program-info-details i {
    color: #3b82f6;
}

.program-info-content p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.4;
    margin: 0;
}

/* Hover эффекты для кнопок */
.tourism-hero-actions .modern-btn {
    position: relative;
    overflow: hidden;
}

.tourism-hero-actions .modern-btn::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;
}

.tourism-hero-actions .modern-btn:hover::before {
    left: 100%;
}

/* Современные карточки с эффектами */
.modern-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(59,130,246,0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modern-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.modern-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modern-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    transition: color 0.3s ease;
}

.modern-card:hover .card-title {
    color: #3b82f6;
}

/* Форматирование сетки */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Анимации появления при скролле */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-item {
    animation: slideInUp 0.6s ease forwards;
}

.contact-info-item:nth-child(1) { animation-delay: 0.1s; }
.contact-info-item:nth-child(2) { animation-delay: 0.2s; }
.contact-info-item:nth-child(3) { animation-delay: 0.3s; }
.contact-info-item:nth-child(4) { animation-delay: 0.4s; }

.program-card {
    animation: slideInUp 0.6s ease forwards;
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }
.program-card:nth-child(4) { animation-delay: 0.4s; }

.activity-card {
    animation: slideInUp 0.6s ease forwards;
}

.activity-card:nth-child(1) { animation-delay: 0.1s; }
.activity-card:nth-child(2) { animation-delay: 0.2s; }
.activity-card:nth-child(3) { animation-delay: 0.3s; }
.activity-card:nth-child(4) { animation-delay: 0.4s; }
.activity-card:nth-child(5) { animation-delay: 0.5s; }
.activity-card:nth-child(6) { animation-delay: 0.6s; }

/* Адаптивность */
@media (max-width: 768px) {
    .tourism-hero h1 {
        font-size: 2rem;
    }

    .partnership-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tourism-hero p {
        font-size: 1.1rem;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tourism-stats {
        gap: 2rem;
    }
    
    .tourism-stat-number {
        font-size: 2rem;
    }
    
    .tourism-programs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .water-activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem auto;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .tourism-form {
        padding: 1.5rem;
    }
    
    .tourism-form input[type="tel"],
    .tourism-form input[type="text"],
    .tourism-form select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .tourism-form select {
        background-size: 1.25em 1.25em;
        padding-right: 2.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .modern-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .tourism-hero {
        padding: 3rem 0;
    }
    
    .tourism-hero h1 {
        font-size: 1.75rem;
    }
    
    .tourism-hero p {
        font-size: 1rem;
    }
    
    .tourism-stats {
        gap: 1.5rem;
    }
    
    .tourism-stat-number {
        font-size: 1.75rem;
    }
    
    .contact-info-item {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .modern-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
}

/* Дополнительные анимации для плавности */
.tourism-form .form-group {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.tourism-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.tourism-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.tourism-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.tourism-form .form-group:nth-child(4) { animation-delay: 0.4s; }

/* Финальные штрихи для профессионального вида */
.tourism-hero-content {
    opacity: 0;
    animation: slideInUp 1s ease forwards;
    animation-delay: 0.3s;
}

/* .modern-card {
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
} *

/* Улучшение производительности анимаций */
.contact-info-item,
.program-card,
.activity-card,
.safety-item,
.modern-card {
    will-change: transform, opacity;
}

.contact-icon,
.program-icon,
.activity-icon,
.safety-icon,
.card-icon {
    will-change: transform;
}

/* Убираем анимации для пользователей с ограниченными возможностями */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Что включено */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.included-category {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.included-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.included-header i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.included-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.9rem;
}

.included-list li i {
    color: #10b981;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.partnership-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.safety-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.safety-info:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.safety-info h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.safety-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-info li {
    padding: 0.25rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.safety-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.contact-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.contact-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-item i {
    color: #3b82f6;
    width: 20px;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}


.location-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-content h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.location-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Стили для новой секции водных развлечений - добавить в tourism.css */

/* Основная секция водных развлечений */
.water-entertainment-section {
    padding: 3rem 0;
}

.water-entertainment-intro {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    transition: all 0.3s ease;
}

.water-entertainment-intro:hover {
    border-left-width: 6px;
    transform: translateX(3px);
}

/* Категории развлечений */
.entertainment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.entertainment-category {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.entertainment-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.extreme-category::before { background: linear-gradient(90deg, #ef4444, #dc2626); }
.speed-category::before { background: linear-gradient(90deg, #3b82f6, #1d4ed8); }
.group-category::before { background: linear-gradient(90deg, #10b981, #059669); }
.calm-category::before { background: linear-gradient(90deg, #8b5cf6, #7c3aed); }

.entertainment-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.entertainment-category:hover::before {
    height: 6px;
}

/* Заголовок категории */
.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid #e2e8f0;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.extreme-category .category-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.speed-category .category-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.group-category .category-icon { background: linear-gradient(135deg, #10b981, #059669); }
.calm-category .category-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.entertainment-category:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.category-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
    transition: color 0.3s ease;
}

.category-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.entertainment-category:hover .category-info h3 {
    color: #3b82f6;
}

/* Список активностей */
.activities-list {
    padding: 0;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.05), transparent);
    transition: left 0.6s ease;
}

.activity-item:hover {
    background: #fafbfc;
    transform: translateX(5px);
}

.activity-item:hover::before {
    left: 100%;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item .activity-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.activity-item:hover .activity-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: scale(1.1);
}

.activity-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.activity-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
    transition: color 0.3s ease;
}

.activity-item:hover .activity-info h4 {
    color: #3b82f6;
}

.activity-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.activity-info .activity-tags {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.activity-info .activity-tags span {
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-extreme { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #991b1b; }
.tag-speed { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1e40af; }
.tag-fun { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }
.tag-relax { background: linear-gradient(135deg, #e9d5ff, #d8b4fe); color: #6b21a8; }
.tag-individual { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }
.tag-group { background: linear-gradient(135deg, #ccfbf1, #a7f3d0); color: #047857; }
.tag-balance { background: linear-gradient(135deg, #ecfeff, #cffafe); color: #0e7490; }
.tag-sport { background: linear-gradient(135deg, #fed7e2, #fbb6ce); color: #be185d; }

/* Секция партнера и условий */
.entertainment-partner-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

/* Карточка партнера */
.partner-info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.partner-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.partner-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.partner-info-card:hover .partner-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.partner-details h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.partner-details p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Компактные услуги партнера */
.partner-services-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 8px;
    border: 1px solid #bae6fd;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.service-tag i {
    color: #3b82f6;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-tag span {
    font-size: 0.85rem;
    color: #1e293b;
    font-weight: 500;
}

/* Компактные контакты */
.partner-contact-compact {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #3b82f6;
    transform: translateX(3px);
}

.contact-method i {
    color: #3b82f6;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-method a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-method a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    text-decoration: none;
    color: white;
}

/* Карточка локаций */
.locations-info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.locations-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0891b2, #06b6d4);
}

.locations-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.locations-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.locations-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.locations-info-card:hover .locations-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.3);
}

.locations-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 10px;
    border: 1px solid #bae6fd;
    transition: all 0.3s ease;
}

.location-compact:hover {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.location-compact .location-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-compact:hover .location-icon {
    transform: scale(1.1);
}

.location-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.location-details p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.booking-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #fefce8;
    border-radius: 8px;
    border: 1px solid #fde047;
}

.booking-note i {
    color: #f59e0b;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.booking-note p {
    font-size: 0.85rem;
    color: #92400e;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Адаптивность для новой структуры */
@media (max-width: 1024px) {
    .entertainment-partner-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .entertainment-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-header {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .category-icon {
        margin: 0 auto;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .activity-item {
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .activity-item .activity-icon {
        margin: 0 auto;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .partner-services-compact {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .partner-info-card,
    .locations-info-card {
        padding: 1.5rem;
    }
    
    .partner-header,
    .locations-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-info {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .entertainment-categories {
        gap: 0.75rem;
    }
    
    .category-header {
        padding: 1rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .category-info h3 {
        font-size: 1.1rem;
    }
    
    .category-info p {
        font-size: 0.85rem;
    }
    
    .activity-item {
        padding: 0.5rem 0.75rem;
    }
    
    .activity-info h4 {
        font-size: 0.95rem;
    }
    
    .activity-info p {
        font-size: 0.8rem;
    }
    
    .partner-info-card,
    .locations-info-card {
        padding: 1rem;
    }
    
    .partner-details h4 {
        font-size: 1.2rem;
    }
    
    .locations-header h3 {
        font-size: 1.1rem;
    }
    
    .service-tag {
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .service-tag span {
        font-size: 0.8rem;
    }
}

/* Анимации для новой структуры */
.entertainment-category {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.entertainment-category:nth-child(1) { animation-delay: 0.1s; }
.entertainment-category:nth-child(2) { animation-delay: 0.2s; }
.entertainment-category:nth-child(3) { animation-delay: 0.3s; }
.entertainment-category:nth-child(4) { animation-delay: 0.4s; }

.activity-item {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.activity-item:nth-child(1) { animation-delay: 0.1s; }
.activity-item:nth-child(2) { animation-delay: 0.2s; }
.activity-item:nth-child(3) { animation-delay: 0.3s; }

.service-tag {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.service-tag:nth-child(1) { animation-delay: 0.1s; }
.service-tag:nth-child(2) { animation-delay: 0.2s; }
.service-tag:nth-child(3) { animation-delay: 0.3s; }
.service-tag:nth-child(4) { animation-delay: 0.4s; }

.location-compact {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.location-compact:nth-child(1) { animation-delay: 0.1s; }
.location-compact:nth-child(2) { animation-delay: 0.2s; }
.location-compact:nth-child(3) { animation-delay: 0.3s; }

/* Улучшения производительности */
.entertainment-category,
.category-icon,
.activity-item,
.service-tag,
.location-compact,
.partner-logo,
.locations-icon {
    will-change: transform;
}

/* Убираем анимации для пользователей с ограниченными возможностями */
@media (prefers-reduced-motion: reduce) {
    .entertainment-category,
    .category-icon,
    .activity-item,
    .service-tag,
    .location-compact,
    .partner-logo,
    .locations-icon {
        animation: none !important;
        transition: none !important;
    }
}/* Стили для морской подготовки и походов - добавить в tourism.css */

/* Секция морской подготовки */
.marine-training-section {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid #1e40af;
    transition: all 0.3s ease;
}

.marine-training-section:hover {
    border-left-width: 6px;
    transform: translateX(3px);
}

.marine-training-content {
    margin-top: 1.5rem;
}

.training-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(30, 64, 175, 0.05);
    border-radius: 8px;
}

.training-intro p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Программы обучения */
.training-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.training-program {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.training-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30,64,175,0.1), transparent);
    transition: left 0.6s ease;
}

.training-program:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(30, 64, 175, 0.3);
}

.training-program:hover::before {
    left: 100%;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.program-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.training-program:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.program-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    transition: color 0.3s ease;
}

.training-program:hover .program-header h3 {
    color: #1e40af;
}

.program-description {
    position: relative;
    z-index: 1;
}

.program-description p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.program-description strong {
    color: #1e293b;
    font-weight: 600;
}

.program-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    font-size: 0.75rem;
    color: #475569;
    border: 1px solid #cbd5e1;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-color: #1e40af;
    transform: scale(1.05);
}

.feature-tag i {
    color: #1e40af;
    font-size: 0.8rem;
}

/* Секция экспедиций */
.marine-.expeditions-benefits .benefit-item span {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Адаптивность для морских секций */
@media (max-width: 768px) {
    .training-programs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .training-program {
        padding: 1.25rem;
    }
    
    .program-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .program-icon {
        margin: 0 auto;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .program-header h3 {
        font-size: 1.1rem;
    }
    
    .expeditions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expedition-card {
        padding: 1.25rem;
        text-align: center;
    }
    
    .expedition-icon {
        margin: 0 auto 1rem auto;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .expedition-details {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .benefits-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .expeditions-benefits {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .training-intro {
        padding: 0.75rem;
    }
    
    .training-intro p {
        font-size: 0.9rem;
    }
    
    .training-program {
        padding: 1rem;
    }
    
    .program-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .program-header h3 {
        font-size: 1rem;
    }
    
    .program-description p {
        font-size: 0.85rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .expedition-card {
        padding: 1rem;
    }
    
    .expedition-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .expedition-content h4 {
        font-size: 1.1rem;
    }
    
    .expedition-content p {
        font-size: 0.85rem;
    }
    
    .expedition-details span {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .expeditions-benefits h4 {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .expeditions-benefits .benefit-item {
        padding: 0.5rem;
    }
    
    .expeditions-benefits .benefit-item span {
        font-size: 0.85rem;
    }
}

/* Анимации для морских секций */
.training-program {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.training-program:nth-child(1) { animation-delay: 0.1s; }
.training-program:nth-child(2) { animation-delay: 0.2s; }

.expedition-card {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.expedition-card:nth-child(1) { animation-delay: 0.1s; }
.expedition-card:nth-child(2) { animation-delay: 0.2s; }
.expedition-card:nth-child(3) { animation-delay: 0.3s; }
.expedition-card:nth-child(4) { animation-delay: 0.4s; }

.expeditions-benefits .benefit-item {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.expeditions-benefits .benefit-item:nth-child(1) { animation-delay: 0.1s; }
.expeditions-benefits .benefit-item:nth-child(2) { animation-delay: 0.2s; }
.expeditions-benefits .benefit-item:nth-child(3) { animation-delay: 0.3s; }
.expeditions-benefits .benefit-item:nth-child(4) { animation-delay: 0.4s; }
.expeditions-benefits .benefit-item:nth-child(5) { animation-delay: 0.5s; }
.expeditions-benefits .benefit-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Улучшения производительности для морских секций */
.training-program,
.program-icon,
.expedition-card,
.expedition-icon,
.expeditions-benefits .benefit-item {
    will-change: transform;
}

/* Убираем анимации для пользователей с ограниченными возможностями */
@media (prefers-reduced-motion: reduce) {
    .training-program,
    .program-icon,
    .expedition-card,
    .expedition-icon,
    .expeditions-benefits .benefit-item,
    .feature-tag,
    .expedition-details span {
        animation: none !important;
        transition: none !important;
    }
}

/* Дополнительные стили для улучшения UX */
.marine-training-section .card-title,
.marine-expeditions-section .card-title {
    background: linear-gradient(135deg, #1e40af, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover эффекты для секций */
.marine-training-section:hover .card-icon,
.marine-expeditions-section:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Стили для прокрутки */
.marine-training-content,
.expeditions-grid {
    scroll-behavior: smooth;
}

/* Фокусные состояния для доступности */
.training-program:focus,
.expedition-card:focus,
.expeditions-benefits .benefit-item:focus {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}

/* Стили для печати */
@media print {
    .marine-training-section,
    .marine-expeditions-section {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
    
    .training-program,
    .expedition-card {
        break-inside: avoid;
    }
}
.marine-expeditions-section {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    border-left: 4px solid #0891b2;
    transition: all 0.3s ease;
}

.marine-expeditions-section:hover {
    border-left-width: 6px;
    transform: translateX(3px);
}

.expeditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.expedition-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expedition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8,145,178,0.1), transparent);
    transition: left 0.6s ease;
}

.expedition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(8, 145, 178, 0.3);
}

.expedition-card:hover::before {
    left: 100%;
}

.expedition-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.expedition-card:hover .expedition-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.3);
}

.expedition-content {
    position: relative;
    z-index: 1;
}

.expedition-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.expedition-card:hover .expedition-content h4 {
    color: #0891b2;
}

.expedition-content p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.expedition-content strong {
    color: #1e293b;
    font-weight: 600;
}

.expedition-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.expedition-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    font-size: 0.75rem;
    color: #0369a1;
    border: 1px solid #bae6fd;
    transition: all 0.3s ease;
}

.expedition-details span:hover {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    transform: scale(1.05);
}

.expedition-details i {
    color: #0891b2;
    font-size: 0.8rem;
}

/* Преимущества экспедиций */
.expeditions-benefits {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.expeditions-benefits:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.expeditions-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefit-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expeditions-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.expeditions-benefits .benefit-item:hover {
    transform: translateX(5px);
    border-color: #0891b2;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.1);
}

.expeditions-benefits .benefit-item i {
    color: #0891b2;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.expeditions-benefits .benefit-item:hover i {
    transform: scale(1.2);
}

.expeditions-/* Стили для секции размещения - добавить в tourism.css */

/* Секция размещения */
.accommodation-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #059669;
    transition: all 0.3s ease;
}

.accommodation-section:hover {
    border-left-width: 6px;
    transform: translateX(3px);
}

.accommodation-content {
    margin-top: 1.5rem;
}

.accommodation-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.accommodation-intro h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.accommodation-intro h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #059669, #10b981);
    border-radius: 2px;
}

.accommodation-intro p {
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Особенности размещения */
.accommodation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.accommodation-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accommodation-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5,150,105,0.1), transparent);
    transition: left 0.6s ease;
}

.accommodation-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(5, 150, 105, 0.3);
}

.accommodation-feature:hover::before {
    left: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.accommodation-feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.accommodation-feature:hover .feature-content h4 {
    color: #059669;
}

.feature-content p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Преимущества размещения */
.accommodation-benefits {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.accommodation-benefits:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accommodation-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.2);
}

.benefit-item span {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Бронирование размещения */
.accommodation-booking {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    border: 1px solid #bae6fd;
    transition: all 0.3s ease;
}

.accommodation-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.booking-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.booking-info p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.booking-action {
    flex-shrink: 0;
}

.booking-action .btn {
    white-space: nowrap;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
}

/* Стили для улучшенной секции партнера */
.partner-services {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.partner-services h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.service-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.1);
}

.service-item span {
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Улучшенные контакты партнера */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f1f5f9;
    border-color: #3b82f6;
}

.contact-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Улучшенные стили для contact-cta */
.contact-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.contact-cta .btn {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-cta .btn::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;
}

.contact-cta .btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.contact-cta .btn:hover::before {
    left: 100%;
}

/* Адаптивность для новых секций */
@media (max-width: 768px) {
    .accommodation-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .accommodation-feature {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        margin: 0 auto;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .accommodation-booking {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .booking-action .btn {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .accommodation-intro h3 {
        font-size: 1.3rem;
    }
    
    .accommodation-feature {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .accommodation-benefits {
        padding: 1rem;
    }
    
    .accommodation-benefits h4 {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .benefit-item {
        padding: 0.25rem 0;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
    }
    
    .partner-services {
        padding: 1rem;
    }
    
    .service-item {
        padding: 0.5rem;
    }
    
    .contact-item {
        padding: 0.5rem;
    }
}

/* Анимации для новых секций */
.accommodation-feature {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.accommodation-feature:nth-child(1) { animation-delay: 0.1s; }
.accommodation-feature:nth-child(2) { animation-delay: 0.2s; }
.accommodation-feature:nth-child(3) { animation-delay: 0.3s; }
.accommodation-feature:nth-child(4) { animation-delay: 0.4s; }

.service-item {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Улучшения производительности */
.accommodation-feature,
.feature-icon,
.benefit-item,
.service-item {
    will-change: transform;
}

/* Убираем анимации для пользователей с ограниченными возможностями */
@media (prefers-reduced-motion: reduce) {
    .accommodation-feature,
    .feature-icon,
    .benefit-item,
    .accommodation-booking,
    .service-item {
        animation: none !important;
        transition: none !important;
    }
}

/* Секция размещения */
.accommodation-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #059669;
    transition: all 0.3s ease;
}

.accommodation-section:hover {
    border-left-width: 6px;
    transform: translateX(3px);
}

.accommodation-content {
    margin-top: 1.5rem;
}

.accommodation-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.accommodation-intro h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.accommodation-intro h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #059669, #10b981);
    border-radius: 2px;
}

.accommodation-intro p {
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Особенности размещения */
.accommodation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.accommodation-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accommodation-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5,150,105,0.1), transparent);
    transition: left 0.6s ease;
}

.accommodation-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(5, 150, 105, 0.3);
}

.accommodation-feature:hover::before {
    left: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.accommodation-feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.accommodation-feature:hover .feature-content h4 {
    color: #059669;
}

.feature-content p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Преимущества размещения */
.accommodation-benefits {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.accommodation-benefits:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accommodation-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.2);
}

.benefit-item span {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Бронирование размещения */
.accommodation-booking {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    border: 1px solid #bae6fd;
    transition: all 0.3s ease;
}

.accommodation-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.booking-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.booking-info p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.booking-action {
    flex-shrink: 0;
}

.booking-action .btn {
    white-space: nowrap;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
}

/* Улучшенные стили для contact-cta */
.contact-cta {
    margin-top: 1rem;
    text-align: center;
}

.contact-cta .btn {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-cta .btn::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;
}

.contact-cta .btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.contact-cta .btn:hover::before {
    left: 100%;
}

/* Адаптивность для секции размещения */
@media (max-width: 768px) {
    .accommodation-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .accommodation-feature {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        margin: 0 auto;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .accommodation-booking {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .booking-action .btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .accommodation-intro h3 {
        font-size: 1.3rem;
    }
    
    .accommodation-feature {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .accommodation-benefits {
        padding: 1rem;
    }
    
    .accommodation-benefits h4 {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .benefit-item {
        padding: 0.25rem 0;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
    }
}

/* Анимации для секции размещения */
.accommodation-feature {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.accommodation-feature:nth-child(1) { animation-delay: 0.1s; }
.accommodation-feature:nth-child(2) { animation-delay: 0.2s; }
.accommodation-feature:nth-child(3) { animation-delay: 0.3s; }
.accommodation-feature:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Улучшения производительности */
.accommodation-feature,
.feature-icon,
.benefit-item {
    will-change: transform;
}

/* Убираем анимации для пользователей с ограниченными возможностями */
@media (prefers-reduced-motion: reduce) {
    .accommodation-feature,
    .feature-icon,
    .benefit-item,
    .accommodation-booking {
        animation: none !important;
        transition: none !important;
    }
}