/* styles.css */

/* =========================
  CSS RESET (lightweight)
========================== */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth;width: 100%; 
overflow-x: hidden;}
body { margin: 0;
  width: 100%; 
overflow-x: hidden;

 }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }


:root{
  --header-height:100px;
  --primary: #0EA5E9;   /* Ocean Blue */
  --secondary: #FB923C; /* Sunset Orange */

  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --surface: rgba(255,255,255,0.78);
  --surface-2: #ffffff;

  --text: #0f172a;
  --muted: #64748b;

  --line: rgba(15, 23, 42, 0.10);

  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.10);
  --shadow-md: 0 14px 30px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);

  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 22px;

  --container: 1120px;

  --ease: cubic-bezier(.2,.8,.2,1);

  --focus: 0 0 0 4px rgba(14,165,233,0.25);

  --grad-primary: linear-gradient(135deg, rgba(14,165,233,0.18), rgba(251,146,60,0.16));
  --grad-deal: linear-gradient(135deg, rgba(14,165,233,0.85), rgba(251,146,60,0.85));
}
main{
  padding-top:var(--header-height);
}
/* =========================
  BASE TYPOGRAPHY
========================== */
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(14,165,233,0.14), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(251,146,60,0.12), transparent 50%),
              var(--bg);
  line-height: 1.55;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}
.tour-hero__grid > *,
.contact-grid > *,
.footer__grid > *{
  min-width: 0;
}
.footer__links a,
.footer__links li,
.info-list li,
.tour-hero__subtitle,
.section-subtitle,
.card-text{
  overflow-wrap: anywhere;
  word-break: break-word;
}
.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* =========================
  HEADER / NAV
========================== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width:100%;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
}

.nav{
  position: relative;
  display: flex;
  align-items: center;
 
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
  padding: 0.75rem 0;
  
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-mark{
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}

.brand-mark img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text{
  font-size: 1.2rem;
  line-height: 1.1;
  color: var(--text);
  white-space: nowrap;
}



.nav-toggle{
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: .4rem;
  border-radius: 12px;
}

.nav-toggle:focus-visible{ 
  outline: none; 
  box-shadow: var(--focus);
 }
.nav-toggle__bar{
  width: 24px; 
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  opacity: .85;
}

.nav-menu{
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
}

.nav-links{
  display: grid;
  gap: .25rem;
  padding: .75rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.nav-link{
  display: inline-flex;
  align-items: center;
  padding: .7rem .8rem;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.nav-link:hover{
  background: rgba(14,165,233,0.10);
  color: var(--text);
}

.nav-link.active{
  background: rgba(251,146,60,0.14);
  color: var(--text);
}

.nav-cta{
  margin-top: .65rem;
  width: 100%;
  justify-content: center;
  padding: .85rem 1.4rem;
  white-space: nowrap;
}

/* Desktop nav */
@media (min-width: 920px){
  .nav-toggle{ 
    display: none; 
  }
  .nav-menu{
    display: flex !important;
    position: static;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    width: auto;
  }
  .nav-links{
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .35rem;
    box-shadow: none;
    background: rgba(255,255,255,0.86);
  }
  .nav-cta{
    margin-top: 0;
    width: auto;
  }
}
@media (max-width: 600px){
  .nav{
    min-height: 72px;
  }
  .brand{
    gap: .5rem;
  }
  .brand-text{
    font-size: 1rem;
  }
  .brand-mark{
    width: 40px;
    height: 40px;
  }
 .tour-hero{
    padding: 2rem 0 2rem;
  }

  .tour-hero__grid{
    gap: 1rem;
  }

  .tour-meta{
    gap: .6rem;
  }

  .tour-meta__item{
    width: 100%;
  }

  .tour-hero__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .tour-hero__actions .btn{
    width: 100%;
  }
}

/* Open state (mobile) */
.nav-menu.is-open{
  display: block;
  padding-bottom: .85rem;
}

/* =========================
  BUTTONS / LINKS
========================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .8rem 1.05rem;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  user-select: none;
}

.btn:focus-visible{ outline: none; box-shadow: var(--focus); }

.btn--primary{
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  color: white;
  box-shadow: 0 14px 30px rgba(14,165,233,0.24);
}

.btn--primary:hover{ transform: translateY(-1px); box-shadow: 0 20px 45px rgba(14,165,233,0.28); }

.btn--secondary{
  background: linear-gradient(135deg, var(--secondary), #fdba74);
  color: #1f2937;
  box-shadow: 0 14px 30px rgba(251,146,60,0.22);
}

.btn--secondary:hover{ transform: translateY(-1px); box-shadow: 0 20px 45px rgba(251,146,60,0.26); }

.btn--outline{
  background: rgba(255,255,255,0.9);
  border-color: var(--line);
  color: var(--text);
}

.btn--outline:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14,165,233,0.22);
}

.btn--ghost{
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  color: var(--text);
  padding: .65rem .9rem;
}

.btn--ghost:hover{ transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.link{
  font-weight: 700;
  color: var(--primary);
}

.link:hover{ text-decoration: underline; }

/* =========================
  SECTIONS / LAYOUT
========================== */
.section{
  padding: 4.2rem 0;
}

.section--soft{
  background: linear-gradient(180deg, rgba(14,165,233,0.06), rgba(251,146,60,0.05));
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section-head{
  max-width: 720px;
  margin-bottom: 1.8rem;
}

.section-title{
  margin: 0 0 .45rem;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.35rem);
  letter-spacing: -0.03em;
}

.section-subtitle{
  margin: 0;
  color: var(--muted);
}

.grid{
  display: grid;
  gap: 1rem;
}

/* =========================
  HERO
========================== */
.hero{
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(14,165,233,0.25), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(251,146,60,0.20), transparent 60%);
  background-size: cover;
  background-position: center;
}
.hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  opacity: 0;
  transition: opacity 900ms var(--ease);
  will-change: opacity, background-position;
}

.hero__bg.is-active{
  opacity: 1;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero__bg{ transition: none; }
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 132, 199, 0.58), rgba(251,146,60,0.22));
  opacity: 0.92;
}

