/* =================================================
   GLOBAL RESET
   ================================================= */
*{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: #ffffff;
}

#about-us,
#apartment-details,
#things-to-do,
#reviews,
#location,
#contact-host{
  scroll-margin-top: 108px;
}

img{
  max-width: 100%;
  display: block;
}
/* =================================================
   SCROLL REVEAL
   ================================================= */
.reveal{
  opacity: 0;
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease;
  will-change: opacity, transform, filter;
}

.reveal-up{
  transform: translateY(48px);
}

.reveal-left{
  transform: translateX(-42px);
}

.reveal-right{
  transform: translateX(42px);
}

.reveal-scale{
  transform: scale(0.92);
  filter: blur(8px);
}

.reveal.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* =================================================
   NAVBAR – ENA STYLE (TRANSPARENT OVER HERO)
   ================================================= */
.custom-navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;

  background: transparent;
  border: none;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 60px;
}

/* LOGO */
.nav-left{
  display: flex;
  align-items: center;
}

.nav-logo{
  height: 170px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-title{
  display: none;
}

/* MENU */
.nav-links{
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links a{
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  position: relative;
  transition: opacity .25s ease;
}

.nav-links a:hover{
  opacity: 1;
}

.nav-links a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width .3s ease;
}

.nav-links a:hover::after{
  width: 100%;
}


/* =================================================
   NAVBAR GLASS OVERLAY – LUXURY
   ================================================= */

.custom-navbar::before{
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.28);   /* shumë subtil */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  z-index: -1;
}

.custom-navbar.scrolled::before{
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
}





/* =================================================
   REVIEWS SECTION - FINAL LIGHT STYLE
   ================================================= */
.reviews-section{
  background: #f4efe7;
  border-top: none;
}

.reviews-section::before{
  display: none;
}

.reviews-section .reviews-subtitle{
  color: #5b5046;
  text-shadow: none;
}

.review-circle{
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(247, 239, 229, 0.9) 100%);
  border: 1px solid rgba(33, 26, 20, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 52px rgba(16, 12, 8, 0.12);
  opacity: 0.7;
  transform: scale(0.96);
}

.review-circle.active{
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(247, 239, 229, 0.94) 100%);
  box-shadow: 0 28px 60px rgba(16, 12, 8, 0.16);
  transform: scale(1.08);
}

.review-author-top,
.review-overall{
  color: #1f1914;
}

.review-text p{
  color: #3f352d;
}

.review-source{
  color: #9b7b57;
  text-decoration-color: rgba(155, 123, 87, 0.45);
}

.review-source:hover{
  color: #7f6243;
  text-decoration-color: rgba(127, 98, 67, 0.8);
}

.reviews-btn{
  color: #211a14;
}

.reviews-btn:hover{
  color: #6f5640;
}

.reviews-links{
  color: #5b5046;
}

.reviews-links a{
  color: #211a14;
}

.reviews-google{
  color: #5b5046;
}

.reviews-google a{
  color: #9b7b57;
}

@media (max-width: 768px){
  .reviews-section{
    background: #f4efe7;
    border-top: none;
  }

  .reviews-section::before{
    display: none;
  }

  .reviews-header{
    text-align: center;
  }

  .reviews-section .reviews-title.lang-active{
    color: #211a14;
    text-shadow: none;
    text-align: center;
  }

  .reviews-section .reviews-subtitle{
    color: #5b5046;
  }

  .reviews-section .reviews-subtitle.lang-active{
    border: 1px solid rgba(33, 26, 20, 0.1);
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(247, 239, 229, 0.9) 100%);
    box-shadow: 0 24px 52px rgba(16, 12, 8, 0.12);
  }

  .review-circle,
  .review-circle.active{
    border: 1px solid rgba(33, 26, 20, 0.1);
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(247, 239, 229, 0.9) 100%);
    box-shadow: 0 24px 52px rgba(16, 12, 8, 0.12);
  }

  .reviews-links{
    color: #5b5046;
    justify-content: center;
    text-align: center;
  }

  .reviews-links a{
    color: #211a14;
  }

  .reviews-google{
    color: #5b5046;
    text-align: center;
  }

  .reviews-google a{
    color: #9b7b57;
  }
}


/* ================================================
   MOBILE NAVBAR
   ================================================ */
.menu-toggle{
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
  padding: 0;
  width: 42px;
  height: 42px;
}

.menu-toggle span{
  width: 26px;
  height: 2px;
  background: #ffffff;
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}

/* MOBILE */
@media (max-width: 768px){

  #about-us,
  #apartment-details,
  #things-to-do,
  #reviews,
  #location,
  #contact-host{
    scroll-margin-top: 88px;
  }

  .custom-navbar{
    padding: 0 20px;
    height: 70px;
  }

  .nav-logo{
    height: 110px;
  }

  .menu-toggle{
    display: flex;
  }

  .nav-links{
    position: fixed;
    top: 0;
    right: 0;
    width: 46%;
    min-width: 240px;
    max-width: 320px;
    height: 100vh;
    max-height: none;
    margin: 0;

    background: rgba(19, 36, 43, 0.52);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-left: 1px solid rgba(255,255,255,0.14);
    box-shadow: -18px 0 36px rgba(0,0,0,0.18);

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;

    padding: 110px 24px calc(84px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;

    display: none;
  }

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

  .nav-links li{
    width: 100%;
    list-style: none;
  }

  .menu-toggle.active span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2){
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links a{
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.22);
  }

  .nav-links a[data-lang]{
    display: none;
  }

  .nav-links a.lang-active{
    display: inline-block;
  }

  #firstsection{
    min-height: calc(100svh - 70px);
    padding-bottom: 170px;
    overflow: visible;
  }

  .welcomeline{
    inset: auto 0 0 0;
    min-height: calc(100svh - 70px);
    align-items: flex-start;
    padding: 2px 0 34px;
  }

  .welcometag{
    font-size: 24px;
    line-height: 1.1;
    max-width: 300px;
  }

  .welcome-subtitle{
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 9px;
    letter-spacing: 1.6px;
    max-width: 300px;
  }

  .hero-book-btn{
    padding: 10px 30px;
  }

  .nav-language-row{
    margin-top: auto;
    padding-top: 12px;
    padding-bottom: 10px;
    position: sticky;
    bottom: 0;
    background: rgba(19, 36, 43, 0.52);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  body > .language-switcher{
    display: none;
  }

  .nav-language-row .language-switcher{
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .nav-language-row .language-switcher button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 50px;
    min-width: 50px;
    height: 32px;
    min-height: 32px;
    padding: 0 10px;
    line-height: 1;
    white-space: nowrap;
    writing-mode: horizontal-tb;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.5px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: #111;
    border: 1px solid rgba(17,17,17,0.18);
  }

  .nav-language-row .language-switcher button.active{
    background: rgba(255,255,255,0.95);
    color: #111;
    border-color: rgba(17,17,17,0.7);
  }

  .nav-language-row .language-switcher button:hover{
    background: rgba(255,255,255,1);
  }

}







/* =================================================
   HERO / FIRST SECTION – ENA STYLE
   ================================================= */
#firstsection{
  position: relative;
  width: 100%;
  min-height: 115vh;      /* ⬅️ hero më i gjatë */
  padding-bottom: 210px; /* ⬅️ hapësirë për dropdown */
  overflow: hidden;
  background: #000;
}



/* VIDEO */
#firstsection video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
#firstsection::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* TEXT WRAPPER */
.welcomeline{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 0 12px 28px;
}

/* TEXT */
.welcome-text{
  max-width: 820px;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  box-shadow: none;
}

.hero-card{
  align-items: flex-start;
  text-align: left;
  padding: 26px 22px;
  background: rgba(10, 15, 20, 0.32);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 52px rgba(0,0,0,0.26);
  width: min(92%, 720px);
}

