/* ============================================================
   HOLIDAYTIME — Homepage Sections
   Hero + Search Widget + Featured sections + Footer
   ============================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.hero{
  position:relative;
  min-height:min(680px, 88vh);
  display:flex;flex-direction:column;justify-content:flex-end;
  overflow:hidden;
  background:var(--blue-900);
}
.hero__bg{
  position:absolute;inset:0;
  background:url('/assets/images/hero-fethiye.jpg') center/cover no-repeat;
}
.hero__bg::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(
    180deg,
    rgba(5,16,43,.25) 0%,
    rgba(5,16,43,.45) 50%,
    rgba(5,16,43,.82) 100%
  );
}
.hero__content{
  position:relative;z-index:1;
  padding:0 0 2.5rem;
}
.hero__eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(8px);
  border-radius:var(--radius-full);
  padding:.375rem 1rem;
  font-size:.8rem;
  font-weight:500;
  color:rgba(255,255,255,.85);
  margin-bottom:1.25rem;
  width:fit-content;
}
.hero__eyebrow::before{content:'';width:6px;height:6px;background:var(--orange-400);border-radius:50%;flex-shrink:0}
.hero__title{
  font-family:var(--font-display);
  font-size:clamp(2.25rem,5.5vw,3.75rem);
  font-weight:700;
  color:var(--white);
  line-height:1.1;
  letter-spacing:-.02em;
  margin-bottom:1rem;
  max-width:680px;
}
.hero__title em{font-style:italic;color:var(--teal-400)}
.hero__subtitle{
  font-size:clamp(1rem,2vw,1.1875rem);
  color:rgba(255,255,255,.8);
  max-width:520px;
  line-height:1.55;
  margin-bottom:2rem;
  font-weight:300;
}
.hero__stats{
  display:flex;align-items:center;gap:2.5rem;
  margin-top:1.5rem;
}
.hero__stat{text-align:center}
.hero__stat-num{
  font-family:var(--font-display);
  font-size:1.625rem;
  font-weight:700;
  color:var(--white);
  line-height:1;
}
.hero__stat-label{font-size:.75rem;color:rgba(255,255,255,.6);margin-top:.25rem}
.hero__stat-sep{width:1px;height:32px;background:rgba(255,255,255,.2)}

/* ── Search / Booking Widget ────────────────────────────────── */
.search-widget{
  position:relative;z-index:10;
  margin-top:-3rem;
  margin-bottom:1rem;
}
.search-widget__card{
  background:var(--white);
  border-radius:var(--radius-2xl);
  box-shadow:0 24px 60px rgba(0,0,0,.18),0 4px 16px rgba(0,0,0,.08);
  overflow:hidden;
}
.search-widget__tabs{
  display:flex;
  border-bottom:1px solid var(--gray-200);
  background:var(--gray-50);
}
.search-widget__tab{
  flex:1;
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  padding:1rem .75rem;
  font-size:.875rem;
  font-weight:500;
  color:var(--gray-600);
  transition:all var(--dur-normal);
  border-bottom:2px solid transparent;
  margin-bottom:-1px;
  cursor:pointer;
}
.search-widget__tab svg{width:18px;height:18px;flex-shrink:0}
.search-widget__tab:hover{color:var(--blue-600);background:var(--blue-50)}
.search-widget__tab.active{
  color:var(--blue-600);
  border-bottom-color:var(--blue-600);
  background:var(--white);
  font-weight:600;
}
.search-widget__body{padding:1.5rem}
.search-panel{display:none}
.search-panel.active{display:block}
.search-form{
  display:grid;
  gap:1rem;
  grid-template-columns:1fr 1fr 1fr auto;
  align-items:flex-end;
}
.search-form--3{grid-template-columns:1fr 1fr auto}
.search-form--2{grid-template-columns:1fr 1fr auto}
.search-field{display:flex;flex-direction:column;gap:.375rem}
.search-field__label{
  font-size:.6875rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--gray-500);
  display:flex;align-items:center;gap:.375rem;
}
.search-field__label svg{width:13px;height:13px;color:var(--blue-500)}
.search-field .form-input--lg,.search-field .form-select--lg{border-color:var(--gray-300)}
.search-btn{
  height:52px;
  padding:0 1.75rem;
  background:var(--orange-500);
  color:var(--white);
  border-radius:var(--radius-lg);
  font-size:1rem;
  font-weight:600;
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  box-shadow:var(--shadow-cta);
  transition:all var(--dur-normal) var(--ease-out);
  white-space:nowrap;
  border:none;
  cursor:pointer;
  flex-shrink:0;
}
.search-btn:hover{background:var(--orange-600);transform:translateY(-1px);box-shadow:0 6px 24px rgba(249,115,22,.45)}
.search-btn svg{width:20px;height:20px}

