/* CSS Version 1.1 - Updated for contact icons spacing fix */
/* Импорт красивого шрифта */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Градиентные заголовки для главной страницы */
.about-text h2,
.transfer-text h2,
.catalog-section .catalog-content h2,
.gallery-content h2,
.form-content h2,
.top-excursions h2 {
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 25%, #ffd700 50%, #ff6b6b 75%, #ffa500 100%);
    background-size: 300% 300%;
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: gradientShift 3s ease infinite;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff8c00 25%, #ffc107 50%, #ff5252 75%, #ff8c00 100%);
    background-size: 300% 300%;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    animation: gradientShift 1.5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-secondary {
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 105, 148, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #005a7a 0%, #0088b3 50%, #0099cc 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 105, 148, 0.6);
}

.btn-outline {
    background: transparent;
    color: #006994;
    border: 3px solid #006994;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 105, 148, 0.2);
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover {
    background: transparent;
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 105, 148, 0.4);
}

.btn-outline:hover::after {
    left: 0;
}

/* Header - Always White */
.header {
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 105, 148, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header:hover {
    box-shadow: 0 6px 40px rgba(0, 105, 148, 0.4);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: translateY(-2px);
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: white;
}

.logo-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    /* background: transparent !important; - removed to fix mobile menu background */
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover {
    color: #e6f3ff;
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:hover span {
    background: #e6f3ff;
}

/* Show hamburger menu on mobile devices */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
    }
    
    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hide regular nav menu on mobile */
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 90px !important;
        flex-direction: column !important;
        background: #005a7a !important;
        width: 100% !important;
        height: calc(100vh - 90px) !important;
        text-align: center !important;
        transition: 0.3s ease !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3) !important;
        padding: 2rem 0 !important;
        z-index: 1000 !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        opacity: 1 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
        background: #005a7a !important;
        opacity: 1 !important;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInDown 0.5s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInDown {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        color: white;
        font-weight: 500;
        display: block;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(10px);
    }
    
    /* Hide WhatsApp button in header on mobile */
    .header-whatsapp-btn {
        display: none;
    }
    
    /* Header scroll effect for mobile */
    .header {
        transition: transform 0.3s ease, background-color 0.3s ease;
    }
    
    .header.scrolled {
        background: rgba(0, 105, 148, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Improve navbar layout on mobile */
    .navbar {
        padding: 0.5rem 1rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .logo-image {
        height: 60px;
        width: auto;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../Гид барселона/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero-content h1 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    line-height: 1.1;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.hero-content p {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 1.5px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Guide Section */
.about-guide {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-guide::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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Скрываем мобильный заголовок на десктопе */
.mobile-title {
    display: none;
}

/* Показываем десктопный заголовок */
.desktop-title {
    display: block;
}

.about-text h2 {
    color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    max-width: 380px;
    width: 32vw;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 105, 148, 0.18);
    overflow: hidden;
    background: #f8fafc;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    object-fit: cover;
}

/* Увеличиваем фото на больших экранах */
@media (min-width: 1200px) {
    .about-image {
        max-width: 600px;
    }
    
    .about-image img {
        height: 600px;
    }
}

/* Еще больше для очень больших экранов */
@media (min-width: 1400px) {
    .about-image {
        max-width: 700px;
    }
    
    .about-image img {
        height: 700px;
    }
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    margin: 0 auto 0.5rem auto;
}

.stat-item:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.2);
}

.stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.stat-item:nth-child(1):hover .stat-icon {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.stat-item:nth-child(2):hover .stat-icon {
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

.stat-item:nth-child(3):hover .stat-icon {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #006994;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-services {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
}

/* === ПРОСТОЕ ВЫРАВНИВАНИЕ ИКОНКИ И ТЕКСТА === */
.service-item {
    display: flex;
    align-items: baseline;
    justify-content: center;
    background: #0099cc;
    color: #fff;
    border-radius: 20px;
    font-size: 1.15rem;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0, 105, 148, 0.15);
    margin: 0.5em 0;
    padding: 1em 1.5em;
    white-space: nowrap;
    gap: 0.7em;
}

.service-icon {
    font-size: 1.3em;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

/* Top Excursions */
.top-excursions {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.top-excursions::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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f0f0" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.top-excursions h2 {
    color: transparent;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.top-excursions .excursions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Адаптивность для топ экскурсий */
@media (max-width: 1200px) {
    .top-excursions .excursions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-excursions .excursions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
    
    .top-excursions h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

.excursion-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.excursion-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.excursion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.excursion-card:hover .excursion-image {
    transform: scale(1.05);
}

.excursion-content {
    padding: 25px;
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.excursion-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.excursion-card:hover .excursion-title {
    color: #006994;
}

.excursion-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Кнопки действий */
.excursion-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.excursion-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.excursion-btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #e6c200 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.excursion-btn-primary:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff8c00 50%, #d4b000 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.excursion-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.excursion-btn-primary:hover::before {
    left: 100%;
}

.excursion-btn-secondary {
    background: transparent;
    color: #006994;
    border: 2px solid #006994;
}

.excursion-btn-secondary:hover {
    background: #006994;
    color: white;
    transform: translateY(-2px);
}

/* Бейдж для популярных экскурсий */
.excursion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #e6c200 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    min-width: 60px;
    text-align: center;
    line-height: 1.2;
}

/* Анимации для карточек */
.excursion-card:nth-child(1) { animation-delay: 0.1s; }
.excursion-card:nth-child(2) { animation-delay: 0.2s; }
.excursion-card:nth-child(3) { animation-delay: 0.3s; }
.excursion-card:nth-child(4) { animation-delay: 0.4s; }
.excursion-card:nth-child(5) { animation-delay: 0.5s; }
.excursion-card:nth-child(6) { animation-delay: 0.6s; }
.excursion-card:nth-child(7) { animation-delay: 0.7s; }
.excursion-card:nth-child(8) { animation-delay: 0.8s; }
.excursion-card:nth-child(9) { animation-delay: 0.9s; }
.excursion-card:nth-child(10) { animation-delay: 1.0s; }
.excursion-card:nth-child(11) { animation-delay: 1.1s; }
.excursion-card:nth-child(12) { animation-delay: 1.2s; }
.excursion-card:nth-child(13) { animation-delay: 1.3s; }
.excursion-card:nth-child(14) { animation-delay: 1.4s; }

/* Адаптивность */
@media (max-width: 1024px) {
    .excursions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .excursions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
    
    .excursion-image-container {
        height: 380px;
    }
    
    .excursion-content {
        padding: 20px;
    }
    
    .excursion-title {
        font-size: 1.2rem;
    }
    
    .excursion-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .excursions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .excursion-image-container {
        height: 320px;
    }
    
    .excursion-content {
        padding: 15px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .footer-logo-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .footer-logo-image {
        width: 80px;
        height: 80px;
    }
}

.footer-logo-text h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.header-whatsapp-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    margin-left: 2rem;
    white-space: nowrap;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.header-whatsapp-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.5s;
}

.header-whatsapp-btn:hover::before {
    left: 100%;
}

.header-whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #22c55e 0%, #0f766e 100%);
}

@media (max-width: 768px) {
    .header-whatsapp-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-left: 1rem;
    }
}

/* Transfer Section */
.transfer-section {
    padding: 80px 0;
    background: #ffffff;
    color: #333;
}

.transfer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.transfer-text h2 {
    color: transparent;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.transfer-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.transfer-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.transfer-feature {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #333;
}

.transfer-feature:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.3rem;
    margin-right: 0.8rem;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
}

/* Убираем задний фон у иконок в блоке трансфера */
.transfer-feature .feature-icon {
    background: none;
    box-shadow: none;
    width: auto;
    height: auto;
    color: inherit;
    font-size: 2rem;
    margin-right: 0.8rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
}

.transfer-feature .feature-icon:hover {
    transform: scale(1.1);
}

/* Разные цвета для иконок трансфера */
.transfer-feature:nth-child(1) .feature-icon {
    color: #006994; /* Синий для самолета */
}

.transfer-feature:nth-child(2) .feature-icon {
    color: #28a745; /* Зеленый для автомобиля */
}

.transfer-feature:nth-child(3) .feature-icon {
    color: #ffc107; /* Желтый для часов */
}

.transfer-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: #006994;
    border: 2px solid #006994;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 105, 148, 0.4);
}

.transfer-btn:hover {
    background: #0099cc;
    border-color: #0099cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 153, 204, 0.4);
}

.transfer-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.transfer-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.transfer-overlay {
    display: none;
}

.transfer-overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.transfer-overlay-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Адаптивность для трансфера */
@media (max-width: 768px) {
    .transfer-section {
        padding: 60px 0;
    }
    
    .transfer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .transfer-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .transfer-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .transfer-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }
    
    .transfer-feature {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .transfer-feature .feature-icon {
        font-size: 1.8rem;
        margin-right: 1rem;
    }
    
    .transfer-btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .transfer-image {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .transfer-image img {
        height: 250px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .transfer-section {
        padding: 40px 0;
    }
    
    .transfer-content {
        gap: 1.5rem;
    }
    
    .transfer-text h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .transfer-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .transfer-features {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .transfer-feature {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        max-width: 280px;
        border-radius: 12px;
    }
    
    .transfer-feature .feature-icon {
        font-size: 1.5rem;
        margin-right: 0.8rem;
    }
    
    .transfer-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    .transfer-image img {
        height: 200px;
        border-radius: 12px;
    }
}

/* Catalog Section */
.catalog-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.catalog-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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f0f0" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.catalog-section .catalog-content {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.catalog-section .catalog-content h2 {
    color: transparent;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.catalog-section .catalog-content > p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.catalog-section .catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.catalog-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.catalog-cta .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 105, 148, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.catalog-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 105, 148, 0.4);
}

/* Адаптивность для каталога на главной */
@media (max-width: 1024px) {
    .catalog-section .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalog-section .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
    
    .catalog-section .catalog-content h2 {
        font-size: 2rem;
    }
    
    .catalog-section .catalog-content > p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .catalog-section .catalog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .catalog-section .catalog-content h2 {
        font-size: 1.8rem;
    }
}

.catalog-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f8f9fa;
    overflow: hidden;
    position: relative;
}

.catalog-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.catalog-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.catalog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalog-item:hover .catalog-image::before {
    opacity: 1;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.1);
}

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

.catalog-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.catalog-buttons .btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 14px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.catalog-buttons .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.5s;
}

.catalog-buttons .btn:hover::before {
    left: 100%;
}

.catalog-buttons .btn-outline {
    background: transparent;
    color: #ff6b6b;
    border: 3px solid #ff6b6b;
    position: relative;
    overflow: hidden;
}

.catalog-buttons .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #ffd700 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.catalog-buttons .btn-outline:hover {
    background: transparent;
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.catalog-buttons .btn-outline:hover::after {
    left: 0;
}

.catalog-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 25%, #ffd700 50%, #ff6b6b 75%, #ffa500 100%);
    background-size: 300% 300%;
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: gradientShift 3s ease infinite;
}

.catalog-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff8c00 25%, #ffc107 50%, #ff5252 75%, #ff8c00 100%);
    background-size: 300% 300%;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    animation: gradientShift 1.5s ease infinite;
}

