/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e5e7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar-brand .logo {
    text-decoration: none;
    color: #1d1d1f;
}

.navbar-brand h1 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.nav-menu a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007aff;
}

/* Navigation Dropdown */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    background: none;
    border: none;
    color: #1d1d1f;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    padding: 0;
    text-decoration: none;
}

.nav-menu .dropdown-toggle:hover {
    color: #007aff;
}

.nav-menu .dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    list-style: none;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.nav-menu .dropdown-menu a:hover {
    background-color: #f5f5f7;
    color: #007aff;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* eSIM Button */
.esim-btn {
    background: linear-gradient(135deg, #007aff, #34c759);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.esim-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.4);
    color: white;
    text-decoration: none;
}

.esim-btn i {
    font-size: 0.8rem;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background-color: #f5f5f7;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #1d1d1f;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f7;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    overflow: hidden;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Collage */
.hero-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.collage-item:hover {
    z-index: 10;
}

.collage-item:hover img {
    animation: none;
    transform: scale(1.05);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    animation: breathing 4s ease-in-out infinite;
}

.collage-item:hover img {
    transform: scale(1.05);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Attractions Grid для 3 карточек */
.attractions-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.attraction-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.attraction-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.attraction-content {
    padding: 1.5rem;
}

.attraction-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.attraction-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.attraction-description {
    color: #86868b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.attraction-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.attraction-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.attraction-price {
    font-weight: 600;
    color: #007aff;
}

.attraction-city {
    color: #86868b;
    font-size: 0.9rem;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.city-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.city-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.city-image:before {
    content: attr(alt);
    text-align: center;
    padding: 1rem;
}

.city-content {
    padding: 1.5rem;
}

.city-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.city-description {
    color: #86868b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: #007aff;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: #0056cc;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #007aff;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #86868b;
    margin-bottom: 1.5rem;
}

/* Contact Form */
/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.contact-section h2 {
    margin-bottom: 2rem;
    color: #1d1d1f;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.map-container {
    margin-bottom: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-container iframe {
    border-radius: 12px;
    width: 100%;
    height: 400px;
}

.contact-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007aff;
}

/* Contact Info Section */
.contact-info-section {
    margin-bottom: 3rem;
}

.contact-info-section h2 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info-section p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    min-width: 20px;
}

.contact-item span {
    font-size: 1rem;
    color: #333;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1d1d1f;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #f5f5f7;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #007aff;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #0056cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e7;
    color: #86868b;
}

/* Mobile Menu */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #1d1d1f;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Design */

/* Desktop Small */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }
    
    .hero-collage {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Tablet Landscape */
@media (max-width: 834px) {
    .esim-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-collage {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-collage {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .excursions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-info-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-section p {
        font-size: 1rem;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 1fr);
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-section h2 {
        font-size: 1.3rem;
    }
    
    .contact-info-section p {
        font-size: 0.9rem;
    }
    
    .contact-details {
        gap: 0.75rem;
    }
    
    .contact-item {
        padding: 0.5rem;
    }
    
    .contact-item i {
        font-size: 1rem;
        margin-right: 0.75rem;
    }
    
    .excursions-grid {
        grid-template-columns: 1fr;
    }
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #86868b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    margin-bottom: 1.5rem;
}

.blog-date {
    color: #86868b;
    font-size: 0.9rem;
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-post-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e5e7;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    color: #86868b;
    font-size: 0.9rem;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.blog-post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.blog-post-footer {
    padding: 2rem;
    border-top: 1px solid #e5e5e7;
    text-align: center;
}

.btn-secondary {
    background: #86868b;
}

.btn-secondary:hover {
    background: #6e6e73;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Hotels Grid для 3 карточек */
.hotels-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hotel-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hotel-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hotel-city {
    color: #007aff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: #ff9500;
    margin-right: 0.5rem;
}

.rating-text {
    color: #86868b;
    font-size: 0.9rem;
}

.hotel-description {
    color: #86868b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hotel-amenities {
    margin-bottom: 1rem;
}

.amenity-tag {
    background: #f5f5f7;
    color: #86868b;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Restaurants Grid */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Restaurants Grid для 3 карточек */
.restaurants-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.restaurant-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.restaurant-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant-content {
    padding: 1.5rem;
}

.restaurant-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.restaurant-cuisine {
    color: #007aff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.restaurant-description {
    color: #86868b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Excursions Grid */
.excursions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Excursions Grid для 3 карточек */
.excursions-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.excursion-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.excursion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.excursion-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.excursion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.excursion-content {
    padding: 1.5rem;
}

.excursion-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.excursion-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #86868b;
}

.excursion-description {
    color: #86868b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* City Page Styles */
.city-description {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.city-description h2 {
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.city-description h3 {
    color: #1d1d1f;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.city-description p {
    color: #424245;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.city-description ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.city-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #424245;
}

.city-description strong {
    color: #1d1d1f;
    font-weight: 600;
}

.city-description em {
    font-style: italic;
    color: #666;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.attractions-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.attractions-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f5f5f7;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.attractions-list li:hover {
    background: #e5e5e7;
}

.attraction-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.city-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.info-item {
    background: #f5f5f7;
    padding: 1rem;
    border-radius: 12px;
    color: #86868b;
}

.info-item strong {
    color: #1d1d1f;
}

.section-subtitle {
    text-align: center;
    color: #86868b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.hotel-actions,
.excursion-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e7;
}

.hotel-price,
.excursion-price {
    font-weight: 600;
    color: #007aff;
    font-size: 1.1rem;
}

.planning-section {
    text-align: center;
    background: #f5f5f7;
    padding: 3rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.planning-section h2 {
    color: #1d1d1f;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.planning-section p {
    color: #86868b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.planning-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #e5e5e7;
    font-size: 1.2rem;
}

.star.filled {
    color: #ffd700;
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Attractions Grid для 3 карточек */
.attractions-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.attraction-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.attraction-content {
    padding: 1.5rem;
    text-align: center;
}

.attraction-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.attraction-title {
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.attraction-description {
    color: #86868b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Attraction Details Page */
.attraction-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.attraction-main-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.attraction-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attraction-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.attraction-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.attraction-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.attraction-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-tag {
    background: #007aff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.attraction-description {
    line-height: 1.8;
    color: #86868b;
    font-size: 1.1rem;
}

.attraction-gallery {
    margin-top: 2rem;
}

.attraction-gallery h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attraction-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.attraction-actions .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .attraction-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .attraction-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .attraction-header h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .attraction-actions {
        flex-direction: column;
    }
    
    .attraction-actions .btn {
        min-width: auto;
    }
}

/* Costa Blanca Overview Styles */
.costa-blanca-overview {
    width: 100%;
}

.overview-content {
    margin-top: 2rem;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #86868b;
    margin-bottom: 1.5rem;
}

.overview-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 2rem 0 1rem;
}

.overview-content ul {
    margin: 1rem 0 1.5rem;
    padding-left: 2rem;
}

.overview-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: #86868b;
    margin-bottom: 0.5rem;
}

.overview-content strong {
    color: #1d1d1f;
    font-weight: 600;
}

.overview-content a {
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
}

.overview-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .overview-content p {
        font-size: 1rem;
    }
    
    .overview-content h3 {
        font-size: 1.3rem;
    }
    
    .overview-content li {
        font-size: 0.95rem;
    }
} 

/* Cuisine Types Section */
.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cuisine-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.cuisine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cuisine-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.cuisine-content {
    padding: 1.5rem;
}

.cuisine-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cuisine-description {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.cuisine-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #f5f5f7;
    color: #1d1d1f;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e5e5e7;
}

@media (max-width: 768px) {
    .cuisine-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cuisine-card {
        margin-bottom: 1rem;
    }
    
    .cuisine-content {
        padding: 1.25rem;
    }
    
    .cuisine-title {
        font-size: 1.1rem;
    }
}

/* eSIM Section */
.esim-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    padding: 4rem 0;
    transition: all 0.5s ease;
}

.esim-section:target {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    box-shadow: inset 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.esim-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.esim-text h3 {
    color: #1d1d1f;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.esim-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.esim-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.esim-benefits li {
    color: #4a5568;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    font-size: 1rem;
}

.esim-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.esim-highlights .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.esim-cta {
    position: sticky;
    top: 2rem;
}

.esim-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e3f2fd;
}

.esim-card h4 {
    color: #1d1d1f;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.esim-card p {
    color: #6e6e73;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.esim-main-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    margin-bottom: 1rem;
}

.esim-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    color: white;
    text-decoration: none;
}

.esim-note {
    color: #8e8e93;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Адаптивность для eSIM секции */
@media (max-width: 768px) {
    .esim-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .esim-cta {
        position: static;
    }
    
    .esim-highlights {
        flex-direction: column;
    }
    
    .esim-highlights .highlight {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Плавающая кнопка eSIM */
.floating-esim {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.floating-esim-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-esim-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    color: white;
    text-decoration: none;
    animation: none;
}

.floating-esim-btn i {
    font-size: 1rem;
}

.floating-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
}

/* Адаптивность для плавающей кнопки */
@media (max-width: 768px) {
    .floating-esim {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-esim-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .floating-text {
        display: none;
    }
}

/* GetYourGuide Widget Styles */
.gyg-widget-container {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.gyg-widget-container div[data-gyg-href] {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gyg-widget-container span {
    font-size: 0.875rem;
    color: #6c757d;
}

.gyg-widget-container a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.gyg-widget-container a:hover {
    text-decoration: underline;
}

/* Widget integration in excursion cards */
.excursion-card .gyg-widget-container {
    margin: 0.5rem 0;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid #dee2e6;
}

.excursion-card .gyg-widget-container div[data-gyg-href] {
    min-height: 50px;
}

/* Widget integration in attraction cards */
.attraction-card .gyg-widget-container {
    margin: 0.5rem 0;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid #dee2e6;
}

/* Responsive adjustments for widgets */
@media (max-width: 768px) {
    .gyg-widget-container {
        padding: 0.75rem;
    }
    
    .gyg-widget-container div[data-gyg-href] {
        min-height: 50px;
    }
    
    .gyg-widget-container span {
        font-size: 0.8rem;
    }
}

 