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

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #10b981;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 500;
}

.nav-contact i {
    margin-right: 0.5rem;
    color: #10b981;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 75vh;
    min-height: 480px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px; /* compensate for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Sigurohu qe emri i fotos ketu eshte i saktë, p.sh. fotoja e re qe dergove */
    background-image: url('../images/Gjilani.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    width: min(90%, 900px);
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 600; /* E bëra pak më të trashë që të lexohet më mirë */
    margin-bottom: 1rem;
    letter-spacing: 2px;
    /* Tekst i bardhë i pastër me hije të fortë për kontrast mbi ndërtesat */
    color: #ffffff; 
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Përdorim një gradient të lehtë të zi, jo jeshil */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3), /* Pak e errët lart */
        rgba(0, 0, 0, 0.6)  /* Më e errët poshtë që të lexohet teksti */
    );
    z-index: -1;
}
.welcome-btn {

  background-color: transparent; /* Pa ngjyrë sfondi */
    color: white; /* Teksti i bardhë */
    border: 2px solid white; /* Kornizë e bardhë */
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px; /* Hapësirë mes shkronjave për stil */
    margin-top: 20px;
}

.welcome-btn:hover {
background-color: white; /* Mbushet me të bardhë kur e prek */
    color: #25b205; /* Teksti bëhet i gjelbër (ngjyra e logos) */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* 3. TEKSTI DUHET TE KETE HIJE (Që të lexohet mbi ndërtesat) */
.hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: #ffffff; 
    /* Hije e fortë e zezë që teksti të "kërcejë" jashtë fotos */
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

/* Opsionale: Për ekranet e vogla (Mobile) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}
/* Search Section */
.search-section {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 10;
}

.search-container {
    background: rgba(26, 35, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.search-container h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.search-field {
    position: relative;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    outline: none;
}

.search-field i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Search suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.suggestion-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestion-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-content i {
    color: #2E8B8B;
    font-size: 1.2rem;
}

.suggestion-text h4 {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

.suggestion-text span {
    color: #666;
    font-size: 0.85rem;
}

.suggestion-availability {
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 12px;
    background: #f0f0f0;
    color: #666;
}

.suggestion-availability.available {
    background: #e3f2fd;
    color: #1976d2;
}


.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    z-index: 1;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.info-section {
    margin-bottom: 20px;
}

.info-section h3 {
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section h3 i {
    color: #2E8B8B;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.nearby-places {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.nearby-place {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nearby-place i {
    color: #2E8B8B;
}

.nearby-place small {
    color: #666;
    margin-left: auto;
}

.book-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #2E8B8B;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background: #236B6B;
}

.book-btn i {
    margin-right: 8px;
}

/* Welcome Section */
.welcome {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.welcome h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.welcome p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
/* =========================================
   AI DASHBOARD FIXED LAYOUT
   ========================================= */

.ai-hero-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #f8fcf8 0%, #ffffff 100%);
    display: flex;
    justify-content: center; /* E qendron në mes horizontalisht */
    align-items: center;
    width: 100%;
}

/* Kjo klasë rregullon gjerësinë dhe pozicionin */
.ai-dashboard-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Raporti: Planifikuesi më i gjerë */
    gap: 30px;
    width: 100%;
    max-width: 1100px; /* E bllokon të mos bëhet shumë e gjerë */
    margin: 0 auto; /* Sigurohet që është në qendër */
}

/* --- KARTA E MAJTË (PLANIFIKUESI) --- */
.planner-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.planner-header h3 {
    font-size: 1.6rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 5px;
}
.planner-header p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.step-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Butonat e Kohës */
.time-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.time-option input { display: none; }

.time-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border: 2px solid #f4f4f5;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
    text-align: center;
}

.time-card i { font-size: 1.2rem; color: #bbb; margin-bottom: 8px; }
.time-card span { font-size: 0.85rem; font-weight: 600; color: #555; }

/* Selektimi */
.time-card:hover { border-color: #bbf7d0; background: #f0fdf4; }
.time-option input:checked + .time-card {
    border-color: #25b205;
    background: #f0fdf4;
    box-shadow: 0 4px 15px rgba(37, 178, 5, 0.15);
}
.time-option input:checked + .time-card i { color: #25b205; }
.time-option input:checked + .time-card span { color: #111; }

/* Tagjet e Interesit */
.interests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.interest-tag input { display: none; }
.interest-tag span {
    padding: 10px 18px;
    background: #f4f4f5;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.interest-tag span:hover { background: #e4e4e7; }
.interest-tag input:checked + span {
    background: #25b205;
    color: white;
    box-shadow: 0 4px 10px rgba(37, 178, 5, 0.3);
}

/* Butoni Action */
.big-action-btn {
    width: 100%;
    margin-top: 2rem;
    padding: 16px;
    background: #111;
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.big-action-btn:hover { background: #333; transform: translateY(-2px); }

/* --- KARTA E DJATHTË (MOTI) --- */
.weather-card {
    background: linear-gradient(145deg, #25b205, #15803d);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(37, 178, 5, 0.2);
    position: relative;
    overflow: hidden;
    height: fit-content !important; 
    align-self: flex-start !important;
}

/* Dekori sfondit */
.weather-card::before {
    content: ''; position: absolute; top: -50px; right: -50px; width: 140px; height: 140px;
    background: rgba(255,255,255,0.1); border-radius: 50%;
}

.weather-icon-large { font-size: 3.5rem; margin-bottom: 15px; display: block; }
.weather-temp { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.weather-desc { font-size: 1.1rem; opacity: 0.9; margin-bottom: 25px; }

.weather-tip {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    text-align: left;
}
.weather-tip strong { display: block; font-size: 0.9rem; margin-bottom: 5px; }
.weather-tip p { font-size: 0.85rem; margin: 0; line-height: 1.3; opacity: 0.95; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .ai-dashboard-container {
        grid-template-columns: 1fr; /* Bëhet 1 kolonë në celular */
        max-width: 500px;
    }
}
/* --- Attractions Section Main Layout --- */
.attractions {
    padding: 6rem 0;
    background: #f8f9fa; /* Light gray background */
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* --- Category Tabs (The Green Buttons) --- */
.attractions-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 50px; /* Pill shape */
    background: #e9ecef;
    color: #495057;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tab-btn:hover {
    background: #dee2e6;
    transform: translateY(-2px);
}

/* THE GREEN COLOR YOU WANT */
.tab-btn.active {
    background: #00b074; /* Vivid Green matching your screenshot */
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 176, 116, 0.3);
}

/* --- Javascript Tab Logic Helpers --- */
.attractions-group {
    display: none; /* Hidden by default */
    animation: fadeIn 0.5s ease;
}

.attractions-group.active {
    display: block; /* Show when active */
}

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

/* --- Attraction Cards (Horizontal Layout) --- */
.attractions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.attraction-item {
    display: flex; /* Makes it horizontal */
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft shadow */
    transition: transform 0.3s ease;
    min-height: 280px; /* Consistent height */
}

.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Image on the left */
.attraction-image {
    flex: 0 0 40%; /* Takes up 40% of the width */
    position: relative;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-item:hover .attraction-image img {
    transform: scale(1.05);
}

/* Content on the right */
.attraction-content {
    flex: 1; /* Takes up remaining space */
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.attraction-content h3 {
    font-size: 1.5rem;
    color: #0d4633; /* Dark green title */
    margin-bottom: 1rem;
    font-weight: 700;
}

.attraction-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.attraction-meta .btn-small {
    color: #3b82f6; /* Blue link color */
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.attraction-meta .btn-small:hover {
    border-color: #3b82f6;
}

/* --- Special Styling for Services Grid (Sherbimet) --- */
/* Because services look better as a grid than big list items */
#sherbime {
    display: none; /* Controlled by JS tabs */
}

#sherbime.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

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

.service-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #00b074;
}

.service-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-detail {
    display: inline-block;
    background: #e8f5e9;
    color: #00b074;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: bold;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .attraction-item {
        flex-direction: column; /* Stack vertically on phones */
    }
    
    .attraction-image {
        height: 200px;
    }
    
    .attraction-content {
        padding: 1.5rem;
    }
}
/* Blog Section */
/* =========================================
   MODERN BLOG STYLING (SAME CLASSES)
   ========================================= */

.blog {
    padding: 5rem 1rem;
    background: #f8fcf8; /* Sfond shumë i lehtë jeshil/bardhë */
}

/* Header i Seksionit */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Karta Kryesore */
.blog-card {
    background: white;
    border-radius: 24px; /* Rrumbullakosje moderne */
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 178, 5, 0.15); /* Hije e lehtë jeshile */
}

/* Pjesa e Imazhit */
.blog-image {
    position: relative;
    height: 240px; /* Pak më e lartë se më parë */
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08); /* Zoom efekt */
}

/* Kategoria (tani si Badge sipër fotos) */
.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #25b205; /* Jeshilja e temës */
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

/* Përmbajtja e Tekstit */
.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    margin-bottom: 12px;
}

.blog-date {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Linku (Lexo më shumë) */
.blog-link {
    margin-top: auto; /* E shtyn në fund të kartës */
    color: #25b205;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.blog-link:hover {
    gap: 12px;
    color: #16a34a;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #2c5530;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.3rem;
    margin-right: 1rem;
    color: #e74c3c;
    width: 30px;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    opacity: 0.8;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-2px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background: white;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.submit-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* =========================================
   MODERN FOOTER STYLING
   ========================================= */

.site-footer {
    background-color: #111827; /* Ngjyrë e errët moderne (jo e zezë sterrë) */
    color: #e5e7eb; /* Tekst i bardhë i butë */
    padding: 4rem 1rem 1rem 1rem;
    margin-top: 4rem;
    
    /* Sekreti për pamjen moderne: */
    border-top-left-radius: 40px; 
    border-top-right-radius: 40px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Kolona e parë më e gjerë */
    gap: 40px;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Vijë e vogël jeshile poshtë titujve */
.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #25b205;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* --- LISTAT (Lidhjet & Kontakt) --- */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #25b205; /* Jeshilja kur kalon mausin */
    padding-left: 5px; /* Lëvizje e vogël djathtas */
}

.footer-contact li {
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #25b205;
    font-size: 0.9rem;
}


/* --- FOOTER BOTTOM (Copyright) --- */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    color: #6b7280;
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Bëhet 1 kolonë në celular */
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%); /* Qendron vijën në celular */
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    
    .attraction-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
    }
    
    .ai-assistant {
        padding: 4rem 0;
    }
    
    .ai-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .planner-form select {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        padding-right: 2.5rem;
        background-size: 0.8rem;
        background-position: right 0.8rem center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .location-form .ai-btn {
        width: 100%;
    }
    
    .current-weather {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .weather-icon i {
        font-size: 2.5rem;
    }
    
    .temperature {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-container {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
}
/* Attraction Tabs */
.attractions-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.8rem 1.8rem;
    background: #f1f1f1;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #10b981;
    color: white;
}

.tab-btn:hover {
    background: #10b981;
    color: white;
}

/* Hide groups */
.attractions-group {
    display: none;
}

.attractions-group.active {
    display: block;
}
/* Travel Hub Container */
.travel-hub-section {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 900px;
    z-index: 10;
}

.travel-hub-container {
    background: rgba(26, 35, 46, 0.95); /* The dark color you liked */
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

/* Tabs Navigation */
.hub-tabs {
    display: flex;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hub-tab {
    flex: 1;
    background: none;
    border: none;
    color: #a0aec0;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hub-tab:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}

.hub-tab.active {
    color: #fff;
    background: transparent;
    border-bottom: 3px solid #e74c3c; /* Red accent line */
}

/* Body Content */
.hub-body {
    padding: 2rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

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

/* Form Styles */
.search-form-inline {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 15px;
    align-items: center;
}

.input-group {
    position: relative;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: 0.3s;
}

.input-group:hover {
    background: rgba(255,255,255,0.15);
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.input-group input, 
.input-group select {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    padding: 15px 15px 15px 45px;
    font-size: 1rem;
    outline: none;
}

.input-group select option {
    background: #1a232e;
    color: white;
}

.action-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.action-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* AI Planner Specifics */
.ai-form-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.chip {
    cursor: pointer;
}

.chip input {
    display: none;
}

.chip span {
    display: block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: #ccc;
    font-size: 0.9rem;
    transition: 0.3s;
}

.chip input:checked + span {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.form-column label {
    display: block;
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.ai-btn-action {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Weather Specifics */
.weather-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.weather-icon-large {
    font-size: 3.5rem;
    color: #f1c40f; /* Yellow sun */
}

.weather-text {
    display: flex;
    flex-direction: column;
}

.temp-big {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.weather-condition {
    color: #ccc;
    font-size: 1.1rem;
}

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

.outline-btn:hover {
    background: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
    .search-form-inline {
        grid-template-columns: 1fr;
    }
    
    .travel-hub-section {
        position: relative;
        bottom: 0;
        margin-top: -50px;
        margin-bottom: 40px;
    }
    
    .weather-display {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .weather-main {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}

.services-section {
    padding: 60px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
}/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-section .section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: #2c5530;
}

.services-section .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.service-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    gap: 20px;
}

.service-img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
}

.service-info h3 {
    margin-bottom: 5px;
    color: #10b981;
}

.service-info p {
    margin-bottom: 10px;
    color: #555;
}

.service-detail {
    display: inline-block;
    margin-right: 10px;
    font-size: 0.9rem;
    background: #e0f7f3;
    padding: 5px 10px;
border-radius: 8px;
    color: #0a8c6c;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-img {
        width: 100%;
        height: 200px;
    }
}
/* --- SHTESA PËR KARTËN E RE TË MOTIT --- */

/* Vija ndarëse e hollë */
.weather-divider {
    width: 60%;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 20px auto;
}

/* Kontejneri i listës së aktiviteteve */
.weather-activities {
    text-align: left;
    background: rgba(0, 0, 0, 0.1); /* Sfond pak i errët për kontrast */
    padding: 20px;
    border-radius: 16px;
    width: 100%;
}

.weather-activities h5 {
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.weather-activities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.weather-activities li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-activities li i {
    color: #bbf7d0; /* Ngjyrë jeshile e hapur për ikonat e vogla */
    width: 20px;
    text-align: center;
}

.weather-activities li:last-child {
    margin-bottom: 0;
}
/* =========================================
   ITENERARI FINAL - NJË RRESHT I QARTË
   ========================================= */

/* 1. Kutia e Bardhë Kryesore */
#trip-result {
    background-color: #ffffff !important; /* Sfond i bardhë */
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Hije e butë */
    text-align: left;
    border: 1px solid #eee;
}

/* Titulli i planit */
#trip-result h4 {
    color: #1a202c !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* 2. Rreshti i Aktivitetit (FLEXBOX MAGIC) */
.trip-activity {
    display: flex !important;       /* I detyron të rrinë në rresht */
    align-items: center !important; /* I qendron vertikalisht */
    padding: 15px 10px;
    border-bottom: 1px solid #f7f7f7;
    transition: background 0.2s;
}

.trip-activity:last-child {
    border-bottom: none;
}

.trip-activity:hover {
    background-color: #f8fcf9; /* Sfond shumë i lehtë jeshil kur e prek */
    border-radius: 8px;
}

/* 3. Kolona 1: ORA (Majtas) */
.activity-time {
    width: 60px !important;        /* Gjerësi fikse që të jenë të gjitha drejt */
    flex-shrink: 0;                /* Nuk lejon të ngushtohet */
    color: #2f855a !important;     /* Jeshile e errët */
    font-weight: 800;
    font-size: 0.95rem;
}

/* 4. Kolona 2: Emri i Aktivitetit (Mes) */
.activity-name {
    flex-grow: 1;                  /* Merr gjithë hapësirën e lirë në mes */
    color: #2d3748 !important;     /* Gri e errët (shumë e dukshme) */
    font-weight: 600;
    font-size: 1rem;
    margin: 0 15px;                /* Hapësirë majtas dhe djathtas */
}

/* 5. Kolona 3: Kohëzgjatja (Djathtas) */
.activity-duration {
    flex-shrink: 0;                /* Nuk lejon të ngushtohet */
    background-color: #edf2f7 !important;
    color: #718096 !important;     /* Gri */
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;           /* Nuk lejon tekstin të zbresë poshtë */
}