.catalog-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.catalog-item h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.catalog-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalog-item:hover h3::after {
    opacity: 1;
}

.catalog-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.catalog-item .btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 25%, #ffd700 50%, #ff6b6b 75%, #ffa500 100%);
    background-size: 300% 300%;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catalog-item .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.5s;
}

.catalog-item .btn:hover::before {
    left: 100%;
}

.catalog-item .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #ff8c00 25%, #ffc107 50%, #ff5252 75%, #ff8c00 100%);
    background-size: 300% 300%;
    animation: gradientShift 1.5s ease infinite;
}

/* Добавляем анимацию появления карточек */
.catalog-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.catalog-item:nth-child(1) { animation-delay: 0.1s; }
.catalog-item:nth-child(2) { animation-delay: 0.2s; }
.catalog-item:nth-child(3) { animation-delay: 0.3s; }
.catalog-item:nth-child(4) { animation-delay: 0.4s; }
.catalog-item:nth-child(5) { animation-delay: 0.5s; }
.catalog-item:nth-child(6) { animation-delay: 0.6s; }
.catalog-item:nth-child(7) { animation-delay: 0.7s; }
.catalog-item:nth-child(8) { animation-delay: 0.8s; }
.catalog-item:nth-child(9) { animation-delay: 0.9s; }
.catalog-item:nth-child(10) { animation-delay: 1.0s; }
.catalog-item:nth-child(11) { animation-delay: 1.1s; }
.catalog-item:nth-child(12) { animation-delay: 1.2s; }
.catalog-item:nth-child(13) { animation-delay: 1.3s; }
.catalog-item:nth-child(14) { animation-delay: 1.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Preview */
.gallery-preview {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-preview::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 100"><defs><pattern id="grain3" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f0f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain3)"/></svg>');
    pointer-events: none;
}

.gallery-content {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.gallery-content h2 {
    color: transparent !important;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 4px 8px rgba(198, 11, 30, 0.1) !important;
}

.gallery-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #555;
    line-height: 1.7;
    font-weight: 400;
}

/* Десктопная галерея - принудительно */
@media (min-width: 769px) {
    .gallery-collage {
        display: grid !important;
        grid-template-columns: 3fr 1fr !important;
        grid-template-rows: 1fr 1fr !important;
        gap: 2rem !important;
        max-width: 1200px !important;
        margin: 0 auto 4rem !important;
        position: relative !important;
        z-index: 1 !important;
        height: 600px !important;
    }
    
    .gallery-item-large {
        grid-row: 1 / 3 !important;
        grid-column: 1 / 2 !important;
    }
}

.gallery-collage {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
    height: 600px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: #fff;
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.gallery-item-large {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay-content {
    color: white;
    text-align: left;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.gallery-overlay-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.4;
}

.gallery-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.gallery-btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 25%, #ffd700 50%, #ff6b6b 75%, #ffa500 100%);
    background-size: 300% 300%;
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    display: inline-flex;
    align-items: center;
    animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.gallery-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.5s ease;
}

.gallery-btn:hover::before {
    left: 100%;
}

.gallery-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff8c00 25%, #ffc107 50%, #ff5252 75%, #ff8c00 100%);
    background-size: 300% 300%;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
    animation: gradientShift 1.5s ease infinite;
}

/* Contact Form */
.contact-form-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.contact-form-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 100"><defs><pattern id="grain6" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f0f0" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grain6)"/></svg>');
    pointer-events: none;
}

