/* ==========================================================================
   NOMADICA — Agjenci Udhëtimesh Premium
   Design tokens
   ========================================================================== */
:root{
  --navy: #0B2A45;
  --navy-deep: #071A2C;
  --navy-soft: #1C3E5C;
  --sky: #4FA8D8;
  --sky-deep: #2E86BF;
  --sky-light: #DDF0FA;
  --coral: #FF6F59;
  --coral-deep: #E1543D;
  --coral-light: #FFE1DA;
  --sand: #E8D9B5;
  --sand-soft: #F5EDD9;
  --ivory: #FBF8F1;
  --ivory-deep: #F2EBDA;
  --charcoal: #26302E;
  --gray-cool: #667085;
  --gray-line: #E4DECD;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", "Helvetica Neue", Arial, sans-serif;

  --radius-lg: 1.25rem;
  --radius-md: 0.85rem;
  --radius-sm: 0.5rem;

  --shadow-soft: 0 30px 60px -25px rgba(11, 42, 69, 0.35);
  --shadow-card: 0 14px 34px -18px rgba(11, 42, 69, 0.28);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  font-weight: 400;
}

h1, h2, h3, h4, .display-font{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

p{ color: var(--gray-cool); }
a{ text-decoration: none; }

.container-xl-soft{
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-py{ padding-block: 5.5rem; }
.section-py-sm{ padding-block: 3.25rem; }

.section-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--coral-deep);
}

.section-title{
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  margin-bottom: 0.5rem;
}

.section-lede{ max-width: 42rem; color: var(--gray-cool); }
.mx-auto-block{ margin-inline: auto; }

.bg-ivory-deep{ background-color: var(--ivory-deep); }
.bg-sand-soft{ background-color: var(--sand-soft); }
.bg-navy{ background-color: var(--navy); }
.bg-navy-deep{ background-color: var(--navy-deep); }
.text-navy{ color: var(--navy); }
.text-coral{ color: var(--coral); }
.text-sky{ color: var(--sky-deep); }
.text-ivory{ color: var(--ivory); }
.text-ivory-soft{ color: rgba(251, 248, 241, 0.75); }
.text-muted-cool{ color: var(--gray-cool); }

hr.coral-rule{
  width: 64px;
  height: 2px;
  background: var(--coral);
  border: 0;
  opacity: 1;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  border-radius: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
  font-size: 0.92rem;
}

.btn-coral{
  background-color: var(--coral);
  border: 1px solid var(--coral);
  color: var(--ivory);
}
.btn-coral:hover{
  background-color: var(--coral-deep);
  border-color: var(--coral-deep);
  color: var(--ivory);
}

.btn-navy{
  background-color: var(--navy);
  border: 1px solid var(--navy);
  color: var(--ivory);
}
.btn-navy:hover{
  background-color: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--ivory);
}

.btn-outline-navy{
  background-color: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover{
  background-color: var(--navy);
  color: var(--ivory);
}

.btn-outline-ivory{
  background-color: transparent;
  border: 1px solid rgba(251, 248, 241, 0.6);
  color: var(--ivory);
}
.btn-outline-ivory:hover{
  background-color: var(--ivory);
  border-color: var(--ivory);
  color: var(--navy);
}

.btn-sm-pill{
  border-radius: 3rem;
  padding: 0.55rem 1.4rem;
  font-size: 0.82rem;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.topbar{
  background-color: var(--navy-deep);
  color: rgba(251,248,241,0.8);
  font-size: 0.8rem;
  padding: 0.5rem 0;
}
.topbar a{ color: rgba(251,248,241,0.8); }
.topbar a:hover{ color: var(--coral); }
.topbar .topbar-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(251,248,241,0.25);
  margin-left: 0.4rem;
}
.topbar .topbar-social a:hover{ background-color: var(--coral); border-color: var(--coral); color: var(--navy-deep); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-nomadica{
  background-color: var(--navy);
  padding-block: 1rem;
}

.brand-mark{
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ivory);
  text-transform: uppercase;
}
.brand-mark span{ color: var(--coral); }

.navbar-nomadica .nav-link{
  color: rgba(251, 248, 241, 0.82);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.85rem;
  transition: color 0.2s ease;
}
.navbar-nomadica .nav-link:hover,
.navbar-nomadica .nav-link.active{
  color: var(--coral);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,26,44,0.6) 0%, rgba(7,26,44,0.4) 45%, rgba(7,26,44,0.85) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  padding-block: 3rem 8rem;
}
.hero-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 1rem;
}
.hero-title{
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero-title em{ color: var(--coral); font-style: italic; }
.hero-lede{
  color: rgba(251, 248, 241, 0.85);
  max-width: 34rem;
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.page-header{
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.page-header::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,26,44,0.45) 0%, rgba(7,26,44,0.82) 100%);
}
.page-header-content{
  position: relative;
  z-index: 2;
  padding-block: 2rem 3rem;
}
.breadcrumb-ivory a{ color: rgba(251,248,241,0.75); }
.breadcrumb-ivory a:hover{ color: var(--coral); }
.breadcrumb-ivory .active{ color: var(--coral); }

