/* ============================================================
   STILET BAZË
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f1f5f9;
    color: #0f172a;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.navbar .logo {
    font-size: 22px;
    font-weight: 800;
}

.navbar .logo span {
    color: #e11d48;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px 14px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-links .btn-wifi {
    background: #e11d48;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
}

.nav-links .btn-wifi:hover {
    background: #be123c;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 50px 24px 40px;
    text-align: center;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 6px;
}

.hero p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 16px;
}

.hero .offer-tag {
    display: inline-block;
    background: #e11d48;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 16px;
}

.hero .features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero .features span {
    font-size: 14px;
    opacity: 0.9;
}

.hero .btn-primary {
    display: inline-block;
    background: #fff;
    color: #0f172a;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.hero .btn-primary:hover {
    background: #e11d48;
    color: #fff;
    transform: scale(1.05);
}

/* ============================================================
   SEKSIONET
   ============================================================ */
.section {
    padding: 32px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.page-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

.page-title span {
    color: #e11d48;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
}

.section-title span {
    color: #e11d48;
}

/* ============================================================
   SERVICES (Faqja Kryesore)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-card {
    background: #f8fafc;
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #f1f5f9;
    transition: 0.3s;
}

.service-card:hover {
    border-color: #e11d48;
    transform: translateY(-3px);
}

.service-card .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 6px;
}

.service-card h3 {
    font-size: 16px;
}

.service-card p {
    font-size: 13px;
    color: #64748b;
}

/* ============================================================
   MENU ME DROPDOWN
   ============================================================ */
.menu-category {
    margin-bottom: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.category-toggle {
    width: 100%;
    padding: 16px 18px;
    background: #f8fafc;
    border: none;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.category-toggle:hover {
    background: #f1f5f9;
}

.category-toggle .arrow {
    transition: 0.3s;
    font-size: 14px;
}

.category-toggle .arrow.open {
    transform: rotate(180deg);
}

.category-items {
    display: none;
    padding: 0 6px 10px;
}

.category-items.open {
    display: block;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item .info .name {
    font-weight: 600;
    font-size: 15px;
}

.menu-item .info .desc {
    font-size: 13px;
    color: #64748b;
}

.menu-item .price {
    font-weight: 700;
    color: #e11d48;
    font-size: 15px;
    white-space: nowrap;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    font-weight: 600;
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.form-group label .required {
    color: #e11d48;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    background: #f8fafc;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0f172a;
    outline: none;
    background: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e11d48;
}

/* ============================================================
   GALERIA
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.gallery-item {
    background: #f8fafc;
    border-radius: 14px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #f1f5f9;
    transition: 0.3s;
}

.gallery-item:hover {
    border-color: #e11d48;
    transform: scale(1.03);
}

.gallery-item .emoji {
    font-size: 38px;
}

.gallery-item .label {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    margin-top: 4px;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
}

.contact-row .icon {
    font-size: 24px;
    width: 44px;
    text-align: center;
}

.contact-row .info {
    font-size: 14px;
}

.contact-row .info span {
    display: block;
    font-size: 12px;
    color: #94a3b8;
}

.quick-contact {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
}

.quick-contact h3 {
    margin-bottom: 14px;
    font-size: 17px;
}

/* ============================================================
   LOGIN
   ============================================================ */
.login-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.login-header {
    text-align: center;
    margin-bottom: 18px;
}

.login-header .icon-big {
    font-size: 48px;
    display: block;
}

.login-header h3 {
    font-size: 18px;
}

.login-header p {
    font-size: 13px;
    color: #64748b;
}

.hotel-hint {
    background: #f1f5f9;
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    margin-bottom: 16px;
    border-left: 4px solid #e11d48;
}

.login-terms {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 14px;
}

.login-terms a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 28px 20px;
    font-size: 13px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px 24px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e11d48;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding-top: 14px;
        gap: 8px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .gallery-item {
        height: 90px;
    }

    .gallery-item .emoji {
        font-size: 30px;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .page-title {
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero .features {
        gap: 10px;
    }

    .hero .features span {
        font-size: 12px;
    }
}
/* ============================================================
   STILET E REJA PËR INDEX-IN PROFESIONAL
   ============================================================ */

/* ===== NAVBAR I PËRMIRËSUAR ===== */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo .logo-icon {
    color: #e11d48;
    font-size: 18px;
}

.logo .logo-tag {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.6;
    background: rgba(255,255,255,0.08);
    padding: 2px 10px;
    border-radius: 30px;
    margin-left: 4px;
}

/* ===== HERO PREMIUM ===== */
.hero-premium {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 40%, #2d1b4e 100%);
    padding: 80px 24px 60px;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(225, 29, 72, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(15, 52, 96, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(225, 29, 72, 0.15);
    color: #e11d48;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(225, 29, 72, 0.2);
}

.hero-premium h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-premium h1 .highlight {
    color: #e11d48;
    position: relative;
}

.hero-premium h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e11d48;
    border-radius: 4px;
    opacity: 0.4;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
}

/* ===== STATS ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat .number {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.stat .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== BUTONAT ===== */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-primary.btn-large {
    padding: 16px 40px;
    font-size: 17px;
    border-radius: 50px;
}

.btn-outline {
    display: inline-block;
    padding: 16px 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    border-color: #e11d48;
    background: rgba(225, 29, 72, 0.1);
    transform: translateY(-2px);
}

/* ===== HERO FEATURES ===== */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px 30px;
    flex-wrap: wrap;
}

.hero-features span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== OFERTA SPECIALE ===== */
.offer-section {
    padding: 30px 20px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.offer-card {
    background: linear-gradient(135deg, #fdf2f4, #ffffff);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(225, 29, 72, 0.1);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.06);
    flex-wrap: wrap;
}

.offer-icon {
    font-size: 44px;
    flex-shrink: 0;
}

.offer-content {
    flex: 1;
}

.offer-content .offer-tag {
    font-size: 10px;
    font-weight: 700;
    color: #e11d48;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offer-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.offer-content p {
    font-size: 14px;
    color: #64748b;
}

.offer-btn {
    color: #e11d48;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    white-space: nowrap;
}

.offer-btn:hover {
    color: #0f172a;
}

/* ===== SERVICES PREMIUM ===== */
.services-premium {
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.section-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #e11d48;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.section-title .accent {
    color: #e11d48;
}

.section-desc {
    font-size: 15px;
    color: #64748b;
    margin-top: 4px;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-card-premium {
    background: #ffffff;
    padding: 28px 18px 22px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-card-premium:hover {
    transform: translateY(-6px);
    border-color: #e11d48;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 8px;
}

.service-card-premium h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-card-premium p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 10px;
}

.service-link {
    color: #e11d48;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.service-link:hover {
    color: #0f172a;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.testimonial-card {
    background: #ffffff;
    padding: 24px 22px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: #e2e8f0;
}

.testimonial-card .stars {
    color: #f5b342;
    font-size: 16px;
    margin-bottom: 6px;
}

.testimonial-card p {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author .name {
    font-weight: 700;
    font-size: 14px;
    display: block;
}

.testimonial-author .role {
    font-size: 12px;
    color: #94a3b8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 20px 20px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.cta-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #e11d48;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta-box h2 {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.cta-box h2 .accent {
    color: #e11d48;
}

.cta-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-buttons .btn-primary {
    background: #e11d48;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
}

.cta-buttons .btn-primary:hover {
    background: #be123c;
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.15);
    padding: 14px 30px;
    font-size: 16px;
}

.cta-buttons .btn-outline:hover {
    border-color: #e11d48;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 20px 30px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-features span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== FOOTER I PËRMIRËSUAR ===== */
.footer-container {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
}

.footer-logo span {
    color: #e11d48;
}

.footer-col p {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 4px;
}

.footer-address {
    opacity: 0.4 !important;
    font-size: 12px !important;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    padding: 3px 0;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #e11d48;
}

.footer-bottom {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding-top: 16px;
    font-size: 12px;
    opacity: 0.4;
}

/* ============================================================
   RESPONSIVE - PËRSHTATJE
   ============================================================ */
@media (max-width: 600px) {
    .hero-premium h1 {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat .number {
        font-size: 22px;
    }

    .stat-divider {
        height: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-features {
        gap: 10px 16px;
    }

    .hero-features span {
        font-size: 11px;
    }

    .services-grid-premium {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-card-premium {
        padding: 20px 12px 16px;
    }

    .service-card-premium h3 {
        font-size: 15px;
    }

    .service-card-premium p {
        font-size: 12px;
    }

    .offer-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .offer-btn {
        margin-top: 4px;
    }

    .cta-box {
        padding: 28px 20px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-container .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 400px) {
    .hero-premium h1 {
        font-size: 28px;
    }

    .services-grid-premium {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 18px 16px;
    }
}