
/* ===== GLOBAL ===== */
*{box-sizing:border-box;-webkit-font-smoothing:antialiased}
body{
    margin:0;
    background-color:#eef2f7;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    color:#1a1a1a;
    line-height:1.5;
}
.wrapper{width:90%;max-width:1200px;margin:0 auto}
.section-block{padding:2rem 0}
.card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    padding:1.5rem;
    margin-bottom:1.5rem;
    transition:transform .2s ease,box-shadow .2s ease;
}
.card:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 32px rgba(0,0,0,.12);
}
.section-title{
    font-size:.8rem;
    font-weight:600;
    color:#d65f00;
    text-transform:uppercase;
    letter-spacing:.05em;
    margin-bottom:.5rem;
}
.section-headline{
    font-size:1.4rem;
    font-weight:600;
    color:#003d79;
    margin:0 0 1rem 0;
}
.section-sub{
    font-size:1rem;
    color:#4a4a4a;
    max-width:900px;
}
.reveal{opacity:0;transform:translateY(16px);transition:opacity .6s ease,transform .6s ease}
.reveal.revealed{opacity:1;transform:translateY(0)}

/* ===== NAVBAR W/ HAMBURGER ===== */
.navbar{
    position:sticky;
    top:0;
    z-index:1000;
    width:100%;
    background-color:#003d79;
    color:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.4);
}
.nav-inner{
    width:90%;
    max-width:1280px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:.8rem 0;
    gap:1rem;
}
.nav-left{
    display:flex;
    align-items:center;
    gap:.75rem;
    flex-shrink:0;
}
.logo{height:40px;width:auto;object-fit:contain}
.nav-brand{
    display:flex;
    flex-direction:column;
    font-size:.9rem;
    line-height:1.2;
    color:#fff;
    font-weight:600;
}
.nav-brand small{
    font-size:.7rem;
    font-weight:400;
    letter-spacing:.03em;
    color:#dfe9f9;
}

/* desktop links */
.nav-links-desktop{
    display:flex;
    flex-wrap:wrap;
    row-gap:.5rem;
    column-gap:1rem;
    align-items:center;
}
.nav-links-desktop a{
    font-size:.9rem;
    color:#fff;
    text-decoration:none;
    font-weight:500;
    position:relative;
    padding:.25rem 0;
    transition:color .2s ease;
}
.nav-links-desktop a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    height:2px;
    width:0%;
    background-color:#ff7a1a;
    transition:width .2s ease;
}
.nav-links-desktop a:hover{color:#ffb680}
.nav-links-desktop a:hover::after{width:100%}

/* hamburger button */
.burger{
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.3);
    border-radius:4px;
    cursor:pointer;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    padding:.6rem .6rem;
    box-shadow:0 10px 24px rgba(0,0,0,.6);
}
.burger span{
    width:24px;
    height:2px;
    background:#fff;
    border-radius:1px;
    display:block;
}

/* slide-down mobile menu */
.mobile-menu{
    display:none;
    flex-direction:column;
    background-color:#003d79;
    box-shadow:0 12px 28px rgba(0,0,0,.6);
    border-top:1px solid rgba(255,255,255,.15);
}
.mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-size:1rem;
    padding:1rem 1.25rem;
    border-bottom:1px solid rgba(255,255,255,.07);
    font-weight:500;
}
.mobile-menu a:last-child{border-bottom:0}
.mobile-menu.show{display:flex}

/* responsive nav rules */
@media(max-width:768px){
    .nav-links-desktop{display:none}
    .burger{display:flex}
}
@media(min-width:769px){
    .mobile-menu{display:none!important}
}

/* ===== BUTTONS ===== */
.btn-orange{
    background-color:#ff7a1a;
    color:#fff;
    border:0;
    border-radius:4px;
    font-weight:600;
    font-size:.9rem;
    line-height:1.2;
    padding:.75rem 1.25rem;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
    box-shadow:0 8px 16px rgba(255,122,26,.35);
    transition:box-shadow .2s ease,transform .2s ease;
}
.btn-orange:hover{
    box-shadow:0 10px 20px rgba(255,122,26,.5);
    transform:translateY(-2px);
}
.btn-link-email{
    color:#ff7a1a;
    font-weight:600;
    text-decoration:none;
}
.btn-link-email:hover{text-decoration:underline}