/* ==========================================================================
   Search Bar
   ========================================================================== */
.search-bar{
  position: relative;
  z-index: 3;
  background-color: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-top: -5rem;
  padding: 1.75rem;
}
.search-field label{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--coral-deep);
  margin-bottom: 0.35rem;
  display: block;
}
.search-field .form-control,
.search-field .form-select{
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  color: var(--navy);
  background-color: #fff;
}
.search-field .form-control:focus,
.search-field .form-select:focus{
  border-color: var(--coral);
  box-shadow: 0 0 0 0.2rem rgba(255, 111, 89, 0.18);
}
.search-bar .btn{ width: 100%; height: 100%; min-height: 48px; }

.filter-pills{ display: flex; flex-wrap: wrap; gap: 0.6rem; }
.filter-pills .pill{
  border: 1px solid var(--gray-line);
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  background-color: #fff;
  display: inline-block;
}
.filter-pills .pill.active{
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--ivory);
}

/* ==========================================================================
   Story / Split sections
   ========================================================================== */
.split-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.split-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.stat-row{ border-top: 1px solid var(--gray-line); margin-top: 2.5rem; padding-top: 2rem; }
.stat-number{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  font-weight: 700;
}
.stat-label{
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--gray-cool);
}

/* ==========================================================================
   Destination Tiles (Popular Destinations)
   ========================================================================== */
.destination-tile{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  display: block;
  box-shadow: var(--shadow-card);
}
.destination-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.destination-tile:hover img{ transform: scale(1.08); }
.destination-tile::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,26,44,0) 40%, rgba(7,26,44,0.85) 100%);
}
.destination-tile-body{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.5rem;
  color: var(--ivory);
}
.destination-tile-body .country{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 0.25rem;
}
.destination-tile-body h3{ color: var(--ivory); font-size: 1.35rem; margin-bottom: 0.2rem; }
.destination-tile-body .count{ font-size: 0.82rem; color: rgba(251,248,241,0.8); }
.destination-tile.tall{ min-height: 460px; }

/* ==========================================================================
   Travel Style Category Cards
   ========================================================================== */
.category-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
}
.category-card:hover{ transform: translateY(-6px); }
.category-card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,42,69,0.15) 0%, rgba(11,42,69,0.88) 100%);
}
.category-card-body{
  position: relative;
  z-index: 2;
  padding: 1.35rem;
  color: var(--ivory);
}
.category-card-icon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--coral);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.category-card-body h3{ color: var(--ivory); font-size: 1.15rem; margin-bottom: 0.3rem; }
.category-card-body p{ color: rgba(251,248,241,0.82); font-size: 0.84rem; margin-bottom: 0; }

/* ==========================================================================
   Tour Cards
   ========================================================================== */
