:root{
  --text:#111;
  --muted:#7b7b7b;
  --line:#d8d8d8;
}

*{ box-sizing:border-box; } 
html,body{ margin:0; padding:0; }

body{
  font-family:"Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

img{ max-width:100%; height:auto; display:block; }

.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

/* ================= HERO ================= */
.enq-hero{
  position: relative;
  height: 300px;
  overflow:hidden;
}

.enq-hero__bg{
  position:absolute;
  inset:0;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  pointer-events:none;
}

/* top row */
.enq-hero__top{
  position: relative;
  z-index: 2000;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  padding-top: 22px;
}

/* logo */
.enq-logo img{
  width:175px;
}

/* NAV PILL */
.enq-nav{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:18px;

  background:#fff;
  border-radius:10px;
  padding:12px 34px;
  display:flex;
  gap:40px;
  align-items:center;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
  white-space:nowrap;
  z-index:2100;
}

.enq-nav a{
  text-decoration:none;
  color:#222;
  font-weight:500;
  font-size:15px;
}

/* mobile hamburger */
.enq-nav-toggle{
  display:none;
}

.enq-hamburger{
  display:none;
  width:56px;
  height:56px;
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  position:relative;
  z-index:2200;
}

.enq-hamburger span{
  width:24px;
  height:3px;
  background:#222;
  border-radius:2px;
  display:block;
}

/* mobile menu */
.enq-mobile-menu{
  display:none;
  position:absolute;
  top:84px;
  right:0;
  width:220px;
  background:#fff;
  border-radius:18px;
  box-shadow:0 18px 30px rgba(0,0,0,.22);
  overflow:hidden;
  z-index:2300;
}

.enq-mobile-menu a{
  display:block;
  padding:18px 24px;
  text-decoration:none;
  color:#111;
  font-weight:700;
  font-size:16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.enq-mobile-menu a:last-child{
  border-bottom:none;
}

.enq-mobile-menu a:hover{
  background:#f5f5f5;
}

/* hero content */
.enq-hero__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 0;
}

/* title */
.enq-hero__title{
  margin:0;
  font-family:"Oleo Script", cursive;
  font-size:56px;
  line-height:1.05;
  letter-spacing:.2px;
  color:#f4fbff;
  text-shadow: 0 1px 0 rgba(0,0,0,.10);
}

/* hero man */
.enq-hero__man{
  width:460px;
  max-width:48vw;
  align-self:flex-end;
  transform: translateY(20px);
}

/* ================= MAIN GRID ================= */
.enq-main{
  padding: 54px 0 60px;
}

.enq-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:start;
}

.enq-heading{
  margin:0 0 26px;
  font-size:34px;
  line-height:1.1;
  font-weight:600;
  color:#111;
}

.muted{ color:var(--muted); font-weight:500; }

/* form */
.enq-form{ margin-top:6px; }
.enq-field{ margin:18px 0; }

.enq-field label{
  display:block;
  font-size:16px;
  color:#3a3a3a;
  margin-bottom:8px;
}

.enq-field input{
  width:76%;
  border:none;
  border-bottom:1px solid #bdbdbd;
  padding:10px 2px 8px;
  font-size:15px;
  outline:none;
  background:transparent;
}

.enq-error{
  color:red;
  font-size:12px;
  display:block;
  margin-top:6px;
  min-height:16px;
  text-align:left;
}

.enq-error--center{
  text-align:center;
  margin:4px 0 0;
}

/* ================= RIGHT CARDS ================= */
.enq-cards{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}

.enq-card{
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  background:#fff;
}

.enq-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.enq-card--big{
  grid-row: 1 / span 2;
  min-height: 330px;
}

/* ================= SERVICES REQUIRED ================= */
.enq-services{
  margin-top:44px;
  text-align:center;
}

.enq-services__title{
  margin:0 0 22px;
  font-size:28px;
  font-weight:600;
}

.enq-chips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px 16px;
  margin:0 auto 8px;
  width:min(980px, 100%);
}

