* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #1f4d3a;
  line-height: 1.6;
  background-color: #fefefe;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVBAR ========== */
.navbar {
  background: white;
  box-shadow: 0 2px 20px rgba(31, 77, 58, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo-img {
  width: 50px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}

.navbar__name {
  font-size: 24.4px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #1f4d3a;
  text-decoration: none;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.navbar__hamburger-line {
  width: 25px;
  height: 3px;
  background: #1f4d3a;
  border-radius: 3px;
  transition: all 0.3s;
}

.navbar__collapse {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar__link {
  text-decoration: none;
  color: #1f4d3a;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar__link:hover,
.navbar__link.active {
  color: #00bf6f;
}

.navbar__lang {
  display: flex;
  gap: 0.5rem;
}

.lang-switcher__item {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.lang-switcher__item.active {
  background: #1f4d3a;
  color: white;
}

/* ========== HAMBURGER TRANSFORM TO X ========== */
.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ========== OVERLAY PËR MBYLLJE JASHTË ========== */
.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: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar__overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar__collapse {
  z-index: 1000;
}

/* Sigurohu që në desktop menyja të jetë e dukshme normalisht */
@media (min-width: 901px) {
  .navbar__collapse {
    display: flex !important;
  }
}

/* ========== PAGE HEADER ========== */
.page-header {
  background-image: url(/assets/images/main/daily.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px 20px;
  text-align: center;
  background-repeat: no-repeat;
  width: 100%;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ========== TOURS GRID ========== */
.tours-section {
  padding: 40px 0;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 15px;
}

.tour-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(31, 77, 58, 0.15);
}

.tour-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tour-card:hover .tour-card__image img {
  transform: scale(1.05);
}

.tour-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2c7da0;
  color: rgb(255, 255, 255);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tour-card__content {
  padding: 20px;
}

.tour-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1f4d3a;
}

.tour-card__desc {
  color: #1f4d3a;
  font-size: 0.85rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.tour-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tour-card__features span {
  font-size: 0.75rem;
  color: #1f4d3a;
  background: #eef2ff;
  padding: 4px 8px;
  border-radius: 20px;
}

.tour-card__features i {
  margin-right: 5px;
}

.tour-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e0e6ed;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.tour-card__duration {
  font-size: 0.85rem;
  color: #1f4d3a;
}

.tour-card__price {
  font-weight: 700;
  color: #1f4d3a;
  font-size: 1.1rem;
}

.tour-card__btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #1f4d3a;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.tour-card__btn:hover {
  background: #00bf6f;
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background: linear-gradient(135deg, #1f4d3a 0%, #00bf6f 100%);
  color: white;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 1.3rem;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1f4d3a;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e6ed;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2c7da0;
}

.btn-submit {
  width: 100%;
  background: #1f4d3a;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #00bf6f;
}

.selected-tour {
  background: #eef2ff;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  color: #1f4d3a;
  word-wrap: break-word;
}

/* ========== FOOTER ========== */
.footer {
  background: #0e2b20;
  color: #ddd;
  padding: 40px 0 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.footer__brand i {
  color: #00bf6f;
}

.footer__desc {
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer__title {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.7rem;
}

.footer__links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: #00bf6f;
}

.footer address p {
  margin-bottom: 0.6rem;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.footer__social {
  display: flex;
  gap: 15px;
  font-size: 1.3rem;
  flex-wrap: wrap;
}

.footer__social a {
  color: #ddd;
  transition: 0.2s;
}

.footer__contact a {
  text-decoration: none;
  color: #DDDDDD;
  font-size: 0.9rem;
}

.footer__contact a:hover {
  color: #00bf6f;
}

.footer__social a:hover {
  color: #00bf6f;
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid #2d4a3c;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 20px;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .tours-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__container {
    flex-wrap: wrap;
    padding: 0.8rem 20px;
  }

  .navbar__collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .navbar__collapse.active {
    display: flex;
  }

  .navbar__menu {
    flex-direction: column;
        align-items: center;
        gap: 1.2rem;
  }

  .navbar__lang {
    justify-content: center;
    margin-top: 10px;
  }

  .navbar__name {
    font-size: 1.2rem;
  }

  .navbar__logo-img {
    width: 50px;
    height: auto;
  }

  .page-header {
    padding: 30px 15px;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .page-header p {
    font-size: 0.9rem;
  }

  .tours-section {
    padding: 30px 0;
  }

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .tour-card__title {
    font-size: 1.2rem;
  }

  .tour-card__content {
    padding: 15px;
  }

  .modal-content {
    width: 95%;
    margin: 0 auto;
  }

  .modal-header h3 {
    font-size: 1.1rem;
  }

  .modal-body {
    padding: 15px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
  }
}

/* Small Mobile */
@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }

  .footer {
    padding: 30px 0 15px;
  }

  .footer__brand {
    font-size: 1.5rem;
  }

  .footer__title {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }

  .tour-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .tour-card__features {
    gap: 6px;
  }

  .tour-card__features span {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .navbar__container {
    padding: 0.6rem 15px;
  }

  .navbar__name {
    font-size: 24.4px;
  }

  .page-header h1 {
    font-size: 1.3rem;
  }

  .tour-card__image {
    height: 180px;
  }

  .btn-submit,
  .tour-card__btn {
    padding: 10px;
    font-size: 0.9rem;
  }
}