/* ===== HOME HERO / ISO STRIP (FINAL STYLE) ===== */
.home-hero-card{display:flex;flex-direction:column;gap:1rem}
.home-hero-card h1{
    margin:0;
    font-size:1.4rem;
    font-weight:600;
    color:#003d79;
}
.home-hero-text{font-size:.95rem;color:#2a2a2a;line-height:1.5}
.home-photo-row{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(300px,100%),1fr));
    gap:1rem;
}
/* Unified styling for 3-photo rows on Home, Company, Contact & Careers */
.home-photo-card,
.contact-photo-card,
.training-photo-card{
    background-color:transparent;
    border-radius:0;
    border:none;
    overflow:hidden;
    box-shadow:none;
    min-height:0;
    position:relative;
    isolation:isolate;
    animation:floatCard 4s ease-in-out infinite;
}
.home-photo-card img,
.contact-photo-card img,
.training-photo-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}

.home-hero-bottomstrip{
    background-color:#003d79;
    color:#fff;
    border-radius:6px;
    padding:1rem 1.25rem;
    display:flex;
    flex-direction:column;
    gap:.75rem;
}
.iso-row{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    row-gap:1rem;
    column-gap:1rem;
}
.iso-pill{
    flex:1 1 200px;
    min-width:200px;
    color:#fff;
    font-size:.8rem;
    line-height:1.3;
    font-weight:500;
    text-transform:uppercase;
}
.iso-pill a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
}
.iso-pill a:hover{text-decoration:underline}
.iso-pill span{
    font-size:.8rem;
    font-weight:400;
    display:block;
    color:#fff;
}
.home-cta-row{text-align:center;margin-top:1.5rem}

@keyframes floatCard{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-3px)}
}

/* ===== TWO COL LAYOUT ===== */
.two-col{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(500px,100%),1fr));
    gap:2rem;
}

/* ===== TEAM SECTION (v11 STYLE BLEND) ===== */
/* Bringing back a more "profile card" / centered bio feel from v11,
   but with bigger images and spacing tweaks for all screens. */
.team-section-intro{
    text-align:center;
    margin-bottom:2rem;
}
.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));
    gap:2rem;
}
.team-card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    padding:1.5rem 1rem 1.25rem;
    text-align:center;
    max-width:380px;
    margin:0 auto;
    transition:transform .2s ease,box-shadow .2s ease;
}
.team-card:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 32px rgba(0,0,0,.12);
}
.team-photo-wrap{
    width:180px;
    height:220px;
    border-radius:8px;
    overflow:hidden;
    margin:0 auto 1rem auto;
    background-color:#003d79;
    box-shadow:0 10px 24px rgba(0,0,0,.3);
}
.team-photo-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.team-name{
    font-size:1.05rem;
    font-weight:600;
    color:#003d79;
    margin-bottom:.4rem;
}
.team-role{
    font-size:.9rem;
    font-weight:500;
    color:#555;
    margin-bottom:.5rem;
}
.team-contact{
    font-size:.8rem;
    color:#444;
    line-height:1.4;
    word-break:break-word;
}
.team-contact a{
    color:#ff7a1a;
    text-decoration:none;
    font-weight:600;
}
.team-contact a:hover{text-decoration:underline}

/* ===== SERVICES GRID (final style) ===== */
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
    gap:1.5rem;
}
.service-card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}
.service-card{
    text-align:center;
    background:#fff;
    border-radius:8px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    padding:1rem 1rem 1.5rem;
    transition:transform .2s ease,box-shadow .2s ease;
}
.service-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 32px rgba(0,0,0,.12);
}
.service-imgwrap{
    width:100%;
    height:260px;  /* enlarged from 160px */
    border-radius:6px;
    overflow:hidden;
    background-color:#0c1a2a;
    box-shadow:0 10px 24px rgba(0,0,0,.3);
    margin-bottom:1rem;
}
.service-imgwrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.service-label{
    font-size:.95rem;
    color:#003d79;
    font-weight:600;
}

