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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1470004914212-05527e49370b?w=1600') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0;
}

.service-card p {
    color: #666;
}

/* Why Guided Tour Section */
.why-guided {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

.why-guided h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-guided-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #667eea;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    background: #2c3e50;
    color: white;
    padding: 5rem 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    font-style: italic;
}

.testimonial-author {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.contact-item {
    background: rgba(255,255,255,0.2);
    padding: 1rem 2rem;
    border-radius: 10px;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

/* Social Paragraph in About */
.social-paragraph {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.social-paragraph a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-paragraph a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a252f;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lang-switcher a,
.lang-switcher .lang-active {
    display: inline-block;
    color: #2c3e50;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s, color 0.3s;
}

.lang-switcher a:hover {
    background: #f0f0f0;
}

.lang-switcher .lang-active {
    background: #2c3e50;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .tagline {
        font-size: 1.2rem;
    }
    
    .lang-switcher {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .lang-switcher a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}
