* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3d91e6;
    --secondary-color: #0884ff;
    --accent-color: #00a8ff;
    --light-blue: #e6f2ff;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.loader-plane i {
    font-size: 1.2rem;
    color: #ffffff;
    filter: drop-shadow(0 0 18px rgba(255,255,255,0.95));
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.lang-btn:hover {
    background: rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.lang-btn.active {
    background: linear-gradient(135deg, #0066cc, #00a8ff);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.lang-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.6);
}

/* Hero Section (travel atmosphere) */
.hero {
    /* Используем 100vh для полной высоты экрана */
    min-height: 100vh;
    /* Учитываем адресные строки в мобильных браузерах */
    min-height: 100dvh; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    
    /* Градиент остается, можно немного упростить для лучшей производительности */
    background: linear-gradient(180deg, #0a1628 0%, #153d8c 100%);
    
    /* Добавляем внутренние отступы для мобильных */
    padding: 20px;
}

/* Адаптив для маленьких экранов */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }
}

/* Travel-themed background with multiple layers */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 165, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(100, 180, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Subtle grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.hero-decor {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.15;
    pointer-events: none;
}

.hero-decor svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Falling travel icons animation */
.hero-travel-icons {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.falling-icon {
    position: absolute;
    top: -60px;
    font-size: 2.5rem;
    animation: fallDown linear infinite;
    opacity: 0.7;
}

/* Suitcase - red */
.falling-icon:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
    font-size: 3rem;
    color: #e53e3e;
    filter: drop-shadow(0 0 10px rgba(229, 62, 62, 0.5));
}

/* Passport/document - blue */
.falling-icon:nth-child(2) {
    left: 25%;
    animation-duration: 10s;
    animation-delay: 2s;
    font-size: 2rem;
    color: #3182ce;
    filter: drop-shadow(0 0 10px rgba(49, 130, 206, 0.5));
}

/* Airplane - red */
.falling-icon:nth-child(3) {
    left: 45%;
    animation-duration: 12s;
    animation-delay: 1s;
    font-size: 3.5rem;
    color: #e53e3e;
    filter: drop-shadow(0 0 15px rgba(229, 62, 62, 0.6));
}

/* Suitcase - blue */
.falling-icon:nth-child(4) {
    left: 65%;
    animation-duration: 9s;
    animation-delay: 3s;
    font-size: 2.8rem;
    color: #3182ce;
    filter: drop-shadow(0 0 10px rgba(49, 130, 206, 0.5));
}

/* Document - red */
.falling-icon:nth-child(5) {
    left: 80%;
    animation-duration: 11s;
    animation-delay: 4s;
    font-size: 2.2rem;
    color: #e53e3e;
    filter: drop-shadow(0 0 10px rgba(229, 62, 62, 0.5));
}

/* Airplane - blue */
.falling-icon:nth-child(6) {
    left: 90%;
    animation-duration: 13s;
    animation-delay: 0.5s;
    font-size: 3rem;
    color: #3182ce;
    filter: drop-shadow(0 0 15px rgba(49, 130, 206, 0.6));
}

/* Additional falling icons */
.falling-icon:nth-child(7) {
    left: 5%;
    animation-duration: 14s;
    animation-delay: 6s;
    font-size: 2rem;
    color: #e53e3e;
    filter: drop-shadow(0 0 10px rgba(229, 62, 62, 0.5));
}

.falling-icon:nth-child(8) {
    left: 35%;
    animation-duration: 10s;
    animation-delay: 5s;
    font-size: 2.5rem;
    color: #3182ce;
    filter: drop-shadow(0 0 10px rgba(49, 130, 206, 0.5));
}

.falling-icon:nth-child(9) {
    left: 55%;
    animation-duration: 11s;
    animation-delay: 7s;
    font-size: 2.3rem;
    color: #e53e3e;
    filter: drop-shadow(0 0 10px rgba(229, 62, 62, 0.5));
}

.falling-icon:nth-child(10) {
    left: 75%;
    animation-duration: 9s;
    animation-delay: 8s;
    font-size: 2.7rem;
    color: #3182ce;
    filter: drop-shadow(0 0 10px rgba(49, 130, 206, 0.5));
}

@keyframes fallDown {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUpHero 1s ease forwards;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.6rem;
    line-height: 1.05;
    text-shadow: 0 8px 30px rgba(0,0,0,0.25);
    animation: fadeInUpTitle 1s ease 0.3s forwards;
    opacity: 0;
}

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

.hero-sub {
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    transition: var(--transition);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.6);
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

/* Company Info Section */
.company-info {
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f7ff 100%);
    padding: 80px 0;
}

.company-header {
    text-align: center;
    margin-bottom: 50px;
}

.company-header h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.company-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.company-intro p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.company-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h4 {
    margin-bottom: 10px;
    color: var(--dark-text);
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--dark-text);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 16px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 65ch;
}

