:root{
  --brand:#005070;
  --brand2:#0B7FA6;
  --bg:#ffffff;
  --alt:#f6f8fa;
  --text:#0f172a;
  --muted:#475569;
  --border:rgba(15, 23, 42, 0.12);
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.10);
  --radius:18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

h1,h2,h3{
  font-family: Montserrat, Inter, system-ui, sans-serif;
  margin:0 0 10px;
  letter-spacing:-0.02em;
}
h1{ font-size: clamp(30px, 3.2vw, 46px); line-height:1.1; }
h2{ font-size: clamp(24px, 2.4vw, 34px); }
h3{ font-size: 18px; }

p{ margin:0 0 12px; color:var(--muted); }
a{ color:inherit; text-decoration:none; }
a:hover{ opacity:0.9; }

.container{
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}


.topbar{
  background: #0b1220;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
}
.topbar__left{ display:flex; align-items:center; gap:10px; }
.dot{ width:8px; height:8px; border-radius:999px; background:var(--brand2); display:inline-block; }
.topbar__right{ display:flex; align-items:center; gap:10px; }
.topbar__link{ color:rgba(255,255,255,0.9); }
.sep{ opacity:0.6; }

.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand__logo{
  width:52px;
  height:52px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid var(--border);
  background:#fff;
}
.brand__text{ font-weight:800; font-size:22px; letter-spacing:-0.02em; }

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand__text{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;

  /* logo-ish colors (dark teal -> bright blue) */
  background: linear-gradient(90deg, #005070 0%, #0b7fa6 60%, #1a86c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  font-size:14px;
  color:rgba(15, 23, 42, 0.82);
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{ background:rgba(0, 80, 112, 0.08); }

.header__cta{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0);
  background:var(--brand);
  color:#fff;
  font-weight:600;
  font-size:14px;
  box-shadow: 0 10px 25px rgba(0, 80, 112, 0.25);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}
.btn--full{ width:100%; }

.hamburger{
  display:none;
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  padding:10px;
}
.hamburger span{
  display:block;
  height:2px;
  background:#0b1220;
  margin:5px 0;
  border-radius:20px;
}

.mobile-nav{
  display:none;
  border-top:1px solid var(--border);
  background:#fff;
}
.mobile-nav a{
  display:block;
  padding:12px 20px;
  border-bottom:1px solid rgba(15, 23, 42, 0.06);
  color:rgba(15, 23, 42, 0.86);
}
.mobile-nav__cta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  padding:14px 20px;
}

.hero{
  padding: 54px 0 30px;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(11,127,166,0.18), transparent 60%),
    radial-gradient(800px 400px at 20% 0%, rgba(0,80,112,0.16), transparent 55%),
    #fff;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap:22px;
  align-items:start;
}

.hero{
  min-height: calc(100vh - 120px); /* keeps hero tall */
  display: flex;
  align-items: flex-start;         /* <-- key change (not centered) */
  padding: 28px 0 36px;            /* less empty space on top */
}


.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,80,112,0.08);
  border: 1px solid rgba(0,80,112,0.18);
  color: rgba(0,80,112,0.92);
  font-weight:600;
  font-size:13px;
  margin-bottom:14px;
}
.lead{
  font-size:16px;
  max-width: 56ch;
}

.hero__buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 18px 0 18px;
}

.trust{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
}
.trust__item{
  border:1px solid rgba(15, 23, 42, 0.10);
  border-radius:16px;
  padding:12px;
  background: rgba(255,255,255,0.7);
}
.trust__title{ font-weight:700; color:rgba(15, 23, 42, 0.9); margin-bottom:4px; }
.trust__text{ color:var(--muted); font-size:13px; margin:0; }

.hero__card .card{
  border:1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  padding:18px;
  background:#fff;
  box-shadow: var(--shadow);
}
.card__title{ margin:0 0 6px; }
.card__sub{ margin:0 0 14px; }