.contact-form-section::after {
    display: none;
}

.form-content {
    max-width: 100%;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.form-content h2 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: #333;
    font-weight: 700;
    letter-spacing: -1px;
}

.form-content p {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

/* Новый контейнер для формы и контактной информации */
.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: stretch;
    min-height: 600px; /* Минимальная высота для контейнера */
}

.contact-form-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px; /* Минимальная высота для формы */
}

.form-header {
    text-align: center;
    margin-bottom: 1rem;
}

.form-header h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    flex: 1; /* Форма занимает все доступное пространство */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 20px;
    z-index: -1;
}

/* Стили для строк формы */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Стили для групп формы */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #006994;
    box-shadow: 0 0 0 3px rgba(0, 105, 148, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    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 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

/* Плейсхолдеры */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #d1d5db;
}

/* Контейнер для полей формы */
.form-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Стили для блока контактной информации */
.contact-info {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 600px; /* Минимальная высота для контактной информации */
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 30px;
    pointer-events: none;
}

.contact-info-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.contact-info h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.contact-info > .contact-info-content > p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-methods {
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-method {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem !important;
    margin-left: 0 !important;
    color: white;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.contact-icon:hover::before {
    left: 100%;
}

.contact-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Уникальные стили для каждой иконки */
.contact-method:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #ffd700 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.contact-method:nth-child(1) .contact-icon:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, #ff5252 0%, #ff8c00 50%, #ffc107 100%);
}

.contact-method:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.contact-method:nth-child(2) .contact-icon:hover {
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.5);
    background: linear-gradient(135deg, #3f9cfe 0%, #00e6fe 100%);
}

.contact-method:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-method:nth-child(3) .contact-icon:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #1ed760 0%, #0d7a6d 100%);
}

/* Анимация пульсации для иконок */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.contact-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

.contact-method:nth-child(1) .contact-icon {
    animation-delay: 0s;
}

.contact-method:nth-child(2) .contact-icon {
    animation-delay: 1s;
}

.contact-method:nth-child(3) .contact-icon {
    animation-delay: 2s;
}

/* Эффект свечения при наведении */
.contact-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4facfe, #25d366, #ffa500);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-icon:hover::after {
    opacity: 0.7;
}

.contact-details h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-details a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    word-break: break-word;
}

.contact-details a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.contact-features {
    margin-top: auto;
    padding-top: 1rem;
}

.contact-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
}

.contact-features .feature-icon {
    font-size: 1.2rem;
    margin-right: 0.8rem;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
}

.contact-features .feature:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.2);
}

.contact-features .feature:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 2px 10px rgba(79, 172, 254, 0.2);
}

.contact-features .feature:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
}

.contact-features .feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-features .feature:nth-child(1):hover .feature-icon {
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.contact-features .feature:nth-child(2):hover .feature-icon {
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.contact-features .feature:nth-child(3):hover .feature-icon {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Footer - Универсальный дизайн для всех устройств */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-top {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    width: 150px !important;
    height: 150px !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.1) rotate(5deg);
}

.footer-description {
    color: #b8c5d6;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::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.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
}

.social-link.telegram:hover {
    background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.4);
}

.footer-section {
    text-align: center;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover .footer-title::after {
    width: 60px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #006994 0%, #0099cc 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 105, 148, 0.3);
}

.footer-contact-item:hover .footer-contact-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 105, 148, 0.4);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    align-items: center;
    text-align: center;
}

