/* ================= MOBILE APP CSS ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
  padding-top: 60px; /* header */
  padding-bottom: 70px; /* bottom nav */
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
}

/* ===== APP HEADER ===== */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 999;
}

.app-header .dp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
}

.app-header .logo img {
  height: 40px;
}

.app-header .notification {
  font-size: 20px;
  cursor: pointer;
}

/* ===== SLIDER ===== */
.app-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 60px;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.slide-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.slider-dots span {
  display: block;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.slider-dots span.active {
  background: #d4af37;
}

/* ===== PACKAGES SECTION ===== */
#packagesContainer {
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

/* package card */
.package-card {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

.package-card img {
  width: 100%;
  border-radius: 8px;
}

.package-card h4 {
  margin-top: 8px;
  font-size: 14px;
}

/* ===== BOTTOM NAVIGATION ===== */
.app-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f5f5f5;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 999;
}

.app-bottom a {
  text-align: center;
  font-size: 12px;
  color: #111;
}

.app-bottom a i {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.app-bottom a.active {
  color: #d4af37;
}

/* ===== GET A QUOTE / ENQUIRY MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
}

.modal-box h2 {
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

.modal-box .form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.modal-box input,
.modal-box select,
.modal-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.modal-box textarea {
  resize: vertical;
  min-height: 60px;
}

.modal-box button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #d4af37;
  color: #000;
  font-weight: 500;
  cursor: pointer;
}

.modal-box .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}
/* ===== HIDE GET IN TOUCH FORM & FOOTER FOR APP VIEW ===== */
@media (max-width: 768px) {
  .contact,         /* Get in Touch section */
  .site-footer {     /* Footer */
    display: none !important;
  }
}
/* Hide Bottom Navigation on Desktop */
@media (min-width: 769px) {
  .app-bottom {
    display: none !important;
  }

  body {
    padding-bottom: 0; /* remove bottom space on desktop */
  }
}
/* ===== MODAL BACKGROUND ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none; /* IMPORTANT – default closed */
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 15px;
}

/* Show Class */
.modal.show {
  display: flex;
}

/* ===== MODAL BOX ===== */
.modal-box {
  background: #fff;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  border-radius: 14px;
  padding: 15px;
  overflow-y: auto;
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Close Button */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* ===== MOBILE MODAL BACKGROUND ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 10px;
}

.modal.show {
  display: flex;
}

/* ===== MOBILE MODAL BOX ===== */
.modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  height: 92vh;
  border-radius: 14px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Close Button */
.modal-box .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Title */
.modal-box h2 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}

/* ===== FORM SCROLL AREA ===== */
#enquiryForm {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 4px;
}

/* First + Last Name Row */
.form-row {
  display: flex;
  gap: 8px;
}

.form-row input {
  flex: 1;
}

/* Inputs */
#enquiryForm input,
#enquiryForm select {
  width: 100%;
  padding: 10px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  outline: none;
}

/* Focus Effect */
#enquiryForm input:focus,
#enquiryForm select:focus {
  border-color: #d4af37;
  background: #fff;
}

/* Captcha */
.captcha {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Submit Button */
#enquiryForm .btn {
  padding: 11px;
  border-radius: 10px;
  border: none;
  background: #d4af37;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  cursor: pointer;
}

/* Scrollbar */
#enquiryForm::-webkit-scrollbar {
  width: 4px;
}

#enquiryForm::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}

/* Extra Small Screens */
@media (max-width: 360px) {
  .modal-box {
    height: 95vh;
    padding: 12px;
  }

  #enquiryForm input,
  #enquiryForm select {
    padding: 9px;
    font-size: 12px;
  }
}
/* INSTALL APP BUTTON */

.install-btn{
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  z-index: 9999;
}

/* icon */
.install-btn i{
  font-size: 14px;
}

/* hover effect */
.install-btn:hover{
  background:#000;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* mobile optimization */
@media(max-width:768px){
  .install-btn{
    bottom: 90px;
    right: 15px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* DARK THEME */

body[data-theme="dark"]{
background:#111;
color:#fff;
}

body[data-theme="dark"] button,
body[data-theme="dark"] .btn{
background:#333;
color:#fff;
}

body[data-theme="dark"] button:hover{
background:#555;
}


/* PINK THEME */

body[data-theme="pink"]{
background:#fff0f6;
}

body[data-theme="pink"] button,
body[data-theme="pink"] .btn{
background:#ff2d8d;
color:#fff;
}

body[data-theme="pink"] button:hover{
background:#e02178;
}


/* BLUE THEME */

body[data-theme="blue"]{
background:#f0f6ff;
}

body[data-theme="blue"] button,
body[data-theme="blue"] .btn{
background:#2979ff;
color:#fff;
}

body[data-theme="blue"] button:hover{
background:#1c5ed6;
}


/* ORANGE THEME */

body[data-theme="orange"]{
background:#fff6ef;
}

body[data-theme="orange"] button,
body[data-theme="orange"] .btn{
background:#ff7a00;
color:#fff;
}

body[data-theme="orange"] button:hover{
background:#e56d00;
}


/* YELLOW THEME */

body[data-theme="yellow"]{
background:#fffdf4;
}

body[data-theme="yellow"] button,
body[data-theme="yellow"] .btn{
background:#d4af37;
color:#fff;
}

body[data-theme="yellow"] button:hover{
background:#b9972d;
}

