/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}



/* ================= BASE ================= */

body.homepage{
  background:#ffffff;
  color:#111;
  padding-top:88px;
}



/* ================= HEADER (POLISHED) ================= */

.ak-header{
  position:fixed;
  top:0;
  width:100%;
  height:78px;
  background:#ffffff;
  border-bottom:1px solid #e5e5e5;

  display:flex;
  align-items:center;
  gap:12px;

  padding:0 10px;
  z-index:3000;
}.ak-head-links{
  display:flex;
  gap:40px;
  align-items:center;
}

@media(max-width:769px){
  .ak-head-links{ display:none; }
}


.ak-logo img{
  height:53px;
}

/* SEARCH BAR */
.ak-search{
  flex:1;
  position:relative;
}

.ak-search input{
  width:100%;
  max-width:520px;
  padding:9px 14px;
  border-radius:30px;
  border:1px solid #d7dfea;
  outline:none;
  font-size:12px;
  background:#f7f9ff;
  transition:.3s ease;
}

.ak-search input:focus{
  border-color:#3aa3ff;
  background:#ffffff;
  box-shadow:0 10px 20px rgba(58,163,255,.12);
}

/* HEADER NAV BUTTONS (CHAR DHAM / RISHIKESH) */
.ak-nav-btn{
  background:#3aa3ff;
  color:#fff;
  padding:10px 16px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  border:2px solid rgba(255,255,255,.25);
  box-shadow:0 10px 18px rgba(58,163,255,.20);
  transition:.2s ease;
  white-space:nowrap;
}

.ak-nav-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(58,163,255,.28);
}
}

.ak-nav-btn:hover{
  background:#dff0ff;
}

/* CALL BUTTON (BLUE LIKE SCREENSHOT) */
.ak-call-btn{
  background:#3aa3ff;
  color:#fff;
  padding:9px 16px;
  border-radius:25px;
  text-decoration:none;
  font-size:10px;
  font-weight:900;
  white-space:nowrap;
  box-shadow:0 10px 18px rgba(58,163,255,.25);
  border:2px solid rgba(255,255,255,.25);
  transition:.3s ease;
}

.ak-call-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(58,163,255,.35);
}

/* TOGGLE BUTTON (POLISHED BLUE) */
.ak-menu-btn{
  font-size:27px;
  background:#eaf4ff;
  border:1px solid #cfe5ff;
  color:#0b1c2c;
  border-radius:14px;
  width:44px;
  height:44px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s ease;
}

.ak-menu-btn:hover{
  background:#dff0ff;
}



/* ================= MENU PANEL (POLISHED) ================= */

.ak-menu-panel{
  position:fixed;
  top:78px;
  right:12px;
  width:320px;
  max-width:92vw;
  background:#ffffff;
  border:1px solid #dbe3ef;
  border-radius:18px;
  display:none;
  flex-direction:column;
  z-index:4000;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}

/* menu links */
.ak-menu-panel a{
  padding:14px 16px;
  border-bottom:1px solid #eef2f7;
  color:#0b1c2c;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}

.ak-menu-panel a:hover{
  background:#f4f6fb;
}

/* HR line */
.ak-menu-panel hr{
  border:none;
  border-top:1px solid #e3eaf6;
  margin:0;
}

/* CTA buttons inside menu */
.menu-btn-primary{
  background:#3aa3ff;
  color:#fff !important;
  text-align:center;
  padding:12px;
  border-radius:30px;
  margin:12px 16px 8px;
  font-weight:900;
  border:none;
}

.menu-btn-outline{
  border:2px solid #3aa3ff;
  color:#3aa3ff !important;
  text-align:center;
  padding:11px;
  border-radius:30px;
  margin:0 16px 16px;
  font-weight:900;
}



/* ================= HERO ================= */

.hero{
  position:relative;
  height:88vh;
  overflow:hidden;
}

.slider{ position:absolute; inset:0; }

.slider img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  opacity:0;
  transition:opacity 1.2s ease;
}

