* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1f4d3a;
  --primary-light: #2e6b51;
  --accent: #e6c8a0;
  --text-dark: #1e1e1e;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --gray-border: #e9ecef;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.5;
  background-color: #fff;
}

.container {
  max-width: 1280px;
  margin: 25px auto;
  padding: 0 30px;
}

/* ----- UTILITIES ----- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ----- NAVBAR (transparent overlay style) ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgb(255, 255, 255);
  box-shadow: 1px 2px 15px rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.navbar__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__logo-img {
  height: 45px;
  width: auto;
}

.navbar__name {
  font-family: Playfair Display, serif;
  font-size: 28.8px;
  font-weight: 700;
  color: #1f4d3a;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar.scrolled .navbar__name {
  color: var(--primary);
}

.navbar__collapse {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar__link {
  text-decoration: none;
  color: #1f4d3a;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1rem;
}

.navbar.scrolled .navbar__link {
  color: var(--text-dark);
}

.navbar__link:hover {
  color: var(--accent);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--primary);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.navbar__hamburger-line {
  width: 25px;
  height: 3px;
  background: rgb(0, 0, 0);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar__hamburger-line {
  background: var(--primary);
}

/* Animacioni i hamburgerit kur hapet */
.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ----- RESPONSIVE NAVBAR - MENU NGA LART POSHT (DROPDOWN) ----- */
@media (max-width: 900px) {
  .navbar__hamburger {
    display: flex;
  }

  /* Menyja tani del nga lart poshtë, jo nga ana */
  .navbar__collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 30px;
    gap: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    box-shadow: none;
    z-index: 1000;
  }

  /* Kur menyja është aktive, zgjerohet poshtë */
  .navbar__collapse.active {
    max-height: 400px;
    padding: 20px 30px 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top: 1px solid #e0e6ed;
  }

  .navbar__menu {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: center;
  }

  .navbar__collapse .navbar__link {
    color: var(--text-dark);
    font-size: 1.1rem;
    display: block;
    padding: 8px 0;
  }

  .navbar__collapse .navbar__link:hover {
    color: var(--primary);
  }

  .navbar__lang {
    margin-top: 20px;
    justify-content: center;
  }

  .navbar__collapse .lang-switcher__item {
    color: var(--text-dark);
  }

  .navbar__collapse .lang-switcher__item:hover {
    color: var(--primary);
  }

  .navbar__collapse .lang-switcher__item.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }

  /* Overlay - tani në background (opsional) */
  .navbar__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar__overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  .navbar__container {
    padding: 0 20px;
  }

  .navbar__logo-img {
    height: 35px;
  }

  .navbar__name {
    font-size: 1.6rem;
  }

  .navbar__collapse.active {
    padding: 20px 20px 30px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem 0;
  }

  .navbar__logo-img {
    height: 30px;
  }

  .navbar__name {
    font-size: 1.6rem;
  }

  .navbar__collapse.active {
    padding: 15px 20px 25px;
    max-height: 450px;
  }
}

/* ----- FOOTER ----- */
.footer {
  background: #0e2b20;
  color: #ddd;
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.footer__brand i {
  color: var(--accent);
}

.footer__desc {
  line-height: 1.6;
  max-width: 280px;
}

.footer__title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.7rem;
}

.footer__links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer address p {
  margin-bottom: 0.6rem;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social {
  display: flex;
  gap: 18px;
  font-size: 1.5rem;
}

.footer__social a {
  color: #ddd;
  transition: 0.2s;
}

.footer__social a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid #2d4a3c;
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

.footer__contact a{
  text-decoration: none;
  color: #DDDDDD;
}
.footer__contact a:hover {
  color: var(--accent);
}

.footer__logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}
/* ----- RESPONSIVE NAVBAR ----- */
@media (max-width: 900px) {

  .nav-menu,
  .nav-right {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
  }

  .nav-menu.active,
  .nav-right.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .navbar .container {
    justify-content: space-between;
  }
}

