/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Language Bar */
.language-bar {
    background: #0a0a1a;
    padding: 8px 0;
    border-bottom: 2px solid #00b894;
}

.language-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.language-flags {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-flags .flag {
    opacity: 0.5;
    transition: opacity 0.3s;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
}

.language-flags .flag img {
    height: 20px;
    width: auto;
    display: block;
}

.language-flags .flag:hover,
.language-flags .flag.active {
    opacity: 1;
}

.social-top {
    display: flex;
    gap: 15px;
}

.social-top a {
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s;
}

.social-top a:hover {
    color: #00b894;
}

/* Header */
.header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    color: #0a0a1a;
}

.logo h1 span {
    color: #00b894;
}

.logo .tagline {
    font-size: 12px;
    color: #666;
    font-weight: 400;
    margin-top: -3px;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav ul li a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #00b894;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #1a1a2e;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/753626/pexels-photo-753626.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: #00b894;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: #00b894;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #00a381;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,184,148,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0a0a1a;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* About */
#about {
    background: #f8f9fa;
}

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

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

.experience-badge {
    display: inline-block;
    background: #00b894;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

/* Tours */
#tours {
    background: #ffffff;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tour-card-content {
    padding: 25px;
}

.tour-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.tour-card-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.tour-card-content .btn {
    padding: 10px 30px;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

/* Reviews Section */
#reviews {
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.review-card .stars {
    color: #fdcb6e;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-card .review-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card .reviewer .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00b894;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.review-card .reviewer .name {
    font-weight: 600;
    font-size: 14px;
}

.review-card .reviewer .country {
    font-size: 12px;
    color: #888;
}

/* Review Form */
.review-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.review-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

.review-form .form-group {
    margin-bottom: 15px;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #00b894;
}

.review-form textarea {
    height: 100px;
    resize: vertical;
}

.review-form .stars-input {
    display: flex;
    gap: 10px;
    font-size: 30px;
    cursor: pointer;
}

.review-form .stars-input .star {
    color: #ddd;
    transition: color 0.3s;
}

.review-form .stars-input .star.active {
    color: #fdcb6e;
}

/* Gallery */
#gallery {
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Contact */
#contact {
    background: #0a0a1a;
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #aaa;
    margin-bottom: 15px;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info .contact-item i {
    color: #00b894;
    font-size: 20px;
    width: 30px;
}

.contact-info .contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-info .contact-item a:hover {
    color: #00b894;
}

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.contact-social a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s;
}

.contact-social a:hover {
    color: #00b894;
}

/* Footer */
.footer {
    background: #060612;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #1a1a2e;
}

.footer p {
    color: #666;
    font-size: 14px;
}

.footer a {
    color: #00b894;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .language-flags .flag img {
        height: 16px;
    }
    
    .social-top a {
        font-size: 14px;
    }
    
    .nav {
        display: none;
    }
    
    .nav.open {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav.open ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid img {
        height: 150px;
    }
    
    .review-form {
        padding: 20px;
        margin: 20px 10px 0;
    }
    
    .language-bar .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}