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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.hero {
    /* Optimized background with WebP format for better performance */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                image-set(
                    url('./riviera-background.webp') type('image/webp'),
                    url('./riviera-background.jpg') type('image/jpeg')
                );
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.tour-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
    /* ИНСТРУКЦИЯ: Замените фоновый градиент на ваше фото */
    /* Пример: background: url('./images/monaco-tour.jpg'); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
}

.tour-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent);
}

/* Gallery styles */
.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    top: 50%;
    transform: translateY(-50%);
}

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

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 20px 15px;
    cursor: pointer;
    font-size: 30px;
    border-radius: 5px;
    transition: background 0.3s;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.5);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.tour-title {
    font-size: 1.4rem;
    color: #2d3748;
    flex: 1;
}

.tour-duration {
    background: #fef3c7;
    color: #92400e;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 10px;
}

.tour-tagline {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-style: italic;
}

.tour-description {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
    padding: 12px 15px;
    background: #f8f9fa;
    border-left: 3px solid #667eea;
    border-radius: 4px;
}

.tour-description a {
    font-weight: 500;
    transition: opacity 0.3s;
}

.tour-description a:hover {
    opacity: 0.7;
}

.tour-highlights {
    margin: 15px 0;
}

.tour-highlights h4 {
    font-size: 0.9rem;
    color: #667eea;
    margin-bottom: 8px;
    font-weight: 600;
}

.tour-highlights ul {
    list-style: none;
    padding: 0;
}

.tour-highlights li {
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.tour-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.feature-tag {
    background: #f0f4ff;
    color: #667eea;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.tour-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.tour-price-old {
    font-size: 0.95rem;
    color: #667eea;
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 500;
}

.tour-price-discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    box-shadow: 0 2px 4px rgba(245, 87, 108, 0.3);
}

.tour-price-new {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f5576c;
    letter-spacing: -0.5px;
}

.details-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.details-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.close {
    color: white;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.close:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    color: #667eea;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.modal-body p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.modal-body ul {
    margin-left: 20px;
    color: #555;
}

.modal-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.itinerary-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #667eea;
}

.itinerary-item strong {
    color: #667eea;
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.includes-item {
    display: flex;
    align-items: start;
    gap: 10px;
}

.includes-item.included::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.includes-item.not-included::before {
    content: '✗';
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

.book-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.book-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.about-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #e9f2ff 100%);
    padding: 80px 20px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

/* Reviews Slider Styles */
.reviews-section {
    background: white;
    padding: 80px 20px;
}

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

.slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    padding: 40px;
    box-sizing: border-box;
}

.review-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: bold;
    color: #667eea;
    font-size: 1rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    width: 30px;
    border-radius: 5px;
}

footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
}

/* Floating Social Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.social-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.telegram-button {
    background: linear-gradient(135deg, #0088cc 0%, #0088cc 100%);
}

.email-button {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.social-button:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

.telegram-button:hover {
    animation: pulseTelegram 1s infinite;
}

@keyframes pulseTelegram {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 136, 204, 0.6);
    }
}

.email-button:hover {
    animation: pulseEmail 1s infinite;
}

@keyframes pulseEmail {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(234, 67, 53, 0.6);
    }
}

/* Email Modal Styles */
.email-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.email-modal-content {
    background: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

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

.email-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.email-modal-close:hover {
    color: #333;
}

.email-modal h2 {
    color: #2d3748;
    margin-bottom: 10px;
}

.email-modal p {
    color: #718096;
    margin-bottom: 20px;
}

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

.email-form-group label {
    display: block;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 8px;
}

.email-form-group input,
.email-form-group textarea,
.email-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.email-form-group input:focus,
.email-form-group textarea:focus,
.email-form-group select:focus {
    outline: none;
    border-color: #EA4335;
}

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

.email-submit-button {
    width: 100%;
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.email-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(234, 67, 53, 0.4);
}

.email-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    font-size: 40px;
    margin: 10px 0;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

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

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

.email-form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.email-form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.email-form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* Tooltip */
.social-button::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: #2d3748;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.social-button:hover::before {
    opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .social-button {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .social-button::before {
        display: none;
    }
}

/* Language Switcher Styles */
.language-switcher {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
    display: flex !important;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    visibility: visible !important;
    opacity: 1 !important;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #667eea !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-block !important;
    visibility: visible !important;
}

.lang-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .language-switcher {
        padding: 4px;
    }

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

/* Cookie Consent Modal */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.98) 0%, rgba(118, 75, 162, 0.98) 100%);
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent.show {
    display: block;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-accept-btn {
    background: white;
    color: #667eea;
}

.cookie-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-decline-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-decline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px 15px;
    }

    .cookie-consent-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-consent-text {
        min-width: 100%;
    }

    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }

    .cookie-consent-text p {
        font-size: 0.9rem;
    }

    .cookie-consent-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-consent-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Contact & Map Section */
.contact-map-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 20px;
    margin-top: 60px;
}

.contact-map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map-title {
    text-align: center;
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-map-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-box h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-item-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.contact-item-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

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

.google-business-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.google-business-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.map-box {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 450px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

@media (max-width: 968px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-title {
        font-size: 2rem;
    }

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

/* ==========================
   Tour Pages Specific Styles
   ========================== */

/* Header and Navigation */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #667eea;
}

.lang-switcher {
    display: flex;
    gap: 5px;
}

/* Tour Page Hero Section */
.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.tour-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.meta-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.meta-item span:first-child {
    font-size: 1.5rem;
}

/* Section Styles */
.section {
    margin-bottom: 60px;
}

.section h2 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 20px;
}

.section h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin: 30px 0 15px 0;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery picture {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

/* Highlights List */
.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Itinerary Item */
.itinerary-item .time {
    color: #999;
    font-size: 0.95rem;
    margin-left: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #e9f2ff 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.price-info {
    margin-bottom: 30px;
}

.price-info-old {
    font-size: 1.2rem;
    color: #667eea;
    text-decoration: line-through;
    opacity: 0.7;
    display: inline-block;
    margin-right: 10px;
}

.price-info-discount-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    margin-left: 10px;
}

.price-info-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f5576c;
    display: block;
    margin-top: 10px;
}

.book-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 50px;
    border-radius: 50px;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Social Sharing */
.social-sharing {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    text-align: center;
}

.social-sharing h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 25px;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-share-btn.facebook {
    background: #1877f2;
}

.social-share-btn.twitter {
    background: #1da1f2;
}

.social-share-btn.linkedin {
    background: #0077b5;
}

.social-share-btn.whatsapp {
    background: #25d366;
}

.social-share-btn.email {
    background: #ea4335;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #cbd5e0;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: #667eea;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
}

/* Related Tours Section */
.related-tours {
    margin: 80px 0;
    padding: 40px 0;
}

.related-tours h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 40px;
    text-align: center;
}

.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.related-tour-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.related-tour-card picture {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-tour-card:hover img {
    transform: scale(1.05);
}

.related-tour-info {
    padding: 25px;
}

.related-tour-info h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.related-tour-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.related-tour-cta {
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.related-tour-card:hover .related-tour-cta {
    color: #764ba2;
}

/* Responsive Design for Tour Pages */
@media (max-width: 768px) {
    .tour-meta {
        flex-direction: column;
        align-items: center;
    }

    .meta-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .price-info-new {
        font-size: 2rem;
    }

    .social-share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-share-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .related-tours-grid {
        grid-template-columns: 1fr;
    }

    .related-tour-card picture {
        height: 180px;
    }
}