.section{
  padding: 58px 0;
}
.section--alt{
  background: var(--alt);
  border-top:1px solid rgba(15, 23, 42, 0.06);
  border-bottom:1px solid rgba(15, 23, 42, 0.06);
}
.section__head{
  margin-bottom: 18px;
}
.section__head p{ max-width: 70ch; }

.grid{
  display:grid;
  gap:14px;
}
.grid--2{ grid-template-columns: 1fr 1fr; }
.grid--3{ grid-template-columns: 1fr 1fr 1fr; }
.grid--tight{ gap:10px; }

.panel{
  border:1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  background:#fff;
  padding:18px;
  box-shadow: 0 12px 30px rgba(2,6,23,0.06);
}
.panel--highlight{
  background: linear-gradient(180deg, rgba(0,80,112,0.06), rgba(11,127,166,0.06));
  border-color: rgba(0,80,112,0.18);
}

.list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.list li{ margin:6px 0; }

.steps{
  display:grid;
  gap:12px;
}
.step{
  display:grid;
  grid-template-columns: 48px 1fr;
  gap:12px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(15, 23, 42, 0.10);
  background:#fff;
}
.step__num{
  width:44px;
  height:44px;
  border-radius: 14px;
  background: var(--brand);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-family: Montserrat, Inter, sans-serif;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.ph{
  height: 160px;
  border-radius: var(--radius);
  border:1px dashed rgba(15, 23, 42, 0.22);
  background: linear-gradient(180deg, rgba(0,80,112,0.05), rgba(11,127,166,0.04));
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(15, 23, 42, 0.55);
  font-weight:600;
}

.note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(15, 23, 42, 0.10);
  background:#fff;
  color: rgba(15, 23, 42, 0.70);
}

label{
  display:grid;
  gap:6px;
  font-size:13px;
  color: rgba(15, 23, 42, 0.78);
}
input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius: 14px;
  border:1px solid rgba(15, 23, 42, 0.16);
  outline:none;
  font: inherit;
  background:#fff;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(0,80,112,0.55);
  box-shadow: 0 0 0 4px rgba(0,80,112,0.12);
}
.fineprint{
  margin-top:10px;
  font-size:12px;
  color: rgba(15, 23, 42, 0.62);
}

.contact-lines{
  display:grid;
  gap:10px;
  margin-bottom: 14px;
  color: rgba(15, 23, 42, 0.78);
}
.map{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(15, 23, 42, 0.12);
  height: 260px;
}
.map iframe{ width:100%; height:100%; border:0; }

.footer{
  padding: 26px 0;
  background:#0b1220;
  color: rgba(255,255,255,0.88);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding-bottom: 12px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.footer__brand{
  font-weight:800;
  font-family: Montserrat, Inter, sans-serif;
}
.footer__meta{ font-size:13px; opacity:0.85; margin-top:6px; }
.footer__right{ display:flex; align-items:center; gap:10px; }
.footer__right a{ color: rgba(255,255,255,0.90); }
.footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top: 12px;
  font-size: 13px;
  opacity:0.92;
}
.backtotop{ color: rgba(255,255,255,0.90); }

.spacer{ height:10px; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .nav{ display:none; }
  .hamburger{ display:inline-block; }
}

@media (max-width: 520px){
  .topbar__inner{ flex-direction:column; align-items:flex-start; }
  .gallery{ grid-template-columns: 1fr; }
  .mobile-nav__cta{ grid-template-columns: 1fr; }
}

code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

.chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.chip{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(15, 23, 42, 0.12);
  background:#fff;
  color: rgba(15, 23, 42, 0.72);
  font-size: 13px;
  font-weight: 600;
}

/* Full-width section backgrounds while keeping content centered */
.hero,
.section,
.footer,
.topbar,
.header {
  width: 100%;
}

/* ===== Home: fit above the fold (no scroll on most desktops) ===== */
:root{
  --topbar-h: 40px;   /* approx */
  --header-h: 72px;   /* approx */
}

/* Make hero fill the remaining screen height */
/* Make homepage fit above the fold */
.hero{
  min-height: auto !important;     /* stops "full screen hero" */
  padding: 18px 0 18px !important; /* tighter */
}