.services-list {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 16px;
    margin: 30px 0;
}

.services-list-title {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.services-list ul {
    list-style: none;
    margin-left: 20px;
}

.services-list li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.services-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

.highlight {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.08), rgba(0, 168, 255, 0.08));
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin: 20px 0 !important;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 102, 204, 0.08);
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat p {
    color: var(--text-light);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.15);
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, #d7e9ff 0%, #fafcff 100%);
    border: 2px dashed rgba(0, 102, 204, 0.22);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
}

/* Destinations Section */
.destinations {
    padding: 80px 0;
    background: var(--light-bg);
}

.destinations h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-text);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.destination-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.destination-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 102, 204, 0.2);
}

.card-image {
    position: relative;
    min-height: 240px;
    transition: transform 0.4s ease;
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.3s ease;
}

.destination-card:hover .image-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(0, 102, 204, 0.2) 100%);
}

.destination-card h3 {
    font-size: 1.25rem;
    margin: 20px 24px 12px;
    color: var(--dark-text);
    font-weight: 700;
}

.destination-card p {
    margin: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 24px 24px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.card-button:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    color: white;
}

.card-button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.card-button:hover i {
    transform: translateX(3px);
}

/* Travel Inspiration Gallery */
.travel-gallery {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.travel-gallery h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-text);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 102, 204, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

/* Testimonials Section */
.testimonials {
    background: var(--white);
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.15);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-text);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #667eea 0%, #0862d7 50%, #0f7ed8 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(222, 3, 3, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.12);
    padding: 45px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 35px;
    color: white;
    font-weight: 600;
}

/* Location block - groups address and phone for each city */
.location-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.location-block:last-child {
    margin-bottom: 0;
}

.location-block:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Info item styles */
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

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

.info-item i {
    font-size: 1.8rem;
    color: #ffd89b;
    margin-top: 3px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item div {
    flex: 1;
}

.info-item h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.info-item a {
    color: #ffc69b;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    margin-top: 5px;
}

.info-item a:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: translateX(4px);
}

/* Map button - restore original styles */
.info-item .map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 216, 155, 0.2), rgba(255, 179, 71, 0.2));
    color: #ffd89b;
    border: 1px solid rgba(255, 216, 155, 0.4);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    margin-top: 12px;
}

.info-item .map-button:hover {
    background: linear-gradient(135deg, rgba(255, 216, 155, 0.35), rgba(255, 179, 71, 0.35));
    border-color: rgba(255, 216, 155, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 216, 155, 0.3);
    text-decoration: none;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item i {
    font-size: 1.8rem;
    color: #ffd89b;
    margin-top: 3px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-item a {
    color: #ffc69b;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    margin-top: 5px;
}

.contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: translateX(4px);
}

.social-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.social-section h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 600;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links-contact a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffd89b;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

.social-links-contact a:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.social-links-contact i {
    font-size: 1.3rem;
}

/* Адрес текста стилизация */
.address-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* Карта кнопкасы */
.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 216, 155, 0.2), rgba(255, 179, 71, 0.2));
    color: #ffd89b;
    border: 1px solid rgba(255, 216, 155, 0.4);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.map-button:hover {
    background: linear-gradient(135deg, rgba(255, 216, 155, 0.35), rgba(255, 179, 71, 0.35));
    border-color: rgba(255, 216, 155, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 216, 155, 0.3);
}

