/* =========================
   RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}
:root{

--primary:#e30613;     /* Riga Red */
--dark:#1a1a1a;        /* Dark Gray */
--dark2:#2b2b2b;
--white:#ffffff;
--gray:#f7f7f7;
--shadow:0 15px 35px rgba(0,0,0,.12);

}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo-img{
height:60px;
width:auto;
object-fit:contain;
}

.logo-text{
font-size:28px;
font-weight:800;
color:white;
letter-spacing:1px;
}

body{
background:#fff;
overflow-x:hidden;
color:#222;
}

/* =========================
   HEADER
========================= */

/* =========================
   HEADER & NAVBAR
========================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 6%;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

/* Kur bëhet sticky nga JS */
.header.sticky {
    position: fixed;
    background: var(--dark);
    padding: 12px 6%;
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.lang-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(20px);
    color: white;
    font-weight: 600;
    transition: .4s;
}

.lang-btn.active {
    background: var(--primary);
}

.lang-btn:hover {
    transform: translateY(-3px);
}

/* Butoni Burger fillimisht i fshehur në Desktop */
/* Butoni Burger - I vendosur mbi çdo element tjetër */
.menu-btn, .mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 9999; /* Z-index maksimal që të jetë gjithmonë sipër */
    transition: 0.3s ease;
}

@media(max-width:768px){
    /* Gjithmonë e zezë dhe e dukshme në mobile */
    .menu-btn, .mobile-menu {
        display: block !important;
        color: #000 !important; 
    }
    
    .menu-btn i {
        color: #000 !important;
        font-size: 28px;
    }

    /* Struktura e Sidebar-it kur hapet */
    .nav-links {
        display: none; 
        position: fixed;
        top: 0;
        right: -100%; 
        height: 100vh;
        width: 300px; 
        background: #ffffff; 
        flex-direction: column;
        align-items: flex-start !important; /* Detyron rreshtimin majtas */
        justify-content: flex-start;
        padding: 100px 30px !important; /* Pakësuar pak që të ketë më shumë hapësirë */
        gap: 15px !important; /* Distanca mes linkave kryesorë */
        margin: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.1, 1, 0.1, 1);
        z-index: 9998; 
        overflow-y: auto; 
    }

    /* Klasa që aktivizohet kur klikohet Burgeri */
    .nav-links.show {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 300px !important;
        height: 100vh !important;
        border-radius: 0 !important;
        padding: 100px 30px !important;
        box-shadow: -5px 0 30px rgba(0,0,0,0.2) !important;
    }

    /* Rregullimi i linkave kryesorë - Forcohen të dalin majtas */
    .nav-links a {
        color: #1a1a1a !important;
        font-size: 18px !important;
        width: 100% !important; /* Merr 100% të gjerësisë */
        padding: 12px 0 !important;
        border-bottom: 1px solid #eee !important; /* Vija ndarëse e hollë në fund */
        display: flex !important; /* Ndryshuar në flex për rreshtim perfekt */
        align-items: center !important;
        justify-content: flex-start !important; /* I dërgon të gjithë në fillim (majtas) */
        text-align: left !important;
        margin: 0 !important;
    }

    /* Rregullim specifik për prindin e Dropdown (Hotels) */
    .dropdown {
        width: 100% !important;
        display: block !important;
    }

    /* Linku kryesor i Hotels që mban edhe shigjetën */
    .dropdown > a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important; /* Teksti majtas, shigjeta djathtas */
        width: 100% !important;
    }

    /* ====================================================
       RREGULLIMI PËR DROPDOWN (HOTELET)
    ====================================================== */

    .dropdown-menu {
        position: static !important; 
        box-shadow: none !important; 
        padding: 5px 0 5px 20px !important; /* Zhvendos hoteleve pak djathtas (indentation) */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none; 
        width: 100% !important;
        background: none !important;
        margin: 0 !important;
    }

    /* Shfaqja e dropdown-it në hover */
    .dropdown:hover .dropdown-menu {
        display: block !important;
    }

    /* Linkat brenda dropdown-it (Hotelet specifike) */
    .dropdown-menu a {
        font-size: 16px !important; 
        padding: 8px 0 !important;
        border-bottom: none !important; /* Heq vijën për hotele individualisht */
        color: #555 !important;
        text-align: left !important; 
        display: block !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }

}