/* Popular searches */
.search-quick{
  padding:.875rem 1.5rem 1.25rem;
  display:flex;align-items:center;gap:.625rem;
  border-top:1px solid var(--gray-100);
  flex-wrap:wrap;
}
.search-quick__label{font-size:.75rem;color:var(--gray-500);font-weight:500;white-space:nowrap}
.search-quick__tag{
  display:inline-flex;align-items:center;gap:.25rem;
  padding:.25rem .75rem;
  background:var(--gray-100);
  border-radius:var(--radius-full);
  font-size:.8125rem;
  color:var(--gray-700);
  transition:all var(--dur-fast);
  cursor:pointer;
}
.search-quick__tag:hover{background:var(--blue-100);color:var(--blue-700)}

/* ── Destinations strip ─────────────────────────────────────── */
.destinations-strip{overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.destinations-strip::-webkit-scrollbar{display:none}
.destinations-strip__inner{display:flex;gap:1rem;width:max-content;padding:.5rem 0}
.dest-pill{
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  padding:.875rem 1.25rem;
  background:var(--white);
  border:1.5px solid var(--gray-200);
  border-radius:var(--radius-xl);
  cursor:pointer;
  transition:all var(--dur-normal) var(--ease-out);
  white-space:nowrap;
  min-width:110px;
}
.dest-pill:hover{border-color:var(--blue-400);background:var(--blue-50);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.dest-pill.active{border-color:var(--blue-600);background:var(--blue-600);color:var(--white)}
.dest-pill__emoji{font-size:1.5rem;line-height:1}
.dest-pill__name{font-size:.8125rem;font-weight:500}
.dest-pill__count{font-size:.6875rem;color:var(--gray-500)}
.dest-pill.active .dest-pill__count{color:rgba(255,255,255,.7)}

/* ── Why choose us ──────────────────────────────────────────── */
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.trust-card{
  padding:1.75rem 1.5rem;
  background:var(--white);
  border-radius:var(--radius-xl);
  border:1px solid var(--gray-200);
  text-align:center;
  transition:all var(--dur-normal) var(--ease-out);
}
.trust-card:hover{border-color:var(--blue-300);box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.trust-card__icon{
  width:56px;height:56px;
  background:var(--blue-100);
  border-radius:var(--radius-xl);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1rem;
  transition:background var(--dur-normal);
}
.trust-card:hover .trust-card__icon{background:var(--blue-600)}
.trust-card__icon svg{width:26px;height:26px;color:var(--blue-600);transition:color var(--dur-normal)}
.trust-card:hover .trust-card__icon svg{color:var(--white)}
.trust-card h3{font-size:1rem;margin-bottom:.375rem}
.trust-card p{font-size:.875rem;color:var(--gray-500);line-height:1.55}

/* ── Reviews ────────────────────────────────────────────────── */
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.review-card{
  background:var(--white);
  border-radius:var(--radius-xl);
  padding:1.5rem;
  border:1px solid var(--gray-200);
  box-shadow:var(--shadow-xs);
  display:flex;flex-direction:column;gap:1rem;
}
.review-card__header{display:flex;align-items:center;gap:.875rem}
.review-card__avatar{
  width:44px;height:44px;border-radius:50%;
  background:var(--blue-600);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);
  font-size:1.0625rem;
  font-weight:600;
  color:var(--white);
  flex-shrink:0;
}
.review-card__meta strong{display:block;font-size:.9375rem;font-weight:600}
.review-card__meta span{font-size:.8125rem;color:var(--gray-500)}
.review-card__body{font-size:.9375rem;color:var(--gray-700);line-height:1.6;font-style:italic;flex:1}
.review-card__product{
  display:flex;align-items:center;gap:.5rem;
  font-size:.8125rem;color:var(--gray-500);
  padding-top:.75rem;
  border-top:1px solid var(--gray-100);
}
.review-card__product svg{width:14px;height:14px;color:var(--blue-400)}

/* ── CTA banner ─────────────────────────────────────────────── */
.cta-banner{
  background:linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 60%, var(--blue-950) 100%);
  border-radius:var(--radius-2xl);
  padding:3.5rem;
  display:flex;align-items:center;justify-content:space-between;gap:2rem;
  overflow:hidden;
  position:relative;
}
.cta-banner::before{
  content:'';
  position:absolute;top:-60px;right:-60px;
  width:280px;height:280px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
}
.cta-banner::after{
  content:'';
  position:absolute;bottom:-80px;right:100px;
  width:200px;height:200px;
  border-radius:50%;
  background:rgba(249,115,22,.08);
}
.cta-banner__text h2{color:var(--white);margin-bottom:.625rem}
.cta-banner__text p{color:rgba(255,255,255,.7);font-size:1.0625rem}
.cta-banner__actions{display:flex;gap:1rem;flex-shrink:0}

/* ── Footer ─────────────────────────────────────────────────── */
.footer{background:var(--blue-950);color:rgba(255,255,255,.7);padding:4rem 0 0}
.footer__top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.08)}
.footer__brand{}
.footer__brand-logo{display:flex;align-items:center;gap:.625rem;margin-bottom:1rem}
.footer__brand-logo .mark{
  width:36px;height:36px;
  background:var(--blue-600);
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
}
.footer__brand-logo .mark svg{width:20px;height:20px;fill:var(--white)}
.footer__brand-logo .name{
  font-family:var(--font-display);
  font-size:1.1875rem;
  font-weight:700;
  color:var(--white);
}
.footer__brand-logo .name span{color:var(--orange-400)}
.footer__desc{font-size:.875rem;line-height:1.7;margin-bottom:1.5rem;max-width:280px}
.footer__social{display:flex;gap:.625rem}
.footer__social-link{
  width:36px;height:36px;
  background:rgba(255,255,255,.08);
  border-radius:var(--radius-md);
  display:flex;align-items:center;justify-content:center;
  transition:background var(--dur-fast),transform var(--dur-fast);
}
.footer__social-link:hover{background:var(--blue-600);transform:translateY(-2px)}
.footer__social-link svg{width:16px;height:16px;fill:rgba(255,255,255,.7)}
.footer__social-link:hover svg{fill:var(--white)}

