/* ===== CSS RESET И БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #0c1a2d 0%, #1a365d 100%);
    color: #ffffff;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== ОСНОВНАЯ СТРУКТУРА ===== */
main {
    flex: 1;
    padding-top: 100px;
    padding-bottom: 100px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center {
    text-align: center;
}

/* ===== ПРЕМИУМ КНОПКИ ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #e66100 0%, #ff8c00 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(230, 97, 0, 0.3);
}

.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.7s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 97, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00 0%, #e66100 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #1a5fb4 0%, #2a75d8 100%);
    box-shadow: 0 8px 25px rgba(26, 95, 180, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2a75d8 0%, #1a5fb4 100%);
    box-shadow: 0 15px 35px rgba(26, 95, 180, 0.4);
}

.btn-group {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ПРЕМИУМ ШАПКА ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 26, 45, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.logo-section {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-section {
    display: flex;
    justify-content: center;
    flex: 2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    padding: 12px 0;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e66100, #ff8c00);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
    gap: 5px;
}

.phone-number {
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    background: linear-gradient(135deg, #e66100, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.phone-number:hover {
    transform: scale(1.05);
}

.phone-number .hidden-part {
    filter: blur(3px);
    transition: filter 0.3s ease;
}

.phone-number:hover .hidden-part {
    filter: blur(0);
}

.email {
    font-size: 14px;
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== ПРЕМИУМ ПОДВАЛ ===== */
footer {
    background: rgba(12, 26, 45, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #a0aec0;
}

.footer-nav .nav-links {
    gap: 30px;
}

.footer-nav a {
    font-size: 14px;
    color: #a0aec0;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* ===== ГЕРОЙ СЕКЦИИ ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(12, 26, 45, 0.9) 0%, rgba(26, 54, 93, 0.8) 100%);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(12, 26, 45, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e66100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.hero-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e2e8f0;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* ===== КОНТЕНТ СЕКЦИИ ===== */
.content-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 25px;
    padding: 70px;
    margin-bottom: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.content-section h2 {
    background: linear-gradient(135deg, #e66100, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #e66100, #ff8c00);
    border-radius: 2px;
}

.content-section h3 {
    color: #e66100;
    margin: 40px 0 25px;
    font-size: 2rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e2e8f0;
}

.content-section ul {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.content-section li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    padding-left: 35px;
    position: relative;
    color: #e2e8f0;
}

.content-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e66100;
    font-weight: bold;
    font-size: 1.4rem;
}

.highlight {
    background: linear-gradient(135deg, #e66100, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* ===== ФИЧУР-БЛОКИ ===== */
.feature-block {
    padding: 40px;
    border-radius: 20px;
    margin: 35px 0;
    position: relative;
    overflow: hidden;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.feature-premium {
    background: linear-gradient(135deg, rgba(230, 97, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 1px solid rgba(230, 97, 0, 0.3);
}

.feature-premium::before {
    background: linear-gradient(135deg, #e66100, #ff8c00);
}

.feature-mountain {
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.1) 0%, rgba(42, 117, 216, 0.05) 100%);
    border: 1px solid rgba(26, 95, 180, 0.3);
}

.feature-mountain::before {
    background: linear-gradient(135deg, #1a5fb4, #2a75d8);
}

.feature-desert {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.feature-desert::before {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.feature-nomad {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 120, 80, 0.05) 100%);
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.feature-nomad::before {
    background: linear-gradient(135deg, #8b4513, #a07850);
}

.feature-safari {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.feature-safari::before {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.feature-wine {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(185, 28, 28, 0.05) 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.feature-wine::before {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.feature-city {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.feature-city::before {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-info {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.feature-info::before {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.feature-emergency {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.feature-emergency::before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* ===== CTA СЕКЦИИ ===== */
.cta-section {
    text-align: center;
    padding: 100px 0;
    border-radius: 30px;
    margin: 80px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/pattern.png') repeat;
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #e2e8f0;
    line-height: 1.7;
}

.cta-primary {
    background: linear-gradient(135deg, rgba(230, 97, 0, 0.1) 0%, rgba(26, 95, 180, 0.1) 100%);
}

.cta-primary h2 {
    background: linear-gradient(135deg, #ffffff 0%, #e66100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-mountain {
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.1) 0%, rgba(230, 97, 0, 0.1) 100%);
}

.cta-mountain h2 {
    background: linear-gradient(135deg, #ffffff 0%, #1a5fb4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desert {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
}

.cta-desert h2 {
    background: linear-gradient(135deg, #ffffff 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-safari {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.cta-safari h2 {
    background: linear-gradient(135deg, #ffffff 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== СЕТКИ И КАРТОЧКИ ===== */
.grid-container {
    display: grid;
    gap: 40px;
    margin: 50px 0;
}

.grid-2cols {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.grid-4cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-cols-auto {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-primary::before {
    background: linear-gradient(135deg, #e66100, #ff8c00);
}

.card-mountain::before {
    background: linear-gradient(135deg, #1a5fb4, #2a75d8);
}

.card-desert::before {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.card-safari::before {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.card h4 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.card p {
    color: #a0aec0;
    line-height: 1.6;
}

.contact-card {
    padding: 50px;
}

.contact-card .contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #e66100, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card .contact-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.contact-card h3 {
    color: #e66100;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-info {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 500;
}

.contact-note {
    color: #a0aec0;
    font-size: 1rem;
    margin-top: 20px;
    font-style: italic;
    line-height: 1.5;
}

/* ===== ФОРМЫ ===== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e66100;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(230, 97, 0, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== ПРЕМИУМ МОДАЛЬНЫЕ ОКНА ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #1a2a3a 0%, #2d3748 100%);
    margin: 10% auto;
    padding: 50px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalAppear 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    color: #a0aec0;
    float: right;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.modal h2 {
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #e66100, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== ПРЕМИУМ СКРОЛЛБАР ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a2a3a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e66100, #ff8c00);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff8c00, #e66100);
}

/* ===== СЕКЦИЯ О НАС (ГЛАВНАЯ) ===== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(12, 26, 45, 0.8) 0%, rgba(26, 54, 93, 0.6) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/pattern.png') repeat;
    opacity: 0.05;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e2e8f0;
    text-align: center;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e66100, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: #a0aec0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    font-size: 3rem;
    background: linear-gradient(135deg, #e66100, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #e66100, #ff8c00);
    border-radius: 2px;
}

/* ===== КОНТАКТНАЯ ФОРМА ===== */
.contact-form-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 70px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin: 80px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.contact-form-section h2 {
    color: #e66100;
    margin-bottom: 40px;
    font-size: 2.8rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #e66100, #ff8c00);
    border-radius: 2px;
}

/* ===== СТИЛИ ДЛЯ ГЛАВНОЙ СТРАНИЦЫ ===== */
.hero {
    background: linear-gradient(135deg, rgba(12, 26, 45, 0.9) 0%, rgba(26, 54, 93, 0.8) 100%), url('./assets/images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(12, 26, 45, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #e66100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    margin: 0 auto 40px;
    color: #e2e8f0;
    max-width: 700px;
    line-height: 1.6;
}

.destinations {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.destination-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 97, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.destination-card:hover::before {
    opacity: 1;
}

.destination-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover .destination-img {
    transform: scale(1.1);
}

.destination-content {
    padding: 35px;
    position: relative;
}

.destination-content h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
}

.destination-content p {
    margin-bottom: 25px;
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(12, 26, 45, 0.8) 0%, rgba(26, 54, 93, 0.6) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/images/pattern.png') repeat;
    opacity: 0.05;
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦ НАПРАВЛЕНИЙ ===== */
.destination-hero {
    background: linear-gradient(135deg, rgba(12, 26, 45, 0.9) 0%, rgba(26, 54, 93, 0.8) 100%);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.destination-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(12, 26, 45, 0.6) 100%);
}

.destination-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e66100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.destination-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e2e8f0;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.premium-feature {
    background: linear-gradient(135deg, rgba(230, 97, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 35px 0;
    border: 1px solid rgba(230, 97, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #e66100, #ff8c00);
}

.mountain-feature {
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.1) 0%, rgba(42, 117, 216, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 35px 0;
    border: 1px solid rgba(26, 95, 180, 0.3);
    position: relative;
    overflow: hidden;
}

.mountain-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #1a5fb4, #2a75d8);
}

.culture-feature {
    background: linear-gradient(135deg, rgba(230, 97, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 35px 0;
    border: 1px solid rgba(230, 97, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.culture-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #e66100, #ff8c00);
}

.desert-feature {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 35px 0;
    border: 1px solid rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.desert-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.nomad-feature {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 120, 80, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 35px 0;
    border: 1px solid rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.nomad-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #8b4513, #a07850);
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.itinerary-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.itinerary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e66100, #ff8c00);
}

.itinerary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.itinerary-card h4 {
    color: #e66100;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.itinerary-card p {
    color: #a0aec0;
    line-height: 1.6;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.experience-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1a5fb4, #2a75d8);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.experience-card h4 {
    color: #1a5fb4;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.experience-card p {
    color: #a0aec0;
    line-height: 1.6;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.journey-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.journey-card h4 {
    color: #f59e0b;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.journey-card p {
    color: #a0aec0;
    line-height: 1.6;
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ КОНТАКТОВ ===== */
.contacts-hero {
    background: linear-gradient(135deg, #1a5fb4, #2e343b);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 0 0 30px 30px;
}

.contacts-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contacts-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a5fb4, #e66100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.contact-card h3 {
    color: #1a5fb4;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-note {
    color: #5e666f;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

.map-section {
    margin: 60px 0;
    text-align: center;
}

.map-section h2 {
    color: #1a5fb4;
    margin-bottom: 30px;
    font-size: 2rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5e666f;
    font-size: 1.2rem;
    border: 2px dashed #adb5bd;
}

.working-hours {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #28a745;
}

.emergency-contact {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #dc3545;
    text-align: center;
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ ЮАР ===== */
.safari-feature {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #28a745;
    border-right: 4px solid #28a745;
}

.wine-feature {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #dc3545;
    border-right: 4px solid #dc3545;
}

.city-feature {
    background: linear-gradient(135deg, #cce7ff, #b3d9ff);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #007bff;
    border-right: 4px solid #007bff;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .destination-hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .nav-section {
        order: 3;
        width: 100%;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-section {
        align-items: center;
        text-align: center;
    }
    
    main {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 3.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .content-section {
        padding: 50px 40px;
    }
    
    .grid-2cols,
    .grid-4cols,
    .grid-cols-auto {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-section {
        padding: 50px 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .destination-hero {
        padding: 150px 0 80px;
    }
    
    .destination-hero h1 {
        font-size: 3.5rem;
    }
    
    .itinerary-grid,
    .experience-grid,
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav .nav-links {
        gap: 20px;
    }
    
    .btn {
        padding: 14px 30px;
        min-width: 160px;
        font-size: 14px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .content-section h2 {
        font-size: 2.2rem;
    }
    
    .content-section h3 {
        font-size: 1.6rem;
    }
    
    .cta-section {
        padding: 70px 0;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-block {
        padding: 30px 25px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 25px;
        width: 95%;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .email {
        font-size: 12px;
    }
    
    .contact-card {
        padding: 40px 30px;
    }
    
    .contact-form-section {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .contact-form-section h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .destination-hero {
        padding: 120px 0 60px;
    }
    
    .destination-hero h1 {
        font-size: 2.8rem;
    }
    
    .destination-hero p {
        font-size: 1.2rem;
    }
    
    .premium-feature,
    .mountain-feature,
    .culture-feature,
    .desert-feature,
    .nomad-feature {
        padding: 30px 25px;
    }
    
    .contacts-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    .logo {
        height: 35px;
    }
    
    header {
        height: auto;
        padding: 10px 0;
    }
    
    main {
        padding-top: 160px;
    }
    
    .btn {
        padding: 12px 25px;
        min-width: 140px;
        font-size: 13px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .card {
        padding: 30px 25px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .contact-card .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card .contact-icon img {
        width: 25px;
        height: 25px;
    }
    
    .destination-hero h1 {
        font-size: 2.2rem;
    }
    
    .itinerary-card,
    .experience-card,
    .journey-card {
        padding: 30px 25px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}