/* Rregullimi i butonave të gjuhës për celular */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-buttons {
        margin-left: auto;
        margin-right: 15px; /* Krijon pak hapësirë nga butoni i menusë */
        display: flex;
        gap: 5px;
    }

    /* Sigurohemi që butonat të duken të pastër në celular */
    .lang-btn {
        padding: 5px 10px;
        font-size: 13px;
    }
}

/* Stili për ekranet e mëdha (Kompjuter) */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
        align-items: center;
    }
    .nav-buttons {
        margin-left: 20px; /* Hapësirë nga butoni Flights & More */
        display: flex;
        gap: 5px;
    }
}

/* Stili për celular (Media Query) */
/* --- STILIMI I MEDIAS PËR CELULAR (MAX-WIDTH: 768px) --- */
@media (max-width: 768px) {
    /* Sigurohemi që butonat e gjuhës të rreshtohen bukur në mes në celular */
    .nav-links .nav-buttons {
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
        padding: 15px 0 !important;
        width: 100% !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-top: 15px !important;
    }
    
    .nav-links .lang-btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
        cursor: pointer !important;
    }
}
/* =========================
   HERO
========================= */

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
overflow:hidden;
}

.hero-image{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:
linear-gradient(
90deg,
rgba(0,0,0,.65),
rgba(0,0,0,.15)
);
}

.hero-content{
position:relative;
z-index:10;
padding-left:8%;
max-width:700px;
color:white;
}

.hero-subtitle{
display:inline-block;
padding:12px 22px;
background:rgba(255,255,255,.15);
backdrop-filter:blur(20px);
border-radius:40px;
margin-bottom:25px;
font-size:14px;
letter-spacing:2px;
}

.hero-content h1{
font-size:7rem;
line-height:1;
font-weight:800;
margin-bottom:25px;
animation:fadeUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto 35px auto; /* 'auto' në të majtë dhe të djathtë e shtyn bllokun në mes të laptopit */
    max-width: 550px;
    text-align: center;        /* E qendron tekstin brenda bllokut */
    animation: fadeUp 1.2s ease;
}

.hero-buttons{
display:flex;
gap:20px;
}

.btn-primary{
padding:18px 35px;
background:#e30613;
border-radius:12px;
text-decoration:none;
color:white;
font-weight:600;
transition:.4s;
}

.btn-primary:hover{
background:#c40510;
}

.btn-secondary{
padding:18px 35px;
border:2px solid white;
border-radius:12px;
text-decoration:none;
color:white;
font-weight:600;
transition:.4s;
}

.btn-primary:hover,
.btn-secondary:hover{
transform:translateY(-5px);
}

.scroll-down{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
color:white;
font-size:30px;
animation:bounce 2s infinite;
}

/* =========================
   SECTION TITLE
========================= */

.section-heading{
text-align:center;
margin-bottom:60px;
}

.section-heading span{
color:#e30613;
}

.footer-column h2,
.footer-column h3{
color:#e30613;
}

.section-heading h2{
font-size:3rem;
margin-top:15px;
color:var(--dark);
}

.section-heading p{
margin-top:15px;
color:#666;
}

/* =========================
   DESTINATIONS
========================= */

.destinations-section{
padding:100px 7%;
background:white;
}

.destinations-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.destination-card{
height:420px;
border-radius:25px;
overflow:hidden;
position:relative;
cursor:pointer;
box-shadow:var(--shadow);
transition:.4s ease;
}

.destination-card:hover{
transform:translateY(-10px);
}

.destination-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:.6s ease;
}

.destination-card:hover img{
transform:scale(1.08);
}

.destination-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:35px;
background:linear-gradient(
to top,
rgba(0,0,0,.95),
transparent
);
color:white;
}

.destination-overlay h3{
font-size:2rem;
margin-bottom:10px;
}

.destination-overlay p{
margin:10px 0;
}

.destination-overlay a{
display:inline-block;
margin-top:10px;
color:var(--primary);
text-decoration:none;
font-weight:600;
}



/* =========================
   WHY US
========================= */