.hero-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  width: min(92%, 820px);
  z-index: 3;
  background: rgba(10, 15, 20, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
}

.stat-card{
  display: grid;
  gap: 6px;
  text-align: center;
  color: #ffffff;
}

.stat-number-wrap{
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  letter-spacing: 0.5px;
}

.stat-number{
  display: inline-block;
  min-width: 2ch;
}

.stat-unit{
  font-size: 18px;
  letter-spacing: 1.2px;
}

.stat-label{
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.86);
}

.hero-rating{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  z-index: 3;
  margin-top: 6px;
}

.hero-rating i{
  color: #e8bc86;
}

.hero-rating .rating-text{
  display: none;
}
.hero-rating .rating-text.lang-active{
  display: block;
  text-align: center;
}

.hero-rating .stars{
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-line[data-lang]{
  display: none;
}

.hero-line.lang-active{
  display: grid;
  justify-items: center;
  gap: 6px;
}

.hero-accent-wrap{
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 1.1em;
}

.hero-accent-word{
  grid-area: 1 / 1;
  color: #e8bc86;
  text-shadow: 0 4px 18px rgba(232, 188, 134, 0.22);
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  filter: blur(6px);
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease,
    visibility 0.7s ease;
  will-change: opacity, transform, filter;
}

.hero-accent-word.active{
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.hero-rest{
  display: block;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}


.welcometag{
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
   max-width: 820px;        /* kontrollon sa fjalë futen në rresht */
  font-size: 58px;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0;
  display: grid;
  justify-items: center;
}

.welcome-subtitle{
  display: block;
  width: 100%;          /* ⬅️ detyron rresht më vete */
  text-align: center;

  margin-top: 36px;     /* ⬅️ POSHTË TITULLIT */
  margin-bottom: 52px;  /* ⬅️ HAPËSIRË PARA BUTONIT */

  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.welcomeline{
  background: none;
}

.hero-cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  justify-items: center;
  padding: 0 18px;
}

.hero-book-standalone{
  margin-top: 4px;
}


/* CTA */
.hero-book-btn{
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #ffffff;
  border-radius: 999px;

  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;

  color: #070707;
  text-decoration: none;
  transition: all .3s ease;
}


.hero-book-btn span {
  pointer-events: none;
}

.hero-book-btn:hover{
  background: #48b6e4;
  color: #dfdfdf;
  transform: translateY(-1px);
}


.hero-book-btn {
  background: transparent;
  color: #fff;
  cursor: pointer;
}

/* text inside button */
.hero-book-btn span {
  display: none;
}

.hero-book-btn span.lang-active {
  display: inline;
}



.book-wrapper{
  position: relative;
  display: inline-block;
}
/* === BOOK DROPDOWN (FINAL CLEAN VERSION) === */

.book-dropdown{
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);

  width: 260px;
  padding: 16px 0;

  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
  border-radius: 18px;

  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 999;
}

.book-wrapper.open .book-dropdown{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Sections */
.book-section{
  padding: 0 18px;
}

.book-section-title{
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

/* Links */
.book-dropdown a{
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #ffffff;
  opacity: 1;              /* ⬅️ KRITIKE */
  visibility: visible;     /* ⬅️ KRITIKE */
  text-decoration: none;
}


.book-dropdown a:hover{
  color: #48b6e4;
}

/* Divider */
.book-divider{
  height: 1px;
  margin: 12px 0;
  background: rgba(255,255,255,0.12);
}






/* =================================================
   ABOUT US – ENA STYLE
   ================================================= */
.about-section{
  position: relative;
  width: 100%;
  min-height: 85vh;
  background-image: url("../image/about-bg.jpg"); /* FOTO JOTE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 24px;
}

/* overlay i butë për lexim */
.about-overlay{
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.88);
  z-index: 1;
}

/* content */
.about-content{
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 56px 58px 52px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.52);
  background: #f7f0e8;
  box-shadow: 0 24px 64px rgba(58, 42, 28, 0.14);
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: #1c1c1c;
}

.about-content::before{
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.about-content > *{
  position: relative;
  z-index: 1;
}

.about-content h2{
  font-size: 0;
  line-height: 0;
  margin-bottom: 28px;
}

.about-content h2::before{
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 1.06;
  font-weight: 500;
  color: #1c1c1c;
  white-space: pre-line;
}

.about-content h2[data-lang="sq"]::before{
  content: "Rreth Seb's & Spacious\A Apartment";
}

.about-content h2[data-lang="en"]::before{
  content: "About Seb's & Spacious\A Apartment";
}

.about-content h2[data-lang="it"]::before{
  content: "Su Seb's & Spacious\A Apartment";
}

.about-content p{
  font-size: 16px;
  line-height: 1.9;
  color: #4f4942;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

/* button */
.about-btn{
  display: inline-block;          /* ⬅️ shumë e rëndësishme */
  padding: 12px 36px;             /* ⬅️ më i vogël, elegant */
  border: 1px solid #2b2b2b;
  border-radius: 999px;

  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;

  background: transparent;
  color: #2b2b2b;
  text-decoration: none;

  width: auto;                    /* ⬅️ mos e lejo të shtrihet */
  max-width: none;

  transition: all 0.3s ease;
}

.about-btn:hover{
  background: #2b2b2b;
  color: #fff;
}


/* ===============================
APARTMENT DETAILS SECTION
================================ */

.apartment-details{
scroll-margin-top:80px;
padding:70px 0;
background:#f8f9fb;
border-top:1px solid #e6ebf0;
margin-top:0px;
}

.details-container{
width:85%;
margin:auto;
}


/* ===============================
HEADER
================================ */

.section-header{
text-align:center;
margin-bottom:40px;
}

.section-subtitle{
font-size:13px;
letter-spacing:4px;
text-transform:uppercase;
color:#9aa9b5;
}

.section-title{
font-size:42px;
margin:15px 0;
font-weight:500;
color:#1f2e3d;
}

.section-description{
font-size:16px;
color:#6c7a89;
}


/* ===============================
GRID LAYOUT
================================ */

.details-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:stretch;
}


/* ===============================
HOUSE RULES
================================ */

.details-rules{
background:#ffffff;
padding:40px;
border-radius:18px;
border:1px solid rgba(0,0,0,0.05);
box-shadow:0 8px 30px rgba(0,0,0,0.05);
display:flex;
flex-direction:column;
justify-content:center;
}

.details-rules h3{
font-size:20px;
margin-bottom:15px;
color:#1f2e3d;
}


/* LIST */

.rules-list{
list-style:none;
padding:0;
margin:0;
}

.rules-list li{
margin-bottom:10px;
color:#6c7a89;
font-size:15px;
}


/* TEXT */

.rules-text{
font-size:15px;
color:#6c7a89;
line-height:1.6;
}


/* DIVIDER */

  .rules-divider{
    height:1px;
    background:#ece5dc;
    margin:34px 0;
  }


/* ===============================
GALLERY GRID
================================ */

.details-gallery{
display:grid;
grid-template-columns:1fr 1fr;
grid-template-rows:1fr 1fr;
gap:20px;
height:100%;
}


/* IMAGE CARDS */

.gallery-small{
position:relative;
overflow:hidden;
border-radius:16px;
}

.gallery-small img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .6s ease;
}

.gallery-small:hover img{
transform:scale(1.06);
}


/* ===============================
IMAGE OVERLAY
================================ */

.overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:15px;
color:white;
font-size:14px;
background:linear-gradient(to top, rgba(0,0,0,0.6), transparent);
border-radius:0 0 16px 16px;
}


/* ===============================
BUTTON
================================ */

.view-all-wrapper{
margin-top:35px;
display:flex;
justify-content:center;
}

.view-all-btn{
padding:14px 40px;
background:#1f2e3d;
color:#fff;
text-decoration:none;
letter-spacing:1.5px;
font-size:13px;
text-transform:uppercase;
border-radius:30px;
transition:all 0.3s ease;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

.view-all-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 18px rgba(0,0,0,0.2);
}


/* ===============================
RESPONSIVE
================================ */

@media (max-width:1024px){

.details-grid{
grid-template-columns:1fr;
gap:50px;
}

.details-gallery{
grid-template-columns:1fr 1fr;
}

}

@media (max-width:768px){

.section-title{
font-size:34px;
}

.gallery-small{
height:200px;
}

}

/* ===============================
   REVIEWS INTRO (WHITE SPACE)
================================ */

.reviews-intro {
  display: block;
  height: 220px;
  padding: 0 20px;
  background: #ffffff;
  text-align: center;
  display: grid;
  place-items: center;
}

.reviews-intro .reviews-title {
  display: none;
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  line-height: 1.02;
  margin: 0;
  color: #111111;
}

.reviews-intro .reviews-title.lang-active{
  display: block;
}

.reviews-intro .reviews-subtitle {
  display: none;
}

.reviews-subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: #666;
}