/* ----- PAGE TITLE ----- */
.page-title {
  background: linear-gradient(to right, #f8f9fa, #fff);
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--gray-border);
}

.page-title h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

.tour-meta {
  display: flex;
  gap: 30px;
  margin-top: 15px;
  color: #5e6b7d;
  flex-wrap: wrap;
}

/* ----- CAROUSEL (FIX: captions only for active slide) ----- */
.carousel-section {
  padding: 30px 0;
  position: relative;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 500px;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(4px);
  color: white;
  padding: 8px 25px;
  border-radius: 40px;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.carousel-slide.active-caption .carousel-caption {
  opacity: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary);
  transition: 0.2s;
  z-index: 10;
}

.carousel-arrow:hover {
  background: white;
  box-shadow: var(--shadow-sm);
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.2s;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ----- TOUR SUMMARY (1:1 style) ----- */
.summary-section {
  background: var(--bg-light);
  padding: 40px 0;
  border-radius: 40px 40px 0 0;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.summary-card {
  background: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.summary-card h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.inclusion-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  list-style: none;
}

.inclusion-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.theme-tag {
  background: #e9ecef;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
}

.expert-box {
  background: var(--primary);
  color: white;
  padding: 25px;
  border-radius: 20px;
  margin-top: 20px;
  text-align: center;
}

/* ----- ITINERARY (collapsible) ----- */
.itinerary-section {
  padding: 60px 0;
}

.day-card {
  border: 3px solid #e9ecef25;
  border-radius: 24px;
  margin-bottom: 20px;
  overflow: hidden;
}

.day-header {
  background: white;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.day-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary);
}

.day-header .toggle-icon {
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.3s;
}

.day-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
  background: #fafbfc;
}

.day-card.active .day-content {
  max-height: 2000px;
}

.day-card.active .toggle-icon {
  transform: rotate(180deg);
}

.day-content-inner {
  padding: 30px;
  border-top: 1px solid var(--gray-border);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.activity-item {
  background: white;
  padding: 8px 15px;
  border-radius: 30px;
  border: 1px solid #dee2e6;
}

.hotel-info {
  background: white;
  border-radius: 20px;
  padding: 15px 20px;
  margin: 15px 0;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

/* ----- INCLUSION TOGGLE BUTTONS (click to show/hide lists) ----- */
.inclusion-toggle-section {
  padding: 40px 0;
  background: white;
}

.toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.toggle-btn {
  background: transparent;
  border: 2px solid var(--primary);
  padding: 12px 40px;
  border-radius: 40px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: 0.2s;
  font-size: 1.1rem;
}

.toggle-btn.active {
  background: var(--primary);
  color: white;
}

.inclusion-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-light);
  border-radius: 40px;
  padding: 40px;
  display: none;
}

.inclusion-content.active {
  display: block;
}

.inclusion-content ul {
  list-style: none;
  columns: 2;
  column-gap: 40px;
}

.inclusion-content li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  break-inside: avoid;
}

.inclusion-content i.fa-check-circle {
  color: #2b8c4c;
}

.inclusion-content i.fa-times-circle {
  color: #c92a2a;
}

.price-breakdown{
    margin-top:25px;
}

.price-row{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 22px;

    background:#fff;

    border:1px solid rgba(0,0,0,0.06);
    border-radius:20px;

    box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.price-label{
    font-weight:500;
    color:#2c2c2c;
}

.price-value{
    display:flex;
    align-items:center;
    gap:10px;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    font-size:15px;
}

.new-price{
    font-size:28px;
    color:#183a2a;
    font-weight:700;
}

.per-person{
    font-size:14px;
    color:#777;
}

.offer-box{
    margin-top:20px;

    padding:24px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        rgba(24,58,42,0.06),
        rgba(200,169,107,0.08)
    );

    border:1px solid rgba(24,58,42,0.08);

    text-align:center;
}

.offer-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 16px;

    border-radius:999px;

    background:#183a2a;
    color:#fff;

    font-size:14px;
    font-weight:600;

    margin-bottom:14px;
}