/* ===== SERVICE DETAIL ===== */
.service-detail-hero{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(420px,100%),1fr));
    gap:2rem;
    align-items:start;
}
.service-detail-imgwrap{
    width:100%;
    max-width:520px;
    border-radius:8px;
    overflow:hidden;
    background:#0c1a2a;
    box-shadow:0 12px 28px rgba(0,0,0,.3);
}
.service-detail-imgwrap img{
    width:100%;
    height:auto;
    object-fit:cover;
    display:block;
}

.service-detail-text h1{
    font-size:1.3rem;
    font-weight:600;
    color:#003d79;
    margin:0 0 .75rem 0;
}
.service-detail-text p{
    font-size:.9rem;
    color:#2a2a2a;
    line-height:1.5;
    margin:0 0 .75rem 0;
}
.service-detail-list-title{
    font-size:.8rem;
    font-weight:600;
    text-transform:uppercase;
    color:#003d79;
    letter-spacing:.03em;
    margin-top:1rem;
    margin-bottom:.5rem;
}
.service-detail-list{
    font-size:.85rem;
    color:#444;
    line-height:1.4;
    padding-left:1rem;
}

/* ===== PRODUCTS GRID ===== */
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
    gap:1.5rem;
}
.product-card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    padding:1.5rem 1rem;
    transition:transform .2s ease,box-shadow .2s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.product-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 32px rgba(0,0,0,.12);
}
.product-image{
    width:160px;
    max-width:70%;
    height:120px;
    border-radius:6px;
    overflow:hidden;
    background-color:#fff;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:1rem;
}
.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.product-title{
    font-size:1rem;
    font-weight:600;
    color:#003d79;
    margin:0 0 .5rem 0;
    text-align:center;
}
.product-desc{
    font-size:.85rem;
    color:#444;
    line-height:1.4;
    text-align:center;
    max-width:380px;
}

/* ===== DOCUMENTS ===== */
.documents-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
    gap:1.5rem;
}
.doc-card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    padding:1rem 1rem 1.5rem;
    text-align:center;
}
.doc-thumb{
    width:100%;
    height:140px;
    border-radius:6px;
    overflow:hidden;
    background-color:#fff;
    box-shadow:0 10px 24px rgba(0,0,0,.3);
    margin:0 auto 1rem auto;
    max-width:240px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.doc-thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    background:#fff;
}
.doc-title{
    font-size:.95rem;
    font-weight:600;
    color:#003d79;
    margin-bottom:.4rem;
}
.doc-desc{
    font-size:.8rem;
    color:#444;
    line-height:1.4;
    min-height:2.8em;
    margin-bottom:1rem;
}

/* ===== CONTACT / CAREERS SHARED GALLERIES ===== */
.contact-grid-photos,
.training-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
    gap:1.5rem;
    margin-bottom:2rem;
}

.contact-photo-label{
    background-color:#003d79;
    color:#fff;
    font-size:.8rem;
    font-weight:600;
    padding:.75rem 1rem;
    text-transform:uppercase;
    letter-spacing:.03em;
}
.contact-form-card{max-width:600px;margin:0 auto 2rem auto}
.contact-form-card form{
    display:grid;
    grid-template-columns:1fr;
    gap:1rem;
}
.contact-form-card label{
    font-size:.8rem;
    font-weight:600;
    color:#003d79;
    display:block;
    margin-bottom:.3rem;
}
.contact-form-card input,
.contact-form-card textarea{
    width:100%;
    border:1px solid #cfd8e6;
    border-radius:4px;
    padding:.75rem .75rem;
    font-size:.9rem;
    font-family:inherit;
    background-color:#fff;
}
.contact-form-card textarea{
    min-height:120px;
    resize:vertical;
}