.footer-contact-label {
    color: #b8c5d6;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-link,
.footer-contact-text {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #ff6b6b;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-copyright p {
    color: #b8c5d6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-link {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.legal-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Адаптивность для всех устройств */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1;
        text-align: left;
        max-width: none;
        margin: 0;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-description {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-title::after {
        left: 0;
        transform: none;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo-image {
        width: 100px !important;
        height: 100px !important;
    }
    
    .footer-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-links a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
    
    .footer-contact-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .footer-contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-contact-label {
        font-size: 0.85rem;
    }
    
    .footer-contact-link,
    .footer-contact-text {
        font-size: 1rem;
    }
    
    .footer-legal {
        gap: 1rem;
    }
    
    .legal-link {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo-image {
        width: 80px !important;
        height: 80px !important;
    }
    
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-title {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-contact-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .footer-contact-icon {
        width: 30px;
        height: 30px;
    }
    
    .footer-contact-label {
        font-size: 0.8rem;
    }
    
    .footer-contact-link,
    .footer-contact-text {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-copyright p {
        font-size: 0.9rem;
    }
    
    .footer-legal {
        gap: 0.8rem;
    }
    
    .legal-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Page Header */
.page-header {
    background: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    display: none;
}

.page-header h1 {
    color: #333;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: none;
    animation: fadeInUp 1s ease-out;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ffc400 0%, #ff6b6b 100%);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

.page-header p {
    color: #666;
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.excursions-catalog {
    padding-top: 0;
}

/* Transfer Page Styles */
.transfer-description {
    padding: 60px 0;
    background: #fff;
}

.description-content h2 {
    margin-bottom: 1.5rem;
}

.description-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.transfer-prices,
.andorra-prices {
    padding: 60px 0;
    background: #fff;
}

.transfer-prices h2,
.andorra-prices h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.prices-table {
    overflow-x: auto;
}

.prices-table th,
.prices-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 3px solid #b3d8f6 !important;
    border-right: 3px solid #b3d8f6;
    background: #fff;
}
.prices-table th:last-child,
.prices-table td:last-child {
    border-right: none;
}
.prices-table tr:last-child td {
    border-bottom: none;
}

.prices-table th {
    background: #667eea;
    color: white;
    font-weight: 600;
}

.prices-table tr:hover {
    background: #f8f9fa;
}

.terms-section {
    padding: 60px 0;
    background: #fff;
}

.terms-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.terms-content ul {
    list-style: none;
    padding-left: 0;
}

.terms-content li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 20px;
}

.terms-content li:before {
    content: "•";
    color: #667eea;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.vehicles-section {
    padding: 60px 0;
    background: #fff;
}

.vehicles-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 2.5rem;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Разные цвета для каждой иконки */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 8px 20px rgba(250, 112, 154, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Разные тени при hover для каждой иконки */
.feature-card:nth-child(1):hover .feature-icon {
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card:nth-child(2):hover .feature-icon {
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card:nth-child(3):hover .feature-icon {
    box-shadow: 0 15px 35px rgba(67, 233, 123, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card:nth-child(4):hover .feature-icon {
    box-shadow: 0 15px 35px rgba(250, 112, 154, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Анимации для карточек */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Адаптивность для Why Choose Us */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Price Table Accordion Styles */
.price-table-accordion {
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.price-table-accordion:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.table-header {
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    color: white;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.table-header::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.5s;
}

.table-header:hover::before {
    left: 100%;
}

.table-header:hover {
    background: linear-gradient(135deg, #005a7a 0%, #0088b3 50%, #0099cc 100%);
    transform: translateY(-1px);
    color: white;
}

.table-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: white;
}

.price-table-accordion.active .toggle-icon {
    transform: rotate(45deg);
}

.table-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.price-table-accordion.active .table-content {
    max-height: 5000px;
}

.table-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fafdff; /* светло-голубой фон */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: none;
}

.table-content th,
.table-content td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1.5px solid #b3d8f6 !important;
    border-right: 1.5px solid #b3d8f6;
    background: #fff;
}
.table-content th:last-child,
.table-content td:last-child {
    border-right: none;
}
.table-content tr:last-child th,
.table-content tr:last-child td {
    border-bottom: none !important;
}

.table-content th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.table-content td {
    color: #666;
    font-size: 0.9rem;
}

.table-content tr:hover {
    background: #f8f9fa;
}

.table-content tr:last-child td {
    border-bottom: none;
}

/* Responsive styles for accordion */
@media (max-width: 768px) {
    .table-header {
        padding: 1rem 1.5rem;
    }
    
    .table-header h3 {
        font-size: 1.2rem;
    }
    
    .toggle-icon {
        font-size: 1.3rem;
    }
    
    .table-content th,
    .table-content td {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .table-header {
        padding: 0.8rem 1rem;
    }
    
    .table-header h3 {
        font-size: 1.1rem;
    }
    
    .table-content th,
    .table-content td {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Контейнер для изображения */
.excursion-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
}

/* Оверлей для изображения */
.excursion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.excursion-card:hover .excursion-overlay {
    opacity: 1;
}

.excursion-overlay-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #e6c200 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.excursion-overlay-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff8c00 50%, #d4b000 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    color: white;
}

.excursion-content {
    padding: 25px;
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

/* Сетка для экскурсий */
.excursions-catalog .catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Адаптивность для сетки экскурсий */
@media (max-width: 1200px) {
    .excursions-catalog .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .excursions-catalog .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .excursions-catalog .catalog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Hotel Transfer Section */
.hotel-transfer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hotel-transfer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    z-index: 1;
}

.hotel-transfer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hotel-transfer-text h2 {
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hotel-transfer-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hotel-transfer-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hotel-transfer-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hotel-transfer-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hotel-transfer-feature .feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hotel-transfer-feature span:last-child {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.hotel-transfer-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hotel-transfer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.hotel-transfer-image:hover img {
    transform: scale(1.05);
}

/* Адаптивность для hotel-transfer-section */
@media (max-width: 1024px) {
    .hotel-transfer-content {
        gap: 3rem;
    }
    
    .hotel-transfer-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hotel-transfer-section {
        padding: 60px 0;
    }
    
    .hotel-transfer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hotel-transfer-text h2 {
        font-size: 2rem;
    }
    
    .hotel-transfer-text p {
        font-size: 1rem;
    }
    
    .hotel-transfer-features {
        align-items: center;
    }
    
    .hotel-transfer-feature {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hotel-transfer-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hotel-transfer-section {
        padding: 40px 0;
    }
    
    .hotel-transfer-text h2 {
        font-size: 1.8rem;
    }
    
    .hotel-transfer-feature {
        padding: 0.8rem 1rem;
    }
    
    .hotel-transfer-feature .feature-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .hotel-transfer-feature span:last-child {
        font-size: 0.9rem;
    }
}

/* Features Grid - основная сетка для "Почему выбирают нас" */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Адаптивность для features-grid */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.why-choose-us h2 {
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Comfort Section Styles */
.comfort-section {
    padding: 60px 0;
    background: #fff;
}
.comfort-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}
.comfort-section .vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}
.comfort-section .vehicle-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.03);
}
.comfort-section .vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #006994;
}
.comfort-section .vehicle-image {
    width: 100%;
    height: 350px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background: #f8f9fa;
    position: relative;
}
.comfort-section .vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.3s ease;
}
.comfort-section .vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}
.comfort-section .vehicle-info h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.comfort-section .vehicle-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1024px) {
    .comfort-section .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    .comfort-section .vehicle-image {
        height: 300px;
    }
}
@media (max-width: 768px) {
    .comfort-section .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 500px;
    }
    .comfort-section .vehicle-image {
        height: 280px;
    }
    .comfort-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .comfort-section .vehicle-card {
        padding: 1.5rem;
    }
}
@media (max-width: 480px) {
    .comfort-section .vehicle-image {
        height: 250px;
    }
    .comfort-section .vehicle-card {
        padding: 1rem;
    }
    .comfort-section .vehicle-info h3 {
        font-size: 1.2rem;
    }
}

.vehicles-section {
    padding: 60px 0;
    background: #fff;
}

.vehicles-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.vehicles-section .vehicle-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.03);
}

.vehicles-section .vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #006994;
}

.vehicles-section .vehicle-image {
    width: 100%;
    height: 350px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background: #f8f9fa;
    position: relative;
}

.vehicles-section .vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.vehicles-section .vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicles-section .vehicle-info h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.vehicles-section .vehicle-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .vehicles-section .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    .vehicles-section .vehicle-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .vehicles-section .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 500px;
    }
    .vehicles-section .vehicle-image {
        height: 280px;
    }
    .vehicles-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .vehicles-section .vehicle-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .vehicles-section .vehicle-image {
        height: 250px;
    }
    .vehicles-section .vehicle-card {
        padding: 1rem;
    }
    .vehicles-section .vehicle-info h3 {
        font-size: 1.2rem;
    }
}

/* Photo Albums Gallery */
.photo-albums {
    padding: 80px 0;
}

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

.album-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

/* Постоянная иконка лупы на карточке */
.album-card::before {
    content: "🔍";
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.2rem;
    background: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: gentle-bounce 2s infinite;
    border: 2px solid #0099cc;
}

.album-card:hover::before {
    animation: pulse 1s infinite;
    background: rgba(255, 255, 255, 1);
    border-color: rgba(198, 11, 30, 0.8);
    transform: scale(1.1);
}

@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.album-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.album-cover {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 11, 30, 0.9) 0%, rgba(255, 196, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.magnifier-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: box-shadow 0.2s;
}

.view-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    color: white;
}

.album-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.album-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.album-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.photo-count {
    display: inline-block;
    background: #ffe6f0;
    color: #c60b1e;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5em 1.2em;
    border-radius: 20px;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.10);
}

/* Подсказка при наведении */
.album-card::after {
    content: '👆 Нажмите для просмотра';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
}

.album-card:hover::after {
    opacity: 1;
}

/* Album Modal */
.album-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: white;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    color: white;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    height: calc(100% - 80px);
    overflow-y: auto;
    padding: 2rem;
}

.album-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.album-photo {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.album-photo:hover {
    transform: scale(1.05);
}

.album-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    margin: 2% auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* Responsive Design for Albums */
@media (max-width: 1200px) {
    .albums-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .photo-albums {
        padding: 60px 0;
    }
    
    .albums-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .album-cover {
        height: 220px;
    }
    
    .album-card::before {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        top: 10px;
        right: 10px;
    }
    
    .album-info h3 {
        font-size: 1.3rem;
    }
    
    .album-info p {
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 95%;
        height: 95%;
        margin: 2.5% auto;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .album-photos {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .magnifier-icon {
        font-size: 2.5rem;
    }
    
    .view-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .album-cover {
        height: 200px;
    }
    
    .album-card::before {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .album-info {
        padding: 1.5rem;
    }
    
    .album-info h3 {
        font-size: 1.2rem;
    }
    
    .modal-content {
        width: 98%;
        height: 98%;
        margin: 1% auto;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 0.8rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .album-photos {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .album-photo img {
        height: 150px;
    }
    
    .magnifier-icon {
        font-size: 2rem;
    }
    
    .view-text {
        font-size: 0.9rem;
    }
}

/* Gallery Instructions */
.gallery-instructions {
    background: white;
    padding: 3rem 0;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.gallery-instructions::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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23667eea" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23667eea" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23667eea" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23667eea" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.instructions-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    border: 2px solid #f7fafc;
    position: relative;
    z-index: 1;
    animation: slideInUp 0.8s ease-out;
}

.instruction-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

.instruction-text {
    flex: 1;
}

.instruction-text h3 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.instruction-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.instruction-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive для инструкций */
@media (max-width: 768px) {
    .gallery-instructions {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .instructions-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .instruction-icon {
        font-size: 2.5rem;
    }
    
    .instruction-text h3 {
        font-size: 1.5rem;
    }
    
    .instruction-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-instructions {
        padding: 1.5rem 0.5rem;
    }
    
    .instructions-content {
        padding: 1rem;
        gap: 1rem;
    }
    
    .instruction-icon {
        font-size: 2rem;
    }
    
    .instruction-text h3 {
        font-size: 1.3rem;
    }
    
    .instruction-text p {
        font-size: 0.95rem;
    }
}

/* ===== СТРАНИЦА "ОБО МНЕ" ===== */

/* Page Header для страницы "Обо мне" */
.page-header {
    background: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    display: none;
}

.page-header h1 {
    color: #333;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: none;
    animation: fadeInUp 1s ease-out;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ffc400 0%, #ff6b6b 100%);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

.page-header p {
    color: #666;
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* About Me Section */
.about-me {
    padding: 100px 0;
    background: white;
    position: relative;
}

.about-me::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 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,105,148,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image::before {
    display: none;
}

.about-image:hover::before {
    display: none;
}

.about-image:hover img {
    transform: none;
}

.about-text {
    animation: fadeInRight 1s ease-out 0.5s both;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ffc400 0%, #ff6b6b 100%);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 1s both;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #006994;
    margin: 2rem 0 1rem;
    position: relative;
}

.about-text h3::before {
    content: '✨';
    margin-right: 10px;
    font-size: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-text li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #555;
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.about-text li:hover {
    color: #006994;
    transform: translateX(10px);
}

.about-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ffc400 0%, #ff6b6b 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.about-text li:hover::before {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #006994 0%, #0099cc 100%);
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.experience-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.experience-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ffc400 0%, #ff6b6b 100%);
    border-radius: 2px;
}

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

.experience-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 105, 148, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.05) 0%, rgba(0, 153, 204, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 105, 148, 0.2);
    border-color: rgba(0, 105, 148, 0.2);
}

.experience-card:hover::before {
    opacity: 1;
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s ease;
}

.experience-card:hover .experience-icon {
    transform: scale(1.2) rotate(5deg);
}

.experience-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #006994;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.experience-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 30%);
}

.services-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ffc400 0%, #ff6b6b 100%);
    border-radius: 2px;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 105, 148, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.05) 0%, rgba(0, 153, 204, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 105, 148, 0.2);
    border-color: rgba(0, 105, 148, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #006994;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ffc400 0%, #ff6b6b 100%);
    border-radius: 2px;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 105, 148, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 105, 148, 0.1);
    font-family: 'Playfair Display', serif;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 105, 148, 0.2);
    border-color: rgba(0, 105, 148, 0.2);
}

.testimonial-card:hover::before {
    color: rgba(0, 105, 148, 0.3);
    transform: scale(1.2);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    text-align: right;
    position: relative;
    z-index: 2;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #006994;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Contact Information Section */
.contact-info-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 30%);
}

.contact-info-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-info-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ffc400 0%, #ff6b6b 100%);
    border-radius: 2px;
}

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

.contact-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 105, 148, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.05) 0%, rgba(0, 153, 204, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 105, 148, 0.2);
    border-color: rgba(0, 105, 148, 0.2);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #006994;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-item .btn {
    position: relative;
    z-index: 2;
}

/* Call to Action Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.cta-content h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Анимации для карточек */
.experience-card,
.service-card,
.testimonial-card,
.contact-item {
    animation: fadeInUp 0.8s ease-out both;
}

.experience-card:nth-child(1) { animation-delay: 0.1s; }
.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.3s; }
.experience-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }

