/* =====================================================
   GLOBAL RESET & SAFE FULL SCREEN
===================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

/* =====================================================
   CONTAINER (ALL-IN-ONE WIDTH SOLUTION)
===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =====================================================
   GLOBAL BUTTON STYLES
===================================================== */
.call-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 5px;
  z-index: 9999;
}

/* Call Button */
.call-button {
  background-color: #28a745;
}
.call-button:hover {
  background-color: #218838;
}

/* WhatsApp Button */
.whatsapp-button {
  background-color: #25D366;
}
.whatsapp-button:hover {
  background-color: #1DA851;
}

.call-button i,
.whatsapp-button i {
  margin-right: 8px;
  font-size: 18px;
}

/* =====================================================
   FLOATING POSITION (DESKTOP)
===================================================== */
.call-button {
  position: fixed;
  right: 20px;
  bottom: 90px;
}

.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 25px;
}

/* =====================================================
   FULL SCREEN BANNER / HEADER IMAGE FIX
===================================================== */
.banner-area,
.header-slider,
.header-slider .single-slide {
  width: 100%;
  min-height: 100vh;               /* FULL SCREEN HEIGHT */
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  align-items: center;
}

/* =====================================================
   HEADER FIX (NO OVERLAP)
===================================================== */
header,
.header-area,
.navbar {
  width: 100%;
  z-index: 1000;
}

/* =====================================================
   MOBILE-FIRST FIX (ALL-IN-ONE)
===================================================== */
@media (max-width: 768px) {

  /* Fix header overlap */
  header,
  .header-area,
  .navbar {
    position: relative !important;
  }

  /* Mobile banner behavior */
  .banner-area,
  .header-slider,
  .header-slider .single-slide {
    min-height: 60vh !important;     /* Mobile-friendly height */
    background-size: contain !important;
    background-position: center top !important;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Floating buttons (mobile round style) */
  .call-button,
  .whatsapp-button {
    padding: 14px;
    font-size: 14px;
    border-radius: 50%;
  }

  .call-button i,
  .whatsapp-button i {
    margin-right: 0;
    font-size: 16px;
  }

  .call-button {
    right: 15px;
    bottom: 90px;
  }

  .whatsapp-button {
    right: 15px;
    bottom: 20px;
  }
}

/* =====================================================
   EXTRA LARGE SCREENS (4K SAFETY)
===================================================== */
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}