.tour-card{
  background-color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tour-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 46px -20px rgba(11, 42, 69, 0.35);
}
.tour-card-img{
  height: 230px;
  overflow: hidden;
  position: relative;
}
.tour-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-card-img img{ transform: scale(1.06); }
.tour-card-duration-tag{
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background-color: var(--navy);
  color: var(--ivory);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.74rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.tour-card-rating-tag{
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background-color: rgba(251,248,241,0.95);
  color: var(--navy);
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.tour-card-rating-tag i{ color: var(--coral); }
.tour-card-body{ padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.tour-card-destination{
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--sky-deep);
  margin-bottom: 0.35rem;
}
.tour-card-title{ font-size: 1.2rem; margin-bottom: 0.6rem; }
.tour-card-footer{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-line);
  padding-top: 1rem;
}
.tour-card-price{ font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.tour-card-price span{ font-family: var(--font-body); font-weight: 400; font-size: 0.72rem; color: var(--gray-cool); display: block; }

/* ==========================================================================
   Why Travel With Us
   ========================================================================== */
.why-item{ text-align: center; padding: 1.25rem 0.75rem; }
.why-icon{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--sky-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.1rem;
}
.why-title{ font-size: 1.02rem; margin-bottom: 0.35rem; color: var(--navy); font-weight: 600; }
.why-text{ font-size: 0.85rem; margin-bottom: 0; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.review-card{
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.review-stars{ color: var(--coral); font-size: 0.85rem; margin-bottom: 0.85rem; }
.review-quote{ font-size: 0.95rem; color: var(--charcoal); margin-bottom: 1.5rem; }
.review-author{ display: flex; align-items: center; gap: 0.85rem; }
.review-avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-author-name{ font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.review-author-loc{ font-size: 0.78rem; color: var(--gray-cool); }

/* ==========================================================================
   Travel Journal
   ========================================================================== */
.journal-card{
  background-color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.journal-card-img{ height: 210px; overflow: hidden; }
.journal-card-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.journal-card:hover .journal-card-img img{ transform: scale(1.06); }
.journal-card-body{ padding: 1.4rem 1.5rem 1.6rem; }
.journal-card-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: var(--coral-deep);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.journal-card-title{ font-size: 1.1rem; margin-bottom: 0.5rem; }
.journal-card-text{ font-size: 0.88rem; margin-bottom: 0.9rem; }
.journal-card-link{ font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.journal-card-link:hover{ color: var(--coral-deep); }

/* ==========================================================================
   Newsletter / CTA banner
   ========================================================================== */
.cta-banner{
  background-color: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}
.newsletter-form .form-control{
  border-radius: 2rem 0 0 2rem;
  border: 1px solid rgba(251,248,241,0.25);
  background-color: rgba(251,248,241,0.06);
  color: var(--ivory);
  padding: 0.75rem 1.2rem;
}
.newsletter-form .form-control::placeholder{ color: rgba(251,248,241,0.5); }
.newsletter-form .btn{ border-radius: 0 2rem 2rem 0; }

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-info-card{
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.contact-info-icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.contact-form label{
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}
.contact-form .form-control,
.contact-form .form-select{
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus{
  border-color: var(--coral);
  box-shadow: 0 0 0 0.2rem rgba(255, 111, 89, 0.18);
}

/* ==========================================================================
   Tour Details Page
   ========================================================================== */
.tour-gallery-main{
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.tour-gallery-main img{ width: 100%; height: 100%; object-fit: cover; }
.tour-gallery-thumb{
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 130px;
}
.tour-gallery-thumb img{ width: 100%; height: 100%; object-fit: cover; }

.tour-detail-price{
  background-color: var(--ivory-deep);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.tour-detail-price .price-value{
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--navy);
  font-weight: 700;
}
.tour-detail-meta-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.5rem;
  list-style: none;
  padding-left: 0;
}
.tour-detail-meta-list li{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.tour-detail-meta-list i{ color: var(--sky-deep); font-size: 1.1rem; }

.include-list{ list-style: none; padding-left: 0; }
.include-list li{
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.include-list.included i{ color: #3FA66A; }
.include-list.excluded i{ color: var(--coral-deep); }

.itinerary-item{
  display: flex;
  gap: 1.1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-line);
}
.itinerary-item:last-child{ border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.itinerary-day{
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.1;
}

.policy-box{
  background-color: var(--sand-soft);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.value-item{ display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.value-icon{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.gm-quote-card{
  background-color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--ivory);
}
.gm-quote-card p{ color: rgba(251,248,241,0.9); }
.gm-avatar{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--coral);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer{ background-color: var(--navy-deep); color: rgba(251,248,241,0.75); padding-top: 4rem; }
footer p{ color: rgba(251,248,241,0.65); }
.footer-heading{
  color: var(--ivory);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.footer-links{ list-style: none; padding-left: 0; margin-bottom: 0; }
.footer-links li{ margin-bottom: 0.65rem; }
.footer-links a{ color: rgba(251,248,241,0.7); font-size: 0.9rem; }
.footer-links a:hover{ color: var(--coral); }
.footer-social{ display: flex; gap: 0.75rem; }
.footer-social a{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(251,248,241,0.25);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.footer-social a:hover{ background-color: var(--coral); border-color: var(--coral); color: var(--navy-deep); }
.footer-bottom{
  border-top: 1px solid rgba(251,248,241,0.12);
  margin-top: 2.5rem;
  padding-block: 1.5rem;
  font-size: 0.82rem;
}
.footer-bottom a{ color: rgba(251,248,241,0.65); }
.footer-bottom a:hover{ color: var(--coral); }

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */
@media (max-width: 991.98px){
  .navbar-nomadica .navbar-nav{ text-align: center; }
  .search-bar{ margin-top: 1.5rem; }
  .hero{ min-height: 80vh; }
}
