*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #0b2444;
      --blue:       #0d3f7a;
      --blue-mid:   #1f5aa0;
      --blue-light: #2b6dbf;
      --sky:        #dbe6f2;
      --sky-mid:    #eef3f9;
      --steel:      #7ea1c4;
      --text:       #0b2444;
      --text-mid:   #2c4a6e;
      --text-dim:   #4a6282;
      --border:     rgba(0,0,0,0.09);
      --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
      --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
      --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
      --radius:     4px;
      --radius-lg:  8px;
      --font-display: 'Barlow Condensed', sans-serif;
      --font-body:    'Barlow', sans-serif;
      --transition: 0.2s ease;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--sky);
      color: var(--text);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; padding: 0; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

    /* ── HEADER ── */
    .header {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .header-logo { display: flex; align-items: center; }
    .header-logo img { height: 54px; width: auto; }

    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      padding: 8px 14px;
      border-radius: var(--radius);
      transition: background var(--transition), color var(--transition);
    }
    nav a:hover { background: var(--sky-mid); color: var(--blue-mid); }

    .btn-nav {
      background: var(--blue) !important;
      color: white !important;
      margin-left: 6px;
      padding: 9px 20px !important;
    }
    .btn-nav:hover { background: var(--blue-mid) !important; }


    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 1px; transition: var(--transition); }

    /* ── HERO ── */
    .hero {
      position: relative;
      background: url("../images/site/building.jpeg") center/cover no-repeat;
      min-height: 480px;
      display: flex;
      flex-direction: column;	
      align-items: center;
      justify-content: flex-end;	
      padding: 72px 0;
      overflow: hidden;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(11,36,68,0.88) 42%, rgba(11,36,68,0.15) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
      text-align: left;
    }
    .hero-eyebrow {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--steel);
      margin-bottom: 16px;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(44px, 6vw, 72px);
      font-weight: 800;
      color: #fff;
      line-height: 1.0;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .hero h1 span { color: var(--steel); }
    .hero p {
      font-size: 17px;
      font-weight: 300;
      color: rgba(255,255,255,0.78);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 480px;
    }
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 20px; 
}
.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding-bottom: 32px; /* spacing from bottom */
}



    .btn {
      display: inline-flex;
      align-items: left;
      gap: 6px;
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 12px 26px;
      border-radius: var(--radius);
      transition: background var(--transition), transform 0.15s;
      border: none;
      cursor: pointer;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--blue); color: white; }
    .btn-primary:hover { background: var(--blue-mid); }
    .btn-ghost {
      background: transparent;
      color: white;
      border: 1.5px solid rgba(255,255,255,0.4);
    }
    .btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--navy);
      border-top: 3px solid var(--blue-mid);
    }
    .stats-inner {
      display: flex;
      justify-content: center;
    }
    .stat {
      flex: 1;
      max-width: 240px;
      text-align: center;
      padding: 22px 20px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 34px;
      font-weight: 800;
      color: var(--steel);
      line-height: 1;
    }
    .stat-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-top: 4px;
    }

    /* ── SERVICES ── */
    .services { padding: 72px 0; background: var(--sky); }
    .section-header { text-align: center; margin-bottom: 48px; }
    .eyebrow {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue-mid);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      text-transform: uppercase;
      color: var(--navy);
      line-height: 1.1;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .service-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }
    .service-body { padding: 24px; }
    .service-num {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--steel);
      margin-bottom: 8px;
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.2;
    }
    .service-card p {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .service-link {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue-mid);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: gap var(--transition);
    }
    .service-link:hover { gap: 9px; }
    .service-link::after { content: '→'; }

    /* ── ABOUT ── */
    .about { background: var(--sky-mid); border-top: 2px solid var(--steel); border-bottom: 2px solid var(--steel); }
    .about-inner {
      display: flex;
      align-items: center;
      gap: 64px;
      padding: 72px 0;
    }
    .about-img-col {
      flex-shrink: 0;
      width: 300px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .about-img-col img { width: 100%; max-width: 260px; }
    .about-years {
      background: var(--blue);
      color: white;
      padding: 16px 28px;
      border-radius: var(--radius);
      text-align: center;
      margin-top: 20px;
      width: 100%;
      max-width: 260px;
    }
    .about-years-num {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 800;
      line-height: 1;
      color: var(--steel);
    }
    .about-years-label {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-top: 2px;
    }
    .about-text { flex: 1; }
    .about-text p {
      font-size: 16px;
      font-weight: 300;
      color: var(--text-dim);
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .about-points { margin-bottom: 32px; }
    .about-points li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 11px 0;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      font-size: 15px;
      color: var(--text-mid);
    }
    .about-points li::before {
      content: '';
      width: 6px; height: 6px; min-width: 6px;
      background: var(--blue-mid);
      border-radius: 50%;
      margin-top: 7px;
    }
    .about-points li strong { color: var(--navy); font-weight: 600; }

    /* ── WHY CHOOSE ── */
    .why { padding: 72px 0; background: var(--sky); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .why-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 22px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .why-icon {
      width: 44px; height: 44px;
      background: var(--sky-mid);
      border: 1px solid rgba(31,90,160,0.15);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .why-icon svg { width: 20px; height: 20px; stroke: var(--blue-mid); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
    .why-card h4 {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .why-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

    /* ── GALLERY ── */
    .gallery { padding: 72px 0; background: var(--sky-mid); border-top: 2px solid var(--steel); }
    .gallery-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 28px;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      grid-template-rows: 200px 200px;
      gap: 6px;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .gallery-item { overflow: hidden; position: relative; background: var(--sky); }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s ease, filter 0.4s ease;
      filter: brightness(0.88) saturate(0.85);
    }
    .gallery-item:hover img { transform: scale(1.05); filter: brightness(1) saturate(1); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(11,36,68,0);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s;
    }
    .gallery-overlay span { font-size: 28px; color: white; opacity: 0; transition: opacity 0.3s; }
    .gallery-item:hover .gallery-overlay { background: rgba(11,36,68,0.22); }
    .gallery-item:hover .gallery-overlay span { opacity: 1; }

    /* ── CONTACT / ESTIMATE ── */
    .contact { padding: 72px 0; background: var(--sky); }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .contact-info p {
      font-size: 16px;
      font-weight: 300;
      color: var(--text-dim);
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .contact-list { margin-bottom: 24px; }
    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .c-icon {
      width: 36px; height: 36px; min-width: 36px;
      background: var(--sky-mid);
      border: 1px solid rgba(31,90,160,0.15);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
    }
    .c-icon svg { width: 16px; height: 16px; stroke: var(--blue-mid); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
    .c-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--steel);
      margin-bottom: 2px;
    }
    .c-value { font-size: 15px; color: var(--navy); }
    .c-value a:hover { color: var(--blue-mid); }

    .holidays {
      background: var(--sky-mid);
      border: 1px solid var(--border);
      border-left: 3px solid var(--blue-mid);
      border-radius: var(--radius);
      padding: 14px 18px;
    }
    .holidays dt {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 6px;
    }
    .holidays dd { font-size: 13px; color: var(--text-dim); line-height: 1.9; }

    .form-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      padding: 36px;
    }
    .form-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .form-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 14px; }
    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-bottom: 6px;
    }
    .form-group input, .form-group textarea {
      width: 100%;
      background: var(--sky-mid);
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: var(--radius);
      padding: 10px 14px;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--navy);
      outline: none;
      transition: border-color var(--transition), background var(--transition);
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: var(--blue-mid);
      background: white;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: var(--steel); }
    .form-group textarea { min-height: 110px; resize: vertical; }
    .form-card .btn { width: 100%; justify-content: center; margin-top: 4px; font-size: 15px; padding: 14px; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      border-top: 3px solid var(--blue-mid);
      padding: 56px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand img { height: 50px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
    .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
    .footer-col-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--steel);
      margin-bottom: 18px;
    }
    .footer-links li + li { margin-top: 10px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
    .footer-links a:hover { color: white; }
    .footer-contact p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.9; }
    .footer-contact a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
    .footer-contact a:hover { color: white; }
    .footer-cta-btn {
      display: inline-block;
      margin-top: 14px;
      background: var(--blue-mid);
      color: white;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 11px 22px;
      border-radius: var(--radius);
      transition: background var(--transition);
    }
    .footer-cta-btn:hover { background: var(--blue-light); }
    .footer-cta p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

    /* ── MOBILE NAV ── */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 70px; left: 0; right: 0; bottom: 0;
      background: white;
      z-index: 99;
      padding: 24px 32px;
      flex-direction: column;
      overflow-y: auto;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--navy);
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      transition: color var(--transition);
    }
    .mobile-nav a:hover { color: var(--blue-mid); }
    .mobile-nav .btn { margin-top: 20px; width: 100%; justify-content: center; }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── BACK TO TOP ── */
    #back-top {
      position: fixed; bottom: 24px; right: 24px;
      width: 40px; height: 40px;
      background: var(--blue);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.3s, background 0.2s;
      z-index: 50;
    }
    #back-top:hover { background: var(--blue-mid); }
    #back-top svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      nav, .header-inner .btn-nav { display: none; }
      .hamburger { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
      .about-inner { flex-direction: column; gap: 36px; }
      .about-img-col { width: 100%; flex-direction: row; align-items: center; gap: 24px; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item:first-child { grid-column: span 2; }
      .contact-inner { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 600px) {
      .container { padding: 0 20px; }
      .hero { padding: 60px 0; }
      .why-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .stats-inner { flex-wrap: wrap; }
      .form-row { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
/* ── FLOATING CONTACT BUTTONS ── */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.float-btn:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}

.float-btn svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-btn {
  background: var(--navy);
}

.text-btn {
  background: var(--blue-mid);
}

@media (max-width: 600px) {
  .floating-contact {
    right: 16px;
    bottom: 70px;
  }

  .float-btn {
    padding: 11px 16px;
    font-size: 13px;
  }
}
