/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}

/* ================= BODY SAFE SPACE ================= */
body{
  padding-bottom:70px; /* mobile sticky nav space */
  background:#fff;
  color:#222;
}

/* ================= LEFT VERTICAL ENQUIRY BUTTONS (DESKTOP) ================= */
/* ================= LEFT VERTICAL ENQUIRY BUTTONS (DESKTOP) ================= */
.side-enquiry-btns {
  position: fixed;
  left: 0;           /* बटन को बिल्कुल किनारे चिपकाने के लिए */
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 0px;          /* वर्टिकल बटन के बीच गैप कम कर दिया */
  z-index: 999;
}

.enq-btn {
  background: #00BFFF;
  color: #000;
  padding: 15px 8px; /* पैडिंग को वर्टिकल के हिसाब से सेट किया */
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  
  /* बटन को वर्टिकल करने के लिए मुख्य कोड */
  writing-mode: vertical-rl; 
  transform: rotate(180deg);
  white-space: nowrap;
}

.quote-btn {
  background: #228B22;
  border: 1px solid #000;
  border-left: none; /* किनारे से बॉर्डर हटाने के लिए */
}


/* Hide enquiry buttons on mobile */
@media(max-width:768px){
  .side-enquiry-btns{display:flex;}
}

/* ================= FOOTER ================= */
.premium-footer{
  background:#000;
  color:#fff;
  padding:30px 15px;
}
.footer-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}
.footer-box h3{
  margin-bottom:10px;
  font-size:16px;
}
.footer-box p{
  font-size:14px;
  line-height:1.6;
}
.footer-box ul li{
  margin:6px 0;
}
.footer-box ul li a{
  color:#ccc;
  font-size:14px;
}
.footer-box ul li a:hover{
  color:#ffb703;
}
.footer-logo{
  width:70px;   /* smaller logo */
  margin-bottom:10px;
}

/* Footer mobile */
@media(max-width:768px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
}

/* ================= WHATSAPP DESKTOP ================= */
.wa-desktop-fixed{
  position:fixed;
  right:15px;
  bottom:65px;
  z-index:998;
}
.wa-desktop-fixed img{
  width:50px;
}

/* ================= MOBILE STICKY NAV ================= */
.mobile-sticky-nav{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  height:60px;
  background:#00BFFF;
  display:flex;
  justify-content:space-around;
  align-items:center;
  z-index:997;
  transition:transform .3s ease;
}
.mobile-sticky-nav a{
  color:#fff;
  font-size:12px;
  text-align:center;
}
.nav-icon-small{
  width:20px;
  margin-bottom:3px;
}

/* Desktop hide mobile nav */
@media(min-width:769px){
  .mobile-sticky-nav{display:none;}
}

/* ================= POPUP ENQUIRY ================= */
.popup-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  z-index:1001;
  display: none; /* JS इसे flex में बदलेगा */
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: #fff;
  width: 90%;
  max-width: 360px;
  padding: 25px; /* थोड़ी और जगह */
  position: relative;
  border-radius: 8px; /* किनारों को सॉफ्ट करने के लिए */
  margin: 0; /* पुराने मार्जिन को हटा दें */
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.close-btn{
  position:absolute;
  right:10px;
  top:8px;
  font-size:22px;
  cursor:pointer;
}
.popup-content h2{
  margin-bottom:10px;
  text-align:center;
}
.popup-content input,
.popup-content textarea{
  width:100%;
  padding:8px;
  margin:6px 0;
  border:1px solid #ccc;
}
.submit-btn{
  width:100%;
  background:#228B22;
  border:none;
  padding:10px;
  font-weight:600;
  cursor:pointer;
}

/* ================= THANK YOU ================= */
#thankYouMsg p{
  font-size:14px;
}
/* Tagline को perfect visible बनाने के लिए */
.footer-col p { 
  margin-bottom: 10px; 
  line-height: 1.6; 
  color: #f5f5f5 !important;  /* Super bright white */
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);  /* Shadow for extra visibility */
}

/* पहली column का description extra bright */
.footer-col:first-child p {
  color: #ffffff !important;
  font-size: 15px;
}