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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2E4057;
    background-color: #F5F0E6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #2D5A27;
}

a {
    text-decoration: none;
}

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

/* ===== NAVBAR ===== */
.navbar {
    background-color: #2D5A27;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F5F0E6;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li a {
    color: #F5F0E6;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.nav-links li a:hover {
    border-bottom-color: #B86F52;
}

.menu-toggle {
    display: none;
    color: #F5F0E6;
    font-size: 2rem;
    cursor: pointer;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 1rem;
}

.lang-btn {
    color: #F5F0E6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-btn.active {
    color: #B86F52;
    font-weight: 700;
}

.lang-divider {
    color: #6A8D92;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
        justify-content: center;
    }
}

.btn-plan {
    background-color: #B86F52;
    color: #F5F0E6;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #B86F52;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-plan:hover {
    background-color: #9e5e45;
    border-color: #9e5e45;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(45, 90, 39, 0.8), rgba(106, 141, 146, 0.8)), url('https://images.unsplash.com/photo-1587574293340-e0011c4e8ecf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    color: #F5F0E6;
    padding: 6rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #F5F0E6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0d0;
}

.hero-btn {
    background-color: #B86F52;
    color: #F5F0E6;
    padding: 0.8rem 2.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    transition: background 0.3s;
    border: 2px solid #B86F52;
}

.hero-btn:hover {
    background-color: #9e5e45;
    border-color: #9e5e45;
}

/* ===== MAP SECTION ===== */
.map-section {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.map-container {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    border: 1px solid rgba(106, 141, 146, 0.3);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.map-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.map-title i {
    font-size: 2rem;
    color: #B86F52;
}

.map-title h2 {
    color: #2D5A27;
    font-size: 1.8rem;
    margin: 0;
}

.map-subtitle {
    color: #6A8D92;
    font-weight: 500;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed #6A8D92;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    align-items: start;
}

.map-leaflet {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    border: 3px solid #2D5A27;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 1;
}

/* ===== CUSTOM POPUP STYLES ===== */
.custom-popup .leaflet-popup-content-wrapper {
    background: #F5F0E6;
    border-radius: 16px;
    border: 3px solid #2D5A27;
    padding: 0;
    overflow: hidden;
    width: 280px !important;
}

.custom-popup .leaflet-popup-content {
    margin: 0;
    padding: 0;
    width: 100% !important;
}

.custom-popup .leaflet-popup-tip {
    background: #F5F0E6;
    border: 2px solid #2D5A27;
}

.popup-container {
    width: 100%;
}

.popup-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-bottom: 3px solid #B86F52;
}

.popup-content {
    padding: 1rem;
}

.popup-title {
    color: #2D5A27;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.popup-description {
    font-size: 0.9rem;
    color: #2E4057;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.popup-link {
    display: inline-block;
    background-color: #B86F52;
    color: #F5F0E6;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.popup-link:hover {
    background-color: #9e5e45;
}

/* Custom marker styles */
.custom-marker {
    background: none;
    border: none;
}

.custom-marker i {
    font-size: 32px;
    color: #B86F52;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.custom-marker i:hover {
    transform: scale(1.2);
}

/* Map Legend */
.map-legend {
    background: #F5F0E6;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #6A8D92;
    height: fit-content;
}

.legend-title {
    font-weight: 700;
    color: #2D5A27;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destinations-list {
    list-style: none;
    margin-top: 0.5rem;
    max-height: 380px;
    overflow-y: auto;
}

.destinations-list li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #B86F52;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.destinations-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.destinations-list li i {
    color: #B86F52;
    font-size: 1rem;
    min-width: 20px;
}

.destinations-list li .dest-name {
    font-weight: 600;
    color: #2D5A27;
    min-width: 80px;
}

.destinations-list li .dest-desc {
    color: #2E4057;
    font-size: 0.85rem;
}

.legend-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #6A8D92;
    color: #6A8D92;
    font-size: 0.8rem;
    font-style: italic;
}