.why-us{
padding:100px 7%;
background:var(--gray);
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.why-card{
background:white;
padding:45px 30px;
border-radius:20px;
text-align:center;
box-shadow:var(--shadow);
transition:.4s;
}

.why-card:hover{
transform:translateY(-10px);
border-bottom:4px solid #e30613;
}

.why-card i{
font-size:45px;
color:var(--primary);
margin-bottom:20px;
}

.why-card h3{
margin-bottom:15px;
}

/* =========================
   PARTNERS
========================= */

.partners{
padding:100px 7%;
}

.partners-slider{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.partner-box{
height:120px;
display:flex;
justify-content:center;
align-items:center;
background:white;
border-radius:20px;
box-shadow:var(--shadow);
transition:.4s;
}

.partner-box:hover{
transform:translateY(-8px);
border-bottom:4px solid #e30613;
}

.partner-box img{
max-width:140px;
max-height:60px;
object-fit:contain;
}

/* =========================
   FOOTER
========================= */

.footer{
background:var(--dark);
color:white;
margin-top:50px;
}

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
padding:90px 7%;
}

.footer-column h2{
color:var(--primary);
margin-bottom:20px;
}

.footer-column h3{
margin-bottom:20px;
color:var(--primary);
}

.footer-column p{
line-height:1.9;
color:#cfcfcf;
}

.footer-column ul{
list-style:none;
}

.footer-column ul li{
margin-bottom:12px;
}

.footer-column ul li a{
text-decoration:none;
color:#cfcfcf;
transition:.3s;
}

.footer-column ul li a:hover{
color:var(--primary);
padding-left:6px;
}

.social-icons{
display:flex;
gap:12px;
margin-top:25px;
}

.social-icons a{
width:45px;
height:45px;
display:flex;
justify-content:center;
align-items:center;
background:rgba(255,255,255,.08);
border-radius:50%;
color:white;
text-decoration:none;
transition:.4s;
}

.social-icons a:hover{
background:var(--primary);
transform:translateY(-5px);
}

.footer-bottom{
text-align:center;
padding:25px;
border-top:1px solid rgba(255,255,255,.08);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(50px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@keyframes bounce{

0%,100%{
transform:translateX(-50%) translateY(0);
}

50%{
transform:translateX(-50%) translateY(10px);
}

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

.destinations-grid{
grid-template-columns:repeat(2,1fr);
}

.why-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-container{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.menu-btn{
display:block;
}

.nav-links{
display:none;
}

.nav-buttons{
display:none;
}

.hero-content{
padding:0 30px;
}

.hero-content h1{
font-size:4rem;
}

.hero-buttons{
flex-direction:column;
}

.destinations-grid{
grid-template-columns:1fr;
}

.why-grid{
grid-template-columns:1fr;
}

.partners-slider{
grid-template-columns:repeat(2,1fr);
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.social-icons{
justify-content:center;
}

}

@media(max-width:500px){

.hero-content h1{
font-size:3rem;
}

.section-heading h2{
font-size:2rem;
}

}

.nav-links.show{
display:flex !important;
flex-direction:column;
position:absolute;
top:90px;
left:5%;
right:5%;
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.nav-links.show a{
color:#071a2c;
}

.header.sticky{
position:fixed;
background:rgba(255,255,255,.97);
backdrop-filter:blur(15px);
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.header.sticky .logo-text{
color:#1a1a1a;
}

.header.sticky .nav-links a{
color:#1a1a1a;
}

.header.sticky .menu-btn{
color:#1a1a1a;
}

.scroll-top-btn{
position:fixed;
left:25px;
bottom:25px;

width:55px;
height:55px;

border:none;
border-radius:50%;

background:#e30613;
color:white;

cursor:pointer;

font-size:18px;

opacity:0;
visibility:hidden;

transition:.4s;

z-index:9999;
}

.scroll-top-btn.show{
opacity:1;
visibility:visible;
}

@keyframes slideDown{
from{
transform:translateY(-100%);
}
to{
transform:translateY(0);
}
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* OCEAN LUXURY OVERLAY */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 40, 80, 0.35),
    rgba(0, 0, 0, 0.65)
  );
}

/* CONTENT */
.hero-video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-video-content h1 {
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 5px;
}

.hero-video-content p {
  font-size: 20px;
  margin-top: 10px;
  opacity: 0.9;
}

/* BUTTON */
.hero-btn {
  margin-top: 25px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(12px);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* DROPDOWN */

.dropdown{
    position:relative;
}

.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:220px;

    background:#fff;
    border-radius:12px;

    padding:10px 0;

    box-shadow:0 15px 40px rgba(0,0,0,0.15);

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:0.3s ease;

    z-index:1000;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu a{
    display:block;
    padding:12px 20px;

    color:#222;
    text-decoration:none;
    font-weight:500;

    transition:0.3s;
}

.dropdown-menu a:hover{
    background:#f5f7fa;
    padding-left:28px;
    color:#ff0000;
}

   body{
    background:#f5f7fb;
}

.page-header{
    padding:140px 8% 60px;
    text-align:center;
}

.subtitle{
    display:inline-block;
    padding:10px 20px;
    background:#eef4ff;
    color:#ff0000;
    border-radius:40px;
    font-weight:600;
    letter-spacing:2px;
}

.page-header h1{
    font-size:64px;
    font-weight:800;
    margin-top:25px;
    color:#111827;
}

.page-header p{
    max-width:700px;
    margin:20px auto;
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

.filter-section{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.filter-section button{
    border:none;
    padding:14px 24px;
    border-radius:50px;
    background:white;
    cursor:pointer;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.filter-section button:hover,
.filter-section button.active{
    background:#ff0000;
    color:white;
}

/* =========================
   RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f7f9fc;
color:#1e293b;
overflow-x:hidden;
}

/* =========================
   VARIABLES
========================= */

:root{

--primary:#e30613;
--secondary:#ff3b3b;
--accent:#ff6b6b;

--white:#ffffff;
--light:#fff5f5;

--text:#1a1a1a;

}

/* =========================
   NAVBAR
========================= */

.header{

position:sticky;
top:0;
left:0;
width:100%;

z-index:1000;

background:rgba(255,255,255,.75);

backdrop-filter:blur(20px);

border-bottom:1px solid rgba(255,255,255,.3);

}

.navbar{

max-width:1400px;

margin:auto;

padding:20px 40px;

display:flex;
justify-content:space-between;
align-items:center;

}

.logo{

display:flex;
align-items:center;
gap:12px;

}

.logo img{

width:55px;
height:55px;
object-fit:contain;

}

.logo-text{

font-size:24px;
font-weight:800;
color:var(--primary);

}

.nav-links{

display:flex;
align-items:center;
gap:35px;

list-style:none;

}

.nav-links a{

text-decoration:none;

font-size:15px;
font-weight:600;

color:var(--text);

transition:.3s;

}

.nav-links a:hover{

color:var(--secondary);

}

.nav-links a.active{

color:var(--secondary);

}

.lang-switch{

display:flex;
gap:10px;

}

.lang-btn{

border:none;

padding:10px 18px;

border-radius:50px;

cursor:pointer;

font-weight:600;

background:#eef2ff;

transition:.3s;

}

.lang-btn.active{

background:var(--secondary);

color:white;

}

.mobile-menu{

display:none;

font-size:25px;

cursor:pointer;

}

/* =========================
   HERO
========================= */

.hero{

padding:80px 20px 50px;

}

.hero-content{

max-width:1100px;

margin:auto;

text-align:center;

}

.hero h1{

font-size:60px;

font-weight:800;

line-height:1.1;

margin-bottom:15px;

color:var(--primary);

}

.hero p{

font-size:18px;

color:#64748b;

margin-bottom:35px;

}

.search-wrapper{

max-width:700px;

margin:auto;

position:relative;

}

.search-wrapper i{

position:absolute;

left:25px;
top:50%;

transform:translateY(-50%);

font-size:18px;

color:#94a3b8;

}

.search-wrapper input{

width:100%;

padding:20px 20px 20px 60px;

border:none;

border-radius:60px;

font-size:16px;

background:white;

box-shadow:var(--shadow);

outline:none;

}

/* =========================
   FILTERS
========================= */

.filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    border: 2px solid #e74c3c; /* I shtova një kornizë të hollë të kuqe që të përshtatet me tab-btn */
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: rgba(0, 0, 0, 0.4); /* Sfond i errët transparent si te faqja e Bullgarisë */
    color: white; 
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    transition: .3s;
}

.filter-btn:hover {
    transform: translateY(-3px);
    background: #e74c3c;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4); /* Shkëlqimi i kuq */
}

/* RREGULLIMI: Këtu ndryshohet ngjyra nga e kaltër në të kuqe kur butoni klikohet/është aktiv */
.filter-btn.active {
    background: #e74c3c; /* Hoqa var(--secondary) dhe vendosa të kuqen */
    color: white;
    border-color: #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}
/* =========================
   HOTEL GRID
========================= */

.hotel-grid {
    max-width: 1400px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    justify-content: center; /* I mban kartat në mes nëse mbetet hapësirë në rresht */
}

.hotel-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .4s ease;
    position: relative;
    /* Hoqëm width dhe margin e fiksuar që të mos prishë PC-në */
}

.hotel-card:hover {
    transform: translateY(-12px);
}

.hotel-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.hotel-image img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    display: block;
    transition: transform 0.4s ease; /* Zbut animacionin e zmadhimit */
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.08);
}

.hotel-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, .95);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(15px);
}

.hotel-content {
    padding: 25px;
}

.hotel-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

/* ==========================================
   RREGULLIMI PËR MEDIA (CELULAR)
========================================== */
@media (max-width: 480px) {
    .hotel-grid {
        grid-template-columns: 1fr; /* Kthehet në një kolonë në celular */
        justify-items: center;      /* Qendërson përmbajtjen e grid-it */
        padding: 15px;
        gap: 20px;
    }

    .hotel-card {
        width: 100%;
        max-width: 340px;           /* Kufizon gjerësinë që të mos zgjatet jashtë mase */
        margin: 0 auto;             /* Detyron kartën të qëndrojë fiks në mes të ekranit */
    }
}
.stars{

color:#fbbf24;

font-size:18px;

margin-bottom:12px;

letter-spacing:2px;

}

.hotel-content p{

font-size:14px;

line-height:1.8;

color:#ff0000;

margin-bottom:20px;

}

.hotel-footer{

display:flex;

justify-content:space-between;
align-items:center;

}

.location{

font-size:14px;

font-weight:600;

color:#475569;

display:flex;
align-items:center;
gap:8px;

}

.location i{

color:var(--secondary);

}

.add-cart{

border:none;

padding:12px 22px;

border-radius:50px;

cursor:pointer;

font-weight:600;

color:white;

background:linear-gradient(
135deg,
#000000,
#ff0000
);

transition:.3s;

}

.add-cart:hover{

transform:scale(1.05);

}

.add-cart.added{

background:linear-gradient(
135deg,
#10b981,
#34d399
);

}

/* =========================
   FLOATING CART
========================= */

.floating-cart{

position:fixed;

bottom:30px;
right:30px;

width:75px;
height:75px;

border-radius:50%;

background:linear-gradient(
135deg,
#f50606,
#ff0000
);

display:flex;
justify-content:center;
align-items:center;

cursor:pointer;

box-shadow:
0 20px 40px rgba(255, 0, 0, 0.35);

z-index:999;

transition:.3s;

}

.floating-cart:hover{

transform:scale(1.08);

}

.floating-cart i{

font-size:28px;

color:white;

}

#cartCount{

position:absolute;

top:-5px;
right:-5px;

width:30px;
height:30px;

border-radius:50%;

background:#ef4444;

display:flex;
align-items:center;
justify-content:center;

color:white;

font-size:13px;
font-weight:700;

}

/* =========================
   BOOKING POPUP
========================= */

.booking-popup{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:
rgba(15,23,42,.65);

backdrop-filter:blur(10px);

display:none;

justify-content:center;
align-items:center;

padding:20px;

z-index:5000;

}

.booking-popup.active{

display:flex;

animation:fadeIn .3s ease;

}

.popup-box{

width:100%;
max-width:700px;

background:white;

border-radius:30px;

padding:35px;

box-shadow:
0 30px 80px rgba(0,0,0,.2);

max-height:90vh;

overflow-y:auto;

}

.popup-header{

display:flex;

justify-content:space-between;
align-items:center;

margin-bottom:25px;

}

.popup-header h2{

font-size:28px;

color:var(--primary);

}

.popup-header button{

border:none;

background:none;

font-size:24px;

cursor:pointer;

}

.selected-hotels{

padding:20px;

background:#f8fafc;

border-radius:20px;

margin-bottom:25px;

}

.selected-hotels h3{

margin-bottom:15px;

}

.empty-cart{

color:#94a3b8;

}

.form-group{

margin-bottom:18px;

}

.form-group label{

display:block;

margin-bottom:8px;

font-size:14px;

font-weight:600;

}

.form-group input,
.form-group textarea{

width:100%;

padding:15px;

border:1px solid #e2e8f0;

border-radius:14px;

outline:none;

font-size:15px;

}

.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

}

.whatsapp-btn{

width:100%;

border:none;

padding:18px;

border-radius:16px;

cursor:pointer;

font-size:16px;
font-weight:700;

color:white;

background:linear-gradient(
135deg,
#22c55e,
#16a34a
);

transition:.3s;

}

.whatsapp-btn:hover{

transform:translateY(-3px);

}/* =========================
   CONTACT SECTION
========================= */

.contact-section{

padding:100px 20px;

max-width:1400px;

margin:auto;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:42px;

font-weight:800;

color:var(--primary);

margin-bottom:12px;

}

.section-title p{

font-size:17px;

color:#64748b;

}

.contact-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}

.contact-card{

background:white;

padding:40px 30px;

border-radius:30px;

text-align:center;

box-shadow:var(--shadow);

transition:.4s;

}

.contact-card:hover{

transform:translateY(-10px);

}

.contact-card i{

font-size:45px;

margin-bottom:20px;

background:linear-gradient(
135deg,
#ff0004,
#38bdf8
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.contact-card h3{

font-size:22px;

margin-bottom:10px;

color:var(--primary);

}

.contact-card p{

color:#64748b;

font-size:15px;

}  

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f1f5f9;

}

::-webkit-scrollbar-thumb{

background:#ff0000;

border-radius:20px;

}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

@keyframes slideUp{

from{

opacity:0;

transform:
translateY(40px);

}

to{

opacity:1;

transform:
translateY(0);

}

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.05);

}

100%{

transform:scale(1);

}

}