/* =====================================================
   REVIEWS SECTION – PINTEREST / GLASS FINAL
===================================================== */

.reviews-section {
  position: relative;
  padding: 96px 20px 110px;
  border-top: 100px solid #ffffff;
  background: url("../image/review1.avif") center center / cover no-repeat;
  overflow: hidden;
}

/* SOFT GRADIENT OVERLAY */
.reviews-section::before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(252, 248, 241, 0.28) 0%,
    rgba(38, 30, 22, 0.22) 26%,
    rgba(23, 18, 14, 0.52) 58%,
    rgba(17, 13, 10, 0.76) 100%
  );
  z-index: 0;
}

.reviews-section > * {
  position: relative;
  z-index: 1;
}

.reviews-header{
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.reviews-section .reviews-title{
  display: none;
}

.reviews-section .reviews-title.lang-active{
  display: none;
}

.reviews-section .reviews-subtitle{
  max-width: 620px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255,255,255,0.96);
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}


/* =====================================================
   SLIDER STRUCTURE
===================================================== */

.reviews-slider {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews-container {
  width: 1200px;
  margin: 0 auto;
  overflow: visible;   /* lejon avatar */
}

.reviews-track {
  display: flex;
  gap: 40px;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

/* =====================================================
   REVIEW CIRCLE – BASE
===================================================== */



.review-circle {
  overflow: visible;
  width: 340px;
  height: 340px;
  flex-shrink: 0;

  border-radius: 50%;
  background: rgba(8, 20, 25, 0.75);
  backdrop-filter: blur(3px);

  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transform: scale(0.92);
  opacity: 0.6;

  transition:
    transform 0.6s ease,
    opacity 0.6s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

/* ACTIVE */
.review-circle.active {
  /* MOS vendos width/height këtu */
  background: rgba(5, 15, 18, 0.9);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);

  transform: scale(1.15);
  opacity: 1;
  z-index: 2;
}

/* =====================================================
   AVATAR
===================================================== */

.review-avatar {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);

  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;

  border: 3px solid #fff;
  background: #fff;
}

/* =====================================================
   AUTHOR
===================================================== */

.review-author-top {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 14px;
  font-weight: 600;
  color: #ffffff;

  transition: all 0.4s ease;
}

.review-circle:not(.active) .review-author-top {
  font-size: 14px;
}

.review-circle:not(.active) {
  opacity: 0.35;
}

.review-circle.active .review-author-top {
  font-size: 14px;
}

/* =====================================================
   STARS (FIXED – NO MORE BUG)
===================================================== */

.review-stars {
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 15px;
  letter-spacing: 2px;
  color: #f5c518;
  line-height: 1;

  transition: all 0.4s ease;
}

.review-circle:not(.active) .review-stars {
  font-size: 14px;
}

.review-circle.active .review-stars {
  font-size: 16px;
}

/* =====================================================
   TEXT
===================================================== */

.review-text {
  text-align: center;
  padding: 0 20px;
}

.review-text p {
   font-style: italic;
  max-width: 260px;
  margin: 0 auto;

  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.55;
  color: #f2f2f2;

  display: -webkit-box;
  -webkit-line-clamp: 6;   /* maksimumi 6 rreshta */
  -webkit-box-orient: vertical;
  overflow: hidden;
}



.review-circle:not(.active) .review-text p {
  font-size: 14px;
}

.review-circle.active .review-text p {
  font-size: 14px;
}

/* =====================================================
   SOURCE (Airbnb / Booking)
===================================================== */

.review-source {
  position: absolute;
  bottom: 55px;
  right: 55px;

  font-size: 12px;
  letter-spacing: 0.5px;

  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.4);

  transition: all 0.3s ease;
}

.review-source a {
  color: inherit;
  text-decoration: inherit;
}

.review-source:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

/* =====================================================
   ARROWS
===================================================== */

.reviews-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  background: none;
  border: none;
  font-size: 42px;
  cursor: pointer;

  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.reviews-btn.prev { left: 20px; }
.reviews-btn.next { right: 20px; }

.reviews-btn:hover {
  color: #ffffff;
}

/* =====================================================
   READ ALL REVIEWS LINK
===================================================== */

