
   
  /* ===== DESIGN TOKENS ===== */
    :root {
      --primary:    #469b72;
      --secondary:  #465e9b;
      --text:       #000000;
      --light-bg:   #f5f7f5;
      --mid-bg:     #eef0ee;
      --white:      #ffffff;
      --border:     #dde2dd;
      --primary-dark: #337a59;
      --secondary-dark: #334a82;
      --font-display: 'Barlow Condensed', sans-serif;
      --font-body:    'Inter', sans-serif;
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== UTILITY ===== */
    .section-label {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.75rem;
    }
    .display-heading {
      font-family: var(--font-display);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.0;
    }
    .btn-primary-custom {
      background: var(--primary);
      color: #fff;
      border: 2px solid var(--primary);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.85rem 2.2rem;
      border-radius: 0;
      transition: background 0.25s, color 0.25s, transform 0.2s;
    }
    .btn-primary-custom:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-outline-custom {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.85rem 2.2rem;
      border-radius: 0;
      transition: background 0.25s, color 0.25s, transform 0.2s;
    }
    .btn-outline-custom:hover {
      background: #fff;
      color: var(--secondary);
      transform: translateY(-2px);
    }
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal { transition: none; opacity: 1; transform: none; }
    }

    /* ===== NAVBAR ===== */
    #mainNav {
      position: fixed;
      top: 0; left: 0; right: 0px;
      z-index: 1000;
      padding: 1.25rem 0;
      transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
      background: transparent;
    }
    #mainNav.scrolled {
      background: #0d1210;
      padding: 0.65rem 0;
      box-shadow: 0 2px 18px rgba(0,0,0,0.1);
      position: fixed;
      top: 0;
    }
    /* .nav-brand {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.65rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
      transition: color 0.35s;
    } */
    .nav-brand {
      width: 170px;
    }
    .nav-brand .logo-text{
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.24rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 0;
      transition: color 0.35s;
    }
    .nav-brand p{
      font-weight: 500;
      font-size: .8rem;
      letter-spacing: 0.04em;
      color: #fff;
      margin-bottom: 0;
    }
    #mainNav.scrolled .nav-brand { color: var(--text); }
    .nav-link-custom {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      margin-left: 1.8rem;
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
      transition: color 0.25s, border-color 0.25s;
    }
    #mainNav.scrolled .nav-link-custom { color: var(--white); }
    .nav-link-custom:hover,
    .nav-link-custom.active {
      color: var(--primary) !important;
      border-bottom-color: var(--primary);
    }
    .nav-cta {
      background: var(--primary);
      color: #fff !important;
      padding: 0.5rem 1.4rem !important;
      border: 2px solid var(--primary);
      transition: background 0.25s, border-color 0.25s, transform 0.2s !important;
    }
    .nav-cta:hover {
      background: var(--primary-dark) !important;
      border-color: var(--primary-dark) !important;
      border-bottom-color: var(--primary-dark) !important;
      color: #000 !important;
      transform: translateY(-2px);
    }
    .nav-call-us {
      background: var(--secondary);
      color: #fff !important;
      padding: 0.5rem 1.4rem !important;
      border: 2px solid var(--secondary);
      transition: background 0.25s, border-color 0.25s, transform 0.2s !important;
    }
    .nav-call-us:hover {
      background: var(--secondary-dark) !important;
      border-color: var(--secondary-dark) !important;
      border-bottom-color: var(--secondary-dark) !important;
      transform: translateY(-2px);
    }
    .navbar-toggler-custom {
      border: 2px solid rgba(255,255,255,0.5);
      padding: 0.35rem 0.65rem;
      position: relative;
      right: 12px;
      cursor: pointer;
      background: transparent;
    }
    #mainNav.scrolled .navbar-toggler-custom { border-color: var(--white); }
    .navbar-toggler-custom span {
      display: block; width: 22px; height: 2px;
      background: #fff;
      margin: 5px 0;
      transition: background 0.25s;
    }
    #mainNav.scrolled .navbar-toggler-custom span { background: var(--white); }
    #mobileMenu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #0d1210;
      z-index: 99999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    #mobileMenu.open { display: flex; }
    .mobile-nav-link {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--white);
      transition: color 0.2s;
    }
    .mobile-nav-link:hover { color: var(--primary); }
    .mobile-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 3rem;
      cursor: pointer;
      color: var(--white);
      background: none;
      border: none;
    }

    /* ===== HERO ===== */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 620px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/banner.png');
      background-size: cover;
      background-position: center;
      filter: brightness(0.32);
      transform: scale(1.05);
      transition: transform 8s ease-out;
    }
    .hero-bg.loaded { transform: scale(1.0); }
    .hero-accent-bar {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 6px;
      background: var(--primary);
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-eyebrow {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 1.25rem;
    }
    .hero-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(3.2rem, 7vw, 5rem);
      text-transform: uppercase;
      line-height: 0.85;
      color: #fff;
      margin-bottom: 1.5rem;
    }
    .hero-title span { color: var(--primary); }
    .hero-sub {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.82);
      /* max-width: 520px; */
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.18);
    }
    .hero-stat-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-top: 0.3rem;
    }
    .hero-scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255,255,255,0.45);
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      z-index: 2;
    }
    .scroll-dot {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,0.3);
      position: relative;
      overflow: hidden;
    }
    .scroll-dot::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--primary);
      animation: scrollLine 1.8s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%   { top: -100%; }
      100% { top: 100%; }
    }

    /* ===== ABOUT ===== */
    #about { padding: 7rem 0; background: var(--white); }
    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap img {
      width: 100%;
      height: 480px;
      object-fit: cover;
    }
    .about-accent {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 180px;
      height: 180px;
      background: var(--primary);
      opacity: 0.12;
      z-index: -1;
    }
    .about-badge {
      position: absolute;
      bottom: 2rem;
      left: -2rem;
      background: var(--secondary);
      color: #fff;
      padding: 1.2rem 1.6rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: 0 8px 30px rgba(70,94,155,0.35);
    }
    .about-badge span {
      display: block;
      font-size: 2.2rem;
      font-weight: 800;
      line-height: 1;
      color: var(--primary);
    }
    .about-text { padding-left: 3rem; }
    .about-text h2{ font-size:2.8rem; margin-bottom:1.5rem; }
    .about-body {
      font-size: 1rem;
      line-height: 1.85;
      color: #333;
      margin-bottom: 1.5rem;
    }
    .about-checks { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
    .about-checks li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.92rem;
      font-weight: 500;
      margin-bottom: 0.65rem;
      color: #222;
    }
    .about-checks li i { color: var(--primary); font-size: 1rem; }

    /* ===== WHY CHOOSE ===== */
    #why { padding: 7rem 0; background: var(--light-bg); }
    .why-card {
      background: var(--white);
      border-left: 4px solid var(--primary);
      padding: 2rem 1.8rem;
      height: 100%;
      transition: transform 0.28s, box-shadow 0.28s;
    }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    }
    .why-icon {
      width: 52px; height: 52px;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
    }
    .why-icon i { color: #fff; font-size: 1.3rem; }
    .why-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.15rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 0.65rem;
    }
    .why-desc { font-size: 0.9rem; color: #555; line-height: 1.7; }

    /* ===== PROCESS ===== */
    #process { 
      /* padding: 7rem 0; */
      background: var(--secondary); 
    }
    #process .section-label { color: var(--primary); }
    #process .display-heading { color: #fff; }

    .process{padding: 5rem 4rem 5rem 5rem; max-width:none;}
    .process-step {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      padding: 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: background 0.25s;
      cursor: default;
    }
    .process-step:last-child { border-bottom: none; }
    .process-step:hover { background: rgba(255,255,255,0.06); }
    .step-num {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      min-width: 60px;
      opacity: 0.75;
    }
    .step-content {}
    .step-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.2rem;
      text-transform: uppercase;
      color: #fff;
      letter-spacing: 0.04em;
      margin-bottom: 0.4rem;
    }
    .step-desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
    .process-img {
      position: relative;
      height: 100%;
      min-height: 480px;
      border-left: 5px solid #fff;
    }
    .process-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 480px;
    }
    .process-img-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.01);
      background: linear-gradient(50deg,rgba(0,0,0,0.01) 20%, #1c5d3e 90%);
      background: -webkit-linear-gradient(50deg,rgba(0,0,0,0.01) 20%, #1c5d3e 90%);
      background: -moz-linear-gradient(50deg,rgba(0,0,0,0.01) 20%, #1c5d3e 90%);
/* background: linear-gradient(45deg,  rgba(0,150,105,1) 0%,rgba(62,141,160,0.61) 28%,rgba(89,149,201,0.37) 45%,rgba(99,152,216,0.3) 51%,rgba(144,191,196,0) 75%,rgba(180,221,180,0) 94%,rgba(180,221,180,0) 100%);  */
      /* background: linear-gradient(135deg, rgba(70,94,155,0.3) 0%, transparent 60%); */
    }

    /* ===== GALLERY ===== */
    #gallery { padding: 5rem 0; background: var(--white); }


.gallery_area {
    position: relative;
    /* overflow-y: scroll;
    width: calc(100% - 245px);
    height: calc(100% - 380px);
    z-index: 1;
    top: 200px;
    left: 185px;
    right: 60px;
    padding-right: 45px; */
}

.portfolio-menu button {
    background-color: transparent;
    font-size: 15px;
    color: #838383;
    padding: 0 20px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.portfolio-menu button.active,
.portfolio-menu button:hover {
    color: #1d1d1d;
}

.portfolio-menu button:focus {
    box-shadow: none;
}

.gallery_menu {
    margin-bottom: 100px;
}

.column_single_gallery_item {
    margin-bottom: 20px;
}

.column_single_gallery_item img, .hover_overlay {
    width: 100%;
    transition: transform 0.5s ease;
    box-shadow: 0 3px 9px rgba(23,24,75,0.2);
    border: 4px solid #fff;
}
.column_single_gallery_item:hover img, .hover_overlay:hover {
    transform: scale(1.07);
    box-shadow: 0 14px 36px rgba(0,0,0,0.09);
}

.hover_overlay {
    position: absolute;
    width: calc(100% - 23px);
    height: 100%;
    background-color: rgba(70,155,114,0.72);
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.hover_overlay a {
    font-size: 30px;
    color: #fff;
}

.column_single_gallery_item:hover .hover_overlay {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}








    /* ===== TESTIMONIALS ===== */
    #testimonials { padding: 7rem 0; background: var(--mid-bg); }
    .testimonial-card {
      background: var(--white);
      padding: 2.2rem;
      height: 100%;
      position: relative;
      transition: transform 0.28s, box-shadow 0.28s;
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(0,0,0,0.09);
    }
    .testimonial-card::before {
      content: '\201C';
      font-family: Georgia, serif;
      font-size: 5rem;
      color: var(--primary);
      opacity: 0.15;
      position: absolute;
      top: 0.5rem;
      left: 1.2rem;
      line-height: 1;
    }
    .testimonial-stars { color: var(--primary); margin-bottom: 1rem; }
    .testimonial-text {
      font-size: 0.95rem;
      line-height: 1.8;
      color: #444;
      margin-bottom: 1.5rem;
      font-style: italic;
    }
    .testimonial-author { display: flex; align-items: center; gap: 1rem; }
    .testimonial-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--primary);
    }
    .testimonial-name {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text);
    }
    .testimonial-location {
      font-size: 0.75rem;
      color: #888;
      margin-top: 2px;
    }
    .testimonial-bar {
      width: 48px; height: 3px;
      background: var(--primary);
      margin: 1rem 0 0;
    }

    /* ===== SERVICES BANNER ===== */
    #services-banner {
      padding: 5rem 0;
      background: var(--primary);
    }
    .services-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.5rem;
      justify-content: center;
    }
    .service-tag {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.06em;
      padding: 0.4rem 0.2rem;
      transition: color 0.2s;
    }
    .service-tag:hover { color: #fff; }
    .service-sep {
      color: rgba(255,255,255,0.3);
      font-size: 1.1rem;
      padding: 0.4rem 0;
      align-self: center;
    }

    /* ===== CONTACT ===== */
    #contact { padding: 7rem 0; background: var(--white); }
    .contact-info-block {
      background: var(--secondary);
      padding: 3rem;
      color: #fff;
      height: 100%;
    }
    .contact-info-block .display-heading { color: #fff; font-size: 2.8rem; }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-top: 2rem;
    }
    .contact-detail-icon {
      width: 42px; height: 42px;
      background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-detail-icon i { color: var(--primary); font-size: 1rem; }
    .contact-detail-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 0.25rem;
    }
    .contact-detail-value {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.9);
      font-weight: 500;
    }
    .contact-form-wrap { 
        padding: 3rem;
        background: var(--light-bg);
        height: 100%;
      }

    .contact-form-modal {
        padding: 3rem 1rem;
        background: var(--light-bg);
        height: 100%;
      }
    .form-label-custom {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #555;
      margin-bottom: 0.4rem;
    }
    .form-control-custom {
      border: 2px solid var(--border);
      border-radius: 0;
      padding: 0.75rem 1rem;
      font-size: 0.92rem;
      font-family: var(--font-body);
      background: #fff;
      color: var(--text);
      transition: border-color 0.25s;
      width: 100%;
    }
    .form-control-custom:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(70,155,114,0.15);
    }
    textarea.form-control-custom { resize: vertical; min-height: 130px; }
    select.form-control-custom { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
    .form-success {
      display: none;
      background: var(--primary);
      color: #fff;
      padding: 1rem 1.5rem;
      font-weight: 600;
      font-size: 0.9rem;
      margin-top: 1rem;
    }

    /* ===== FOOTER ===== */
    #footer { background: #0d1210; color: rgba(255,255,255,0.55); padding: 4rem 0 2rem; }
    .footer-brand {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #fff;
      letter-spacing: 0.04em;
      margin-bottom: 1rem;
    }
    .footer-tagline { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
    .footer-heading {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 1.2rem;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 0.55rem; }
    .footer-links a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--primary); }
    .footer-social { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
    .social-btn {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
      font-size: 0.9rem;
      transition: background 0.25s, color 0.25s, border-color 0.25s;
    }
    .social-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }
    .footer-divider {
      border-color: rgba(255,255,255,0.08);
      margin: 3rem 0 1.5rem;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-size: 0.78rem;
    }
    .footer-lic {
      display: inline-block;
      background: rgba(70,155,114,0.15);
      color: var(--primary);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      padding: 0.25rem 0.75rem;
      margin-top: 0.5rem;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .hero-title{font-size: clamp(2rem, 7vw, 2.5rem); margin-bottom: .5rem;}
      .hero-eyebrow{margin-bottom: .5rem;}
      .about-text { padding-left: 24px; margin-top: 3rem; }
      .about-badge { left: 1rem; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .gallery-item:nth-child(1) { grid-column: span 2; }
      .nav-brand {width: 100px;}
      .nav-brand .logo-text {font-size: .75rem;}
      .nav-brand p {font-size: .45rem;}
      .process-img{border-left: none;}
    }

    @media (max-width: 767px) {
      #hero { height: 100svh; }
      .hero-stats { gap: 1.5rem; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:nth-child(1) { grid-column: span 1; }
      .gallery-item img, .gallery-item:nth-child(1) img { height: 220px; }
      .process-img { min-height: 260px; }
      .process-img img { min-height: 260px; }
      .contact-info-block, .contact-form-wrap { padding: 2rem 1.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    @media (max-width: 576px) {
      #mainNav.scrolled { padding-top: 30px;}
      .nav-brand { width: 100px;}
      .nav-brand .logo-text {font-size: .75rem;}
      .nav-brand p {font-size: .46rem;}
      .about-accent{bottom: -3px; right: 0px;}
      .footer-lic{margin-top: 1.5rem;}
      .process{padding: 4rem 1rem; max-width:none;}
      .process-step {display: block; gap: .5rem; padding: 1rem;}
    }

    @media (min-width: 768px) and (max-width: 915px){
      .hero-title{font-size: clamp(3rem, 7vw, 3.5rem); margin-bottom: 1.5rem;}
      .hero-eyebrow{margin-bottom: 1.5rem;}
    }