:root{
  --bg:#f5f7fb;
  --ink:#0b1220;
  --muted:#fff;
  --brand:#1b64f2;
  --brand2:#0aa3ff;
  --hero1:#b42b37;
  --hero2:#d44a59;
  --card:#ffffff;
  --border:#e7e9f2;
  --shadow:0 18px 60px rgba(12,18,32,.18);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color:var(--ink);
   
}

a{color:inherit}
.container{width:min(1180px, 92vw); margin:0 auto;}

header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900;
}
.logo{
  width:40px; height:40px; border-radius:12px;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(255,255,255,.25) 40%, transparent 41%),
              linear-gradient(135deg, var(--brand2), var(--brand));
  box-shadow: 0 10px 22px rgba(27,100,242,.18);
}
.brand small{display:block; font-weight:700; color:var(--muted); margin-top:1px}

.navlinks{display:flex; gap:18px; align-items:center; flex-wrap:wrap;}
.navlinks a{
  text-decoration:none;
  color: rgba(11,18,32,.78);
  font-weight:650;
  font-size:14px;
}
.navlinks a:hover{color:rgba(11,18,32,1)}
@media (max-width: 980px){ .navlinks{display:none} }

.callbtn{
  display:inline-flex; align-items:center; gap:10px;
  border-radius: 999px;
  padding:10px 16px;
  background: linear-gradient(90deg, rgba(27,100,242,.95), rgba(10,163,255,.92));
  color:#fff;
  font-weight:900;
  text-decoration:none;
  box-shadow: 0 18px 40px rgba(27,100,242,.24);
  border:0;    animation: magneticPulse 2s infinite;
}

 @keyframes magneticPulse {
        0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
        100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
    }

.callbtn:hover{transform: translateY(-1px)}
.callbtn:active{transform: translateY(0)}
.callbtn .pill{
  display:inline-flex; align-items:center; justify-content:center;
  width:30px; height:30px; border-radius:999px;
  background: rgba(255,255,255,.18);
}

.hero{
  background: linear-gradient(120deg, var(--hero1), var(--hero2));
  color:#fff;
       background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../img/banner-maina1.jpg') left/cover no-repeat;

  padding: 62px 0 74px; 
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 980px){ .heroGrid{grid-template-columns:1fr} }

.tag{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-weight:800;
  font-size:13px;
}
.tag .dot{
  width:8px; height:8px; border-radius:50%;
  background:#7dffb1;
  box-shadow: 0 0 0 6px rgba(125,255,177,.18);
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 4.3vw, 54px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.hero p{
  margin:20px 0 16px;
  color: rgba(255,255,255,.88);
  line-height:1.6;
  max-width: 70ch;
}

.heroPoints{
         display: flex;
    flex-wrap: wrap;
    gap: 17px;
    width: 350px;
    margin-top: 40px;
    flex-direction: column;

}
.point{
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-weight:750;
  font-size:13px;
}

.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.searchCard{padding:18px 18px 16px}
.searchCard h3{margin:0 0 4px; font-size:22px; color:var(--ink)}
.searchCard p{margin:0 0 12px; color:var(--muted); font-size:13px; line-height:1.55}

label{
display: block;
    font-size: 12px;
    color: rgb(255 255 255 / 75%);
    font-weight: 750;
    margin-bottom: 6px;
}
input, select{
  width:90% !important;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid #dfe3ee;
  background:#fff;
  color:var(--ink);
  outline:none;
}
input::placeholder{color:rgba(91,102,122,.75)}
.row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media (max-width:560px){ .row{grid-template-columns:1fr} }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--ink);
  font-weight:850;
  cursor:pointer;
  text-decoration:none;
}
.btn.primary{
  border:0;
  color:#fff;
  background: linear-gradient(90deg, rgba(27,100,242,.95), rgba(10,163,255,.92));
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:25px}
.hint{
  margin:30px;
  font-size:12px;
  color:rgba(255,255,255,.86);
  line-height:1.55;
}
.hint a{color:#fff; font-weight:850; text-decoration:underline}

.protected{
  display:flex; align-items:center; gap:8px;
  margin-top:25px;
  font-size:12px;
  color:rgb(232 231 194 / 65%);
}
.lock{
  width:14px; height:14px; border-radius:4px;
  background: rgba(27,100,242,.12);
  display:inline-flex; align-items:center; justify-content:center;
  color: rgba(27,100,242,.95);
  font-weight:900;
  font-size:11px;
}

.section{padding:34px 0}
.section h2{margin:0 0 10px; font-size:26px; letter-spacing:-.2px}
.section p{margin:0 0 12px; color:var(--muted); line-height:1.75}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media (max-width: 980px){ .grid3{grid-template-columns:1fr} }
.mini{padding:16px}
.mini h4{margin: 20px 0 6px;
    font-size: 20px;}
.mini p{margin:0; color:var(--muted); line-height:1.65; font-size:14px}

.dealsBar{
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
  margin:14px 0 0;
  padding:14px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.20);
}
.dealsBar b{font-size:14px}
.dealsBar span{color:rgba(255,255,255,.88); font-size:13px}

