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

html {
    background-color: #e0e0e0 !important;
    background: #e0e0e0 !important;
}

body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1.8;
    background-color: #e0e0e0 !important;
    background: #e0e0e0 !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 8%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 130px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: flex-start;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    margin-top: 0.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a:not(.lang-link) {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
    margin-left: 1.5rem;
    text-decoration: none;
}

.nav-links a:not(.lang-link):first-child {
    margin-left: 0;
}

.nav-links a:not(.lang-link):hover {
    color: #C19A6B;
}

.language-switcher {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.location-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: #666;
    white-space: nowrap;
    line-height: 1;
    margin-top: 0.3rem;
}

.lang-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
}

.lang-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-link.active {
    color: #C19A6B;
}

.lang-link:hover {
    color: #C19A6B;
}

.lang-separator {
    color: #ccc;
}

.hero {
    min-height: 150vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #1a1a1a;
    padding: 0 1rem;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.hero-collage {
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    z-index: 0;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 2rem;
    font-style: italic;
    letter-spacing: 2px;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.8);
    font-weight: 400;
    color: #333;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.hero p {
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #8B6914 0%, #6B5010 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(139, 105, 20, 0.3);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #9B7A24 0%, #7B6020 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(139, 105, 20, 0.4);
}

.pricing-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #B8860B;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(184, 134, 11, 0.6);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.pricing-link:hover {
    border-bottom-color: #B8860B;
    transform: translateY(-1px);
    color: #B8860B;
}

section {
    padding: 8rem 12%;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.feature {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.tour-card {
    background: white;
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

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

.tour-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: left;
}

.tour-card p {
    color: #C19A6B;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.tour-card ul {
    margin-top: 2rem;
    list-style: none;
    margin-left: 0;
}

.tour-card li {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.tour-card li:before {
    content: "•";
    color: #C19A6B;
    position: absolute;
    left: 0;
}

.contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact input,
.contact textarea {
    padding: 1.2rem;
    margin: 0.8rem 0;
    border: 1px solid #e1e1e1;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #C19A6B;
    outline: none;
}

.contact button {
    background: linear-gradient(135deg, #8B6914 0%, #6B5010 100%);
    padding: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(139, 105, 20, 0.3);
    position: relative;
    overflow: hidden;
}

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

.contact button:hover::before {
    left: 100%;
}

.contact button:hover {
    background: linear-gradient(135deg, #9B7A24 0%, #7B6020 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(139, 105, 20, 0.4);
}

footer {
    text-align: center;
    padding: 3rem;
    background: #1a1a1a;
    color: white;
}

footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        gap: 1rem;
    }
    
    .nav-links a:not(.lang-link) {
        display: none;
    }
    
    .language-switcher {
        margin-left: 0;
    }
    
    .hero {
        min-height: 120vh;
        padding: 0 1.5rem;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
        padding: 0 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-top: 0.5rem;
    }

    .hero p {
        font-size: 1.2rem;
        padding: 0 1rem;
        margin-top: 0.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.8rem;
        margin-top: 1.5rem;
    }

    .pricing-link {
        font-size: 1rem;
        margin-top: 1rem;
    }

    section {
        padding: 3rem 5%;
    }
} 

.tours-note {
    text-align: center;
    margin-top: 4rem;
}

.tours-note p {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: #C19A6B;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.contact-info {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 5px;
    text-decoration: none;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-button img {
    width: 24px;
    height: 24px;
    color: currentColor;
}

.contact-button.whatsapp:hover {
    background: #25D366;
    color: white;
}

.contact-button.telegram:hover {
    background: #0088cc;
    color: white;
}

.contact-button.phone:hover {
    background: #8B6914;
    color: white;
}

.contact-note {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* Pricing Section */
.pricing {
    background: #f8f9fa;
}

.pricing-intro {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 1.2rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #C19A6B;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #C19A6B;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.price .currency {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #C19A6B;
    margin-right: 0.3rem;
    margin-top: 0.5rem;
}

.price .amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #C19A6B;
}

.price .period {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-left: 0.3rem;
    align-self: flex-end;
    margin-bottom: 0.8rem;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C19A6B;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8B6914 0%, #6B5010 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(139, 105, 20, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.pricing-cta:hover::before {
    left: 100%;
}

.pricing-cta:hover {
    background: linear-gradient(135deg, #9B7A24 0%, #7B6020 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(139, 105, 20, 0.4);
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, #8B6914 0%, #6B5010 100%);
    box-shadow: 0 8px 22px rgba(139, 105, 20, 0.35);
}

.pricing-card.featured .pricing-cta:hover {
    background: linear-gradient(135deg, #9B7A24 0%, #7B6020 100%);
    box-shadow: 0 12px 30px rgba(139, 105, 20, 0.45);
}

.pricing-note {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 0.95rem;
    margin-top: 3rem;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .price .amount {
        font-size: 3rem;
    }

    .pricing-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .pricing-note {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
} 

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

    .hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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