/* chip as checkbox */
.chip{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:10px 22px;
  border-radius:999px;
  background: linear-gradient(135deg, #000000, #6d6d6d);
  color:#fff;
  font-size:13px;
  box-shadow:0 10px 16px rgba(0,0,0,.18);
  transition: transform .2s ease, filter .2s ease, background .2s ease, color .2s ease, border .2s ease;
  user-select:none;
}

.chip:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.chip:active{
  transform: translateY(0);
}

.chip input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* selected checkbox chip */
.chip.active{
  background:#ffffff !important;
  color:#000000 !important;
  border:2px solid #000000;
}

/* message box */
.enq-message{
  width:min(420px, 100%);
  margin:8px auto 18px;
}

.enq-message textarea{
  width:100%;
  height:115px;
  resize:none;
  border:2px solid #2b2b2b;
  border-radius:2px;
  padding:12px;
  font-family:inherit;
  font-size:14px;
  outline:none;
}

/* submit */
.enq-submit{
  display:inline-block;
  border:none;
  background:#000;
  color:#fff;
  font-size:14px;
  padding:14px 52px;
  border-radius:2px;
  box-shadow:0 8px 14px rgba(0,0,0,.25);
  cursor:pointer;
  transition: transform .15s ease, background .2s ease;
}
.enq-submit:hover{ background:#111; }
.enq-submit:active{ transform: scale(.98); }

/* ================= FOOTER ================= */
.footer{
  background:#2a2a2a;
  color:#d8d8d8;
  padding:34px 0 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:26px;
  align-items:start;
}

.footer-logo{
  width:170px;
  display:block;
  height:auto;
}

.footer-about{
  text-align:left;
}

.footer-desc{
  font-size:12px;
  line-height:1.5;
  max-width:260px;
  margin:14px 0 16px;
  color:#cfcfcf;
}

.footer-follow-title{
  font-weight:600;
  margin:10px 0 10px;
  color:#fff;
  font-size:18px;
}

.footer-social{
  display:flex;
  gap:10px;
  align-items:center;
}

.footer-social a{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  color:#d8d8d8;
  opacity:.9;
  text-decoration:none;
  border:none;
  background:transparent;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-social a:hover{
  opacity:1;
  transform: translateY(-1px);
}

.footer-social svg{
  width:22px;
  height:22px;
}

.footer-grid .footer-col:not(.footer-about){
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.footer-grid .footer-col:not(.footer-about) .footer-head{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:10px;
}

.footer-grid .footer-col:not(.footer-about) .footer-icon{
  width:22px;
  height:22px;
  object-fit:contain;
  display:block;
  margin:0 auto;
}

.footer-grid .footer-col:not(.footer-about) .footer-title{
  margin:0;
  font-size:18px;
  font-weight:700;
  color:#fff;
}

.footer-grid .footer-col:not(.footer-about) .footer-links{
  list-style:none;
  padding:0;
  margin:0 auto;
  width:fit-content;
  text-align:left;
}

.footer-grid .footer-col:not(.footer-about) .footer-links li{
  margin:9px 0;
}

.footer-grid .footer-col:not(.footer-about) .footer-links a{
  text-decoration:none;
  color:#cfcfcf;
  font-size:12px;
}

.footer-grid .footer-col:not(.footer-about) .footer-text{
  width:fit-content;
  max-width:220px;
  margin:0 auto;
  font-size:12px;
  line-height:1.5;
  color:#cfcfcf;
  text-align:left;
}

.footer-bottom{
  text-align:center;
  padding-top:18px;
  margin-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#bdbdbd;
  font-size:12px;
}

.footer a{
  color:#ffffff !important;
  text-decoration:none !important;
}

.footer a:hover{
  color:#ffffff !important;
  text-decoration:none !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px){
  .enq-hero__title{ font-size:46px; }
  .enq-grid{ grid-template-columns: 1fr; }
  .enq-field input{ width:100%; }

  .enq-hero__man{
    width:340px;
    max-width:55vw;
    transform: translateY(16px);
  }

  .footer-grid{ grid-template-columns:1fr 1fr; gap:40px; }
}

@media (max-width: 768px){
  .enq-nav{ display:none; }
  .enq-hamburger{ display:flex; }

  .enq-nav-toggle:checked ~ .enq-mobile-menu{
    display:block;
  }
}

@media (max-width: 520px){
  .enq-hero{ height:260px; }
  .enq-hero__top{ padding-top:14px; }
  .enq-logo img{ width:150px; }

  .enq-hero__title{ font-size:38px; }

  .enq-hero__content{
    align-items:flex-end;
    padding-bottom:22px;
  }

  .enq-hero__man{
    width:230px;
    max-width:46vw;
    transform: translateY(10px);
  }

  .enq-heading{ font-size:28px; }
  .enq-services__title{ font-size:24px; }

  .footer-grid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .footer-about{
    text-align:center;
  }
}

@media (max-width:520px){

  .enq-hero{
    height:320px;
  }

  .enq-hero__content{
    align-items:center;
    padding-top:10px;
  }

  .enq-hero__title{
    font-size:36px;
    line-height:1.05;
    transform:translateY(-20px);
  }

  .enq-hero__man{
    width:260px;
    max-width:55vw;
    transform:translateY(-20px);
  }

}