@font-face {
    font-display: swap;
    font-family: "Aeros";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Aeros Regular.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Codec Pro";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Codec Pro Regular.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Raleway Local";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/Raleway SemiBold.ttf") format("truetype");
}

@font-face {
    font-display: swap;
    font-family: "Raleway Local";
    font-style: normal;
    font-weight: 700 900;
    src: url("../fonts/Raleway Bold.ttf") format("truetype");
}

:root {
    --blue-sapphire: #115975;
    --pantone-144: #e68922;
    --dark-night: #042a38;
    --safety-orange: #ff6900;
    --grey: #9a999e;
    --ink: #102a34;
    --paper: #f6f8f9;
    --white: #ffffff;
}

* {
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    font-family: "Codec Pro", "Segoe UI", Arial, sans-serif;
    background: var(--white);
}

.main-nav {
    background: rgba(4, 42, 56, 0.94);
    box-shadow: 0 12px 30px rgba(4, 42, 56, 0.22);
}

.navbar-brand img {
    width: auto;
    max-width: 230px;
    object-fit: contain;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.86);
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--pantone-144);
}

.btn {
    border-radius: 6px;
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
}

.btn i {
    margin-right: 0.35rem;
}

.btn-accent {
    background: var(--safety-orange);
    border-color: var(--safety-orange);
    color: var(--white);
}

.btn-accent:hover,
.btn-accent:focus {
    background: var(--pantone-144);
    border-color: var(--pantone-144);
    color: var(--dark-night);
}

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: var(--dark-night);
}

.hero .carousel {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-position: center;
    background-size: cover;
}

.hero-slide-a {
    background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80");
}

.hero-slide-b {
    background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80");
}

