
:root{
  --brand-orange:#ff7a00;
  --brand-blue:#1e1e60;
}

html, body {scroll-behavior:smooth;}
body { background-color:#ffffff; }

/* Hero */
.hero{
  background: linear-gradient(135deg, rgba(30,30,96,.6), rgba(0,0,0,.35)), url('../img/banner1.webp') center/cover no-repeat;
  padding: 7rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(64 64 124 / 70%), rgba(0, 0, 0, .4));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 4rem 0;
    background-position: center center !important;
    background-size: cover !important;
  }
  
  .hero h1 {
    font-size: 2.5rem !important;
  }
  
  .hero p {
    font-size: 1rem !important;
  }
  
  .hero .btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 50vh;
    padding: 3rem 0;
    background-position: center center !important;
    background-size: cover !important;
  }
  
  .hero h1 {
    font-size: 2rem !important;
  }
  
  .hero p {
    font-size: 0.9rem !important;
  }
  
  .hero .btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
  }
  
  .hero .d-flex.gap-3 {
    flex-direction: column !important;
    gap: 1rem !important;
  }
}
.hero .btn-outline-light{ border-color:#ffffff; color:#ffffff; }
.hero .btn-outline-light:hover{ background:#ffffff; color:var(--brand-blue); }

.hero h1 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.hero p {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}

/* Theme */
.text-brand{ color: var(--brand-orange); }
.btn-primary{ background: var(--brand-orange); border-color: var(--brand-orange); }
.btn-primary:hover{ background:#ff8e29; border-color:#ff8e29; }
.navbar .nav-link.active{ color: var(--brand-orange) !important; font-weight:600; }
.card { border: none; }
.card .card-title { color: var(--brand-blue); }

/* Loader */
#loader{
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hide{ opacity:0; visibility:hidden; }
.loader-logo{
  width: 111px;
  height: 111px;
  animation: fadeInOut 1.6s ease-in-out infinite;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
@keyframes fadeInOut{
  0%{ opacity: 0.3; }
  50%{ opacity: 1; }
  100%{ opacity: 0.3; }
}

/* Floating WhatsApp button */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  z-index: 1040;
  text-decoration:none;
}
.whatsapp-float:hover{ transform: translateY(-2px); }

/* Utility */
.object-cover{ object-fit: cover; height: 240px; }
footer { background: #fff; }

.footer_email{
  color: #000 !important;
}