/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
}

/* HERO SECTION */
.hero {
    width: 100%;
    height: 100vh;
    background: url('/images/image.jpg') no-repeat center center/cover;
    position: relative;
}

/* Dark overlay */
.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
}

/* Content */
.hero-content {
    max-width: 700px;
    margin-left: 8%;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button */
.hero-btn {
    background: transparent;      /* transparent normal */
    border: 2px solid white;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/* Hover efekt */
.hero-btn:hover {
    background: white;
    color: black;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 90vh;
    }

    .hero-content {
        margin-left: 5%;
        margin-right: 5%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .hero-btn {
        padding: 12px 22px;
    }
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0,0,0,0.65);
    justify-content: center;
    align-items: center;
    padding: 20px; /* rëndësishme për mobile */
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* Title */
.modal-content h2 {
    margin-bottom: 25px;
    font-size: 22px;
}

/* Buttons container */
.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Buttons */
.modal-btn {
    padding: 14px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    display: block;
    width: 90%;
}

/* iOS */
.modal-btn.ios {
    background: black;
    color: white;
}

.modal-btn.ios:hover {
    opacity: 0.85;
}

/* Android */
.modal-btn.android {
    background: #34A853;
    color: white;
}

.modal-btn.android:hover {
    opacity: 0.85;
}

/* Close button */
.close-btn {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 26px;
    cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}











/* FEATURES SECTION */
.features {
    padding: 100px 8%;
    background: #f5f5f7;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #7e7b91;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

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

.feature-icon img{
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}




/* WHY SECTION TOP STRIP */
.why-top {
    background: #6ea0d4;
    padding: 30px 10px;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

/* MAIN WHY SECTION */
.why {
    padding: 100px 8%;
    background: #f3f3f5;
    text-align: center;
}

.why-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #8c859d;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-card {
    padding: 20px;
}

.why-icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #5c7fa3;
}

.why-card p {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* BOTTOM STRIP */
.why-bottom {
    background: #6ea0d4;
    padding: 30px 10px;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .why-title {
        font-size: 28px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-top,
    .why-bottom {
        font-size: 16px;
        padding: 25px 15px;
    }
}






/* CITIES SECTION */

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


.cities {
    padding: 120px 0;
    background: #f5f5f7;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.cities-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #5f6472;
}

 

/* CARD */
.city-card {
    position: relative;
    overflow: hidden;
    height: 420px; /* më e gjatë */
    cursor: pointer;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay gradient */
.city-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

.city-overlay h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Hover effect */
.city-card:hover img {
    transform: scale(1.1);
}

/* ---------------- RESPONSIVE ---------------- */

/* Laptop / Tablet */
@media (max-width: 1200px) {
    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .city-card {
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }

    .city-card {
        height: 300px;
    }

    .cities-title {
        font-size: 26px;
        margin-bottom: 50px;
    }
}



/* TESTIMONIALS SECTION */
.testimonials {
    padding: 120px 0;
    background: #f5f5f7;
}

.testimonials-title {
    text-align: left;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #e9e9ec;
    padding: 35px;
    border-radius: 12px;
    transition: 0.3s ease;
}

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

.stars {
    color: #ff4d6d;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 12px;
    color: #777;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-title {
        text-align: center;
    }
}



/* FAQ SECTION */
.faq {
    padding: 120px 0;
    background: #ffffff;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    background: #f7f7f9;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.faq-question:hover {
    background: #ececf1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.faq-answer p {
    padding: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 14px;
        padding: 18px;
    }
}