.hero__content{
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding-block: 4.5rem  3rem;
}

.hero__copy{
  max-width: 720px;
  color: rgba(255,255,255,0.95);
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  padding: .45rem .7rem;
  border-radius: 999px;
  margin: 0 0 .95rem;
  font-weight: 700;
  font-size: .9rem;
}

.badge__dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(251,146,60,0.18);
}

.hero__title{
  margin: 0 0 .55rem;
  font-size: clamp(2rem, 1.35rem + 3.2vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.text-gradient{
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.76));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(2, 132, 199, 0.22);
}

.hero__subtitle{
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 56ch;
}

/* Search card */
.search-card{
  margin-top: 1.2rem;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  color: var(--text);
}

.hero-cta{
  margin-top: 30px;
}

.hero-btn{
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 50px;
}

/* Hero stats */
.hero__stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}

.stat-card{
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: .9rem;
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}

.stat-card__value{
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.stat-card__unit{ opacity: .9; font-weight: 800; font-size: .95rem; }
.stat-card__label{ opacity: .92; font-weight: 700; font-size: .9rem; }

/* Hero responsive */
@media (min-width: 920px){
  .hero__content{
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    padding: 5.5rem 0 3.5rem;
  }
  .hero__stats{
    align-self: end;
  }
  .search-grid{
    grid-template-columns: 1.25fr .9fr .9fr auto;
    align-items: end;
  }
  .search-btn{ width: auto; min-width: 170px; }
}

/* =========================
  FORMS / FIELDS
========================== */
.field{
  display: grid;
  gap: .4rem;
}

.field__label{
  font-weight: 800;
  font-size: .85rem;
  color: rgba(15, 23, 42, 0.8);
}

.field__input{
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: .75rem .85rem;
  outline: none;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.field__input:focus{
  border-color: rgba(14,165,233,0.35);
  box-shadow: var(--focus);
}

.field__textarea{
  resize: vertical;
  min-height: 140px;
}

.field__error{
  color: #ef4444;
  font-weight: 700;
  font-size: .85rem;
  min-height: 1.1em;
}

/* =========================
  CARDS
========================== */
.card{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14,165,233,0.22);
}

.card-media{
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s var(--ease);
}

.card:hover .card-media img{
  transform: scale(1.09);
}

.card-body{
  padding: 1rem 1rem 1.05rem;
}

.card-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.card-title{
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.card-text{
  margin: .55rem 0 0;
  color: var(--muted);
  font-weight: 550;
}

.stars{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #f59e0b;
  font-weight: 900;
  white-space: nowrap;
}

.stars__value{
  color: rgba(15, 23, 42, 0.75);
  font-weight: 900;
  font-size: .9rem;
}

/* Pills */
.pill{
  position: absolute;
  top: .8rem;
  left: .8rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.pill--accent{
  background: rgba(251,146,60,0.92);
  border-color: rgba(251,146,60,0.22);
  color: #1f2937;
}

/* Grids */
.cards-grid{ grid-template-columns: repeat(1, 1fr); }
.blog-grid{ grid-template-columns: repeat(1, 1fr); }

@media (min-width: 680px){
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
  .blog-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1020px){
  .cards-grid{ grid-template-columns: repeat(3, 1fr); }
}



/* Package meta */
.meta-row{
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: .55rem;
  flex-wrap: wrap;
}

.price{
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.meta{
  color: rgba(15, 23, 42, 0.6);
  font-weight: 800;
  font-size: .92rem;
}
.packages-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.package-filters{
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}

.filter-btn{
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.9);
  color: var(--text);
  border-radius: 999px;
  padding: .75rem 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.filter-btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.filter-btn.is-active{
  background: linear-gradient(135deg, rgba(14,165,233,0.14), rgba(251,146,60,0.12));
  border-color: rgba(14,165,233,0.22);
  color: var(--text);
}

.package-arrows{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.package-arrow{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), opacity .2s var(--ease), visibility .2s var(--ease);
}

.package-arrow:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.package-arrow.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.packages-grid{
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
  min-height: 420px;
}

@media (min-width: 680px){
  .packages-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px){
  .packages-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}

.package-card{
  height: 100%;
}

.package-card .card-body{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
 
}

.package-card .btn{
    margin-top: 19px;
  
}

.package-empty{
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--muted);
}
/* =========================
  FEATURES / GUIDES SPLIT
========================== */
.section-head{
  text-align: center !important;
}
.split{
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.features-grid{
  display: grid;
  grid-template-columns: repeat(2, 360px);
   gap: 30px;
   justify-content: center;
  }

.feature{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.feature:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature__icon{
  width: 51px; 
  height: 51px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-primary);
  border: 1px solid rgba(14,165,233,0.18);
  margin-bottom: .7rem;
  margin: 0 auto 12px;
}

.feature__icon img{
  width: 30px; height: 30px;
  display: block;
}

.feature__title{ margin: 0 0 .25rem; font-size: 1rem; }
.feature__text{ margin: 0; color: var(--muted); font-weight: 550; }

.guide-list{
  display: grid;
  gap: .85rem;
  margin-top: 1.2rem;
}

.mini-card{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.mini-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mini-card__title{ margin: 0 0 .35rem; font-size: 1rem; }
.mini-card__text{ margin: 0 0 .5rem; color: var(--muted); font-weight: 550; }

.note-card{
  margin-top: .9rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(251,146,60,0.10));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}
@media(max-width:760px){
  .features-grid{
    grid-template-columns: 1fr;
  }
}




/* =========================
  MASONRY GALLERY
========================== */
.masonry{
  columns: 2;
  column-gap: 1rem;
}

.masonry__item{
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  break-inside: avoid;
}

.masonry__item:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.masonry__item img{
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform .35s var(--ease);
}

.masonry__item:hover img{ transform: scale(1.10); }

@media (min-width: 720px){
  .masonry{ columns: 3; }
}
@media (min-width: 1080px){
  .masonry{ columns: 4; }
}

/* =========================
  LIGHTBOX
========================== */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 1000;
}

.lightbox.is-open{ display: grid; }

.lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
}

.lightbox__img{
  position: relative;
  width: min(100% - 2rem, 980px);
  max-height: min(78vh, 720px);
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.lightbox__close{
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* =========================
  TESTIMONIALS SLIDER
========================== */
.slider{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.slider__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1rem;
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial{
  padding: 1rem;
  min-height: 190px;
}

.testimonial__top{
  display: flex;
  align-items: center;
  gap: .8rem;
  justify-content: space-between;
}

.testimonial__top > div{
  margin-right: auto;
}

.avatar{
  width: 48px; height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
}

.testimonial__name{ font-weight: 900; }
.testimonial__meta{ color: var(--muted); font-weight: 700; font-size: .9rem; }

.testimonial__text{
  margin: .8rem 0 0;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 600;
}

.slider__controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1rem;
}

.slider__dots{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), width .2s var(--ease);
}

.dot.is-active{
  background: rgba(14,165,233,0.9);
  border-color: rgba(14,165,233,0.22);
  width: 22px;
}

/* =========================
  DEAL BANNER
========================== */
.deal{
  position: relative;
  padding: 3.2rem 0;
  background:
    url("../assets/about.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.deal__overlay{
  position: absolute;
  inset: 0;
  background: var(--grad-deal);
  opacity: 0.9;
}

.deal__content{
  position: relative;
  display: grid;
  gap: 1rem;
  align-items: center;
  color: white;
}

.deal__title{
  margin: 0;
  letter-spacing: -0.03em;
  font-size: clamp(1.45rem, 1.1rem + 1.6vw, 2.1rem);
}

.deal__text{
  margin: .4rem 0 0;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
@media (max-width: 900px){
  .footer__grid{
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px){
  .footer__grid{
    grid-template-columns: 1fr;
  }
}
@media (min-width: 920px){
  .deal__content{
    grid-template-columns: 1.2fr auto;
  }
}

/* =========================
  ABOUT
========================== */
.about{
  display: grid;
  gap: 1.2rem;
}

.body-text{
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 600;
}

.about__media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.about__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}
.about-banner {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.12);
}

.about-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about__media:hover img{ transform: scale(1.06); }

.about__highlights{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 1.1rem;
}

.highlight-card{
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: .9rem;
  box-shadow: var(--shadow-sm);
}

.highlight-card__value{
  font-weight: 950;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.highlight-card__label{
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}

@media (min-width: 980px){
  .about{
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
  }
}

/* =========================
  CONTACT
========================== */
/* =========================
  CONTACT (CLEAN FIXED)
========================== */

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form{
  width: 100%;
}

.form-card,
.faq-card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form-card{
  padding: 28px;
  gap: 18px;
}

.faq-card__title{
  padding: 24px 24px 12px;
  margin: 0;
}
.faq-item{
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-q{
  margin-bottom: 6px;
}

.faq-a{
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}
.form-btn{
  margin-top: auto;
  width: 100%;
}

.map-card{
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-card iframe{
  width: 100%;
  height: 240px;
  border: 0;
}

/* Mobile: stack */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

.info-card{
  padding: 1rem;
  width: 100%;
  margin-left: 0;
}

.info-card__title{ margin: 0 0 .7rem; }

.info-list{
  display: grid;
  gap: .6rem;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 600;
}

.divider{
  height: 1px;
  background: var(--line);
  margin: .9rem 0;
}

.map-card{
  overflow: hidden;
  border-radius: var(--radius-lg);

   position: relative;
    left: 105%;
     margin-top: -265px;
}

.map-card iframe{
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}


/* =========================
  FOOTER
========================== */
.footer{
  padding: 3.5rem 0 1.8rem;
  background: #0b1220;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #ffffff;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.brand--footer .brand-text{
  font-size: 1.05rem;
  color: #fff;
}

.footer__title{
  margin: 0 0 .75rem;
  font-weight: 900;
}

.footer__links{
  display: grid;
  gap: .65rem;
}

.footer__links li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__links a,
.footer__links li{
  color: rgba(255,255,255,0.78);
  font-weight: 650;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__links a:hover{
  color: rgba(14,165,233,1);
}

.footer__text{
  margin: .8rem 0 0;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.footer__bottom{
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
  font-weight: 650;
}

.to-top{
  color: rgba(14,165,233,1);
  font-weight: 900;
}

.icon{
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  margin-top: 4px;
}

/* tablet */
@media (min-width: 700px){
  .footer__grid{
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* desktop */
@media (min-width: 1024px){
  .footer__grid{
    grid-template-columns: 1.35fr .9fr 1.2fr .9fr;
    gap: 2.5rem;
    align-items: start;
  }
}
.icon{
  width: 18px;
  height:18px;
  object-fit: contain;
  filter:brightness(0) invert(1);
}

/* Footer responsive */
@media (min-width: 920px){
  .footer__grid{
    grid-template-columns: 1.35fr .8fr .8fr .95fr;
    align-items: start;
  }
  
}

/* =========================
  SCROLL REVEAL
========================== */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ transition: none; opacity: 1; transform: none; }

}

/* tour */

/* =========================
  TOUR DETAIL PAGE
========================== */
.tour-hero{
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, rgba(14,165,233,0.08), rgba(251,146,60,0.06));
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.tour-hero__grid{
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.tour-hero__title{
  margin: 0 0 .6rem;
  font-size: clamp(2rem, 1.2rem + 2.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.tour-hero__subtitle{
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 60ch;
}

.tour-meta{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.1rem;
}

.tour-meta__item{
  padding: .7rem .95rem;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  font-weight: 700;
}

.tour-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.tour-hero__media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.tour-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-info-grid{
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}

.info-box{
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: rgba(15, 23, 42, 0.82);
}

.tour-two-col{
  display: grid;
  gap: 1rem;
}

.info-list-card{
  padding: 1.2rem;
}

.tour-block-title{
  margin: 0 0 .85rem;
  font-size: 1.1rem;
}

.tour-list{
  display: grid;
  gap: .65rem;
  padding-left: 1rem;
  list-style: disc;
}

.itinerary-list{
  display: grid;
  gap: 1rem;
}

.itinerary-card{
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.itinerary-day{
  width: fit-content;
  min-width: 84px;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.18);
  font-weight: 800;
}

.itinerary-title{
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}

.itinerary-text{
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.tour-gallery-grid{
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}

.tour-gallery-grid img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.tour-cta-card{
  padding: 1.5rem;
  text-align: center;
}

.tour-cta-card .tour-hero__actions{
  justify-content: center;
  margin-top: 1rem;
}

@media (min-width: 768px){
  
  .tour-info-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .itinerary-card{
    grid-template-columns: 110px 1fr;
    align-items: start;
  }
}

@media (min-width: 980px){
  .tour-hero__grid{
    grid-template-columns: 1fr 1fr;
  }

  .tour-two-col{
    grid-template-columns: 1fr 1fr;
  }

  .tour-info-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =========================
  LATEST REVIEWS SECTION
========================== */
.reviews-section{
  position: relative;
  padding: 5rem 0;
  background: url("../gallery/himachal-trip/himachal3.jpg") center/cover no-repeat;
  overflow: hidden;
}

.reviews-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.reviews-content{
  position: relative;
  z-index: 1;
}

.reviews-head{
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-title{
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: Georgia, "Times New Roman", serif;
}

.reviews-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card{
  position: relative;
  padding: 2rem 2rem 1.8rem;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.review-card::before{
  content: "“";
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 7rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
}

.review-card--dark{
  background: rgba(25, 31, 42, 0.58);
  color: #fff;
  backdrop-filter: blur(4px);
}

.review-card--accent{
  background: rgba(94, 224, 230, 0.68);
  color: #fff;
  backdrop-filter: blur(4px);
}

.review-card--light{
  background: rgba(255,255,255,0.94);
  color: #334155;
}

.review-card--light::before{
  color: rgba(15, 23, 42, 0.08);
}

.review-text{
  position: relative;
  z-index: 1;
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  font-weight: 600;
}

.review-stars{
  margin-bottom: 1rem;
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.review-name{
  margin: 0;
  font-size: 2rem;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 500;
}

/* Tablet */
@media (min-width: 768px){
  .reviews-grid{
    grid-template-columns: 1fr 1.35fr;
    grid-template-areas:
      "card1 card2"
      "card3 card4";
    align-items: stretch;
  }

  .reviews-grid > :nth-child(1){ grid-area: card1; }
  .reviews-grid > :nth-child(2){ grid-area: card2; }
  .reviews-grid > :nth-child(3){ grid-area: card3; }
  .reviews-grid > :nth-child(4){ grid-area: card4; }

  .review-card--wide{
    min-height: 300px;
  }
}
.faq-card{
  min-height:558px;
}
/* Desktop */
@media (min-width: 1100px){
  .reviews-grid{
    grid-template-columns: 1fr 1.45fr 0.9fr;
    grid-template-areas:
      "card1 card2 card2"
      "card3 card3 card4";
    gap: 1.75rem;
  }

  .reviews-grid > :nth-child(1){ grid-area: card1; }
  .reviews-grid > :nth-child(2){ grid-area: card2; }
  .reviews-grid > :nth-child(3){ grid-area: card3; }
  .reviews-grid > :nth-child(4){ grid-area: card4; }

  .review-card{
    min-height: 330px;
  }

  .review-card--light{
    min-height: 280px;
    align-self: start;
  }
}
.about {
  width: 100%;
  padding: 100px 20px;
  background: #f5f7fa;
  display: flex;
  justify-content: center;
}

.about-wrapper {
  max-width: 1200px;
  width: 100%;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 16px;
}

.highlight {
  font-weight: 600;
  color: #111827;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 420px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
@media (max-width: 900px) {

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 400px;
  }

}

@media (max-width: 768px) {
  .hero{
    min-height: 100svh;
    padding: 0;
  }

  .hero__content{
    padding-block: 3.5rem 2.5rem;
    gap:2rem;
  }

  .hero__stats{
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    align-self: end;
  }

  .stat-card{
    width: 100%;            
    padding: 10px 8px;
  }
  .stat-card__value{
    font-size: 1.05rem;
  }
  .stat-card__unit{
    font-size: 0.8rem;
  }
  .stat-card__label{
    font: size 0.72rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    margin: auto;
  }
}
.services {
  padding: 80px 0;
  background: #f8f9fb;
}

.section-title {
  text-align: center !important;
  margin-bottom: 40px;
  font-size: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.service-card i{
  font-size:40px;
  color:#0EA5E9;
  margin-bottom:15px;
  display:block;
}
.service-card:hover {
  transform: translateY(-5px);
}

.faq-card{
  grid-column: 2;
}

.contact-form{
  grid-column: 1;
}


@media (max-width: 767px){
  .map-card{
    position: static;
    left: 0;
    margin-top: 0;
    width: 100%;
  }

  .info-card{
    width: 100%;      
    margin-left: 0;   
  }
}

@media (max-width: 767px){

  .form-card{
    width: 110%;
    margin-left: -17px;   
  }

}


.footer__links li{
  display: block;
  max-width: 220px;
  line-height: 1.6;
}



/* FIX: phone + email proper spacing */
.footer__links li{
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__links li:last-child{
  margin-top: -6px;
}

.footer__links li:last-child i{
  position: relative;
  top: 0px;
}

.footer__links li:nth-child(2){
  margin-bottom: 8px;
}

/* Quick Links proper spacing */
.footer__links li{
  margin-bottom: 6px;
}

.footer__links li:last-child{
  margin-bottom: 0;
}

.footer__links li:nth-child(4){
  margin-bottom: 10px;
}

.footer__col:last-child .footer__links li:nth-child(2){
  margin-bottom: 10px;
}


.blog-tags {
  margin-bottom: 10px;
}
.blog-card .btn {
  margin-top: 15px;
}
.blog-tags span {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 6px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




.footer__col{
  margin-left: 0 !important;
  align-items: flex-start;
  text-align: left;
}

.footer__links{
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: auto;
}

.footer__links li{
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: normal;
}

.footer__links a{
  word-break: normal;
  overflow-wrap: normal;
}

@media (max-width: 400px) {
  .hero__stats {
    gap: 6px;
  }

  .stat-card {
    padding: 8px 5px;
  }

  .stat-card__value {
    font-size: 0.95rem;
  }

  .stat-card__label {
    font-size: 0.65rem;
    line-height: 1.3;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .hero-btn {
    font-size: 15px;
    padding: 13px 26px;
  }
}