.contact-map-hours{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(500px,100%),1fr));
    gap:2rem;
    margin-bottom:2rem;
}
.map-card iframe{
    width:100%;
    min-height:300px;
    border:0;
    border-radius:8px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
}
.hours-card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    padding:1.5rem;
    font-size:.9rem;
    color:#2a2a2a;
    line-height:1.5;
}
.review-card{
    max-width:700px;
    margin:0 auto;
    text-align:center;
}
.review-quote{
    font-size:.9rem;
    color:#003d79;
    font-weight:500;
    line-height:1.5;
    font-style:italic;
}
.review-author{
    margin-top:.75rem;
    font-size:.8rem;
    color:#444;
    font-weight:600;
}

/* careers blocks */
.careers-info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
    gap:1.5rem;
    margin-bottom:2rem;
}
.job-card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    padding:1.5rem;
    margin:1.5rem 0;
}
.job-card h3{
    margin:0 0 .5rem 0;
    font-size:1rem;
    font-weight:600;
    color:#003d79;
}
.job-meta{
    font-size:.8rem;
    color:#444;
    line-height:1.4;
    margin-bottom:.75rem;
}
.job-req-title{
    font-size:.8rem;
    font-weight:600;
    color:#003d79;
    text-transform:uppercase;
    letter-spacing:.03em;
    margin-top:1rem;
    margin-bottom:.5rem;
}
.job-req-list{
    font-size:.8rem;
    color:#444;
    line-height:1.4;
    padding-left:1rem;
}
.training-info-card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    padding:1.5rem;
    font-size:.9rem;
    color:#2a2a2a;
    line-height:1.5;
}

/* ===== FOOTER ===== */
.footer{
    background-color:#003d79;
    color:#fff;
    padding:2rem 0 1rem 0;
    margin-top:3rem;
}
.footer-inner{
    width:90%;
    max-width:1200px;
    margin:0 auto 1.5rem auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));
    gap:2rem;
}
.footer-block-title{
    color:#ff7a1a;
    font-size:.8rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.05em;
    margin-bottom:.75rem;
}
.footer p,
.footer a,
.footer li{
    font-size:.8rem;
    line-height:1.5;
    color:#fff;
    text-decoration:none;
    margin:0;
}
.footer a:hover{text-decoration:underline}
.footer-social-row{
    display:flex;
    flex-wrap:wrap;
    gap:.5rem;
    margin:.75rem 0 1rem 0;
}
.footer-social-row a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    border:2px solid #ff7a1a;
    border-radius:4px;
    background-color:transparent;
    box-shadow:0 8px 16px rgba(255,122,26,.35);
}
.footer-social-row img{
    width:20px;
    height:20px;
    object-fit:contain;
}
.footer-legal{
    text-align:center;
    color:#fff;
    font-size:.7rem;
    padding-top:1rem;
    border-top:1px solid rgba(255,255,255,.15);
    line-height:1.4;
}