/* Адаптивность для страницы "Обо мне" */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-image:hover {
        transform: scale(1.05);
    }
    
    .experience-grid,
    .services-grid,
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .about-me,
    .experience-section,
    .services-section,
    .testimonials-section,
    .contact-info-section,
    .about-cta {
        padding: 60px 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .experience-section h2,
    .services-section h2,
    .testimonials-section h2,
    .contact-info-section h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .experience-grid,
    .services-grid,
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Универсальное правило для всех h2 на мобильных */
    h2 {
        font-size: 2rem !important;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .experience-section h2,
    .services-section h2,
    .testimonials-section h2,
    .contact-info-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .experience-card,
    .service-card,
    .testimonial-card,
    .contact-item {
        padding: 30px 20px;
    }
    
    .experience-icon,
    .service-icon,
    .contact-icon {
        font-size: 2rem;
    }
    
    /* Универсальное правило для всех h2 на маленьких экранах */
    h2 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 0.8rem;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 30%);
}

.services-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ffc400 0%, #ff6b6b 100%);
    border-radius: 2px;
}

.services-section .catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .services-section .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-section .catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn, .excursion-btn, .nav-menu a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better form styling for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
        border-radius: 8px;
    }
    
    /* Improve card interactions */
    .excursion-card,
    .service-item,
    .contact-method {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    /* Better button feedback */
    .btn:active,
    .excursion-btn:active {
        transform: scale(0.98);
    }
    
    /* Improve scrolling performance */
    .hero,
    .about-guide,
    .top-excursions,
    .transfer-section,
    .catalog-section,
    .contact-form-section {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better image loading */
    .excursion-image,
    .about-image img,
    .transfer-image img {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    /* Improve text readability */
    .hero-content p,
    .about-text p,
    .transfer-text p,
    .catalog-content p,
    .form-content p {
        line-height: 1.7;
        text-align: center;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Improve navigation */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu a {
        border-radius: 8px;
        margin: 0.5rem 1rem;
    }
    
    /* Better WhatsApp button */
    .whatsapp-button {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    .whatsapp-button:active {
        transform: scale(0.95);
    }
}

/* Extra small mobile optimizations */
@media (max-width: 480px) {
    /* Reduce padding for very small screens */
    .container {
        padding: 0 10px;
    }
    
    /* Smaller buttons for better fit */
    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    /* Better card spacing */
    .excursion-card {
        margin-bottom: 1rem;
    }
    
    /* Improve form layout */
    .form-row {
        gap: 1rem;
    }
    
    /* Better stats layout */
    .about-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0.75rem;
    }
    
    /* Better service items */
    .service-item {
        padding: 0.75rem;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Landscape orientation improvements */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        padding: 1rem 0;
    }
    
    .nav-menu li {
        margin: 0.75rem 0;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .excursion-image,
    .about-image img,
    .transfer-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles for mobile */
@media print {
    .header,
    .nav-menu,
    .hamburger,
    .whatsapp-button,
    .scroll-to-top,
    .footer {
        display: none !important;
    }
    
    .hero,
    .about-guide,
    .top-excursions,
    .transfer-section,
    .catalog-section,
    .contact-form-section {
        page-break-inside: avoid;
        margin: 20px 0;
    }
    
    .hero-content h1,
    .about-text h2,
    .transfer-text h2,
    .catalog-content h2,
    .form-content h2 {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
        background: none !important;
    }
    
    .btn {
        border: 1px solid #000 !important;
        color: #000 !important;
        background: none !important;
        box-shadow: none !important;
    }
    
    .excursion-card {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Better focus indicators */
    .btn:focus,
    .nav-menu a:focus,
    .excursion-btn:focus,
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: 2px solid #006994;
        outline-offset: 2px;
    }
    /* Удалены стили фокуса для .form-group input/select/textarea */
    /* Остальной код блока не меняется */
}

/* Reduced motion preferences for mobile */
@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .excursion-card:hover,
    .service-item:hover,
    .contact-method:hover,
    .stat-item:hover {
        transform: none !important;
    }
    
    .nav-menu {
        transition: none !important;
    }
    
    .hamburger span {
        transition: none !important;
    }
}

/* Mobile-specific loading states */
@media (max-width: 768px) {
    .loading {
        position: relative;
        overflow: hidden;
    }
    
    .loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: loading 1.5s infinite;
    }
    
    @keyframes loading {
        0% {
            left: -100%;
        }
        100% {
            left: 100%;
        }
    }
    
    /* Better button loading states */
    .btn.loading {
        position: relative;
        color: transparent;
    }
    
    .btn.loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 16px;
        margin: -8px 0 0 -8px;
        border: 2px solid transparent;
        border-top: 2px solid currentColor;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
}

/* Mobile-specific error states */
@media (max-width: 768px) {
    .field-error {
        color: #e74c3c;
        font-size: 0.8rem;
        margin-top: 0.25rem;
        display: block;
    }
    
    .form-group input.error,
    .form-group textarea.error,
    .form-group select.error {
        border-color: #e74c3c;
        box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    }
    
    .form-group input.error::placeholder,
    .form-group textarea.error::placeholder {
        color: #e74c3c;
    }
}

/* Mobile-specific success states */
@media (max-width: 768px) {
    .form-group input.success,
    .form-group textarea.success,
    .form-group select.success {
        border-color: #25d366;
        box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
    }
}

/* Mobile-specific notification improvements */
@media (max-width: 768px) {
    .notification {
        position: fixed;
        top: 10px;
        right: 10px;
        left: 10px;
        background: #006994;
        color: white;
        padding: 12px 16px;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        z-index: 10000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        max-width: none;
        font-size: 0.9rem;
    }
    
    .notification-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .notification-close {
        background: none;
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 0;
        margin-left: 10px;
    }
}

/* Floating WhatsApp button for mobile */
@media (max-width: 768px) {
    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
        z-index: 999;
        animation: pulse 2s infinite;
    }
    
    .whatsapp-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
        color: white;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        }
        50% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
        }
        100% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        }
    }
}