/* ===== KOSOVO EXPERIENCE SECTION ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #B86F52;
    margin: 0.5rem auto 0;
}

.section-header p {
    color: #6A8D92;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.experiences {
    padding: 4rem 0;
    background: #fff;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.exp-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.exp-card-1 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('fotot/13.jpg');
    background-size: cover;
    background-position: center;
}

.exp-card-2 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('fotot/5.webp');
    background-size: cover;
    background-position: center;
}

.exp-card-3 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('fotot/8.jpg');
    background-size: cover;
    background-position: center;
}

.exp-card-4 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('fotot/4.jpg');
    background-size: cover;
    background-position: center;
}

.exp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.exp-card:hover .exp-overlay {
    background: linear-gradient(to top, rgba(45, 90, 39, 0.8), rgba(0,0,0,0.3));
}

.exp-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #F5F0E6;
    z-index: 2;
}

.exp-content i {
    font-size: 2rem;
    color: #B86F52;
    margin-bottom: 1rem;
    display: inline-block;
}

.exp-content h3 {
    font-size: 1.5rem;
    color: #F5F0E6;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.exp-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.exp-link {
    display: inline-block;
    color: #B86F52;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.exp-link:hover {
    color: #F5F0E6;
    transform: translateX(5px);
}

/* Quick Stats Section */
.quick-stats {
    background: linear-gradient(135deg, #2D5A27 0%, #1e3b1a 100%);
    padding: 4rem 0;
    color: #F5F0E6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #B86F52;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1a2f2a;
    color: #F5F0E6;
    margin-top: 0;
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(106, 141, 146, 0.3);
}

.footer-col h3 {
    font-size: 1.2rem;
    color: #F5F0E6;
    margin-bottom: 1.2rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #B86F52;
    margin-top: 0.5rem;
}

.footer-logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #F5F0E6;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
    color: #C0C8D0;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(245, 240, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F0E6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #B86F52;
    transform: translateY(-3px);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #C0C8D0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #B86F52;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #B86F52;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #C0C8D0;
    margin-bottom: 1rem;
}

.footer-contact li i {
    width: 20px;
    color: #B86F52;
    font-size: 1rem;
}

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #F5F0E6;
}

.footer-newsletter p {
    font-size: 0.8rem;
    color: #C0C8D0;
    margin-bottom: 1rem;
}

.newsletter-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-group input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 40px;
    font-family: inherit;
    background: rgba(245, 240, 230, 0.1);
    color: #F5F0E6;
    outline: none;
    transition: all 0.3s;
}

.newsletter-group input:focus {
    background: rgba(245, 240, 230, 0.2);
}

.newsletter-group input::placeholder {
    color: #8A9A9A;
}

.newsletter-group button {
    background: #B86F52;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #F5F0E6;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-group button:hover {
    background: #9e5e45;
    transform: translateX(3px);
}

.newsletter-note {
    font-size: 0.7rem;
    margin-top: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-bottom-content p {
    color: #8A9A9A;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #8A9A9A;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #B86F52;
}

.newsletter-success {
    background: rgba(184, 111, 82, 0.2);
    border: 1px solid #B86F52;
    padding: 0.8rem;
    border-radius: 40px;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.newsletter-success.show {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 900px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
    
    .map-leaflet {
        height: 450px;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1.2rem;
        padding: 2rem 0 1rem 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
        width: 100%;
        justify-content: center;
        padding-bottom: 1rem;
    }

    .nav-cta.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .map-container {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-title h2 {
        font-size: 1.4rem;
    }
    
    .map-leaflet {
        height: 400px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.map-section,
.experiences,
.quick-stats,
.exp-card,
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.map-section.visible,
.experiences.visible,
.quick-stats.visible,
.exp-card.visible,
.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect for experience cards */
.experiences.visible .exp-card:nth-child(1) { transition-delay: 0.1s; }
.experiences.visible .exp-card:nth-child(2) { transition-delay: 0.2s; }
.experiences.visible .exp-card:nth-child(3) { transition-delay: 0.3s; }
.experiences.visible .exp-card:nth-child(4) { transition-delay: 0.4s; }

/* Stagger effect for stats */
.quick-stats.visible .stat-item:nth-child(1) { transition-delay: 0.1s; }
.quick-stats.visible .stat-item:nth-child(2) { transition-delay: 0.2s; }
.quick-stats.visible .stat-item:nth-child(3) { transition-delay: 0.3s; }
.quick-stats.visible .stat-item:nth-child(4) { transition-delay: 0.4s; }