/* Featured slider */
.slider{
  position:relative;
  overflow:hidden;
  border-radius: 18px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow);
}
.slides{display:flex; transition: transform .35s ease; will-change: transform}
.slide{
  min-width: 100%;
  padding:18px;
}
.slideTop{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; align-items:flex-start}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(27,100,242,.08);
  color: rgba(27,100,242,.95);
  font-weight:900;
  font-size:12px;
}
.slide h3{margin:10px 0 6px; color: #000;}
.meta{color:#000; font-size:13px; line-height:1.55}
.slideBottom{
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
  margin-top:12px; padding-top:12px; border-top:1px solid var(--border);
}
.price{font-weight:950}
.navDots{
  position:absolute; left:0; right:0; bottom:12px;
  display:flex; justify-content:center; gap:8px;
}
.dotBtn{
  width:10px; height:10px; border-radius:999px;
  background: rgba(11,18,32,.22);
  border:0; cursor:pointer;
}
.dotBtn.active{background: rgba(27,100,242,.85)}

/* Testimonials */
.testWrap{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
@media (max-width: 980px){ .testWrap{grid-template-columns:1fr} }
.quote{padding:16px}
.quote .name{margin-top:10px; font-weight:900}
.quote .role{color:var(--muted); font-size:13px}
.stars{color:#f4b400; letter-spacing:1px}

/* FAQ accordion */
.faq{display:grid; gap:10px}
.faqItem{
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  overflow:hidden;
}
.faqQ{
  width:100%;
  text-align:left;
  padding:14px 16px;
  background:#fff;
  border:0;
  cursor:pointer;
  display:flex; justify-content:space-between; gap:10px; align-items:center;
  font-weight:950;
}
.faqA{
  padding:0 16px 14px;
  color: black;
  line-height:1.75;
  display:none;
}
.chev{transform: rotate(0deg); transition: transform .18s ease}
.faqItem.open .faqA{display:block}
.faqItem.open .chev{transform: rotate(180deg)}

/* Autocomplete */
.autocomplete{position:relative}
.suggest{
  position:absolute; left:0; right:0; top: calc(100% + 8px);
  background:#fff;
  border:1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow:hidden;
  display:none;
  z-index:80;
}
.suggest button{
  width:100%; text-align:left;
  padding:12px 12px;
  background:#fff;
  border:0;
  color:rgba(11,18,32,.92);
  cursor:pointer;
  font-weight:750;
}
.suggest button:hover{background: rgba(27,100,242,.06)}

/* Footer */
footer{
  border-top:1px solid var(--border);
  padding:24px 0;
  background:#fff;
}
.footerGrid{    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;}
.footerGrid a{color: rgb(255 255 255 / 95%); text-decoration:none; font-weight:600}
.footerGrid a:hover{text-decoration:underline}
.small{color:var(--muted); font-size:13px; line-height:1.6}

/* Modal */
.overlay{
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
  display:none;
  align-items:center; justify-content:center;
  padding:18px;
  z-index:999;
}
.modal{
  width:min(520px, 100%);
  background:#fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.2);
  overflow:hidden;
}
.modalHead{
  padding:14px 16px;
  display:flex; justify-content:space-between; align-items:center; gap:10px;
}
.modalHead b{font-size:14px}
.x{
  width:25px; height:25px; border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  font-weight:950;
}
.modalBody{padding:4px 16px 16px}
.modalBody h2{margin:8px 0 8px; font-size:20px}
.modalBody p{margin:0 0 12px; color:var(--muted); line-height:1.7}
.modalBody ul{margin:0 0 12px; padding-left:18px; color:rgba(11,18,32,.86); line-height:1.7}
.modalCta{display:flex; gap:10px; flex-wrap:wrap}
.modalCta a{flex:1}
.modalCta button{flex:1}

/* Processing modal style */
.procBox{
  text-align:center;
  padding: 18px 10px 8px;
}
.spinner{
  width:54px; height:54px;
  border-radius:999px;
  border:4px solid #e8edf8;
  border-top-color: rgba(27,100,242,.95);
  margin: 0 auto 12px;
  animation: spin 1s linear infinite;
}
@keyframes spin{to{transform: rotate(360deg)}}
.check{
  width:54px; height:54px;
  border-radius:999px;
  background: rgba(255,209,102,.55);
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:950;
  color:#6b4d00;
  margin:0 auto 12px;
  font-size:24px;
}
.timer{
  color:#c0392b;
  font-weight:950;
  margin-top:10px;
}

/* ===== Polish overrides (v2) ===== */


 

.card {
    background: linear-gradient(180deg, rgba(15,27,46,.92), rgba(9,16,31,.92));
   
    border: 1px solid rgb(0 0 0 / 78%);
   
}

.btn{
  font-weight:700;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(255,204,112,.98), rgba(77,163,255,.92));
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}

/* Image placeholders */
.img-placeholder{
  width:100%;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    radial-gradient(600px 300px at 30% 20%, rgba(77,163,255,.20), transparent 55%),
    radial-gradient(600px 300px at 70% 80%, rgba(255,204,112,.14), transparent 55%);
  color: rgba(242,246,255,.70);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px;
  letter-spacing:.2px;
}
.slideImg{
  height:180px;
  margin-bottom:14px;
}
@media (max-width: 560px){
  .slideImg{height:150px}
}

/* Featured slider spacing */
.slide{
  padding:18px;
}
.slideTop{
  gap:12px;
}

/* Testimonials polish */
.card.quote{
  position:relative;
  padding-top:24px;
}
.avatarPh{
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,204,112,.35), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(77,163,255,.30), transparent 55%),
    rgba(255,255,255,.04);
  margin-bottom:12px;
}

/* Bigger, richer footer */
footer{
  position:relative;
  padding:88px 0 44px;
  background: linear-gradient(180deg, #060b1a 0%, #03050f 100%);
  border-top: 2px solid rgba(77,163,255,.28);
}
footer:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 360px at 20% 10%, rgba(77,163,255,.16), transparent 60%),
    radial-gradient(900px 360px at 80% 30%, rgba(255,204,112,.12), transparent 60%);
  pointer-events:none;
}
footer .container{position:relative}
.footerGrid{
  gap:34px;
}
.footer-bottom{
  margin-top:38px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.14);
}
footer a{
  color: rgba(242,246,255,.80);
}
footer a:hover{
  color: rgba(255,204,112,.98);
  text-decoration:none;
}