/* Hide floating WhatsApp button on desktop */
@media (min-width: 769px) {
    .whatsapp-button {
        display: none;
    }
}

.service-item:nth-child(3):hover .service-icon {
    background: rgba(255, 255, 255, 0.3);
}

/* Специальные стили для больших экранов */
@media (min-width: 1200px) {
    .about-services {
        justify-content: space-between;
        gap: 1.5rem;
    }
    
    .service-item {
        flex: 1 1 0;
        min-width: 180px;
        max-width: none;
        height: 65px;
    }
}

@media (min-width: 1400px) {
    .about-services {
        gap: 2rem;
    }
    
    .service-item {
        min-width: 200px;
        padding: 1.25rem 1.5rem;
        height: 70px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-collage {
        max-width: 1000px;
        height: 550px;
        gap: 1.5rem;
        grid-template-columns: 3fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .gallery-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .gallery-preview {
        padding: 60px 0;
    }
    
    .gallery-collage {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 1.2rem;
        height: 500px;
        max-width: 100%;
        margin: 0 auto 2.5rem;
    }
    
    .gallery-item-large {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        border-radius: 15px;
    }
    
    .gallery-item {
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    .gallery-item:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .gallery-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
        background: linear-gradient(135deg, #006994 0%, #0099cc 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .gallery-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
        opacity: 1;
        transform: translateY(0);
    }
    
    .gallery-overlay-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .gallery-overlay-content p {
        font-size: 0.95rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .gallery-btn {
        padding: 14px 28px;
        font-size: 1rem;
        border-radius: 25px;
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    }
}

@media (max-width: 480px) {
    .gallery-preview {
        padding: 50px 0;
    }
    
    .gallery-collage {
        gap: 1rem;
        height: 450px;
        margin-bottom: 2rem;
    }
    
    .gallery-content h2 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }
    
    .gallery-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-overlay {
        padding: 1.2rem;
    }
    
    .gallery-overlay-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .gallery-overlay-content p {
        font-size: 0.9rem;
    }
    
    .gallery-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        border-radius: 20px;
    }
    
    .gallery-item {
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
    
    .gallery-item:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
    }
}

/* Новые стили для контактов в футере */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.footer-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.footer-contact-item:hover::before {
    left: 100%;
}

.footer-contact-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #006994 0%, #0099cc 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 105, 148, 0.3);
}

.footer-contact-item:hover .footer-contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 105, 148, 0.4);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    align-items: center;
    text-align: center;
}