.hero-content{

animation:
slideUp .8s ease;

}

.floating-cart{

animation:
pulse 2.5s infinite;

}


@media(max-width:992px){

.hero h1{

font-size:46px;

}

.navbar{

padding:18px 25px;

}

}

@media(max-width:768px){

.nav-links{

display:none;

}

.lang-switch{

display:none;

}

.mobile-menu{

display:block;

}

.hero{

padding-top:60px;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:15px;

}

.hotel-grid{

grid-template-columns:1fr;

padding:15px;

}

.form-row{

grid-template-columns:1fr;

}

.popup-box{

padding:25px;

}

.footer-content{

flex-direction:column;

text-align:center;

}

.contact-section{

padding:70px 15px;

}

.section-title h2{

font-size:32px;

}

}

@media(max-width:480px){

.logo-text{

font-size:18px;

}

.hero h1{

font-size:30px;

}

.search-wrapper input{

padding:18px 18px 18px 55px;

font-size:14px;

}

.filter-btn{

padding:10px 18px;

font-size:13px;

}

.hotel-content h3{

font-size:20px;

}

.contact-card{

padding:30px 20px;

}

.floating-cart{

width:65px;
height:65px;

}

.floating-cart i{

font-size:24px;

}

}
.selected-item{

display:flex;

justify-content:space-between;
align-items:center;

padding:12px 15px;

background:white;

border-radius:12px;

margin-bottom:10px;

}