.map-button i {
    font-size: 1rem;
}

.contact-form {
    display: grid;
    gap: 20px;
    background: rgba(255, 255, 255, 0.12);
    padding: 45px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.95) !important;
    color: #2c3e50 !important;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px; /* Увеличен для предотвращения зума на iOS */
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-text-fill-color: #2c3e50 !important; /* Для Safari на iOS */
    font-weight: 500;
    caret-color: #2c3e50; /* Цвет курсора */
    /* Исправление для мобильных устройств */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(44, 62, 80, 0.6) !important;
    -webkit-text-fill-color: rgba(44, 62, 80, 0.6) !important; /* Для Safari на iOS */
    font-weight: 400;
    opacity: 1; /* Firefox override */
}

/* Для Firefox */
.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

/* Для Internet Explorer */
.contact-form input::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffd89b;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 0 20px rgba(255, 216, 155, 0.4);
    color: #2c3e50 !important;
    -webkit-text-fill-color: #2c3e50 !important; /* Для Safari на iOS */
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
    font-size: 0.95rem;
}

.contact-form .btn {
    background: linear-gradient(135deg, #ffd89b 0%, #ffb347 100%);
    color: #764ba2;
    border: none;
    padding: 16px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-form .btn:hover {
    background: linear-gradient(135deg, #ffedd5 0%, #ffe4c4 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 216, 155, 0.5);
    color: #764ba2;
}

.contact-form .btn:active {
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: #001f3a;
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll down indicator - hidden */
.scroll-down {
    display: none;
}

/* Hero plane animation */
.hero-plane {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 2rem;
    animation: flyPlane 8s linear infinite;
    opacity: 0.8;
}

@keyframes flyPlane {
    0% { transform: translateX(-100px) translateY(0) rotate(15deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateX(calc(100vw + 100px)) translateY(-50px) rotate(15deg); opacity: 0; }
}

/* Stat counter animation */
.stat {
    position: relative;
    overflow: hidden;
}

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

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

/* Improved container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section spacing fix for fixed navbar */
#about, #destinations, #contact {
    padding-top: 100px;
}

/* Responsive */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-wrapper {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 5px 0;
        transition: var(--transition);
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-plane {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .company-features,
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .travel-gallery h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .newsletter {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .newsletter input {
        width: 100%;
        max-width: 300px;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-wrapper {
        padding: 1rem;
    }

    .language-switcher {
        gap: 8px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .destination-card h3 {
        font-size: 1.1rem;
        margin: 16px 20px 8px;
    }

    .destination-card p {
        margin: 0 20px 16px;
        font-size: 0.9rem;
    }

    .card-button {
        margin: 0 20px 20px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .stat h4 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.9rem;
    }

    .services-list {
        padding: 20px;
        margin: 20px 0;
    }

    .services-list ul {
        margin-left: 15px;
    }

    .highlight {
        padding: 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .hero-travel-icons {
        display: none;
    }

    .hero-decor svg {
        opacity: 0.08;
    }

    .about-text h2,
    .destinations h2,
    .testimonials h2,
    .travel-gallery h2,
    .contact h2 {
        font-size: 1.6rem;
    }

    .about {
        padding: 60px 0;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-img {
        max-width: 280px;
    }

    .stats {
        gap: 15px;
    }

    .stat {
        padding: 15px;
    }

    .stat h4 {
        font-size: 1.3rem;
    }

    .stat p {
        font-size: 0.85rem;
    }

    .services-list {
        padding: 15px;
    }

    .services-list li {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .highlight {
        padding: 14px;
        font-size: 0.9rem;
    }

    .destinations {
        padding: 60px 0;
    }

    .destination-card h3 {
        font-size: 1.05rem;
        margin: 14px 16px 8px;
    }

    .destination-card p {
        margin: 0 16px 14px;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .card-image {
        min-height: 180px;
    }

    .card-button {
        margin: 0 16px 16px;
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .travel-gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-overlay span {
        font-size: 0.9rem;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-info,
    .contact-form {
        padding: 25px 18px;
    }

    .contact-item i {
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .social-links-contact a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .contact-form .btn {
        padding: 12px 24px;
    }

    footer {
        padding: 30px 0;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .newsletter input {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .newsletter button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Extra small devices (phones, 360px and below) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .about-text h2,
    .destinations h2,
    .testimonials h2,
    .travel-gallery h2,
    .contact h2 {
        font-size: 1.4rem;
    }

    .about-img {
        max-width: 240px;
    }

    .stat h4 {
        font-size: 1.1rem;
    }

    .stat p {
        font-size: 0.8rem;
    }

    .destination-card h3 {
        font-size: 1rem;
    }

    .destination-card p {
        font-size: 0.8rem;
    }

    .card-image {
        min-height: 150px;
    }

    .gallery-grid {
        gap: 8px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-plane,
    .scroll-down,
    .contact-form,
    .newsletter,
    .social-links,
    .social-links-contact {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Scroll to top button mobile styles */
#scrollToTop {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    #scrollToTop {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Notification mobile styles */
.notification {
    max-width: 350px;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .notification {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        padding: 12px 18px;
        font-size: 0.85rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-menu a {
        padding: 12px 16px;
        display: block;
    }

    .destination-card:hover {
        transform: none;
    }

    .gallery-item:hover {
        transform: none;
    }

    .testimonial-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    .feature:hover {
        transform: none;
    }

    /* Remove hover effects that don't work well on touch devices */
    .destination-card:hover .card-image {
        transform: none;
    }

    .gallery-item:hover img {
        transform: none;
    }

    /* Show gallery overlays by default on touch devices */
    .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay span {
        transform: translateY(0);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #004080;
        --secondary-color: #0059b3;
    }
}

/* ========================================
   Testimonial Modal Styles
   ======================================== */

/* Loading testimonials */
.loading-testimonials {
    text-align: center;
    padding: 40px;
    color: var(--light-text);
    font-size: 1.1rem;
}

.loading-testimonials i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    color: var(--primary-color);
}

/* Add testimonial button */
.add-testimonial-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.add-testimonial-btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Modal overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Modal content */
.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Modal close button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--dark-text);
    background: var(--light-bg);
}

/* Modal title */
.modal-content h3 {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Testimonial form */
.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Star rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    background: none;
    border: none;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
    transform: scale(1.1);
}

.star-rating input:checked ~ label {
    color: #ffc107;
}

.star-rating input:checked + label:hover,
.star-rating input:checked + label:hover ~ label {
    color: #ffc107;
}

/* Testimonial form submit button */
.testimonial-form .btn {
    margin-top: 10px;
    padding: 14px;
    font-size: 1.05rem;
}

/* Empty testimonials state */
.empty-testimonials {
    text-align: center;
    padding: 60px 20px;
    color: var(--light-text);
}

.empty-testimonials i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ddd;
}

.empty-testimonials h4 {
    color: var(--dark-text);
    margin-bottom: 10px;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .star-rating label {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 15px;
    }

    .modal-content h3 {
        font-size: 1.3rem;
    }
}

/* ========================================
   Mobile UX Improvements
   ======================================== */

/* Ensure touch targets are at least 44px */
@media (max-width: 768px) {
    /* Buttons - larger touch targets */
    .btn,
    .card-button,
    .action-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Form inputs - easier to tap */
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }

    /* Navigation links - more spacing */
    .nav-menu a {
        display: block;
        padding: 12px 16px;
        min-height: 44px;
    }

    /* Language buttons */
    .lang-btn {
        min-height: 44px;
        padding: 10px 16px;
    }

    /* Star rating - easier to tap on mobile */
    .star-rating label {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Modal close button - larger */
    .modal-close {
        min-width: 44px;
        min-height: 44px;
    }

    /* Contact form - full width on mobile */
    .contact-form {
        width: 100%;
    }

    /* Testimonial button - prominent */
    .add-testimonial-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Scroll to top button - easier to tap */
    #scrollToTop {
        min-width: 50px;
        min-height: 50px;
    }

    /* Social links - larger tap area */
    .social-links-contact a,
    .social-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 10px 16px;
    }

    /* Gallery items - show overlay by default on touch devices */
    .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay span {
        transform: translateY(0);
    }

    /* Footer newsletter - stack vertically */
    .newsletter {
        width: 100%;
    }

    .newsletter input {
        width: 100%;
    }

    .newsletter button {
        width: 100%;
        margin-top: 10px;
    }
}

/* Safe area insets for notched devices (iPhone X+) */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .navbar {
            padding-top: max(10px, env(safe-area-inset-top));
        }

        body {
            padding-bottom: env(safe-area-inset-bottom);
        }

        footer {
            padding-bottom: max(20px, env(safe-area-inset-bottom));
        }
    }
}

/* Prevent text size adjustment on orientation change */
@media screen and (orientation: landscape) {
    html {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}


/* Better mobile navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-wrapper {
        padding: 0.5rem 1rem;
    }

    /* Improved mobile menu */
    .nav-menu {
        top: 60px;
        gap: 0;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 15px 20px;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Better hamburger menu animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Language switcher on mobile */
    .language-switcher {
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
    }

    /* Better hero section on mobile */
    .hero-content {
        padding: 20px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    /* About section mobile improvements */
    .about {
        padding: 60px 0;
    }

    .about-text h2::after {
        width: 60px;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .services-list {
        margin: 20px 0;
    }

    .services-list ul {
        margin-left: 0;
    }

    .services-list li {
        padding-left: 25px;
    }

    /* Stats on mobile */
    .stats {
        gap: 15px;
    }

    .stat {
        padding: 15px;
        border-radius: 15px;
    }

    /* Destinations grid improvements */
    .destinations {
        padding: 60px 0;
    }

    .destinations h2 {
        margin-bottom: 30px;
    }

    .destinations-grid {
        gap: 20px;
    }

    .destination-card {
        border-radius: 20px;
    }

    .card-image {
        min-height: 200px;
    }

    /* Gallery improvements */
    .travel-gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        gap: 12px;
    }

    .gallery-item {
        border-radius: 15px;
    }

    /* Contact section improvements */
    .contact {
        padding: 60px 0;
    }

    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-info {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .contact-form {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        border-radius: 10px;
    }

    /* Footer improvements */
    .footer-content {
        gap: 25px;
    }

    .footer-section {
        padding: 0 10px;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }
}

/* Extra small devices improvements */
@media (max-width: 480px) {
    /* Typography adjustments */
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    /* Navigation */
    .nav-wrapper {
        padding: 0.5rem 0.8rem;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    /* Hero */
    .hero {
        min-height: 350px;
        padding: 60px 15px 40px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    /* About */
    .about {
        padding: 50px 0;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-img {
        max-width: 250px;
    }

    .stat h4 {
        font-size: 1.3rem;
    }

    /* Destinations */
    .destinations {
        padding: 50px 0;
    }

    .destination-card h3 {
        font-size: 1.1rem;
        margin: 15px 16px 8px;
    }

    .destination-card p {
        font-size: 0.85rem;
        margin: 0 16px 15px;
    }

    .card-image {
        min-height: 180px;
    }

    /* Gallery */
    .travel-gallery h2 {
        font-size: 1.4rem;
    }

    .gallery-grid {
        gap: 8px;
    }

    /* Contact */
    .contact {
        padding: 50px 0;
    }

    .contact-info,
    .contact-form {
        padding: 20px 15px;
    }

    .contact-item i {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        padding: 8px;
    }

    /* Footer */
    footer {
        padding: 25px 0;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.85rem;
    }
}

/* Landscape mode optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 20px 60px;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .about {
        padding: 40px 0;
    }

    .about-content {
        gap: 30px;
    }

    .destinations {
        padding: 40px 0;
    }

    .travel-gallery {
        padding: 40px 0;
    }

    .testimonials {
        padding: 40px 0;
    }

    .contact {
        padding: 40px 0;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce shadows for better performance */
    .destination-card,
    .testimonial-card,
    .gallery-item {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .destination-card:hover,
    .testimonial-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    /* Simplify gradients */
    .hero {
        background: linear-gradient(180deg, #0a1628 0%, #153d8c 100%);
    }

    /* Reduce backdrop-filter usage */
    .navbar {
        backdrop-filter: blur(8px);
    }

    .contact-info,
    .contact-form {
        backdrop-filter: blur(10px);
    }
}

/* Improve form usability on mobile */
@media (max-width: 768px) {
    /* Ensure inputs are large enough */
    .contact-form input,
    .contact-form textarea,
    .testimonial-form input,
    .testimonial-form textarea {
        font-size: 16px; /* Prevents iOS zoom */
        min-height: 48px;
    }

    /* Better button sizing */
    .btn {
        min-height: 48px;
        padding: 12px 24px;
    }

    /* Improve select dropdowns */
    select {
        font-size: 16px;
        min-height: 48px;
        padding: 12px 16px;
    }
}

/* Better accessibility on mobile */
@media (max-width: 768px) {
    /* Ensure sufficient contrast */
    .destination-card p,
    .testimonial-card p {
        color: #4a5568;
    }

    /* Larger focus indicators */
    *:focus-visible {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* Better link visibility */
    a {
        text-decoration: none;
        color: var(--primary-color);
    }

    /* Ensure buttons are clearly clickable */
    button,
    .btn,
    .card-button {
        cursor: pointer;
        user-select: none;
    }
}



@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
    }

    body {
        -webkit-overflow-scrolling: touch;
    }

    /* Remove tap highlight color */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Active states for better feedback */
    .btn:active,
    .card-button:active,
    .action-btn:active {
        transform: scale(0.95);
    }

    /* Links - visible active state */
    a:active {
        opacity: 0.7;
    }
}

/* Loading states for better perceived performance */
.loading-testimonials {
    padding: 40px 20px;
}

/* Improve form focus states for accessibility */
@media (max-width: 768px) {
    input:focus,
    textarea:focus,
    select:focus,
    button:focus {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* Modal - prevent body scroll when open */
    body.modal-open {
        position: fixed;
        width: 100%;
        overflow: hidden;
    }

    /* Improve readability */
    p, li {
        line-height: 1.6;
    }

    /* Ensure contrast is sufficient */
    .contact-item p,
    .destination-card p,
    .testimonial-card p {
        color: #4a5568;
    }
}

/* Hide decorative elements on mobile to improve performance */
@media (max-width: 480px) {
    .hero-travel-icons {
        display: none !important;
    }

    .hero-plane {
        display: none !important;
    }

    /* Reduce animation complexity */
    .destination-card:hover,
    .testimonial-card:hover,
    .gallery-item:hover {
        transform: none !important;
    }
}

/* Print styles for mobile */
@media print and (max-width: 768px) {
    .navbar,
    .hero,
    .contact-form,
    .testimonial-modal,
    footer {
        display: none;
    }
}
























