.footer-contact-label {
    color: #8b9bb4;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-contact-link,
.footer-contact-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
}

.footer-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, #006994 0%, #0099cc 100%);
    transition: width 0.3s ease;
}

.footer-contact-link:hover {
    color: #0099cc;
    transform: translateX(3px);
}

.footer-contact-link:hover::after {
    width: 100%;
}

.footer-contact-text {
    color: #ccc;
}

/* Специальные стили для разных типов контактов в футере */
.footer-contact-item:nth-child(1) .footer-contact-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.footer-contact-item:nth-child(1):hover .footer-contact-icon {
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.footer-contact-item:nth-child(2) .footer-contact-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.footer-contact-item:nth-child(2):hover .footer-contact-icon {
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

.footer-contact-item:nth-child(3) .footer-contact-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.footer-contact-item:nth-child(3):hover .footer-contact-icon {
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.footer-contact-item:nth-child(4) .footer-contact-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.footer-contact-item:nth-child(4):hover .footer-contact-icon {
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

/* Анимация появления контактов в футере */
.footer-contact-item {
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.footer-contact-item:nth-child(1) { animation-delay: 0.1s; }
.footer-contact-item:nth-child(2) { animation-delay: 0.2s; }
.footer-contact-item:nth-child(3) { animation-delay: 0.3s; }
.footer-contact-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-details {
    padding-left: 1.5rem !important;
}

@media (max-width: 480px) {
    .social-link {
        width: 55px !important;
        height: 55px !important;
    }
}

/* Стили для страниц экскурсий */
.excursion-details {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.excursion-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.excursion-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.excursion-hero:hover .excursion-image img {
    transform: scale(1.05);
}

.excursion-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.excursion-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.excursion-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid #c60b1e;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 11, 30, 0.2);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.highlight-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.highlight-item span:last-child {
    font-weight: 600;
    color: #333;
}

/* Маршрут экскурсии */
.route-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.route-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.route-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.route-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    border-radius: 2px;
}

.route-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding-left: 80px;
}

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

.route-time {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(198, 11, 30, 0.3);
    z-index: 2;
}

.route-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #c60b1e;
    flex: 1;
    transition: all 0.3s ease;
}

.route-content:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.route-content h3 {
    color: #c60b1e;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.route-content p {
    color: #666;
    margin: 0;
}

/* Что включено */
.included-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.included-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.included-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.included-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    opacity: 0.1;
    transition: left 0.3s ease;
}

.included-item:hover::before {
    left: 0;
}

.included-item:hover {
    transform: translateY(-10px);
    border-color: #c60b1e;
    box-shadow: 0 15px 40px rgba(198, 11, 30, 0.2);
}

.included-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.included-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.included-item p {
    color: #666;
    margin: 0;
}

/* Стоимость */
.pricing-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.pricing-table th {
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.pricing-table tr:hover {
    background: #f8f9fa;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

/* Кнопка бронирования */
.booking-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    margin-bottom: 60px;
}

.booking-section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(198, 11, 30, 0.3);
}

.booking-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(198, 11, 30, 0.4);
    background: linear-gradient(135deg, #a50918 0%, #e6b800 100%);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .excursion-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .excursion-image img {
        height: 300px;
    }
    
    .included-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .excursion-details {
        padding: 60px 0;
    }
    
    .excursion-hero {
        padding: 30px;
        margin-bottom: 60px;
    }
    
    .excursion-info h2 {
        font-size: 2rem;
    }
    
    .excursion-highlights {
        grid-template-columns: 1fr;
    }
    
    .route-timeline::before {
        left: 30px;
    }
    
    .route-item {
        padding-left: 60px;
    }
    
    .route-time {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }
    
    .route-section,
    .included-section,
    .pricing-section {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .route-section h2,
    .included-section h2,
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 15px 10px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .excursion-hero {
        padding: 20px;
    }
    
    .excursion-info h2 {
        font-size: 1.8rem;
    }
    
    .excursion-info p {
        font-size: 1.1rem;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .route-content {
        padding: 20px;
    }
    
    .route-content h3 {
        font-size: 1.2rem;
    }
    
    .included-item {
        padding: 25px;
    }
    
    .included-icon {
        font-size: 2.5rem;
    }
    
    .booking-section {
        padding: 40px 20px;
    }
    
    .booking-section h2 {
        font-size: 2rem;
    }
    
    .booking-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Стили для формы бронирования на страницах экскурсий */
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form .form-group input,
.booking-form .form-group textarea,
.booking-form .form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus,
.booking-form .form-group select:focus {
    outline: none;
    border-color: #c60b1e;
    background: white;
    box-shadow: 0 0 0 3px rgba(198, 11, 30, 0.1);
}

.booking-form .form-group input::placeholder,
.booking-form .form-group textarea::placeholder {
    color: #999;
}

.booking-form .btn {
    width: 100%;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(198, 11, 30, 0.3);
    margin-top: 20px;
}

.booking-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(198, 11, 30, 0.4);
    background: linear-gradient(135deg, #a50918 0%, #e6b800 100%);
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-style: italic;
}

/* Адаптивность для формы бронирования */
@media (max-width: 768px) {
    .booking-form {
        padding: 30px 20px;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-form .form-group input,
    .booking-form .form-group textarea,
    .booking-form .form-group select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .booking-form .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .booking-form {
        padding: 20px 15px;
    }
    
    .booking-form .form-group input,
    .booking-form .form-group textarea,
    .booking-form .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .booking-form .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Route List Styles */
.route-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.route-item-simple {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.route-item-simple:hover {
    transform: translateY(-2px);
}

.route-item-simple h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.route-item-simple p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Responsive adjustments for route list */
@media (max-width: 768px) {
    .route-item-simple {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .route-item-simple h3 {
        font-size: 1.2rem;
    }
    
    .route-item-simple p {
        font-size: 0.95rem;
    }
}

/* Mobile controls container */
.mobile-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
        margin-left: 0;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background: #333;
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 80px;
        height: 100vh;
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        animation: slideInDown 0.5s ease forwards;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }

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

    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
    }

    .nav-menu a:hover {
        background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
        color: white;
        transform: translateY(-2px);
    }

    .header-whatsapp-btn {
        display: flex;
        align-items: center;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .header {
        padding: 0.5rem 0;
    }

    .header.scrolled {
        padding: 0.3rem 0;
    }
    
    /* Improve navbar layout on mobile */
    .navbar {
        padding: 0.5rem 1rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .logo-image {
        height: 60px;
        width: auto;
    }
}

.excursion-image-container img,
.excursion-image img {
    border-radius: 0 !important;
}

/* Promises Cards */
.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.promise-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c60b1e 0%, #ffc400 100%);
    opacity: 0.05;
    transition: left 0.6s ease;
    z-index: 1;
}

.promise-card:hover::before {
    left: 0;
}

.promise-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: #c60b1e;
    box-shadow: 0 15px 40px rgba(198, 11, 30, 0.2);
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.promise-card:hover .promise-icon {
    transform: scale(1.3) rotate(5deg);
    animation: bounce 0.6s ease;
}

.promise-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.promise-card:hover h4 {
    color: #c60b1e;
    transform: scale(1.05);
}

/* Анимации для карточек */
.promise-card:nth-child(1) { animation-delay: 0.1s; }
.promise-card:nth-child(2) { animation-delay: 0.2s; }
.promise-card:nth-child(3) { animation-delay: 0.3s; }
.promise-card:nth-child(4) { animation-delay: 0.4s; }
.promise-card:nth-child(5) { animation-delay: 0.5s; }

.promise-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.promise-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность для карточек */
@media (max-width: 1024px) {
    .promises-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .promise-card {
        padding: 1.25rem 0.75rem;
        min-height: 100px;
    }
    
    .promise-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .promise-card h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .promise-card {
        padding: 1rem 0.5rem;
        min-height: 90px;
    }
    
    .promise-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .promise-card h4 {
        font-size: 0.9rem;
    }
}

/* Promises Section */
.promises-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.promises-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.promises-section .container {
    position: relative;
    z-index: 2;
}

.promises-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #006994 0%, #0099cc 50%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.promises-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ffc400 0%, #ff6b6b 100%);
    border-radius: 2px;
}

/* Адаптивность для promises-section */
@media (max-width: 768px) {
    .promises-section {
        padding: 3rem 0;
    }
    
    .promises-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .promises-section {
        padding: 2.5rem 0;
    }
    
    .promises-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}