:root{
  --navy: #0A1A3C;
  --orange: #F47B20;
  --muted: #ffffff;
}

/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Segoe UI', sans-serif; line-height:1.6; }

/* Header */
.sh-header{
  position: sticky;
  top:0;
  width:100%;
  background:#fff;
  z-index:1200;
  box-shadow: 0 2px 10px rgba(10,26,60,0.05);
}
.sh-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  gap:16px;
}
.sh-logo img{ height:75px; display:block; }

/* Desktop nav */
.sh-nav ul{
  display:flex;
  gap:32px;
  list-style:none;
  margin:0;
  padding:0;
}
.sh-nav a{
  text-decoration:none;
  color:var(--navy);
  font-weight:600;
  padding:6px 4px;
  transition: color .2s ease;
}
.sh-nav a:hover{ color:var(--orange); }

/* Actions */
.sh-actions{ display:flex; align-items:center; gap:12px; }
.sh-track{
  display:inline-block;
  padding:8px 14px;
  background:var(--orange);
  color:#fff;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
}

/* Hamburger button */
.sh-hamburger{
  display:none;
  flex-direction:column;
  justify-content:space-between;
  width:40px;
  height:28px;
  border:none;
  background:transparent;
  cursor:pointer;
  padding:0;
}
.sh-hamburger span{
  display:block;
  height:3px;
  width:100%;
  background:var(--navy);
  border-radius:2px;
  transition: all .3s ease;
}

/* Mobile */
@media(max-width:900px){
  .sh-nav{
    display:none;
    position:absolute;
    top:64px;
    right:16px;
    background:#fff;
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
    border-radius:10px;
    padding:16px;
    flex-direction:column;
    gap:16px;
  }
  .sh-nav.open{ display:flex; }
  .sh-hamburger{ display:flex; }
}









:root{
  --dear-navy: #0A1A3C;
  --dear-orange: #F47B20;
  --dear-gold: #FFD700;
}

/* SIMPLE WHITE FOOTER */
.simple-footer {
  background: #fff;
  color: var(--dear-navy);
  padding: 18px 6%;
  border-top: 1px solid rgba(10,26,60,0.06);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Top row layout */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

/* LEFT group: logo + actions */
.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* logo image */
.footer-logo-img {
  height: 48px;      /* adjust to taste */
  width: auto;
  display: block;
}

/* action buttons next to logo */
.footer-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* small pill buttons */
.footer-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
  transition: transform .15s ease, box-shadow .15s ease;
}

/* contact button: subtle outline */
.footer-btn.contact {
  background: transparent;
  color: var(--dear-navy);
  border: 1.5px solid rgba(10,26,60,0.08);
}

/* track button: brand filled */
.footer-btn.track {
  background: var(--dear-orange);
  color: #fff;
  border: 1.5px solid var(--dear-orange);
}

.footer-btn:hover { transform: translateY(-3px); }

/* RIGHT group: social icons aligned far right */
.footer-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* social icon links */
.social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--dear-navy);
  text-decoration: none;
  background: rgba(10,26,60,0.03);
  transition: background .15s ease, transform .15s ease, color .15s ease;
}

.social-link:hover {
  background: var(--dear-orange);
  color: #fff;
  transform: translateY(-3px);
}

/* bottom bar */
.footer-bottom {
  margin-top: 12px;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(10,26,60,0.04);
  font-size: 0.92rem;
  color: #445066;
}

.footer-bottom span { color: var(--dear-navy); font-weight: 700; }

/* RESPONSIVE: stack vertically on small screens */
@media (max-width: 780px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-left { gap: 12px; justify-content: center; }
  .footer-right { order: 3; } /* ensure social icons go last */
  .footer-actions { justify-content: center; }
}



/* WhatsApp Floating Button */
.whatsapp-help {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  z-index: 1000;
}

.whatsapp-help .help-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20ba5a;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}




.sh-contact{
  background:#fff;
  padding:80px 24px;
  display:flex;
  justify-content:center;
}
.sh-contact-inner{
  max-width:600px;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* Heading */
.sh-contact-inner h2{
  font-size:2.4rem;
  color:var(--navy);
  margin-bottom:12px;
  position:relative;
  display:inline-block;
}
.sh-contact-inner h2::after{
  content:'';
  display:block;
  width:50px;
  height:4px;
  background:var(--orange);
  margin:8px auto 0;
  border-radius:2px;
}

/* Short message */
.sh-contact-inner p{
  font-size:1rem;
  color:#334155;
  line-height:1.6;
}

/* Contact details */
.sh-contact-details{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-top:16px;
}

.sh-contact-item{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  font-size:1.1rem;
  color:var(--navy);
  font-weight:600;
}

.sh-contact-item a{
  color:var(--orange);
  text-decoration:none;
  transition: color .2s ease;
}
.sh-contact-item a:hover{
  color:#0A1A3C;
}

/* Fade-in animation */
.sh-fade{
  opacity:0;
  transform:translateY(10px);
  animation: shFade 700ms ease-out forwards;
}
@keyframes shFade{
  to{ opacity:1; transform:none; }
}

/* Mobile */
@media(max-width:600px){
  .sh-contact-inner{
    gap:16px;
  }
  .sh-contact-item{
    font-size:1rem;
    flex-direction:column;
    gap:4px;
  }
}