/* Tighten layout inside hero */
.hero__grid{ gap: 16px; }
.trust{ gap: 10px; }

/* Make trust boxes more compact */
.trust__item{ padding: 10px; }
.trust__text{ font-size: 12px; }

/* Make the quick quote card a bit shorter */
.hero__card .card{ padding: 14px; }
.card__sub{ margin-bottom: 10px; }

/* Reduce input height slightly */
input, select, textarea{
  padding: 9px 10px;
  border-radius: 12px;
}

/* Pull the section under the hero up (the 3 cards) */
.section{ padding: 34px 0; }

/* The “under hero” section on home was using inline padding-top:30px.
   If you kept that, this overrides it to reduce scroll. */
.section[style*="padding-top"]{ padding-top: 18px !important; }



/* Make sure your real content stays on top */
.hero .container{
  position: relative;
  z-index: 1;
}

/* Optional: slightly soften on small screens */
@media (max-width: 900px){
  .hero__art{ opacity: 0.55; }
}

/* Sticky footer layout */
html, body{
  height: 100%;
}

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{
  flex: 1;
}

/* Home layout: hero takes available space, bottom cards sit above footer */
body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Make hero flex so it grows and pushes the bottom section down */
.hero{
  flex: 1;
}

/* Keep the bottom section snug above footer */
.section--home-bottom{
  margin-top: auto;       /* pushes it to the bottom of main */
  padding-top: 16px;
  padding-bottom: 26px;
}

/* Projects grid */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 1000px){
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 650px){
  .gallery{ grid-template-columns: 1fr; }
}

.shot{
  margin:0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.75);
  box-shadow: 0 14px 40px rgba(15,23,42,0.06);
  cursor: zoom-in;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.shot img{
  width:100%;
  height: 240px;            /* same size tiles */
  object-fit: cover;        /* crops to same size */
  display:block;
  transform: scale(1);
  transition: transform 260ms ease;
}

.shot:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(15,23,42,0.10);
}

.shot:hover img{
  transform: scale(1.06);   /* hover zoom */
}

.shot figcaption{
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(15,23,42,0.72);
  font-weight: 600;
  border-top: 1px solid rgba(15,23,42,0.08);
}

/* Lightbox (full screen) */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2,6,23,0.82);
  display: none;
  place-items: center;
  padding: 24px;
}

.lightbox.is-open{ display: grid; }