.hero-slide-c {
    background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 42, 56, 0.94) 0%, rgba(4, 42, 56, 0.78) 45%, rgba(17, 89, 117, 0.28) 100%),
        linear-gradient(0deg, rgba(4, 42, 56, 0.48), rgba(4, 42, 56, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-mark {
    width: 78px;
    height: 78px;
    object-fit: cover;
    margin-bottom: 1.35rem;
    border: 2px solid rgba(255, 255, 255, 0.32);
}

.eyebrow,
.section-kicker {
    color: var(--pantone-144);
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.hero h1 {
    font-family: "Aeros", "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2.55rem, 5vw, 5.25rem);
    font-weight: 400;
    line-height: 1.02;
    margin-bottom: 1.2rem;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.25rem;
    max-width: 740px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-indicators {
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    height: 4px;
    width: 44px;
    background-color: var(--pantone-144);
}

.trust-band {
    background: var(--dark-night);
    color: var(--white);
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    padding: 1.25rem 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.4rem;
    justify-content: flex-end;
}

.trust-items span {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
}

.trust-items i {
    color: var(--pantone-144);
    margin-right: 0.35rem;
}

.section {
    padding: 6rem 0;
}

.section-muted {
    background: var(--paper);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section h2 {
    color: var(--dark-night);
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 820;
    line-height: 1.12;
}

.feature-card,
.service-card,
.sector-card,
.contact-form,
.info-block,
.cert-box {
    border: 1px solid rgba(17, 89, 117, 0.12);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(4, 42, 56, 0.08);
}

.feature-card {
    min-height: 236px;
    padding: 2rem;
}

.feature-card i,
.sector-card i {
    color: var(--safety-orange);
    display: inline-block;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.feature-card h3,
.service-card h3,
.sector-card h3,
.info-block h3,
.cert-box h3 {
    color: var(--dark-night);
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
}

.feature-card p,
.service-card p,
.sector-card p,
.info-block p,
.cert-box p,
.contact-section p {
    color: #53666d;
}

.testimonial-strip {
    border-left: 5px solid var(--pantone-144);
    margin-top: 3rem;
    padding: 1.35rem 1.5rem;
    background: rgba(17, 89, 117, 0.06);
}

.testimonial-strip p {
    color: var(--dark-night);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.testimonial-strip span {
    color: var(--blue-sapphire);
    font-weight: 700;
}

.about-logo {
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    box-shadow: 0 24px 60px rgba(4, 42, 56, 0.18);
}

.info-block {
    height: 100%;
    padding: 1.25rem;
}

.values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.values span {
    background: var(--dark-night);
    border-radius: 6px;
    color: var(--white);
    font-weight: 700;
    padding: 0.55rem 0.8rem;
}

.cert-box {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
}

.cert-box i {
    color: var(--pantone-144);
    font-size: 2rem;
}

.service-card {
    display: flex;
    gap: 1rem;
    height: 100%;
    padding: 1.4rem;
}

.service-icon {
    align-items: center;
    background: rgba(230, 137, 34, 0.15);
    border-radius: 8px;
    color: var(--safety-orange);
    display: flex;
    flex: 0 0 46px;
    height: 46px;
    justify-content: center;
}

.service-card dl {
    margin: 1rem 0 0;
}

.service-card dt {
    color: var(--blue-sapphire);
    font-size: 0.84rem;
    font-weight: 800;
    margin-top: 0.65rem;
    text-transform: uppercase;
}

.service-card dd {
    color: #53666d;
    margin: 0;
}

.sector-section {
    background: var(--dark-night);
}

.sector-section h2 {
    color: var(--white);
}

.sector-card {
    height: 100%;
    min-height: 230px;
    padding: 1.5rem;
}

.contact-section {
    background:
        linear-gradient(180deg, rgba(17, 89, 117, 0.06), rgba(255, 255, 255, 1));
}

.contact-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.contact-list a,
.contact-list span {
    align-items: center;
    color: var(--dark-night);
    display: flex;
    font-weight: 700;
    gap: 0.65rem;
    text-decoration: none;
}

.contact-list i {
    color: var(--safety-orange);
    font-size: 1.2rem;
}

.map-frame {
    border: 1px solid rgba(17, 89, 117, 0.16);
    border-radius: 8px;
    height: 260px;
    overflow: hidden;
}

.map-frame iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

.contact-form {
    padding: 2rem;
}

.form-control,
.form-select {
    border-color: rgba(17, 89, 117, 0.22);
    border-radius: 6px;
    min-height: 48px;
}

textarea.form-control {
    min-height: 144px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--pantone-144);
    box-shadow: 0 0 0 0.2rem rgba(230, 137, 34, 0.18);
}

.form-label {
    color: var(--dark-night);
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-weight: 750;
}

.site-footer {
    background: var(--dark-night);
    color: rgba(255, 255, 255, 0.76);
    padding: 2rem 0;
}

.site-footer img {
    width: auto;
    max-width: 230px;
}

.temporary-page {
    min-height: 100vh;
    background: var(--dark-night);
}

.temp-nav-contact a:not(.btn) {
    color: rgba(255, 255, 255, 0.86);
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.temp-nav-contact a:not(.btn):hover,
.temp-nav-contact a:not(.btn):focus {
    color: var(--pantone-144);
}

.temp-hero {
    min-height: 760px;
}

.temp-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.8rem;
}

.temp-status span {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    gap: 0.45rem;
    padding: 0.7rem 0.85rem;
}

.temp-status i {
    color: var(--pantone-144);
}

.temp-contact-section {
    background: var(--paper);
}

.temp-contact-list {
    border-left: 5px solid var(--safety-orange);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.temp-note {
    align-items: flex-start;
    background: rgba(17, 89, 117, 0.08);
    border: 1px solid rgba(17, 89, 117, 0.14);
    border-radius: 8px;
    color: var(--dark-night);
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
}

.temp-note i {
    color: var(--safety-orange);
    font-size: 1.25rem;
}

.temp-contact-list .temp-whatsapp-button {
    color: var(--white);
    justify-content: center;
    margin-top: 0.25rem;
    max-width: 260px;
    padding: 0.75rem 1rem;
}

.temp-contact-list .temp-whatsapp-button i {
    color: var(--white);
}

.professional-contact-modal .modal-content {
    border: 0;
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(4, 42, 56, 0.36);
    overflow: hidden;
}

.professional-contact-modal .modal-header {
    align-items: flex-start;
    background: var(--dark-night);
    border: 0;
    color: var(--white);
    padding: 1.5rem 1.75rem;
}

.professional-contact-modal .modal-title {
    color: var(--white);
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.05rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0;
}

.professional-contact-modal .modal-body {
    background: var(--paper);
    padding: 1.75rem;
}

.modal-brand-panel {
    background:
        linear-gradient(180deg, rgba(4, 42, 56, 0.96), rgba(17, 89, 117, 0.94));
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.84);
    height: 100%;
    padding: 1.5rem;
}

.modal-brand-panel img {
    border-radius: 8px;
    display: block;
    margin: 0 auto 1.25rem;
    max-width: 190px;
    width: 100%;
}

.modal-brand-panel p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.modal-contact-points {
    display: grid;
    gap: 0.75rem;
}

.modal-contact-points span {
    align-items: center;
    display: flex;
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    gap: 0.55rem;
}

.modal-contact-points i {
    color: var(--pantone-144);
}

.modal-contact-form {
    position: relative;
    box-shadow: none;
    padding: 1.35rem;
}

.contact-form.is-submitting {
    pointer-events: none;
}

.submit-overlay {
    align-items: center;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    color: var(--dark-night);
    display: flex;
    flex-direction: column;
    font-family: "Raleway Local", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
    gap: 0.75rem;
    inset: 0;
    justify-content: center;
    position: absolute;
    text-align: center;
    z-index: 3;
}

.contact-form .spinner-border {
    vertical-align: -0.1em;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }

    .hero {
        min-height: 680px;
    }

    .temp-hero {
        min-height: 720px;
    }

    .trust-items {
        justify-content: center;
    }

    .section {
        padding: 4.5rem 0;
    }

    .professional-contact-modal .modal-body {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        max-width: 190px;
    }

    .hero {
        min-height: 650px;
    }

    .temp-hero {
        min-height: 690px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .service-card {
        flex-direction: column;
    }

    .contact-form {
        padding: 1.25rem;
    }
}