.remove-hotel{

border:none;

background:#ef4444;

color:white;

width:30px;
height:30px;

border-radius:50%;

cursor:pointer;

font-weight:700;

}

.nav-links.show{

display:flex !important;

position:absolute;

top:85px;
left:0;

width:100%;

background:white;

padding:25px;

flex-direction:column;

box-shadow:0 15px 35px rgba(0,0,0,.1);

}

/* =========================
   CITY BREAKS
========================= */

.city-filters{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:12px;
padding:20px;
margin-bottom:40px;
}

.city-filter-btn{
padding:12px 22px;
border:none;
border-radius:50px;
background:white;
font-weight:600;
cursor:pointer;
box-shadow:0 8px 20px rgba(0,0,0,.06);
transition:.3s;
}

.city-filter-btn:hover{
transform:translateY(-3px);
}

.city-filter-btn.active{
background:#e30613;
color:white;
}

.city-grid{
max-width:1400px;
margin:auto;
padding:30px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.city-card{
background:white;
border-radius:28px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
}

.city-card:hover{
transform:translateY(-12px);
box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.city-image{
height:260px;
overflow:hidden;
}

.city-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.city-card:hover .city-image img{
transform:scale(1.08);
}

.city-content{
padding:25px;
}

.city-content h3{
font-size:28px;
font-weight:700;
color:#e30613;
margin-bottom:10px;
}

.city-content p{
color:#64748b;
line-height:1.8;
margin-bottom:20px;
}

.city-footer{
display:flex;
justify-content:space-between;
align-items:center;
}

.city-location{
display:flex;
align-items:center;
gap:8px;
font-size:14px;
font-weight:600;
color:#475569;
}

.city-location i{
color:#e30613;
}

.city-btn{
border:none;
padding:12px 24px;
border-radius:50px;
cursor:pointer;
font-weight:700;
color:white;
background:linear-gradient(
135deg,
#e30613,
#ff4d4d
);
transition:.3s;
}

.city-btn:hover{
transform:scale(1.05);
}

@media(max-width:768px){

.city-grid{
grid-template-columns:1fr;
padding:15px;
}

.city-image{
height:220px;
}

.city-content h3{
font-size:24px;
}

}

/* Rregullimi i ri që përshtatet me konstruktin e menusë */
    .custom-inquiry-link {
        color: #1a1a1a !important;
        font-size: 18px !important;
        width: 100% !important; 
        padding: 12px 0 !important;
        border-bottom: 1px solid #eee !important; /* E njëjta vijë si linkat e tjerë */
        display: flex !important; 
        align-items: center !important;
        justify-content: space-between !important; /* Teksti majtas, ikona djathtas */
        text-align: left !important;
        margin: 0 !important;
        font-weight: 500;
    }

    .custom-inquiry-link i {
        font-size: 16px !important;
        padding-right: 5px;
    }

    /* Stili për opsionin kur nuk e gjejnë hotelin në listë */
/* Ky stil funksionon edhe në Desktop edhe në Mobile */
.dropdown-menu a.not-found-hotel {
    font-style: italic !important;
    color: #ff4d4d !important; /* Ngjyra e kuqe/portokalli që të dallojë */
    font-weight: 600 !important;
    border-top: 1px dashed #ddd !important; /* Vija e ndërprerë sipër për ta ndarë nga hotelet */
    margin-top: 8px !important;
    padding-top: 10px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px;
}

/* Në desktop sigurohemi që kur t'i bësh hover këtij linku të mos bëhet me sfond të njëjtë si hotelet e tjera */
.dropdown-menu a.not-found-hotel:hover {
    background: transparent !important; 
    color: #cc0000 !important; /* Ndryshon pak ngjyra në hover */
}

/* Stilimi i Paginacionit si në Foto */
#paginationContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination-btn {
   background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 6px 12px; /* Zvogëluar nga 10px 18px */
    font-size: 14px;    /* Shtohet për të kontrolluar madhësinë e tekstit/shigjetave */
    border-radius: 4px; /* Pak më e mprehtë për t'iu përshtatur madhësisë */
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Faqja Aktive (Ngjyra e kuqe si në foto) */
.pagination-btn.number-btn.active {
    background-color: #ff4d4d; /* E kuqja e Riga Travel */
    border-color: #ff4d4d;
    color: #ffffff;
}

/* Efekti Hover kur kalon miun mbi numrat e tjerë */
.pagination-btn.number-btn:hover:not(.active) {
    border-color: #ff4d4d;
    color: #ff4d4d;
}

/* Butonat e shigjetave majtas/djathtas */
.pagination-btn.arrow-btn {
    color: #1a2a3a;
    font-size: 14px;
}

/* Kur butoni mbrapa/përpara është i bllokuar (p.sh në faqen e parë ose të fundit) */
.pagination-btn.disabled {
    background-color: #ededed;
    border-color: #e0e0e0;
    color: #b5b5b5;
    cursor: not-allowed;
    opacity: 0.8;
}