.lightbox__img{
  max-width: min(1100px, 96vw);
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.lightbox__cap{
  margin-top: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  max-width: min(1100px, 96vw);
}

.lightbox__close{
  position: fixed;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover{
  background: rgba(255,255,255,0.16);
}

/* Bigger, cleaner credentials strip */
.section--credentials{
  padding-top: 22px;
  padding-bottom: 22px;
}

.cred{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;

  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 22px 70px rgba(15,23,42,0.07);
}

/* Center header text */
.cred__left{
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cred__left h2{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.cred__left p{
  margin: 0;
  color: rgba(15,23,42,0.70);
  font-weight: 500;
}

/* Logos: bigger, centered, same height */
.cred__logos{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.cred__item{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 10px;

  padding: 16px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.09);
  background: rgba(255,255,255,0.85);
  text-align:center;
}

.cred__item img{
  height: 44px;         /* bigger logo */
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.cred__item span{
  font-size: 13px;
  font-weight: 800;
  color: rgba(15,23,42,0.70);
}

/* Responsive */
@media (max-width: 1000px){
  .cred__logos{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 650px){
  .cred{ padding: 18px; }
  .cred__logos{ grid-template-columns: 1fr; }
  .cred__item img{ height: 42px; }
}

/* Credentials in one line (desktop) */
.credentials-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* Responsive fallback */
@media (max-width: 900px){
  .credentials-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px){
  .credentials-grid{ grid-template-columns: repeat(2, 1fr); }
}

.cred__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.cred__item img{
  max-width: 64px;
  height: auto;
}

/* ===== Mobile / Tablet Responsiveness ===== */
@media (max-width: 900px){

  /* tighter page gutters */
  .container{
    width: calc(100% - 32px);
  }

  /* topbar wraps instead of overflowing */
  .topbar__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .topbar__right{
    flex-wrap: wrap;
    row-gap: 6px;
  }

  /* header: hide desktop nav + show hamburger */
  .nav{ display:none; }
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }

  /* header buttons: keep it clean on mobile */
  .header__cta a.btn--ghost{ display:none; } /* hides Call Now + Login in the header */
  .header__cta .btn{ padding: 10px 12px; }
  .brand__logo{ width:44px; height:44px; }
  .brand__text{ font-size:20px; }

  /* hero becomes 1 column */
  .hero__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* trust boxes become stacked */
  .trust{
    grid-template-columns: 1fr;
  }

  /* any 2/3 column grids become 1 column */
  .grid--2, .grid--3{
    grid-template-columns: 1fr;
  }

  /* mobile nav CTA buttons stack */
  .mobile-nav__cta{
    grid-template-columns: 1fr;
  }

  /* reduce vertical padding so it doesn't feel huge */
  .hero{ padding: 18px 0 22px !important; }
  .section{ padding: 34px 0; }
}

/* extra-small phones */
@media (max-width: 420px){
  .badge{
    font-size: 12px;
    line-height: 1.25;
  }
  .btn{
    width: 100%;
  }
  .hero__buttons{
    gap: 8px;
  }
}

/* ===== MOBILE PATCH (safe) — paste at VERY bottom ===== */
@media (max-width: 520px){

  /* keep your original container feel */
  .container{
    width: min(1120px, calc(100% - 24px)) !important;
  }

  /* topbar: make it not look cramped */
  .topbar__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .topbar__right{
    flex-wrap: wrap;
    row-gap: 6px;
  }

  /* header: don’t let it feel huge */
  .header__inner{
    padding: 10px 0;
  }
  .brand__logo{
    width: 44px;
    height: 44px;
  }
  .brand__text{
    font-size: 20px;
  }

  /* hero: stop the “giant wall of text” look */
  h1{
    font-size: clamp(28px, 7.8vw, 40px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.03em;
    text-wrap: balance;
  }

  /* hero spacing */
  .hero{
    padding: 18px 0 20px !important;
  }

  /* buttons: keep them like before (NOT forced to grid) */
  .hero__buttons{
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .hero__buttons .btn{
    width: auto !important;          /* don’t force full width */
    padding: 12px 14px !important;
  }

  /* trust items look cleaner stacked */
  .trust__item{
    padding: 12px;
  }
}

@media (max-width: 520px){
  .footer__inner{ flex-direction: column; }
  .footer__right{ width:100%; }
  .footer__bottom{ flex-direction: column; align-items:flex-start; }
}

/* === Mobile hamburger: force visible 3-line icon === */
.hamburger{
  display: none;              /* stays hidden on desktop */
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;

  /* make the 3 bars layout correctly */
  padding: 0 12px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  -webkit-tap-highlight-color: transparent;
}

.hamburger span{
  display: block;
  width: 100%;
  height: 2px;
  background: #0b1220;
  border-radius: 999px;
  margin: 0;                 /* remove old margin-based spacing */
}

/* show it on mobile/tablet where nav is hidden */
@media (max-width: 980px){
  .hamburger{ display: flex; }
}

/* Hide header "Request a Quote" button on mobile */
@media (max-width: 980px){
  .header__cta .btn{ display:none !important; }  /* hides the button next to the hamburger */
}

/* ===== Hero faded background image ===== */
.hero{
  position: relative;
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background-image: url("./assets/backround.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.14;              /* adjust 0.10 - 0.20 */
  filter: saturate(0.95);
  transform: scale(1.03);
  z-index: 0;
  pointer-events: none;
}

/* Full-page background image */
body{
  background:
    linear-gradient(rgba(255,255,255,0.80), rgba(255,255,255,0.80)),
    url("/assets/backround.jpg") center / cover fixed no-repeat !important;
}