.footer__col h4{
  font-family:var(--font-body);
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.4);
  margin-bottom:1.25rem;
}
.footer__links{display:flex;flex-direction:column;gap:.625rem}
.footer__links a{
  font-size:.875rem;
  color:rgba(255,255,255,.6);
  transition:color var(--dur-fast);
}
.footer__links a:hover{color:var(--white)}

.footer__contact{display:flex;flex-direction:column;gap:.875rem}
.footer__contact-item{display:flex;align-items:flex-start;gap:.625rem;font-size:.875rem}
.footer__contact-item svg{width:16px;height:16px;flex-shrink:0;margin-top:3px;color:var(--blue-400)}

.footer__bottom{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.25rem 0;
  font-size:.8125rem;
  color:rgba(255,255,255,.35);
  border-top:1px solid rgba(255,255,255,.06);
  flex-wrap:wrap;
  gap:.75rem;
}
.footer__bottom-links{display:flex;gap:1.5rem}
.footer__bottom-links a{color:rgba(255,255,255,.35);transition:color var(--dur-fast)}
.footer__bottom-links a:hover{color:rgba(255,255,255,.7)}
.footer__bottom-trust{display:flex;align-items:center;gap:.625rem}
.footer__bottom-trust-badge{
  background:rgba(255,255,255,.06);
  border-radius:var(--radius-md);
  padding:.25rem .625rem;
  font-size:.6875rem;
  font-weight:600;
  color:rgba(255,255,255,.5);
  display:flex;align-items:center;gap:.25rem;
}
.footer__bottom-trust-badge svg{width:12px;height:12px;color:var(--teal-400)}

/* ── Tour/Villa listing page ────────────────────────────────── */
.listing-header{
  background:linear-gradient(135deg,var(--blue-800),var(--blue-900));
  padding:3rem 0 2rem;
  color:var(--white);
}
.listing-header h1{color:var(--white);margin-bottom:.5rem}
.listing-header p{color:rgba(255,255,255,.7)}
.listing-header__filters{display:flex;align-items:center;gap:.625rem;margin-top:1.25rem;flex-wrap:wrap}
.filter-pill{
  padding:.375rem .875rem;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  border-radius:var(--radius-full);
  font-size:.8125rem;
  color:rgba(255,255,255,.8);
  cursor:pointer;
  transition:all var(--dur-fast);
  backdrop-filter:blur(4px);
}
.filter-pill:hover,.filter-pill.active{background:var(--white);color:var(--blue-800);border-color:var(--white)}