.reviews-links {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.reviews-links a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

.reviews-links a:hover {
  opacity: 0.85;
}


.reviews-viewport {
  overflow: visible;
  height: 420px; /* pak më e madhe se review aktive */
  display: flex;
  align-items: center;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
  .reviews-container {
    width: 800px;
  }
}

@media (max-width: 768px) {
  .reviews-intro{
    height: 170px;
    padding: 0 18px;
  }

  .reviews-intro .reviews-title{
    font-size: 44px;
    line-height: 1.04;
  }

  .reviews-intro .reviews-title.lang-active{
    display: block;
  }

  .reviews-section{
    padding: 72px 16px 80px;
  }

  .reviews-header{
    margin-bottom: 28px;
  }

  .reviews-section .reviews-subtitle{
    font-size: 17px;
    line-height: 1.7;
    max-width: 320px;
  }

  .reviews-container {
    width: 280px;
    max-width: 280px;
  }

  .reviews-track{
    gap: 24px;
  }

  .reviews-viewport{
    overflow: hidden;
    height: 360px;
  }

  .review-circle {
    width: 280px;
    height: 320px;
    border-radius: 34px;
    transform: scale(0.96);
  }

  .review-circle.active {
    width: 280px;
    height: 320px;
    transform: scale(1);
  }

  .review-author-top {
    top: 64px;
    width: 100%;
    text-align: center;
  }

  .review-avatar{
    width: 72px;
    height: 72px;
    top: -18px;
  }

  .review-stars{
    top: 118px;
  }

  .review-text{
    padding: 28px 28px 0;
  }

  .review-text p{
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
    -webkit-line-clamp: 5;
  }

  .review-source {
    bottom: 28px;
    right: 28px;
    font-size: 11px;
  }

  .reviews-btn {
    font-size: 28px;
    top: 49%;
  }

  .reviews-btn.prev { left: -2px; }
  .reviews-btn.next { right: -2px; }

  .reviews-links{
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-align: center;
  }

  .reviews-google{
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.6;
    padding: 0 14px;
  }
}



.reviews-google {
  color: #ffffff;
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;

  text-align: center;
  width: 100%;

  display: none;
}

.reviews-google.lang-active {
  display: block;
}


.reviews-google a {
  color: #a7cacc;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}

.reviews-google a:hover {
  opacity: 0.7;
}




/* ===============================
   LOCATION SECTION
================================ */

.location-section{
  background: #fff;
  color: #000;
  padding: 90px 24px 70px;
  text-align: center;
}

/* HEADER */
.location-header h2{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 16px;
}

.location-header p{
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 35px;
}

/* MAP */
.map-wrapper{
  max-width: 1200px;
   margin: 0 auto 150px;
  border-radius: 4px;
  overflow: hidden;
}

.map-wrapper iframe{
  width: 100%;
  height: 500px;
  border: 0;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.map-wrapper iframe:hover{
  filter: grayscale(0%);
}




/* =========================================
   CONTACT – MEET THE HOST + FORM (COMPACT)
========================================= */

.contact-video-section{
  position: relative;
  padding:120px 0;
  overflow: hidden;
  color:#ffffff;
}

/* VIDEO BACKGROUND */
.contact-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

/* OVERLAY */
.contact-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:2;
}

/* WRAPPER */
.host-wrapper{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 24px;
}

/* GLASS CARD */
.host-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;

  padding:50px 60px;
  border-radius:28px;

  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 40px 100px rgba(0,0,0,0.55);

  max-width:1100px;
  width:100%;
}

/* =================================
   LEFT SIDE – HOST
================================= */

.host-info{
  flex:1;
  text-align:center;
}

.host-portrait{
  display: flex;
  justify-content: center;
}

/* PORTRAIT */
.host-portrait img{
  width:200px;
  height:200px;
  object-fit:cover;
  border-radius:50%;
  box-shadow:0 20px 50px rgba(0,0,0,0.6);
  transition:transform 0.4s ease;
}

.host-portrait img:hover{
  transform:scale(1.05);
}

.host-name{
  margin-top:14px;
  font-family:'Playfair Display', serif;
  font-size:17px;
  letter-spacing:1px;
  opacity:0.9;
}

/* DETAILS */

.host-details{
  margin-top:30px;
}

.host-details h2{
  font-family:'Playfair Display', serif;
  font-size:38px;
  font-weight:500;
  margin-bottom:10px;
}

.host-subtitle{
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  opacity:0.75;
  margin-bottom:28px;
}

/* DIVIDER */

.host-divider{
  width:60px;
  height:1px;
  background:rgba(255,255,255,0.5);
  margin:0 auto 28px auto;
}

/* CONTACT ITEMS */

.contact-item{
  margin-bottom:18px;
}

.contact-item span{
  display:block;
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  opacity:0.6;
  margin-bottom:5px;
}

.contact-item a{
  font-size:17px;
  color:#ffffff;
  text-decoration:none;
  transition:all 0.3s ease;
}

.contact-item a:hover{
  opacity:0.75;
  transform:translateX(3px);
}

.contact-label span{
  display:none;
}

/* WHATSAPP BUTTON */

.whatsapp-cta{
  margin-top:28px;
}

.whatsapp-btn{
  display:inline-block;
  padding:12px 26px;
  border-radius:50px;

  background:#25D366;
  color:#ffffff;
  font-size:14px;
  font-weight:500;
  letter-spacing:1px;
  text-decoration:none;

  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  transition:all 0.3s ease;
}

.whatsapp-btn:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
}




/* CONTACT GRID */

.host-contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
margin-top:30px;
}

/* CONTACT CARD */

.contact-box{
padding:16px;
border-radius:12px;

background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.15);

text-align:center;
transition:all .3s ease;
}

.contact-box:hover{
background:rgba(255,255,255,0.1);
transform:translateY(-3px);
}

/* LABEL */

.contact-label{
display:block;
font-size:11px;
letter-spacing:2px;
text-transform:uppercase;
opacity:0.6;
margin-bottom:6px;
}

/* LINK */

.contact-box a{
font-size:15px;
color:white;
text-decoration:none;
}

/* WHATSAPP SPECIAL */

.whatsapp-box{
background:#25D366;
border:none;
}

.whatsapp-box a{
color:white;
font-weight:500;
}


/* HOST CONTACT STYLE */

.host-contact{
margin-top:25px;
display:flex;
flex-direction:column;
gap:14px;
align-items:center;
}

.host-contact-row{
display:flex;
align-items:center;
gap:10px;
font-size:16px;
}

.contact-icon{
font-size:18px;
opacity:0.8;
}

.contact-icon-glyph{
display:inline-flex;
align-items:center;
justify-content:center;
width:20px;
min-width:20px;
font-size:18px;
opacity:0.88;
}

.contact-icon-label{
display:none;
}

.host-contact-row a{
color:white;
text-decoration:none;
transition:.3s;
}

.host-contact-row a:hover{
opacity:.7;
}

/* =================================
   RIGHT SIDE – CONTACT FORM
================================= */

.contact-form{
  flex:1;
  max-width:420px;
}

.contact-form h3{
  font-family:'Playfair Display', serif;
  font-size:28px;
  margin-bottom:22px;
}

/* FORM */

.contact-form form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;

  border:1px solid rgba(255,255,255,0.25);
  background:rgba(255,255,255,0.05);

  color:#ffffff;
  font-size:14px;
  outline:none;

  transition:all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:rgba(255,255,255,0.6);
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:rgba(255,255,255,0.6);
  background:rgba(255,255,255,0.08);
}

/* TEXTAREA */

.contact-form textarea{
  resize:none;
}

/* BUTTON */

.contact-form button{
  margin-top:8px;
  padding:12px;
  border-radius:50px;
  border:none;

  background:#ffffff;
  color:#000;

  font-weight:500;
  font-size:14px;
  letter-spacing:1px;

  cursor:pointer;
  transition:all 0.3s ease;
}

.contact-form button:hover{
  transform:translateY(-2px);
  background:#f2f2f2;
}


.form-success{
background:#2ecc71;
color:white;
padding:12px;
border-radius:8px;
margin-bottom:20px;
text-align:center;
}

.form-error{
background:#e74c3c;
color:white;
padding:12px;
border-radius:8px;
margin-bottom:20px;
text-align:center;
}

/* =================================
   RESPONSIVE
================================= */

@media (max-width:1024px){

  .host-card{
    flex-direction:column;
    text-align:center;
    gap:50px;
    padding:50px 35px;
  }

  .contact-form{
    max-width:100%;
  }

}

@media (max-width:768px){

  .contact-video-section{
    min-height: calc(100svh - 70px);
    padding: 76px 0 36px;
    display: flex;
    align-items: center;
  }

  .host-details h2{
    font-size:32px;
  }

  .host-wrapper{
    padding: 28px 16px;
  }

  .host-card{
    gap: 28px;
    padding: 28px 22px;
  }

  .host-portrait img{
    width:150px;
    height:150px;
  }

  .contact-form h3{
    font-size:24px;
  }

}


/* ================= GLOBAL LANGUAGE SWITCHER ================= */

.language-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  gap: 10px;
}

.nav-language-row{
  list-style: none;
}