.slider img.active{ opacity:1; }

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.42);
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;
  padding:20px;
  color:#fff;
}



/* ================= SECTIONS ================= */

.section{
  max-width:1100px;
  margin:auto;
  padding:50px 18px;
  text-align:center;
}



/* TREK CARDS */

.trek-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:22px;
}

.trek-card{
  background:#0b1c2c;
  border-radius:14px;
  overflow:hidden;
  color:#fff;
  text-decoration:none;
}

.trek-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.trek-card .content{
  padding:14px;
}



/* ================= REGION INFO SECTION ================= */

.info-section{
  background:#f7f9ff;
  border-top:1px solid #e4e8f2;
  border-bottom:1px solid #e4e8f2;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:18px;
  margin-top:18px;
}

.info-card{
  background:#ffffff;
  border:1px solid #dbe3ef;
  border-radius:14px;
  padding:16px;
}



/* ================= WHY TREK ================= */

.why-section{
  background:#ffffff;
}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:20px;
}


/* ================= FIXED CARD STYLE (works for <a> & <div>) */

.why-card{
  display:block;
  background:#f6f8fc;
  border:1px solid #dbe3ef;
  border-radius:16px;
  padding:18px;
  text-decoration:none;
  color:#111;
}

.why-card h3{
  margin-bottom:6px;
  font-size:16px;
}

.why-card p{
  font-size:14px;
  opacity:.85;
}

.why-card:hover{
  background:#eef2fb;
  border-color:#cdd8ec;
}



/* ================= BASE LOCATIONS STRIP ================= */

.base-strip{
  background:#0b1c2c;
  color:#fff;
  border-top:2px solid #1f3d57;
  border-bottom:2px solid #1f3d57;
}



/* ================= CTA ================= */

.cta{
  max-width:900px;
  margin:auto;
  padding:60px 20px 90px;
  text-align:center;
}

.btn.primary{
  background:#3aa3ff;
  color:#fff;
  padding:12px 26px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
}



/* ================= SOCIAL FOOTER ================= */

.social-footer{
  text-align:center;
  padding:40px 16px 60px;
  background:#ffffff;
  border-top:1px solid #e6e6e6;
}

.social-row{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:12px;
  flex-wrap:wrap;
}

.social-btn{
  padding:10px 14px;
  border-radius:18px;
  border:1px solid #cbd4e3;
  text-decoration:none;
  color:#111;
}



/* ================= INQUIRY FORM ================= */

.inquiry-box{
  max-width:760px;
  margin:auto;
  background:#f6f8fc;
  border:1px solid #d8e1ef;
  border-radius:18px;
  padding:22px;
}

.inquiry-box h2{
  margin-bottom:10px;
}

.inquiry-box form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.inquiry-box input,
.inquiry-box select,
.inquiry-box textarea{
  padding:11px;
  border-radius:12px;
  border:1px solid #b8c6da;
  font-size:14px;
  background:#ffffff;
}

.inquiry-box label{
  margin-top:6px;
  font-weight:700;
}

.inquiry-box .btn{
  margin-top:6px;
}



/* ================= CONTACT INFO ================= */

.contact-info{
  max-width:700px;
}



/* ================= SOCIAL BOX ================= */

.social-box{
  max-width:760px;
}

