body{
  background:#dfe3e8; /* Desktop background */
}



/* Mobile App Frame */
.app{
  width:100%;
  max-width:430px;        /* iPhone width */
  min-height:100vh;
  margin:auto;
  background:#fff;
  box-shadow:0 0 40px rgba(0,0,0,.25);
  overflow:hidden;
}


*{margin:0;padding:0;box-sizing:border-box;font-family:system-ui,sans-serif}
body{background:#fff;color:#222}

/* HERO */
.hero{
  height:100vh;
  background:url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8YmVhY2h8fHx8fHwxNjgxMjc0NzQ2&ixlib=rb-4.0.3&q=80&w=1080") center/cover no-repeat;
}
.hero-overlay{
  height:100%;
  background:rgba(0,0,0,.55);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  text-align:center;
}
.btn{
  margin-top:20px;
  padding:12px 30px;
  background:#ff6b00;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
}

/* SECTIONS */
section{padding:40px 20px;text-align:center}
.gray{background:#f4f6f8}

/* ABOUT */
.about-icons{display:flex;justify-content:space-around;margin-top:20px}
.about-icons span{display:block;font-size:14px}

/* SERVICES */
.services{
  display:flex;
  justify-content:space-around;
  background:#f8f9fa;
  padding:15px;
}
.service span{display:block;font-size:12px}

/* CAROUSEL */
.carousel{overflow:hidden}
.track{display:flex;gap:15px;transition:.4s}
.card,.testimonial{
  min-width:85%;
  background:#fff;
  padding:15px;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
}
.card img{width:100%;border-radius:12px}
.card button{
  margin-top:10px;
  padding:10px;
  width:100%;
  background:#ff6b00;
  color:#fff;
  border:none;
  border-radius:8px;
}

/* DOTS */
.dots{margin-top:10px}
.dots span{
  width:8px;height:8px;
  background:#ccc;
  border-radius:50%;
  display:inline-block;
  margin:0 4px;
}
.dots .active{background:#ff6b00}

/* OFFERS */
.offers{background:#fff3e6}
#countdown{font-size:26px;font-weight:bold;margin-top:10px}

/* VISA */
.visa-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.visa{background:#fff3e6;padding:15px;border-radius:10px}

/* BOOKING */
.booking form{display:flex;flex-direction:column;gap:12px}
.booking button{background:#ff6b00;color:#fff;border:none;border-radius:8px;padding:12px}
.whatsapp{
  display:inline-block;
  margin-top:15px;
  padding:12px 22px;
  background:#25D366;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
}

/* FOOTER */
footer{background:#111;color:#fff;padding:20px}
.socials span{margin:0 6px;font-size:20px}
/* MODAL */
.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  z-index:999;
}

.modal-content{
  background:#fff;
  width:90%;
  max-width:420px;
  margin:8vh auto;
  padding:25px;
  border-radius:16px;
  position:relative;
  animation:pop .3s ease;
}

@keyframes pop{
  from{transform:scale(.9);opacity:0}
  to{transform:scale(1);opacity:1}
}

.modal-content h2{
  margin-bottom:15px;
}

.modal-content form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.modal-content input,
.modal-content button{
  padding:12px;
}

.modal-content button{
  background:#ff6b00;
  border:none;
  color:#fff;
  border-radius:8px;
}

.close{
  position:absolute;
  right:15px;
  top:12px;
  font-size:22px;
  cursor:pointer;
}

.modal-links{
  margin-top:12px;
  font-size:12px;
  color:#555;
}
.modal-links a{
  color:#ff6b00;
  text-decoration:none;
}
.call-btn{
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #188038;
  color: white;
  padding: 14px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  z-index: 9999;
}
.call-btn:hover{
  background:#0f6a2a;
}
@media(min-width:800px){
  body{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:30px 0;
  }
}