.highlight-price{
    font-size:24px;
    font-weight:700;
    color:#183a2a;
}

.old-inline{
    text-decoration:line-through;
    color:#888;
}

/* ==================== STILET PËR FOTOT ==================== */
.day-image {
  width: 100%;
  height: 390px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.day-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.day-image:hover img {
  transform: scale(1.03);
}

/* Përshtatja për ekrane të vogla (mobile) */
@media (max-width: 768px) {
  .day-image {
    height: 320px;
  }
}

/* ----- BOOKING SECTION (with EmailJS + Stripe) ----- */
.booking-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: white;
  border-radius: 40px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.package-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary);
}

.price-breakdown {
  border-top: 1px dashed #ced4da;
  padding-top: 20px;
  margin-top: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
  border-top: 2px solid var(--primary);
  padding-top: 15px;
  margin-top: 15px;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e9ecef;
  border-radius: 30px;
  font-family: var(--font-sans);
}

.date-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.date-group .form-group {
  flex: 1;
  min-width: 200px;
  /* Add this line */
}

/* Add all mobile fixes here - right after the .contact-info styles */
@media (max-width: 768px) {
  .date-group {
    flex-direction: column;
    gap: 15px;
  }

  .date-group .form-group {
    width: 100%;
  }

  .booking-form input[type="date"] {
    min-height: 48px;
    font-size: 16px;
    padding: 12px 18px;
    background-color: white;
  }

  .booking-wrapper {
    padding: 25px 20px;
  }

  .booking-form label {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
}

@media (max-width: 480px) {

  .booking-form input,
  .booking-form textarea,
  .booking-form select {
    padding: 14px 16px;
    font-size: 16px;
  }

  .booking-section {
    padding: 30px 0;
  }

  .booking-form .form-group {
    margin-bottom: 18px;
  }

  .btn-stripe {
    margin: 15px 0 10px;
    padding: 14px;
  }

  #sendButton {
    width: 100%;
    padding: 16px;
    font-size: 15px;
  }
}

.contact-info {
  background: #f0f4f8;
  padding: 10px 15px;
  border-radius: 12px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #2c7da0;
}

.btn-stripe {
  background: #6772e5;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 40px;
  font-weight: 600;
  width: 100%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.2s;
  margin: 20px 0;
}

#sendButton {
  position: relative;
  overflow: hidden;
  background: #0e2b20;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

#sendButton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

#sendButton:hover::before {
  left: 100%;
}

/* ----- RESPONSIVE MEDIA QUERIES ----- */
@media (max-width: 1024px) {

  .summary-grid,
  .booking-wrapper,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .inclusion-content ul {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .carousel-slide {
    height: 350px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .toggle-buttons {
    flex-direction: column;
    align-items: center;
  }

  .toggle-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Floating language switcher - me flamur SVG */

.floating-lang-switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.floating-lang-btn {
  background: linear-gradient(135deg, #1f4d3a, #2a6b52);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  position: relative;
}

.floating-lang-menu {
  position: absolute;
  bottom: 100%;             /* shfaqet sipër butonit */
  right: 0;
  margin-bottom: 12px;      /* hapësirë nga butoni */
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  min-width: 110px;
}

.floating-lang-menu.show {
  display: flex;
}

/* Pjesa tjetër e stileve mbetet e njëjtë */
.floating-lang-menu button {
  background: none;
  border: none;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.floating-lang-menu button:hover {
  background-color: #f0f0f0;
}
.floating-lang-menu button.active {
  background-color: #1f4d3a;
  color: white;
}
.floating-lang-menu img,
.floating-lang-btn img {
  width: 20px;
  height: auto;
}

/* Fshih switcher‑in e vjetër në navbar */
.navbar .lang-switcher,
.navbar__lang {
  display: none !important;
}

@media (max-width: 768px) {
  .floating-lang-switcher {
    bottom: 20px;
  }
}