/* =============================================
   RUPAYAN LAND — Responsive & Footer Fix
   All pages unified footer + mobile fixes
   ============================================= */

/* ── HEADER RESPONSIVE FIX ── */
.site-header { top: 0 !important; }

/* Logo smaller on mobile */
.site-logo-img {
  height: 38px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
}
@media (max-width: 480px) {
  .site-logo-img { height: 28px !important; }
}
@media (min-width: 481px) and (max-width: 767px) {
  .site-logo-img { height: 32px !important; }
}
@media (min-width: 768px) {
  .site-logo-img { height: 42px !important; }
}

/* Header height compact on mobile */
.header-inner {
  height: 54px !important;
  gap: 10px !important;
}
@media (min-width: 768px) {
  .header-inner { height: 64px !important; }
}

/* Book button smaller on mobile */
@media (max-width: 480px) {
  .btn-book {
    font-size: 10px !important;
    padding: 6px 10px !important;
    white-space: nowrap !important;
  }
  .btn-wa { display: none !important; }
}
@media (min-width: 481px) and (max-width: 639px) {
  .btn-book { font-size: 11px !important; padding: 7px 12px !important; }
  .btn-wa { display: none !important; }
}

/* ── PROTO NAV HIDDEN ── */
.proto-nav,
.proto-nav * {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 50px !important;
  height: 50px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25) !important;
  transition: transform 0.2s !important;
  text-decoration: none !important;
}
.wa-float:hover { transform: scale(1.1) !important; }
@media (min-width: 768px) {
  .wa-float { width: 56px !important; height: 56px !important; bottom: 28px !important; right: 28px !important; }
}

/* ── UNIFIED FOOTER — ALL PAGES ── */
.site-footer {
  background: var(--black, #2e3a8d) !important;
  padding: 56px 0 0 !important;
  color: rgba(255,255,255,0.55) !important;
}
.footer-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 32px !important;
  padding-bottom: 40px !important;
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 40px !important; }
}
.footer-brand .f-en {
  color: var(--yellow, #F5C800) !important;
  font-size: 14px !important; font-weight: 600 !important;
  margin-bottom: 4px !important; letter-spacing: 0.3px !important;
  display: block !important;
}
.footer-brand .f-bn {
  font-family: 'Hind Siliguri', sans-serif !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 12px !important; margin-bottom: 14px !important;
  display: block !important;
}
.footer-brand p {
  font-family: 'Hind Siliguri', sans-serif !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 12px !important; line-height: 1.85 !important;
}
.footer-col h5 {
  color: var(--yellow, #F5C800) !important;
  font-size: 10px !important; letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important; font-weight: 700 !important;
}
.footer-col ul {
  list-style: none !important; padding: 0 !important; margin: 0 !important;
}
.footer-col ul li {
  margin-bottom: 10px !important;
  font-family: 'Hind Siliguri', sans-serif !important;
  color: rgba(255,255,255,0.55) !important;
  font-size: 13px !important; line-height: 1.6 !important;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  font-family: 'Hind Siliguri', sans-serif !important;
}
.footer-col ul li a:hover { color: var(--yellow, #F5C800) !important; }

/* Address line — always yellow */
.footer-col ul li.addr-line,
.footer-col ul li:first-child:not(:only-child) {
  color: var(--yellow, #F5C800) !important;
  font-weight: 500 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding: 20px 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.footer-bottom p {
  font-family: 'Hind Siliguri', sans-serif !important;
  color: rgba(255,255,255,0.3) !important;
  font-size: 11px !important;
}

/* ── MOBILE HERO RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 24px 0 !important;
  }
  .hero-title { font-size: clamp(28px, 6vw, 42px) !important; }
  .hero-card  { width: 100% !important; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr !important; }
  .hero-btns  { flex-direction: column !important; gap: 10px !important; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100% !important; justify-content: center !important; }
}

/* ── PROJECTS GRID RESPONSIVE ── */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── TICKER RESPONSIVE ── */
@media (max-width: 480px) {
  .ticker { font-size: 11px !important; }
}

/* ── GENERAL MOBILE ── */
@media (max-width: 768px) {
  .container { padding: 0 16px !important; }
  .section-pad { padding: 48px 0 !important; }
  .section-title { font-size: clamp(22px, 5vw, 32px) !important; }
  .why-grid { grid-template-columns: 1fr 1fr !important; }
  .testi-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr !important; }
  .section-header { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }
}