.social-row{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.social-btn.disabled{
  opacity:.6;
  pointer-events:none;
}



/* ================= MOBILE ================= */

@media(max-width:768px){

  .hero{ height:66vh; }

  .features{ grid-template-columns:1fr; }

  .inquiry-box{
    padding:16px;
    border-radius:14px;
  }

  .social-row{
    flex-direction:column;
  }

  .mobile-footer{
    display:flex;
    justify-content:center;
    gap:22px;
    padding:26px 0 34px;
  }
}

@media(min-width:769px){
  .mobile-footer{ display:none; }


}/* ================= SEARCH DROPDOWN ================= */

.search-results{
  position:absolute;
  background:#fff;
  width:100%;
  max-width:420px;
  margin-top:6px;
  border:1px solid #dbe3ef;
  border-radius:14px;
  overflow:hidden;
  display:none;
  z-index:5000;
  box-shadow:0 12px 24px rgba(0,0,0,.08);
}

.search-results a{
  display:block;
  padding:12px 14px;
  text-decoration:none;
  color:#111;
  border-bottom:1px solid #eef2f7;
  font-size:14px;
}

.search-results a:hover{
  background:#f4f6fb;
}

/* make search dropdown align correctly */
.ak-search{
  position:relative;
}/* ===== SEARCH RESULT ACTIVE (KEYBOARD SELECT) ===== */

.search-results a.active{
  background:#0b1c2c;
  color:#fff;
}/* ===== SEARCH RESULT DETAILS ===== */

.search-results a{
  display:block;
  padding:12px 14px;
  text-decoration:none;
  color:#111;
  border-bottom:1px solid #eef2f7;
  font-size:14px;
  line-height:18px;
}

.search-results .sr-title{
  font-weight:800;
  display:block;
}

.search-results .sr-meta{
  display:block;
  margin-top:4px;
  font-size:12px;
  opacity:.75;
}

.search-results a.active{
  background:#0b1c2c;
  color:#fff;
}

.search-results a.active .sr-meta{
  opacity:.9;
}/* ================= FEEDBACK FIX (PREVENT WRAP) ================= */

/* make all labels and inputs stack properly */
.inquiry-box label{
  display:block;
  text-align:left;
  margin-top:10px;
  font-weight:700;
  font-size:14px;
}

.inquiry-box input,
.inquiry-box select,
.inquiry-box textarea{
  width:100%;
  display:block;
  margin-top:6px;
}

/* if any global style is forcing flex, stop it */
.inquiry-box form{
  display:block !important;
}

/* improve textarea height */
.inquiry-box textarea{
  min-height:120px;
  resize:vertical;
}

/* keep button full width for clean look */
.inquiry-box .btn.primary{
  width:100%;
  max-width:320px;
  margin:14px auto 0;
  display:block;
}.design-credit{
  text-align:center;
  font-size:18px;
  opacity:0.6;
  margin-top:30px;
  margin-bottom:10px;
  letter-spacing:1px;
}.ak-call-btn a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: block;
}.call-box{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

/* Main call button */
.call-btn-main{
    background: #2e8de6;
    color: #fff;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 600;
    width: 90%;
    max-width: 320px;
    text-align: center;
}

/* Secondary numbers */
.call-btn-secondary{
    background: #f1f1f1;
    color: #222;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    width: 90%;
    max-width: 320px;
    text-align: center;
}

/* WhatsApp */
.whatsapp-btn{
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 600;
    width: 90%;
    max-width: 320px;
    text-align: center;
}.cta-section{
    background: #0f172a;
    color: #fff;
    padding: 50px 20px;
}

.cta-section h2{
    margin-bottom: 10px;
}

.cta-section p{
    opacity: 0.9;
}

.cta-buttons{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.cta-btn{
    width: 90%;
    max-width: 320px;
    padding: 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

/* Button Colors */
.cta-btn.call{
    background: #3b82f6;
}

.cta-btn.whatsapp{
    background: #25D366;
}

.cta-btn.email{
    background: #334155;
}

.cta-trust{
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}/* Make all buttons look consistent */
.btn,
.cta-btn,
.call-btn-main,
.call-btn-secondary,
.whatsapp-btn {
    display: block;
    width: 90%;
    max-width: 320px;
    margin: 10px auto;
    text-align: center;
}

/* Section spacing */
.section {
    padding: 40px 20px;
}

/* Center text properly */
.center {
    text-align: center;
}

/* Fix headings spacing */
.section h2 {
    margin-bottom: 10px;
}

.section p {
    margin-bottom: 15px;
    opacity: 0.85;
}* {
    box-sizing: border-box;
}.btn {
    padding: 14px 18px;
    border-radius: 30px;
    font-weight: 600;
}