.listing-layout{display:grid;grid-template-columns:280px 1fr;gap:2rem;padding-top:2rem}
.listing-sidebar{position:sticky;top:calc(var(--header-h) + 1rem);align-self:start}
.listing-sidebar__section{background:var(--white);border-radius:var(--radius-xl);border:1px solid var(--gray-200);overflow:hidden;margin-bottom:1rem}
.listing-sidebar__head{padding:1rem 1.25rem;border-bottom:1px solid var(--gray-100);font-weight:600;font-size:.9375rem;display:flex;align-items:center;justify-content:space-between}
.listing-sidebar__body{padding:1.25rem}
.listing-sidebar__body .form-group{margin-bottom:.875rem}
.listing-sidebar__body .form-group:last-child{margin-bottom:0}
.checkbox-group{display:flex;flex-direction:column;gap:.625rem}
.checkbox-item{display:flex;align-items:center;gap:.625rem;cursor:pointer;font-size:.9rem}
.checkbox-item input[type=checkbox]{width:16px;height:16px;accent-color:var(--blue-600)}

.listing-results__toolbar{
  display:flex;align-items:center;justify-content:space-between;
  padding:.75rem 0 1.25rem;
}
.listing-results__count{font-size:.9375rem;color:var(--gray-600)}
.listing-results__count strong{color:var(--gray-900)}
.listing-results__sort{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--gray-600)}
.listing-results__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem}

/* ── Transfer search ────────────────────────────────────────── */
.transfer-search{
  background:linear-gradient(135deg,var(--blue-900),var(--blue-800));
  border-radius:var(--radius-2xl);
  padding:2.5rem;
  color:var(--white);
}
.transfer-search h2{color:var(--white);margin-bottom:.375rem}
.transfer-search p{color:rgba(255,255,255,.65);margin-bottom:1.75rem}
.transfer-form{
  background:var(--white);
  border-radius:var(--radius-xl);
  padding:1.5rem;
  display:grid;
  grid-template-columns:1fr auto 1fr auto auto;
  gap:1rem;
  align-items:flex-end;
}
.transfer-swap{
  width:40px;height:52px;
  display:flex;align-items:center;justify-content:center;
  color:var(--gray-400);
  cursor:pointer;
  flex-shrink:0;
  transition:color var(--dur-fast),transform var(--dur-fast);
}
.transfer-swap:hover{color:var(--blue-600);transform:rotate(180deg)}
.transfer-swap svg{width:20px;height:20px}
.transfer-vehicles{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.5rem}
.vehicle-card{
  background:rgba(255,255,255,.08);
  border:1.5px solid rgba(255,255,255,.15);
  border-radius:var(--radius-xl);
  padding:1.25rem;
  cursor:pointer;
  transition:all var(--dur-normal);
  text-align:center;
}
.vehicle-card:hover{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.35)}
.vehicle-card.active{background:var(--white);border-color:var(--white)}
.vehicle-card.active *{color:var(--blue-900)!important}
.vehicle-card__icon{font-size:2rem;margin-bottom:.5rem}
.vehicle-card__name{font-size:.9rem;font-weight:600;color:var(--white);margin-bottom:.25rem}
.vehicle-card__cap{font-size:.75rem;color:rgba(255,255,255,.6)}
.vehicle-card__price{
  font-family:var(--font-display);
  font-size:1.0625rem;
  font-weight:700;
  color:var(--teal-400);
  margin-top:.5rem;
}

/* ── Pagination ─────────────────────────────────────────────── */
.pagination{display:flex;align-items:center;justify-content:center;gap:.375rem;padding:2.5rem 0}
.pagination__item{
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  border-radius:var(--radius-md);
  font-size:.875rem;
  font-weight:500;
  color:var(--gray-700);
  border:1px solid var(--gray-300);
  transition:all var(--dur-fast);
}
.pagination__item:hover{border-color:var(--blue-400);color:var(--blue-600);background:var(--blue-50)}
.pagination__item.active{background:var(--blue-600);color:var(--white);border-color:var(--blue-600)}
.pagination__item.disabled{opacity:.4;pointer-events:none}

/* ── Responsive adjustments ─────────────────────────────────── */
@media(max-width:1024px){
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:repeat(2,1fr)}
  .footer__top{grid-template-columns:1fr 1fr;gap:2rem}
  .listing-layout{grid-template-columns:1fr}
  .listing-sidebar{position:static}
  .transfer-form{grid-template-columns:1fr 1fr;grid-template-rows:auto auto}
  .transfer-swap{display:none}
  .cta-banner{flex-direction:column;text-align:center}
  .cta-banner__actions{justify-content:center}
}
@media(max-width:768px){
  .hero{min-height:70vh}
  .hero__stats{gap:1.25rem}
  .hero__stat-sep{display:none}
  .search-form{grid-template-columns:1fr}
  .search-form .search-btn{width:100%}
  .transfer-form{grid-template-columns:1fr}
  .transfer-vehicles{grid-template-columns:1fr 1fr}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:1fr}
  .footer__top{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;text-align:center}
  .cta-banner{padding:2rem;border-radius:var(--radius-xl)}
  .search-widget{margin-top:-2rem}
}
