*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  overflow-x:hidden;
  font-family:Arial, Helvetica, sans-serif;
  background:#f5f5f5;
  color:#111;
  scroll-behavior:smooth;
  padding-bottom:90px;
}

/* PAGE */
main{
  width:100%;
  min-height:100vh;
  background:#f5f5f5;
}

/* HERO */
.hero{
  position:relative;
  width:100%;
  height:58vh;
  min-height:340px;
  max-height:650px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  background:#000;
}

.hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* HERO OVERLAY */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.10),
    rgba(0,0,0,.72)
  );
}

/* HERO CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  padding:55px 28px;
  width:100%;
}

.hero-content h2{
  font-size:62px;
  line-height:1;
  font-weight:900;
  color:#fff;
  margin-bottom:14px;
  text-transform:uppercase;
}

.hero-content p{
  max-width:620px;
  font-size:20px;
  line-height:1.5;
  color:rgba(255,255,255,.92);
}

/* CONTACT CARD */
.contact-section{
  width:100%;
  max-width:760px;
  margin:auto;
  margin-top:-45px;
  position:relative;
  z-index:5;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:40px 28px 50px;
  box-shadow:0 -5px 35px rgba(0,0,0,.08);
}

/* LOCK ICON */
.lock{
  width:78px;
  height:78px;
  margin:auto;
  margin-top:-80px;
  margin-bottom:18px;
  border-radius:50%;
  background:#ff7a00;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  border:6px solid #fff;
  box-shadow:0 10px 25px rgba(255,122,0,.28);
}

/* HEADINGS */
.contact-section h1{
  text-align:center;
  font-size:40px;
  font-weight:900;
  color:#ff7a00;
  margin-bottom:14px;
  text-transform:uppercase;
}

.contact-section p{
  text-align:center;
  color:#555;
  line-height:1.7;
  margin-bottom:28px;
  font-size:17px;
}

/* FORM */
form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

input,
textarea{
  width:100%;
  padding:18px;
  border-radius:16px;
  border:1px solid #ddd;
  background:#fafafa;
  font-size:16px;
  outline:none;
  transition:.25s ease;
}

input:focus,
textarea:focus{
  border-color:#ff7a00;
  background:#fff;
  box-shadow:0 0 0 4px rgba(255,122,0,.10);
}

textarea{
  min-height:160px;
  resize:none;
}

/* BUTTON */
button{
  border:none;
  background:#ff7a00;
  color:#fff;
  padding:18px;
  border-radius:18px;
  font-size:19px;
  font-weight:900;
  cursor:pointer;
  transition:.25s ease;
  text-transform:uppercase;
  letter-spacing:.5px;
}

button:hover{
  background:#ff9500;
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(255,122,0,.22);
}

/* ALERTS */
.alert{
  padding:16px;
  border-radius:14px;
  margin-bottom:20px;
  text-align:center;
  font-weight:700;
}

.success{
  background:#e8f8ec;
  color:#187a38;
}

.error{
  background:#ffeaea;
  color:#b10000;
}

/* CALL BUTTON */
.bottom-call{
  position:fixed;
  left:0;
  bottom:0;
  width:100%;
  padding:14px;
  background:#fff;
  border-top:1px solid rgba(0,0,0,.08);
  z-index:999;
  backdrop-filter:blur(10px);
}

.bottom-call a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  max-width:520px;
  margin:auto;
  text-decoration:none;
  background:#ff7a00;
  color:#fff;
  padding:18px;
  border-radius:20px;
  font-size:20px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(255,122,0,.25);
  transition:.25s ease;
}

.bottom-call a:hover{
  background:#ff9500;
  transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:768px){

/* HERO - SHOW FULL FLYER */
/* FLUID HERO WITH FULL FLYER */
.hero{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#0a0a0a;
  padding:20px;
}

.hero img{
  width:100%;
  max-width:1200px;
  height:auto;
  display:block;
  object-fit:contain;
  border-radius:28px;
  box-shadow:0 15px 45px rgba(0,0,0,.35);
}

/* KEEP PAGE FLUID */
main{
  width:100%;
  background:#f5f5f5;
}

/* CONTACT SECTION */
.contact-section{
  width:100%;
  max-width:760px;
  margin:auto;
  margin-top:20px;
  background:#fff;
  border-radius:28px;
  padding:40px 24px 50px;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
}

/* MOBILE */
@media(max-width:768px){

  .hero{
    padding:10px;
  }

  .hero img{
    border-radius:18px;
  }

}

  input,
  textarea{
    padding:16px;
    font-size:15px;
  }

  button{
    padding:16px;
    font-size:17px;
  }

  .bottom-call a{
    padding:16px;
    font-size:18px;
    border-radius:18px;
  }

}
/* DESKTOP FIX - SHOW FULL FLYER */
@media(min-width:769px){

  .hero{
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    overflow:visible !important;
    align-items:center !important;
    justify-content:center !important;
    padding:24px !important;
  }

  .hero img{
    position:relative !important;
    inset:auto !important;
    width:100% !important;
    max-width:1100px !important;
    height:auto !important;
    object-fit:contain !important;
    display:block !important;
  }

  .hero::after{
    display:none !important;
  }

  .hero-content{
    display:none !important;
  }
}
/* =========================
   TOP HEADER / NAVBAR
========================= */
.topbar{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 6%;
  background:#050505;
  border-bottom:1px solid rgba(212,175,55,.25);
  position:sticky;
  top:0;
  z-index:999;
}

/* LOGO */
.logo{
  font-size:28px;
  font-weight:900;
  color:#d4af37;
  letter-spacing:.5px;
  line-height:1;
}

.logo span{
  display:block;
  font-size:12px;
  font-weight:600;
  color:#ffffff;
  margin-top:4px;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* NAVIGATION */
.topbar nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.topbar nav a{
  color:#ffffff;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  padding:10px 16px;
  border-radius:10px;
  transition:.25s ease;
  border:1px solid transparent;
}

/* HOVER */
.topbar nav a:hover{
  background:#d4af37;
  color:#000;
  border-color:#d4af37;
  transform:translateY(-2px);
}

/* ACTIVE EFFECT */
.topbar nav a:active{
  transform:scale(.97);
}

/* MOBILE */
@media(max-width:768px){

  .topbar{
    flex-direction:column;
    gap:14px;
    padding:18px 20px;
    text-align:center;
  }

  .logo{
    font-size:24px;
  }

  .topbar nav{
    justify-content:center;
    gap:10px;
    width:100%;
  }

  .topbar nav a{
    flex:1 1 auto;
    min-width:100px;
    font-size:14px;
    padding:10px 12px;
  }

}