/* ===== MOBILE TWEAKS ===== */
@media(max-width:480px){
    body{background-color:#f4f6fa}
    .section-block{padding:1rem 0 1.25rem}
    .card{
        border-radius:6px;
        padding:1rem 1rem 1.25rem;
        box-shadow:0 8px 20px rgba(0,0,0,.12);
        margin-bottom:1rem;
    }
    .section-headline{
        font-size:1.25rem;
        line-height:1.3;
        margin-bottom:.75rem;
    }
    .home-hero-card h1{font-size:1.25rem}
    .home-hero-text{font-size:.95rem;line-height:1.45}
    .home-photo-row{
        grid-template-columns:1fr;
        gap:.75rem;
    }
    .home-photo-card img{height:160px}
    .home-hero-bottomstrip{
        padding:.75rem 1rem;
        border-radius:6px;
        gap:.75rem;
    }
    .iso-row{
        flex-direction:column;
        gap:.75rem;
    }
    .iso-pill{
        min-width:auto;
        font-size:.8rem;
        line-height:1.4;
    }
    .iso-pill span{font-size:.8rem}
    .team-photo-wrap{
        width:160px;
        height:200px;
    }
    .team-name{font-size:1rem}
    .team-role{font-size:.9rem}
    .team-contact{font-size:.8rem}
    .footer{
        padding-top:1.5rem;
    }
    .footer-inner{gap:1.25rem}
    .footer-block-title{font-size:.75rem}
    .footer p,.footer a{font-size:.8rem;line-height:1.4}
    .contact-grid-photos,
    .training-grid{gap:1rem}
    .home-photo-card img,
    .contact-photo-card img,
    .training-photo-card img{height:170px}
}


/* === Added by ChatGPT (2025-11-03): requested tweaks === */
.motto-banner{
  display:block;
  margin: 18px auto 8px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Wider 'Send us a message' block on Contact page */
.wide-contact-form{
  max-width: 1000px !important;
  width: 90% !important;
  margin-left: auto;
  margin-right: auto;
}

.wide-contact-form input[type="text"],
.wide-contact-form input[type="email"],
.wide-contact-form textarea{
  width: 100% !important;
}
/* === End added tweaks === */


/* Added by ChatGPT v2: Motto + CTA */
.motto-block{
  text-align:center;
  margin: 10px auto 24px auto;
}
.btn-cta{
  display:inline-block;
  padding:12px 22px;
  text-decoration:none;
  border-radius:6px;
  background:#f07d27; /* uses existing orange tone in theme */
  color:#fff;
  font-weight:600;
  margin-top:12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-cta:hover{ opacity:0.9; }

/* === Contact page update (2025-11-10) === */
.contact-cards{display:flex;flex-direction:column;gap:20px;margin:40px auto;max-width:900px}
.contact-card{display:flex;align-items:center;gap:16px;background:#f4f4f4;padding:16px;border-radius:6px}
.contact-icon{width:44px;height:44px;object-fit:contain}
.mailto-btn{background:#003d79;color:#fff;padding:6px 12px;border-radius:4px;text-decoration:none}
.mailto-btn:hover{background:#0057b8}
.social-icons{margin-top:20px;display:flex;justify-content:center;gap:18px}
.social-icons img{width:34px;height:34px;object-fit:contain;transition:transform .15s ease}
.social-icons img:hover{transform:scale(1.06)}
.phone-line{margin-top:16px;display:flex;align-items:center;gap:12px;justify-content:center}
.phone-number{font-weight:600;color:#003d79;text-decoration:none}
.phone-number:hover{text-decoration:underline}

/* Home hero welcome style + background */
.home-hero-wrapper{position:relative;margin-top:1rem}
.home-hero-bg{
  position:absolute;inset:0;
  background:none;
  filter: none;
  border-radius:14px;
}
.home-hero-card{position:relative;background:#fff;border-radius:18px;padding:1.25rem 1.25rem 2rem;box-shadow:0 18px 48px rgba(0,0,0,.2);margin:2rem auto;max-width:1100px}
.welcome-kicker{font-size:clamp(34px,6vw,72px);font-weight:900;letter-spacing:.01em;color:#f07d27;line-height:0.9}
.welcome-kicker .to{font-size:clamp(16px,2.5vw,28px);font-weight:700;color:#003d79;vertical-align:top;margin-left:.25rem}
.home-hero-card h1{margin:.25rem 0 1rem 0;color:#003d79;font-size:clamp(18px,2.2vw,24px)}
.brands-line{font-size:.95rem;color:#003d79;margin:.25rem 0 1rem 0}
.home-hero-text{color:#333;margin-bottom:1rem}
.home-photo-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin:1rem 0}
.home-photo-card{background:#fff;border-radius:10px;box-shadow:0 12px 24px rgba(0,0,0,.12);padding:.5rem}
.home-cta-row{text-align:center;margin:1rem 0}
.home-tagline{text-align:left;font-weight:800;color:#0d2f57;font-size:clamp(16px,2.6vw,26px);margin-top:.75rem;letter-spacing:.01em}
.home-tagline span{color:#f07d27}
.contact-rounded .google-map-embed, .contact-rounded .contact-cards, .contact-rounded .hours-grid{border-radius:14px}

/* === BIA CUSTOM PATCH (Home + Contact) — 2025-11-11 === */

/* Home "WELCOME" hero */
.welcome-hero{position:relative;margin-top:0}
/* Background no longer used on home hero */
.welcome-bg{display:none}
.welcome-card{
    position:relative;
}

.welcome-title{line-height:1}
.welcome-big{display:inline-block;font-size:clamp(28px,4.8vw,56px);font-weight:900;color:#f07d27;letter-spacing:.01em;line-height:1;}
.welcome-to{display:inline-block;font-size:clamp(16px,2.8vw,28px);font-weight:800;color:#003d79;margin-left:.35rem;vertical-align:top}
.welcome-company{margin:.25rem 0 .75rem;color:#003d79;font-size:clamp(20px,3.2vw,34px);font-weight:900;text-transform:uppercase;letter-spacing:.02em;text-align:left;}
.brands-line{margin:.25rem 0 1rem;color:#003d79}
.welcome-body{color:#333}
.welcome-photos{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin:1rem 0}
.photo-card{background:#fff;border-radius:12px;box-shadow:0 12px 24px rgba(0,0,0,.12);padding:.5rem}
.welcome-cta{text-align:center;margin:1rem 0}
.welcome-tagline{font-weight:900;color:#0d2f57;font-size:clamp(16px,2.6vw,24px);margin-top:.75rem;letter-spacing:.01em;text-align:center;}
.welcome-tagline span{color:#f07d27}

/* Contact hub */
.contact-wrapper{padding:1rem 0}
.contact-photos{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:1rem;margin:1rem auto;align-items:stretch}
.contact-photo-card{background:#fff;border-radius:12px;box-shadow:0 12px 24px rgba(0,0,0,.08);overflow:hidden}
.contact-photo-card img{width:100%;height:180px;object-fit:cover;display:block}
.contact-photo-label{text-align:center;font-weight:600;padding:.6rem 0;color:#003d79}

.contact-hub{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(440px,100%),1fr));gap:1.25rem;align-items:start;border-radius:16px;margin:1.25rem 0;padding:1.25rem}
.hub-left{display:flex;flex-direction:column;gap:14px}
.contact-card{display:flex;gap:14px;background:#f7f9fc;border-radius:10px;padding:12px;align-items:center}
.contact-icon{width:40px;height:40px;object-fit:contain}
.mailto-btn{display:inline-block;background:#003d79;color:#fff;padding:6px 12px;border-radius:4px;text-decoration:none}
.mailto-btn:hover{opacity:.9}

.hub-right .map-wrap{border-radius:12px;overflow:hidden;box-shadow:0 12px 24px rgba(0,0,0,.1);background:#fff}
.google-map-embed{width:100%;height:320px;border:0;display:block}

.hours-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));gap:1rem;margin-top:1.25rem}
.hours-card{background:#003d79;color:#fff;border-radius:12px;padding:1rem;box-shadow:0 12px 24px rgba(0,0,0,.08)}
.hours-card h3{margin:.2rem 0  .5rem;font-size:1rem}
@media (min-width:1100px){
  .contact-photo-card img{height:200px}
  .google-map-embed{height:380px}
}

/* Make service detail images larger across detail pages (kept from earlier patch) */
.service-detail-imgwrap img{width:100%;height:auto;display:block;max-height:720px;object-fit:cover}
@media (max-width:720px){.service-detail-imgwrap img{max-height:none}}


/* Patch: move "to" inline & compact photo tiles */
.welcome-company .welcome-to{font-size:inherit;font-weight:800;color:#003d79;margin-right:.35rem}
.welcome-photos--compact .photo-card img{height:140px;object-fit:cover}
@media (min-width:1100px){
  .welcome-photos--compact .photo-card img{height:160px}
}


/* === PATCH 2025-11-11 (home): full-bleed bg + non-distorted small photos === */
.welcome-hero{
  position:relative;
  padding:40px 0;
  background:none;
  border-radius:16px;
}
/* Hide the old absolute bg layer if present */
.welcome-bg{display:none !important;}

.welcome-photos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px;
  justify-items:center;
}
.welcome-photos .photo-card{
  max-width:260px;
  width:100%;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 20px rgba(0,0,0,.10);
  padding:6px;
}
.welcome-photos .photo-card img{
  width:100%;
  height:auto;           /* maintain aspect ratio */
  object-fit:contain;    /* never stretch */
}
/* keep inline 'to' sizing aligned with H1 */
.welcome-company .welcome-to{font-size:inherit;font-weight:800;color:#003d79;margin-right:.35rem}


/* === PATCH 2025-11-11 (contact): single rounded hub card === */
.contact-wrapper{padding:16px 0}
.contact-hub{
  background:#fff;
  border-radius:16px;
  box-shadow:0 16px 36px rgba(0,0,0,.12);
  padding:16px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(460px,100%),1fr));
  gap:16px;
  align-items:start;
}
.hub-left{display:flex;flex-direction:column;gap:14px}
.contact-card{display:flex;gap:12px;background:#f7f9fc;border-radius:10px;padding:12px;align-items:center}
.contact-icon{width:40px;height:40px;object-fit:contain}
.mailto-btn{display:inline-block;background:#003d79;color:#fff;padding:6px 12px;border-radius:4px;text-decoration:none}
.mailto-btn:hover{opacity:.9}
.hub-right .map-wrap{border-radius:12px;overflow:hidden;box-shadow:0 12px 24px rgba(0,0,0,.1);background:#fff}
.google-map-embed{width:100%;height:360px;border:0;display:block}
@media (min-width:1100px){.google-map-embed{height:420px}}


/* background removed per request */
/* hide any old bg layer */
.welcome-bg{display:none !important;}
/* tighten the inner card width so it sits centered on wide screens */
.welcome-card{
    position:relative;
    max-width:1100px;
    margin:2rem auto;
}

/* Use same effect as Careers/Contact galleries for tiles */
.training-grid{grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr)); gap:1.5rem; margin-bottom:1rem;}
.training-photo-card{background:#fff; border-radius:8px; box-shadow:0 12px 28px rgba(0,0,0,.08); overflow:hidden;}
.training-photo-card img{display:block; width:100%; height:auto; object-fit:cover;}

/* FULLPAGE HERO */
.welcome-hero{
  min-height:100vh;             /* full page height */
  display:block;
}
@media (max-width:720px){
  .welcome-hero{min-height:auto;} /* allow shorter on small screens */
}


/* ==== CONTACT PAGE — COMBINED ORIGINAL + NEW (matches screenshot) ==== */
.contact-hub{
  background:#fff;
  border-radius:16px;
  box-shadow:0 16px 36px rgba(0,0,0,.12);
  padding:18px;
  margin:18px 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(460px,100%),1fr));
  gap:18px;
  align-items:start;
}
.contact-actions{display:flex;flex-direction:column;gap:14px}
.contact-pill{
  display:grid;grid-template-columns:auto 1fr auto;align-items:center;
  gap:12px;background:#0b4a78;border-radius:12px;padding:12px;box-shadow:0 8px 18px rgba(0,0,0,.12);
  color:#fff;
}
.pill-icon img{width:28px;height:28px;display:block}
.pill-title{font-weight:700}
.pill-sub{font-size:.9rem;opacity:.95}
.pill-btn{display:inline-block;background:#fff;color:#003d79;padding:6px 12px;border-radius:20px;text-decoration:none;font-weight:700}
.pill-btn:hover{opacity:.9}
.contact-socials{display:flex;gap:12px;margin-top:8px}
.contact-socials img{
    width:40px;
    height:auto;
    display:block;
}

.hub-map .map-wrap{border-radius:12px;overflow:hidden;box-shadow:0 10px 24px rgba(0,0,0,.1);background:#fff}
.google-map-embed{width:100%;height:420px;border:0;display:block}

.contact-hoursbar{
  background:#0b3b6f;color:#fff;border-radius:16px;padding:16px;
  margin:18px 0;box-shadow:0 12px 28px rgba(0,0,0,.08);
  display:grid;grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));gap:16px;
}
.contact-hoursbar .hours-title{font-weight:700;margin-bottom:6px}
.contact-hoursbar p{margin:0}


/* === Unified image card effect (shared) === */
/* Apply to: contact, careers, company, home etc. (excluding team/products/documents/services) */
.img-card, .training-photo-card, .contact-photo-card {
  background:#fff;
  border-radius:10px;
  box-shadow:0 12px 24px rgba(0,0,0,.10);
  overflow:hidden;
}
.img-card img, .training-photo-card img, .contact-photo-card img {
  display:block;
  width:100%;
  height:auto; /* prevent distortion */
  object-fit:cover;
}
/* Standard tile size */
.imgcard-standard, .training-photo-card img {
  max-height:220px;
}
/* Contact specific layout */
.contact-photos.training-grid{
  grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
  gap:1rem;
  margin:1rem 0;
}
.contact-photo-label{
  text-align:center;
  font-weight:600;
  color:#003d79;
  padding:.5rem 0;
}
/* Contact hub + map */
.contact-hub{
  background:#fff;
  border-radius:16px;
  box-shadow:0 16px 36px rgba(0,0,0,.12);
  padding:16px;
  margin:18px 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(460px,100%),1fr));
  gap:16px;
  align-items:start;
}
.contact-actions{display:flex;flex-direction:column;gap:14px}
.contact-pill{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:12px;background:#0b4a78;border-radius:12px;padding:12px;color:#fff}
.pill-icon img{width:28px;height:28px}
.pill-title{font-weight:700}
.pill-sub{font-size:.9rem;opacity:.95}
.pill-btn{display:inline-block;background:#fff;color:#003d79;padding:6px 12px;border-radius:20px;text-decoration:none;font-weight:700}
.pill-btn:hover{opacity:.9}
.contact-socials{display:flex;gap:12px;margin-top:8px}
.contact-socials img{
    width:40px;
    height:auto;
    display:block;
}
.hub-map .map-wrap{border-radius:12px;overflow:hidden;box-shadow:0 10px 24px rgba(0,0,0,.1);background:#fff}
.google-map-embed{width:100%;height:420px;border:0;display:block}
/* Hours bar */
.contact-hoursbar{
  background:#0b3b6f;color:#fff;border-radius:16px;padding:16px;margin:18px 0;box-shadow:0 12px 28px rgba(0,0,0,.08);
  display:grid;grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));gap:16px
}
.contact-hoursbar .hours-title{font-weight:700;margin-bottom:6px}


/* === FINAL OVERRIDE — 3-photo rows (Home, Company, Contact, Careers) === */
.home-photo-card,
.contact-photo-card,
.training-photo-card{
  background:transparent !important;
  border-radius:0 !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}

.home-photo-card img,
.contact-photo-card img,
.training-photo-card img{
  display:block;
  width:100%;
  height:190px;
  max-height:none !important;
  object-fit:cover;
}


/* Final override: make Home welcome card match other cards (no custom max-width/margins) */
.welcome-card{
  position:relative !important;
  max-width:none !important;
  margin:0 0 1.5rem 0 !important;
}


/* Products - Coming Soon layout */
.coming-soon-card{
  background:#fff;
  border-radius:10px;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
  padding:2rem 2.5rem;
  margin-top:1.5rem;
}

.coming-soon-card h3{
  margin-top:0;
  font-size:1.6rem;
  color:#003d79;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.coming-soon-card p{
  margin:0 0 .75rem 0;
}

.brand-list{
  list-style:none;
  margin:1rem 0 1.25rem 0;
  padding:0;
  column-count:2;
  column-gap:3rem;
}

.brand-list li{
  position:relative;
  padding-left:1.2rem;
  margin-bottom:.35rem;
}

.brand-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#ff8c2f;
}