/* BUTTON BASE – ALWAYS VISIBLE */
.language-switcher button {
  background: #111;               /* gjithmonë e errët */
  border: 1px solid #111;
  color: #fff;
  padding: 7px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* ACTIVE LANGUAGE */
.language-switcher button.active {
  background: #fff;
  color: #111;
  border-color: #111;
}

/* HOVER */
.language-switcher button:hover {
  background: #333;
}

.lang-hidden {
  visibility: hidden;
  position: absolute;
  height: 0;
  overflow: hidden;
}




/* ===== LANGUAGE-AWARE ABOUT BUTTON ===== */

/* by default HIDE all about buttons */
.about-btn{
  display: none;
}

/* show ONLY active language button */
.about-btn.lang-active{
  display: inline-flex;
}

@media (max-width: 768px) {
  :root {
    --mobile-shell: #f3eee6;
    --mobile-card: #fffcf8;
    --mobile-ink: #1f1914;
    --mobile-muted: #5e5449;
    --mobile-accent: #d8b489;
    --mobile-shadow: 0 22px 48px rgba(58, 42, 28, 0.12);
    --mobile-section-gap: 56px;
  }

  body {
    background: var(--mobile-shell);
    color: var(--mobile-ink);
  }

  body.menu-open {
    overflow: hidden;
  }

  .custom-navbar {
    height: 72px;
    padding: 0 16px;
  }

  .custom-navbar::before {
    background: linear-gradient(180deg, rgba(8, 12, 16, 0.72), rgba(8, 12, 16, 0.18));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-logo {
    height: 82px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  }

  .menu-toggle.active {
    background: rgba(255, 250, 244, 0.94);
    border-color: rgba(31, 25, 20, 0.12);
  }

  .menu-toggle.active span {
    background: #241d17;
  }

  .nav-links {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 96px 24px 32px;
    gap: 14px;
    background: linear-gradient(180deg, #f5eee4 0%, #ece1d2 100%);
    border-left: none;
    box-shadow: none;
  }

  .nav-links li {
    width: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(36, 29, 23, 0.08);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .nav-links a {
    color: #211a14;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 1;
  }

  .nav-links a::after {
    bottom: -4px;
    background: #211a14;
  }

  .nav-language-row {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(36, 29, 23, 0.1);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-language-row .language-switcher {
    gap: 12px;
  }

  .nav-language-row .language-switcher button {
    min-width: 56px;
    height: 36px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 1.2px;
    background: rgba(255, 251, 245, 0.95);
    color: #211a14;
    border: 1px solid rgba(36, 29, 23, 0.14);
  }

  .nav-language-row .language-switcher button.active {
    background: #211a14;
    color: #fff;
    border-color: #211a14;
  }

  #firstsection {
    min-height: 100svh;
    padding: 72px 18px 24px;
    display: flex;
    align-items: stretch;
    overflow: visible;
  }

  #firstsection::after {
    background: linear-gradient(180deg, rgba(8, 12, 16, 0.12) 0%, rgba(8, 12, 16, 0.42) 52%, rgba(8, 12, 16, 0.76) 100%);
  }

  .welcomeline {
    position: relative;
    inset: auto;
    min-height: calc(100svh - 96px);
    padding: 8px 22px 0;
    justify-content: center;
    align-items: center;
    gap: 18px;
    overflow: visible;
  }

  .hero-rating{
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 1;
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: center;
    flex-direction: column;
    gap: 4px;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero-rating .stars{
    gap: 6px;
  }

  .welcome-text {
    order: 2;
    width: 100%;
    max-width: 360px;
    align-items: center;
    text-align: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    margin-inline: auto;
  }

  .hero-card{
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .welcometag {
    max-width: 100%;
    font-size: clamp(36px, 6.4vw, 50px);
    line-height: 1.12;
    text-align: center;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.34);
    letter-spacing: 0;
    font-weight: 700;
  }

  .welcome-subtitle {
    max-width: 360px;
    margin: 14px auto 0;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }

  .hero-stats{
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 3;
    width: 100%;
    max-width: 360px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-inline: auto;
  }

  .stat-card{
    gap: 8px;
    text-align: center;
  }

  .stat-number-wrap{
    font-size: 52px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
  }

  .stat-unit{
    font-size: 20px;
  }

  .stat-label{
    font-size: 15px;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
  }

  .book-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-book-standalone{
    order: 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2px;
    max-width: 360px;
    margin-inline: auto;
  }

  .hero-book-btn {
    width: 100%;
    max-width: 220px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-book-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }

  .book-dropdown {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 340px;
    margin: 0;
    transform: none;
    border-radius: 24px;
    padding: 0;
    background: rgba(14, 21, 26, 0.95);
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 0.45s ease,
      opacity 0.3s ease,
      transform 0.35s ease,
      margin-top 0.35s ease,
      padding 0.35s ease;
  }

  .book-wrapper.open .book-dropdown {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    margin-top: 12px;
    padding: 18px 0;
  }

  .about-section {
    min-height: auto;
    padding: 18px 16px 0;
    background: transparent;
  }

  .about-overlay {
    display: none;
  }

  .about-content {
    max-width: none;
    padding: 38px 32px 40px;
    border-radius: 32px;
    background: var(--mobile-card);
    text-align: center;
    box-shadow: var(--mobile-shadow);
    align-items: center;
  }

  .about-content::before {
    background: transparent;
  }

  .about-content h2 {
    max-width: none;
    margin-bottom: 24px;
  }

  .about-content h2::before {
    font-size: clamp(28px, 6.2vw, 34px);
    line-height: 1.08;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.78;
    color: var(--mobile-muted);
    max-width: 100%;
  }

  .about-actions {
    width: 100%;
    justify-content: center;
  }

  .about-btn.lang-active {
    padding: 14px 22px;
    border-radius: 999px;
    background: #211a14;
    color: #fff;
    text-decoration: none;
  }

  .apartment-details {
    padding: var(--mobile-section-gap) 16px 28px;
    background: #f4efe7;
  }

  .details-container {
    max-width: 320px;
    margin: 0 auto;
  }

  .section-header {
    margin-bottom: 24px;
    text-align: center;
  }

  .section-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.08;
    text-align: center;
  }

  .section-description {
    max-width: 24ch;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 auto;
    text-align: center;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .details-rules,
  .details-gallery {
    padding: 30px 22px;
    border-radius: 32px;
    background: #fffdf9;
    box-shadow: 0 18px 40px rgba(58, 42, 28, 0.08);
  }

  .details-gallery {
    display: none;
  }

  .details-rules {
    text-align: center;
  }

  .details-rules h3 {
    font-size: 25px;
    text-align: center;
  }

  .rules-list li,
  .rules-text span {
    font-size: 15px;
    line-height: 1.95;
    text-align: center;
    color: #6b6259;
  }

  .rules-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gallery-small {
    border-radius: 20px;
    overflow: hidden;
  }

  .gallery-small img {
    height: 180px;
  }

  .overlay {
    padding: 18px 16px;
    font-size: 13px;
    letter-spacing: 1.2px;
  }

  .view-all-wrapper {
    justify-content: center;
  }

  .view-all-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 18px;
    border-radius: 999px;
    background: #211a14;
    color: #fff;
  }

  .things-video-section {
    min-height: auto;
    padding: var(--mobile-section-gap) 16px 28px;
    display: block;
    background: #f4efe7;
  }

  .things-bg-video,
  .things-overlay {
    display: none;
  }

  .things-content {
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
    padding: 30px 22px;
    border-radius: 32px;
    background: #fffdf9;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 18px 40px rgba(58, 42, 28, 0.08);
    text-align: center;
  }

  .things-title {
    font-size: 38px;
    line-height: 1.08;
    margin-bottom: 16px;
    text-align: center;
    color: #211a14;
  }

  .things-subtitle {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 2px;
    text-align: center;
    color: #8f8478;
  }

  .things-text {
    max-width: 320px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.85;
    text-align: center;
    color: #6b6259;
  }

  .things-actions {
    width: 100%;
    margin-top: 18px;
    display: flex;
    justify-content: center;
  }

  .things-btn.lang-active {
    width: 100%;
    max-width: 300px;
    padding: 16px 18px;
    border: none;
    border-radius: 999px;
    background: #211a14;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
  }

  .reviews-intro {
    display: none;
  }

  .reviews-section {
    padding: var(--mobile-section-gap) 16px 82px;
    background: linear-gradient(180deg, #10212a 0%, #193442 100%);
  }

  .reviews-header {
    margin-bottom: 28px;
    text-align: left;
  }

  .reviews-section .reviews-title.lang-active {
    display: block;
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.08;
    text-align: left;
  }

  .reviews-section .reviews-subtitle {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }

  .reviews-container {
    width: 100%;
    max-width: 100%;
  }

  .reviews-track {
    gap: 16px;
  }

  .reviews-viewport {
    height: 380px;
    padding: 18px 0 8px;
  }

  .review-circle,
  .review-circle.active {
    width: calc(100vw - 56px);
    max-width: 320px;
    height: 330px;
    border-radius: 30px;
  }

  .review-circle {
    transform: scale(0.98);
    opacity: 0.55;
    background: rgba(7, 15, 20, 0.68);
  }

  .review-circle.active {
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  }

  .reviews-btn {
    top: auto;
    bottom: -10px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
  }

  .reviews-btn.prev {
    left: calc(50% - 54px);
  }

  .reviews-btn.next {
    right: calc(50% - 54px);
  }

  .reviews-links {
    margin-top: 42px;
    justify-content: flex-start;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-align: left;
  }

  .reviews-google {
    padding: 0;
    text-align: left;
  }

  .location-section {
    padding: var(--mobile-section-gap) 16px 72px;
    background: #f8f3ea;
    text-align: left;
  }

  .location-header h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .location-header p {
    font-size: 15px;
    line-height: 1.6;
  }

  .map-wrapper {
    margin: 0;
    border-radius: 28px;
    box-shadow: var(--mobile-shadow);
  }

  .map-wrapper iframe {
    height: 360px;
    filter: none;
  }

  .contact-video-section {
    min-height: auto;
    padding: var(--mobile-section-gap) 0 72px;
  }

  .contact-overlay {
    background: linear-gradient(180deg, rgba(11, 14, 18, 0.32), rgba(11, 14, 18, 0.82));
  }

  .host-wrapper {
    padding: 0 16px;
  }

  .host-card {
    gap: 30px;
    padding: 30px 22px;
    border-radius: 32px;
    background: rgba(15, 20, 24, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  }

  .host-info,
  .contact-form {
    text-align: left;
  }

  .host-portrait {
    justify-content: flex-start;
  }

  .host-name {
    margin-top: 18px;
    font-size: 22px;
  }

  .host-divider {
    margin: 0 0 24px;
  }

  .host-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .host-contact {
    align-items: flex-start;
  }

  .host-contact-row {
    gap: 12px;
    font-size: 15px;
  }

  .contact-form {
    max-width: none;
  }

  .contact-form h3 {
    font-size: 28px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .contact-form button {
    padding: 14px 18px;
    background: #f7f1e7;
    color: #111;
  }
}

.about-content .about-btn:hover{
  background: #2b2b2b;
  color: #fff;
}

/* ===============================
   LANGUAGE SYSTEM – FINAL
================================ */

/* ===== GLOBAL LANGUAGE SYSTEM ===== */
[data-lang]{
  display: none;
}

.lang-active{
  display: block;
}


/* ===== ABOUT ACTIONS FIX ===== */

.about-content{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-actions{
  margin-top: 48px;        /* ⬅️ pozicion konstant */
  min-height: 52px;        /* ⬅️ rezervon hapësirë */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px){
  .about-content{
    align-items: center;
  }

  .reviews-section{
    padding: var(--mobile-section-gap) 16px 72px;
    border-top: none;
    background: url("../image/review1.avif") center center / cover no-repeat;
  }

  .reviews-section::before{
    background: linear-gradient(
      180deg,
      rgba(252,248,241,0.34) 0%,
      rgba(250,244,235,0.14) 18%,
      rgba(36,28,21,0.28) 42%,
      rgba(19,15,12,0.74) 100%
    );
  }

  .reviews-header{
    max-width: 340px;
    margin: 0 auto 30px;
    text-align: center;
  }

  .reviews-section .reviews-title.lang-active{
    display: block;
    margin-bottom: 14px;
    font-size: clamp(40px, 10vw, 54px);
    line-height: 1.04;
    text-align: center;
    color: rgba(28, 21, 16, 0.96);
    font-weight: 600;
    text-shadow: 0 8px 18px rgba(255,255,255,0.18);
  }

  .reviews-section .reviews-subtitle{
    display: none;
    max-width: 100%;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.78;
    text-align: center;
    color: rgba(40, 31, 24, 0.9);
    text-shadow: none;
  }

  .reviews-section .reviews-subtitle.lang-active{
    display: block;
    max-width: 320px;
    margin: 10px auto 0;
    padding: 16px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.28);
    background: linear-gradient(180deg, rgba(252,247,241,0.68) 0%, rgba(248,242,234,0.58) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 52px rgba(16,12,8,0.12);
    text-align: center;
  }

  .reviews-container{
    width: calc(100vw - 64px);
    max-width: 332px;
    margin: 0 auto;
  }

  .reviews-track{
    gap: 18px;
    align-items: stretch;
  }

  .reviews-viewport{
    height: 530px;
    padding: 12px 0 0;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
  }

  .review-circle,
  .review-circle.active{
    width: calc(100vw - 64px);
    max-width: 332px;
    min-height: 472px;
    height: auto;
    padding: 24px 24px 28px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.28);
    background: linear-gradient(180deg, rgba(252,247,241,0.68) 0%, rgba(248,242,234,0.58) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 52px rgba(16,12,8,0.12);
    transform: scale(1);
    opacity: 1;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .review-circle:not(.active){
    opacity: 0.42;
    transform: scale(0.97);
  }

  .review-circle::before{
    content: "";
    display: block;
    margin-bottom: 12px;
    width: 72px;
    height: 72px;
    background: url("../image/review-girl-icon.svg") center / contain no-repeat;
  }

  .review-circle:nth-child(even)::before{
    background-image: url("../image/review-man-icon.svg");
  }

  .review-avatar{
    display: none;
  }

  .review-author-top{
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    margin: 0 0 14px;
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    line-height: 1.2;
    text-align: center;
    color: #1f1914;
    white-space: nowrap;
  }

  .review-stars{
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin: 0;
    font-size: 24px;
    letter-spacing: 4px;
    color: #d4b066;
  }

  .review-overall{
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f1914;
    margin: 14px 0 28px;
  }

  .review-text{
    padding: 0;
    width: 100%;
    margin-bottom: 0;
  }

  .review-text p{
    max-width: 100%;
    font-size: 16px;
    line-height: 1.75;
    color: #2c241d;
    font-style: italic;
    -webkit-line-clamp: unset;
    overflow: visible;
    text-align: center;
    margin: 0;
  }

  .review-source{
    position: static;
    bottom: auto;
    right: auto;
    margin-top: auto;
    padding-top: 34px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b49255;
    text-align: center;
  }

  .review-source a{
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .reviews-btn{
    display: none;
  }

  .reviews-links{
    margin-top: 20px;
    justify-content: center;
    text-align: center;
    flex-wrap: nowrap;
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.9px;
    white-space: nowrap;
    color: rgba(28, 21, 16, 0.92);
  }

  .reviews-links span,
  .reviews-links a{
    white-space: nowrap;
  }

  .reviews-google{
    margin-top: 14px;
    text-align: center;
    color: rgba(28, 21, 16, 0.88);
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }

  .reviews-google a{
    display: block;
    margin-top: 4px;
    font-size: 0;
  }

  .reviews-google a::after{
    content: "Google.com";
    font-size: 12px;
    line-height: 1.1;
  }

  .reviews-google[data-lang="sq"].lang-active,
  .reviews-google[data-lang="it"].lang-active{
    font-size: 8.2px;
  }

  .reviews-google[data-lang="en"].lang-active{
    font-size: 9px;
  }
}

/* =================================
   TYPOGRAPHY SYSTEM
================================= */

:root{
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --type-section-title: 42px;
  --type-card-title: 28px;
  --type-eyebrow: 12px;
  --type-lead: 16px;
  --type-body: 16px;
  --lh-title: 1.08;
  --lh-lead: 1.7;
  --lh-body: 1.8;
}

.about-content h2::before,
.section-title,
.things-title,
.reviews-intro .reviews-title,
.reviews-section .reviews-title.lang-active,
.location-header h2,
.host-info h2{
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  line-height: var(--lh-title);
  font-weight: 500;
  letter-spacing: 0;
}

.details-rules h3,
.contact-form h3{
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  line-height: 1.15;
  font-weight: 500;
}

.section-subtitle,
.book-section-title,
.host-subtitle{
  font-family: var(--font-body);
  font-size: var(--type-eyebrow);
  line-height: 1.45;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-description,
.things-subtitle,
.reviews-subtitle,
.location-header p{
  font-family: var(--font-body);
  font-size: var(--type-lead);
  line-height: var(--lh-lead);
}

.about-content p,
.things-text,
.rules-list li,
.rules-text,
.review-text p,
.reviews-google,
.host-contact-row,
.contact-box a,
.contact-form input,
.contact-form textarea,
.contact-form button{
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: var(--lh-body);
}

.section-description,
.things-subtitle,
.reviews-subtitle,
.location-header p,
.about-content p,
.things-text,
.rules-list li,
.rules-text{
  font-weight: 400;
}

.section-title,
.things-title,
.reviews-intro .reviews-title,
.reviews-section .reviews-title.lang-active,
.location-header h2,
.host-info h2{
  margin-bottom: 18px;
}

.host-info h2{
  margin-top: 0;
  color: #ffffff;
}

@media (max-width: 768px){
  :root{
    --type-section-title: 34px;
    --type-card-title: 24px;
    --type-eyebrow: 11px;
    --type-lead: 15px;
    --type-body: 15px;
  }

  .reviews-section .reviews-title.lang-active,
  .reviews-intro .reviews-title{
    font-size: var(--type-section-title);
  }

  .about-content h2::before,
  .section-title,
  .things-title,
  .location-header h2,
  .host-info h2{
    font-size: var(--type-section-title);
  }
}

@media (max-width: 768px){
  .contact-video-section{
    display: block;
    min-height: auto;
    padding: var(--mobile-section-gap) 16px 72px;
    background: #f4efe7;
    color: #211a14;
  }

  .contact-bg-video,
  .contact-overlay{
    display: none;
  }

  .host-wrapper{
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 0;
  }

  .host-card{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 32px 22px;
    gap: 30px;
    border: none;
    border-radius: 28px;
    background: #fffdf9;
    box-shadow: 0 18px 40px rgba(58, 42, 28, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-align: center;
  }

  .host-info,
  .contact-form{
    width: 100%;
    text-align: center;
  }

  .host-info h2{
    color: #211a14;
  }

  .host-subtitle{
    color: #8f8478;
  }

  .host-portrait{
    justify-content: center;
  }

  .host-name{
    color: #211a14;
  }

  .host-divider{
    margin: 0 auto 24px;
    background: rgba(33, 26, 20, 0.28);
  }

  .host-contact{
    align-items: center;
  }

  .host-contact-row{
    width: 100%;
    justify-content: center;
    color: #211a14;
  }

  .host-contact-row a{
    color: #211a14;
    overflow-wrap: anywhere;
  }

  .contact-icon{
    color: #6b6259;
  }

  .contact-form{
    max-width: 100%;
  }

  .contact-form h3{
    color: #211a14;
  }

  .contact-form input,
  .contact-form textarea{
    color: #211a14;
    border-color: rgba(33, 26, 20, 0.18);
    background: #ffffff;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder{
    color: rgba(33, 26, 20, 0.55);
  }

  .contact-form input:focus,
  .contact-form textarea:focus{
    border-color: rgba(33, 26, 20, 0.42);
    background: #ffffff;
  }

  .contact-form button{
    width: 100%;
    border-radius: 999px;
    background: #211a14;
    color: #ffffff;
  }
}

/* =================================================
   REVIEWS SECTION - FINAL OVERRIDES
   ================================================= */
.reviews-section{
  background: #f4efe7 !important;
  border-top: none !important;
}

.reviews-section::before{
  display: none !important;
}

.reviews-section .reviews-subtitle{
  color: #5b5046 !important;
  text-shadow: none !important;
}

.review-circle{
  border-radius: 30px !important;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(247, 239, 229, 0.9) 100%) !important;
  border: 1px solid rgba(33, 26, 20, 0.1) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none !important;
}

.review-circle.active{
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(247, 239, 229, 0.94) 100%) !important;
  box-shadow: none !important;
}

.review-author-top,
.review-overall{
  color: #1f1914 !important;
}

.review-text p{
  color: #3f352d !important;
}

.review-source{
  color: #9b7b57 !important;
  text-decoration-color: rgba(155, 123, 87, 0.45) !important;
}

.review-source:hover{
  color: #7f6243 !important;
  text-decoration-color: rgba(127, 98, 67, 0.8) !important;
}

.reviews-btn{
  color: #211a14 !important;
}

.reviews-btn:hover{
  color: #6f5640 !important;
}

.reviews-links{
  color: #5b5046 !important;
}

.reviews-links a{
  color: #211a14 !important;
}

.reviews-google{
  color: #5b5046 !important;
}

.reviews-google a{
  color: #9b7b57 !important;
}

@media (max-width: 768px){
  .reviews-section .reviews-title.lang-active{
    color: #211a14 !important;
    text-shadow: none !important;
    text-align: center !important;
  }

  .reviews-header{
    text-align: center !important;
  }

  .reviews-section .reviews-subtitle.lang-active{
    border: 1px solid rgba(33, 26, 20, 0.1) !important;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(247, 239, 229, 0.9) 100%) !important;
    box-shadow: 0 24px 52px rgba(16, 12, 8, 0.12) !important;
  }

  .review-circle,
  .review-circle.active{
    border: 1px solid rgba(33, 26, 20, 0.1) !important;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(247, 239, 229, 0.9) 100%) !important;
    box-shadow: none !important;
  }

  .reviews-links{
    justify-content: center !important;
    text-align: center !important;
  }

  .reviews-google{
    text-align: center !important;
  }
}

@media (min-width: 769px){
  body > .language-switcher{
    display: none !important;
  }

  #firstsection{
    min-height: 100vh;
    padding: 96px 32px 56px;
  }

  #firstsection::after{
    background: linear-gradient(180deg, rgba(8, 12, 16, 0.12) 0%, rgba(8, 12, 16, 0.42) 52%, rgba(8, 12, 16, 0.76) 100%);
  }

  .welcomeline{
    position: relative;
    inset: auto;
    min-height: calc(100vh - 140px);
    padding: 72px 24px 40px;
    justify-content: center;
    align-items: center;
    gap: 22px;
  }

  .welcome-text{
    width: 100%;
    max-width: 980px;
    padding: 0;
    margin-inline: auto;
    align-items: center;
    text-align: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .hero-card{
    width: min(100%, 980px);
    padding: 0;
    align-items: center;
    text-align: center;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .welcometag{
    max-width: 980px;
    font-size: clamp(56px, 6vw, 88px);
    line-height: 1.08;
    letter-spacing: 0;
    text-align: center;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.34);
  }

  .hero-line.lang-active{
    gap: 10px;
  }

  .welcome-subtitle{
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }

  .hero-rating{
    margin: 0;
    gap: 6px;
    text-align: center;
  }

  .hero-stats{
    width: min(100%, 980px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding: 0;
    margin: 6px auto 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .stat-card{
    gap: 10px;
  }

  .stat-number-wrap{
    font-size: 64px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
  }

  .stat-unit{
    font-size: 24px;
  }

  .stat-label{
    font-size: 15px;
    line-height: 1.55;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
  }

  .hero-book-standalone{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }

  .hero-book-btn{
    width: 100%;
    max-width: 220px;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    box-shadow: none;
  }

  .hero-book-btn:hover{
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    transform: none;
  }
}

/* =================================================
   REVIEWS POLISH
================================================= */

.reviews-intro .reviews-title,
.reviews-section .reviews-title.lang-active{
  font-family: 'Allura', cursive !important;
  font-weight: 400 !important;
  font-size: clamp(58px, 7vw, 92px) !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.review-author-top{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.review-flag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 0.95em;
  line-height: 1;
}

.review-circle,
.review-circle.active{
  min-height: 490px;
}

.review-overall{
  margin: 14px 0 18px !important;
}

.review-text{
  width: 100%;
  max-width: 268px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.review-text p{
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 5 !important;
  overflow: hidden !important;
  max-width: 100%;
  margin: 0 !important;
}

.review-full-link{
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: #9b7b57;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-full-link:hover{
  color: #7f6243;
}

.review-circle.has-full-review .review-full-link{
  display: inline-flex;
}

.review-source{
  margin-top: auto !important;
  padding-top: 16px !important;
}

@media (max-width: 768px){
  .reviews-intro .reviews-title,
  .reviews-section .reviews-title.lang-active{
    font-size: 56px !important;
  }

  .review-circle,
  .review-circle.active{
    min-height: 460px;
  }

  .review-text p{
    -webkit-line-clamp: 4 !important;
  }
}

/* =================================================
   REVIEWS SIZE TUNING
================================================= */

.reviews-header{
  margin-bottom: 74px !important;
}

.reviews-section .reviews-subtitle{
  max-width: 700px !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.reviews-container{
  width: 1080px !important;
}

.reviews-track{
  gap: 28px !important;
}

.reviews-viewport{
  height: 390px !important;
}

.review-circle{
  width: 300px !important;
  height: 300px !important;
  min-height: 430px !important;
  transform: scale(0.88) !important;
}

.review-circle.active{
  transform: scale(1.02) !important;
}

.review-avatar{
  width: 58px !important;
  height: 58px !important;
  top: -18px !important;
}

.review-author-top{
  top: 50px !important;
  font-size: 12px !important;
}

.review-stars{
  top: 78px !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
}

.review-circle.active .review-stars{
  font-size: 14px !important;
}

.review-overall{
  margin: 10px 0 14px !important;
  font-size: 13px !important;
}

.review-text{
  max-width: 236px !important;
  gap: 8px !important;
}

.review-text p{
  font-size: 12px !important;
  line-height: 1.6 !important;
  -webkit-line-clamp: 5 !important;
}

.review-source{
  bottom: 36px !important;
  right: 36px !important;
  padding-top: 10px !important;
  font-size: 10px !important;
}

.reviews-links{
  margin-top: 34px !important;
  gap: 8px !important;
  font-size: 10px !important;
  letter-spacing: 1.2px !important;
}

.reviews-links a{
  font-size: 10px !important;
}

@media (max-width: 1200px){
  .reviews-container{
    width: 920px !important;
  }

  .review-circle{
    width: 280px !important;
    height: 280px !important;
    min-height: 410px !important;
  }
}

/* =========================================
   UNIFIED CONTACT SECTION
========================================= */

.site-contact-section .contact-overlay{
  background: linear-gradient(180deg, rgba(7, 11, 15, 0.54) 0%, rgba(7, 11, 15, 0.72) 100%) !important;
}

.site-contact-intro{
  max-width: 1200px;
  margin: 72px auto 0;
  padding: 0 24px;
  text-align: center;
}

.site-contact-intro h2{
  margin: 0;
  font-family: 'Allura', cursive;
  font-weight: 400;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.1;
  color: #1f1f1f;
}

.site-contact-wrapper{
  padding: 80px 24px !important;
}

.site-contact-form{
  max-width: 680px !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: center !important;
}

.site-contact-kicker{
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.site-contact-form h3{
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 48px);
  color: #ffffff;
}

.site-contact-subtitle{
  max-width: 46ch;
  margin: 0 auto 22px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.site-contact-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 24px;
}

.site-contact-links a{
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.site-contact-links a:hover{
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.site-contact-form form{
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-contact-form input,
.site-contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.site-contact-form input::placeholder,
.site-contact-form textarea::placeholder{
  color: rgba(255, 255, 255, 0.72);
}

.site-contact-form input:focus,
.site-contact-form textarea:focus{
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.site-contact-form textarea{
  resize: none;
}

.site-contact-form button{
  margin-top: 8px;
  padding: 12px;
  border-radius: 50px;
  border: 0;
  background: #ffffff;
  color: #181410;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.site-contact-form button:hover{
  transform: translateY(-2px);
  background: #f2f2f2;
}

.site-contact-form button span{
  color: #181410;
}

@media (max-width: 768px){
  .site-contact-intro{
    margin-top: 40px;
    padding: 0 16px;
  }

  .site-contact-intro h2{
    font-size: 52px;
  }

  .site-contact-wrapper{
    padding: 54px 20px !important;
  }

  .site-contact-form h3{
    font-size: 34px;
  }

  .site-contact-subtitle{
    font-size: 14px;
    line-height: 1.7;
  }

  .site-contact-links{
    flex-direction: column;
  }

  .site-contact-links a{
    justify-content: center;
  }

  .site-contact-kicker,
  .site-contact-form h3,
  .site-contact-subtitle,
  .site-contact-links a,
  .site-contact-form input,
  .site-contact-form textarea,
  .site-contact-form input::placeholder,
  .site-contact-form textarea::placeholder,
  .site-contact-form button,
  .site-contact-form button span{
    color: #181410 !important;
  }

  .site-contact-links a{
    border-color: rgba(54, 40, 27, 0.12) !important;
    background: rgba(255, 255, 255, 0.7) !important;
  }

  .site-contact-form input,
  .site-contact-form textarea{
    border-color: rgba(54, 40, 27, 0.16) !important;
    background: rgba(255, 255, 255, 0.86) !important;
  }
}

@media (max-width: 768px){
  .reviews-container{
    width: min(100%, 332px) !important;
    max-width: 332px !important;
    overflow: hidden !important;
    margin: 0 auto !important;
  }

  .reviews-track{
    gap: 18px !important;
  }

  .reviews-viewport{
    overflow: hidden !important;
    width: min(100%, 332px) !important;
    max-width: 332px !important;
    height: 530px !important;
    margin: 0 auto !important;
  }

  .reviews-slider{
    overflow: hidden !important;
  }

  .review-circle,
  .review-circle.active{
    width: min(100vw - 64px, 332px) !important;
    max-width: 332px !important;
    min-width: min(100vw - 64px, 332px) !important;
    flex: 0 0 min(100vw - 64px, 332px) !important;
    min-height: 472px !important;
    transform: scale(1) !important;
  }

  .review-circle:not(.active){
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .contact-icon-glyph{
    display: none;
  }

  .contact-icon-label{
    display: none;
  }

  .contact-icon-glyph{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    font-size: 18px;
    opacity: 0.88;
  }

  .host-contact-row{
    gap: 12px;
  }
}

@media (max-width: 768px){
  .site-contact-wrapper{
    padding: 54px 16px !important;
  }

  .site-contact-form{
    padding: 26px 20px !important;
    border-radius: 22px !important;
    background: rgba(255, 249, 241, 0.96) !important;
    border: 1px solid rgba(54, 40, 27, 0.12) !important;
    box-shadow: 0 24px 52px rgba(16, 12, 8, 0.12) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  .site-contact-kicker,
  .site-contact-form h3,
  .site-contact-subtitle,
  .site-contact-links a,
  .site-contact-form input,
  .site-contact-form textarea,
  .site-contact-form input::placeholder,
  .site-contact-form textarea::placeholder,
  .site-contact-form button,
  .site-contact-form button span{
    color: #181410 !important;
  }

  .site-contact-links a{
    border-color: rgba(54, 40, 27, 0.12) !important;
    background: rgba(255, 255, 255, 0.74) !important;
  }

  .site-contact-form input,
  .site-contact-form textarea{
    border-color: rgba(54, 40, 27, 0.16) !important;
    background: rgba(255, 255, 255, 0.9) !important;
  }

  .site-contact-form button{
    background: #f3ece3 !important;
    border: 1px solid rgba(54, 40, 27, 0.14) !important;
  }
}