.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  background-color: #111;
  color: #fff;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease-out;  
}

.btn-shine {
  background: linear-gradient(to right, #222 0%, #222 40%, #fff 50%, #222 60%, #222 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.btn-magnetic:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}



/* Call Button */
.call-btn2 {
    display: inline-block;
    background: linear-gradient(135deg, #1860af, #5733d1);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    animation: pulse 1.6s infinite;
    cursor:pointer;
}

.call-btn2:hover { 
    background: #1860af;
    color: #ffffff; 
}

/* Pulse animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}


#stays{
  margin:0px !IMPORTANT;

  padding:100px !important;
}

#deals{ 
  padding:100px 20px; !important; }
            
#testimonial{ 
  padding:100px 20px; !important;  

    background: radial-gradient(1200px 700px at 10% -10%, rgba(77, 163, 255, .22), transparent 60%), 
    radial-gradient(900px 600px at 110% 10%, rgba(255, 204, 112, .18), transparent 55%),
     radial-gradient(800px 500px at 60% 120%, rgba(120, 80, 255, .14), transparent 55%),
      linear-gradient(180deg, #1ea4fd, #2051d7 30%, #1ea4fd);
}

#about{ 
  padding:100px 20px; !important; }


.section{
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(77,163,255,.22), transparent 60%),
    radial-gradient(900px 600px at 110% 10%, rgba(255,204,112,.18), transparent 55%),
    radial-gradient(800px 500px at 60% 120%, rgba(120,80,255,.14), transparent 55%),
    linear-gradient(180deg, #040714, #050914 30%, #03050f);
}

.imgtop1{
  width:340px;
  border-radius: 20px;
}

.footerimg{
  width:160px;  border-radius: 5px;
}

.maiinlogo{
width:200px;
}

.sliderimga{
      width: 100%;
    border-radius: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.btn-primary2{
background: linear-gradient(135deg, rgb(0 225 236 / 98%), rgb(26 193 76 / 92%)) !important;
    
}


.modal {
    width: min(520px, 100%);
    background: #262c3f;
    border-radius: 18px;
    box-shadow: 6px 10px 60px rgba(12, 18, 32, .18);
    border: 1px solid rgb(255 255 255 / 18%);
    overflow: hidden;
}
.timer {
        color: #ff9489;
    font-weight: 700;
    font-size: 20px;
    margin-top: 21px;
    margin-bottom: 37px;
}

/*   ----------------mobile  ----------------*/
@media only screen and (max-width: 768px) {
           
.hero h1 { 
    font-size: clamp(25px, 4.3vw, 54px);  }

    .hero{ 
  padding: 42px 0 34px; }

.imgtop1{
  width:300px; 
}

#stays{ 
  padding:20px !important; }
            


#deals{ 
  padding:20px !important; }
            
#testimonial{ 
  padding:20px !important; }
   
#about{ 
  padding:20px !important; }


.footerimg{
 width:80px;  border-radius: 5px;
}

.hint{
  margin:10px;
}


.maiinlogo{
width:150px;
}

.sliderimga {
    width: auto; 
    height: 180px; 
}



}