/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================
   BRAND COLORS
========================================= */

:root {
    --primary-red: #d71920;
    --dark-red: #b51218;
    --navy: #123b63;
    --dark-navy: #0b2945;
    --text-dark: #222222;
    --text-light: #666666;
    --white: #ffffff;
    --border: #e7e7e7;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1000;
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    width: 245px;
    height: auto;
    object-fit: contain;
}


/* =========================================
   NAVIGATION
========================================= */

.main-navigation {
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 13px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: var(--primary-red);
}

.dropdown-link i {
    font-size: 9px;
    transition: transform 0.25s ease;
}

.has-dropdown:hover .dropdown-link i {
    transform: rotate(180deg);
}


/* =========================================
   DROPDOWN
========================================= */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-top: 3px solid var(--primary-red);
    box-shadow: var(--shadow);
    border-radius: 0 0 6px 6px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.25s ease;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 11px 17px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    color: var(--primary-red);
    background: #fafafa;
    padding-left: 21px;
}


/* =========================================
   GET QUOTE BUTTON
========================================= */

.quote-menu-item {
    margin-left: 10px;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 19px;

    background: var(--primary-red);
    color: var(--white);

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(215, 25, 32, 0.20);

    transition: all 0.25s ease;
}

.quote-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(215, 25, 32, 0.25);
}

.quote-btn i {
    font-size: 12px;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    width: 44px;
    height: 44px;

    display: none;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-navy);
    display: block;
    transition: all 0.25s ease;
}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 1100px) {

    .header-inner {
        min-height: 78px;
    }

    .brand-logo img {
        width: 210px;
    }

    .nav-link {
        padding: 10px 8px;
        font-size: 13px;
    }

    .quote-menu-item {
        margin-left: 5px;
    }

    .quote-btn {
        padding: 10px 13px;
    }
}


@media (max-width: 900px) {

    .header-inner {
        min-height: 75px;
    }

    .brand-logo img {
        width: 205px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        width: 100%;

        background: var(--white);

        border-top: 1px solid var(--border);

        box-shadow: var(--shadow);

        max-height: 0;
        overflow: hidden;

        visibility: hidden;
        opacity: 0;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .main-navigation.active {
        max-height: calc(100vh - 75px);
        overflow-y: auto;

        visibility: visible;
        opacity: 1;
    }

    .nav-menu {
        display: block;
        padding: 10px 20px 20px;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eeeeee;
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 14px 5px;
        justify-content: space-between;
        font-size: 14px;
    }


    /* Mobile Dropdown */

    .dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        border-top: 0;
        border-left: 3px solid var(--primary-red);

        border-radius: 0;
        box-shadow: none;

        background: #fafafa;

        opacity: 1;
        visibility: visible;
        transform: none;

        display: none;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .has-dropdown.open .dropdown-link i {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 11px 15px;
    }

    .dropdown-menu a:hover {
        padding-left: 18px;
    }


    /* Get Quote */

    .quote-menu-item {
        margin: 15px 0 0;
        border-bottom: 0 !important;
    }

    .quote-btn {
        width: 100%;
        padding: 13px 20px;
    }


    /* Hamburger Animation */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .container {
        width: min(100% - 30px, 1200px);
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-logo img {
        width: 180px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .main-navigation.active {
        max-height: calc(100vh - 70px);
    }

    .nav-menu {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* =========================================
   FOOTER CTA
========================================= */

.footer-cta {
    background: var(--primary-red);
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 60px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    right: -120px;
    top: -180px;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-cta-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-cta h2 {
    color: #fff;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.footer-cta p {
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    font-size: 15px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-red);
    padding: 14px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* =========================================
   MAIN FOOTER
========================================= */

.site-footer {
    background: var(--dark-navy);
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 50px;
    padding-top: 70px;
    padding-bottom: 55px;
}

.footer-logo {
    display: inline-block;
    background: #fff;
    padding: 8px 12px;
    border-radius: 4px;
}

.footer-logo img {
    width: 220px;
    height: auto;
}

.footer-tagline {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 12px;
}

.footer-description {
    color: #b9c4cf;
    font-size: 13px;
    line-height: 1.8;
    margin-top: 15px;
    max-width: 360px;
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.footer-column h3 {
    position: relative;
    font-size: 17px;
    margin-bottom: 22px;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: var(--primary-red);
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #b9c4cf;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-links a i {
    color: var(--primary-red);
    font-size: 10px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}


/* =========================================
   SOCIAL
========================================= */

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;

    border-radius: 4px;

    font-size: 13px;

    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}


/* =========================================
   CONTACT
========================================= */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(215,25,32,0.15);
    color: var(--primary-red);

    border-radius: 4px;

    font-size: 13px;
}

.contact-item span {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}

.contact-item p {
    color: #b9c4cf;
    font-size: 12px;
    line-height: 1.7;
}

.contact-item a:hover {
    color: #fff;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #8999a8;
    font-size: 11px;
}

.footer-bottom strong {
    color: #c5ced7;
}


/* =========================================
   FLOATING BUTTONS
========================================= */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    border-radius: 50%;

    font-size: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.2);

    transition: transform 0.25s ease;
}

.floating-btn:hover {
    transform: scale(1.08);
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: var(--primary-red);
}


/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
    }

}


@media (max-width: 700px) {

    .footer-cta {
        padding: 45px 0;
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-cta h2 {
        font-size: 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 15px 0;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

}


@media (max-width: 480px) {

    .footer-cta h2 {
        font-size: 25px;
    }

    .footer-cta p {
        font-size: 13px;
    }

    .footer-logo img {
        width: 190px;
    }

}


/* =========================================================
   RAPID FIRE PREVENTION
   MAIN WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {
    --primary-red: #d71920;
    --dark-red: #b51218;

    --navy: #123b63;
    --dark-navy: #092944;
    --navy-light: #174e7e;

    --white: #ffffff;
    --black: #111111;

    --text-dark: #222222;
    --text-light: #666666;
    --text-muted: #8995a1;

    --light-bg: #f7f9fb;
    --lighter-bg: #fbfcfd;

    --border: #e5e9ed;

    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.06);
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.13);

    --radius: 6px;
    --transition: all 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--primary-red);
    color: var(--white);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.section-padding {
    padding: 90px 0;
}


/* =========================================================
   COMMON TYPOGRAPHY
========================================================= */

.section-label {
    display: inline-block;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.services-content h2 {
    color: var(--dark-navy);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-heading h2 span,
.about-content h2 span,
.services-content h2 span {
    color: var(--primary-red);
}

.section-heading p {
    color: var(--text-light);
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
}

.light-heading h2 {
    color: var(--white);
}

.light-heading p {
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;
    padding: 13px 23px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.btn i {
    font-size: 12px;
}

.btn-primary {
    color: var(--white);
    background: var(--primary-red);
    box-shadow: 0 7px 20px rgba(215, 25, 32, 0.22);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(215, 25, 32, 0.28);
}

.btn-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-navy);
}

.btn-white {
    color: var(--primary-red);
    background: var(--white);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    color: var(--white);
    background: #25d366;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.text-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--primary-red);

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.text-btn:hover {
    gap: 14px;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: 650px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(7, 28, 46, 0.94) 0%,
            rgba(7, 28, 46, 0.80) 42%,
            rgba(7, 28, 46, 0.30) 100%
        ),
        url('/assets/images/banners/hero.jpg') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(215, 25, 32, 0.12),
            transparent 45%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    padding: 70px 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #fff;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 18px;
}

.hero-label::before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--primary-red);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hero-content h1 span {
    display: block;
    color: #f02a31;
}

.hero-content p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =========================================================
   QUICK SERVICES
========================================================= */

.quick-services {
    position: relative;
    z-index: 5;

    margin-top: -45px;
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: var(--white);

    border-radius: 7px;

    box-shadow: var(--shadow);

    overflow: hidden;
}

.quick-service-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 25px 20px;

    border-right: 1px solid var(--border);
}

.quick-service-item:last-child {
    border-right: 0;
}

.quick-service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-red);

    background: rgba(215, 25, 32, 0.08);

    border-radius: 5px;

    font-size: 20px;
}

.quick-service-item h3 {
    color: var(--dark-navy);
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.quick-service-item p {
    color: var(--text-light);
    font-size: 11px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 80px;
}

.about-image {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}

.about-image-main {
    position: relative;

    overflow: hidden;

    border-radius: 7px;

    box-shadow: var(--shadow);
}

.about-image-main::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(215, 25, 32, 0.08),
        transparent
    );
}

.about-image-main img {
    width: 100%;
    height: 480px;

    object-fit: cover;
}

.about-image::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: 0;
    bottom: 0;

    border-right: 7px solid var(--primary-red);
    border-bottom: 7px solid var(--primary-red);

    z-index: 2;
}

.about-experience {
    position: absolute;

    left: -20px;
    bottom: 30px;

    width: 125px;
    height: 125px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--primary-red);

    color: var(--white);

    border-radius: 50%;

    box-shadow: var(--shadow);

    z-index: 4;
}

.about-experience strong {
    font-size: 12px;
    font-weight: 600;
}

.about-experience span {
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.about-content h2 {
    max-width: 550px;
}

.about-content > p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.85;

    margin-bottom: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 13px;

    margin: 25px 0 28px;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--dark-navy);

    font-size: 12px;
    font-weight: 600;
}

.about-features i {
    color: var(--primary-red);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.product-card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 6px;

    overflow: hidden;

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.product-image {
    height: 230px;
    overflow: hidden;
    background: #f1f3f5;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card-content {
    position: relative;

    padding: 25px 24px 27px;
}

.product-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;

    top: -24px;
    right: 22px;

    background: var(--primary-red);
    color: var(--white);

    border-radius: 5px;

    box-shadow: 0 7px 18px rgba(215, 25, 32, 0.25);

    font-size: 18px;
}

.product-card h3 {
    color: var(--dark-navy);
    font-size: 17px;
    margin-bottom: 8px;
}

.product-card p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-card-content > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary-red);

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.product-card:hover .product-card-content > span {
    gap: 12px;
}

.section-button {
    text-align: center;
    margin-top: 45px;
}


/* =========================================================
   SYSTEMS
========================================================= */

.systems-section {
    position: relative;

    background:
        linear-gradient(
            120deg,
            rgba(8, 38, 64, 0.97),
            rgba(13, 61, 98, 0.93)
        ),
        url('/assets/images/banners/system-bg.jpg') center / cover;

    overflow: hidden;
}

.systems-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    top: -220px;

    border: 80px solid rgba(255,255,255,0.035);

    border-radius: 50%;
}

.systems-section .container {
    position: relative;
    z-index: 2;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.system-card {
    position: relative;

    padding: 35px 25px;

    min-height: 300px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 6px;

    overflow: hidden;

    transition: var(--transition);
}

.system-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-5px);
    border-color: rgba(215,25,32,0.6);
}

.system-number {
    position: absolute;

    top: 15px;
    right: 20px;

    color: rgba(255,255,255,0.08);

    font-size: 45px;
    font-weight: 800;
}

.system-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--primary-red);

    border-radius: 5px;

    margin-bottom: 25px;

    font-size: 20px;
}

.system-card h3 {
    color: var(--white);

    font-size: 16px;

    margin-bottom: 10px;
}

.system-card p {
    color: rgba(255,255,255,0.65);

    font-size: 12px;
    line-height: 1.7;

    margin-bottom: 20px;
}

.system-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    transition: var(--transition);
}

.system-card a:hover {
    color: #f02a31;
    gap: 12px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: center;
}

.services-content h2 {
    max-width: 480px;
}

.services-content > p {
    color: var(--text-light);

    font-size: 14px;
    line-height: 1.8;

    max-width: 500px;

    margin-bottom: 25px;
}

.services-list {
    display: flex;
    flex-direction: column;

    border-top: 1px solid var(--border);
}

.service-item {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 17px 5px;

    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.service-item:hover {
    padding-left: 12px;
    background: var(--lighter-bg);
}

.service-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-red);

    background: rgba(215,25,32,0.07);

    border-radius: 5px;

    font-size: 17px;
}

.service-item > span:nth-child(2) {
    flex: 1;
}

.service-item strong {
    display: block;

    color: var(--dark-navy);

    font-size: 14px;

    margin-bottom: 2px;
}

.service-item small {
    display: block;

    color: var(--text-light);

    font-size: 11px;
}

.service-item > i {
    color: var(--text-muted);

    font-size: 12px;

    transition: var(--transition);
}

.service-item:hover > i {
    color: var(--primary-red);
    transform: translateX(4px);
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
    background: var(--light-bg);
}

.industries-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.industry-card {
    position: relative;

    min-height: 190px;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 6px;

    overflow: hidden;

    transition: var(--transition);
}

.industry-card::after {
    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    right: -35px;
    bottom: -35px;

    background: rgba(215,25,32,0.06);

    border-radius: 50%;

    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.industry-card:hover::after {
    transform: scale(2);
}

.industry-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-red);

    background: rgba(215,25,32,0.08);

    border-radius: 5px;

    margin-bottom: 18px;

    font-size: 19px;
}

.industry-card h3 {
    color: var(--dark-navy);

    font-size: 15px;

    margin-bottom: 7px;
}

.industry-card p {
    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;

    max-width: 300px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
    background: var(--white);
}

.projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

.projects-header .section-label {
    margin-bottom: 10px;
}

.projects-header h2 {
    color: var(--dark-navy);

    font-size: 35px;
    line-height: 1.2;
}

.projects-header h2 span {
    color: var(--primary-red);
}

.clients-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.client-box {
    min-height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    text-align: center;

    color: var(--dark-navy);

    font-size: 13px;
    font-weight: 700;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.client-box:hover {
    color: var(--primary-red);
    background: var(--lighter-bg);
}


/* =========================================================
   HOME CTA
========================================================= */

.home-cta {
    background: var(--primary-red);

    position: relative;

    overflow: hidden;
}

.home-cta::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    top: -260px;

    border: 80px solid rgba(255,255,255,0.06);

    border-radius: 50%;
}

.home-cta-inner {
    min-height: 250px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    position: relative;
    z-index: 2;
}

.home-cta-inner > div:first-child > span {
    color: rgba(255,255,255,0.75);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.home-cta h2 {
    color: var(--white);

    font-size: 35px;
    line-height: 1.2;

    margin: 7px 0 8px;
}

.home-cta p {
    color: rgba(255,255,255,0.85);

    font-size: 13px;
}

.home-cta-buttons {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.footer-cta {
    background: var(--primary-red);
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 60px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    right: -120px;
    top: -180px;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-cta-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-cta h2 {
    color: #fff;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.footer-cta p {
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    font-size: 15px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-red);
    padding: 14px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.site-footer {
    background: var(--dark-navy);
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 50px;
    padding-top: 70px;
    padding-bottom: 55px;
}

.footer-logo {
    display: inline-block;
    background: #fff;
    padding: 8px 12px;
    border-radius: 4px;
}

.footer-logo img {
    width: 220px;
}

.footer-tagline {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 12px;
}

.footer-description {
    color: #b9c4cf;
    font-size: 13px;
    line-height: 1.8;
    margin-top: 15px;
    max-width: 360px;
}

.footer-column h3 {
    position: relative;
    font-size: 17px;
    margin-bottom: 22px;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #b9c4cf;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-links a i {
    color: var(--primary-red);
    font-size: 10px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;

    border-radius: 4px;

    font-size: 13px;

    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(215,25,32,0.15);
    color: var(--primary-red);

    border-radius: 4px;

    font-size: 13px;
}

.contact-item span {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}

.contact-item p {
    color: #b9c4cf;
    font-size: 12px;
    line-height: 1.7;
}

.contact-item a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #8999a8;
    font-size: 11px;
}

.footer-bottom strong {
    color: #c5ced7;
}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-buttons {
    position: fixed;

    right: 20px;
    bottom: 20px;

    display: flex;
    flex-direction: column;

    gap: 10px;

    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    border-radius: 50%;

    font-size: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.2);

    transition: transform 0.25s ease;
}

.floating-btn:hover {
    transform: scale(1.08);
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: var(--primary-red);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 35px, 1200px);
    }

    .section-padding {
        padding: 75px 0;
    }

    .quick-service-item {
        padding: 20px 15px;
    }

    .quick-service-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .about-grid {
        gap: 50px;
    }

    .systems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 900px) {

    .section-padding {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .about-content h2,
    .services-content h2 {
        font-size: 32px;
    }


    /* HERO */

    .hero-section {
        min-height: 570px;

        background:
            linear-gradient(
                90deg,
                rgba(7, 28, 46, 0.93),
                rgba(7, 28, 46, 0.68)
            ),
            url('/assets/images/banners/hero.jpg') center / cover no-repeat;
    }

    .hero-content {
        max-width: 650px;
    }

    .hero-content h1 {
        font-size: 46px;
    }


    /* QUICK SERVICES */

    .quick-services {
        margin-top: 0;
        padding: 15px 0;
        background: var(--light-bg);
    }

    .quick-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-service-item {
        border-bottom: 1px solid var(--border);
    }

    .quick-service-item:nth-child(2) {
        border-right: 0;
    }

    .quick-service-item:nth-child(3),
    .quick-service-item:nth-child(4) {
        border-bottom: 0;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }

    .about-content {
        max-width: 700px;
        margin: 0 auto;
    }


    /* PRODUCTS */

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    /* INDUSTRIES */

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* PROJECTS */

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-header {
        align-items: flex-start;
        flex-direction: column;
    }


    /* CTA */

    .home-cta-inner {
        padding: 55px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-cta h2 {
        font-size: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }

    .section-padding {
        padding: 55px 0;
    }


    /* TYPOGRAPHY */

    .section-heading h2,
    .about-content h2,
    .services-content h2 {
        font-size: 28px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }


    /* HERO */

    .hero-section {
        min-height: 600px;
    }

    .hero-content {
        padding: 55px 0;
    }

    .hero-content h1 {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 260px;
    }

    .hero-buttons .btn {
        width: 100%;
    }


    /* QUICK SERVICES */

    .quick-services-grid {
        grid-template-columns: 1fr;
    }

    .quick-service-item,
    .quick-service-item:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .quick-service-item:last-child {
        border-bottom: 0;
    }


    /* ABOUT */

    .about-image {
        padding-right: 12px;
        padding-bottom: 15px;
    }

    .about-image-main img {
        height: 350px;
    }

    .about-image::before {
        width: 80px;
        height: 80px;

        border-right-width: 5px;
        border-bottom-width: 5px;
    }

    .about-experience {
        width: 100px;
        height: 100px;
        left: -5px;
        bottom: 20px;
    }

    .about-experience span {
        font-size: 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }


    /* PRODUCTS */

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 240px;
    }


    /* SYSTEMS */

    .systems-grid {
        grid-template-columns: 1fr;
    }

    .system-card {
        min-height: auto;
    }


    /* SERVICES */

    .service-item {
        gap: 12px;
        padding: 15px 2px;
    }

    .service-item-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .service-item strong {
        font-size: 12px;
    }

    .service-item small {
        font-size: 10px;
    }


    /* INDUSTRIES */

    .industries-grid {
        grid-template-columns: 1fr;
    }


    /* PROJECTS */

    .projects-header h2 {
        font-size: 28px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-box {
        min-height: 95px;
    }


    /* HOME CTA */

    .home-cta h2 {
        font-size: 27px;
    }

    .home-cta-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .home-cta-buttons .btn {
        width: 100%;
    }


    /* FOOTER CTA */

    .footer-cta {
        padding: 45px 0;
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-cta h2 {
        font-size: 27px;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 15px 0;
    }


    /* FLOATING BUTTONS */

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .section-heading h2,
    .about-content h2,
    .services-content h2 {
        font-size: 25px;
    }

    .product-image {
        height: 210px;
    }

}

/* =========================================
   ABOUT PAGE
========================================= */

.page-hero {
    position: relative;
    padding: 110px 0 95px;
    background:
        linear-gradient(rgba(9, 41, 68, 0.92), rgba(9, 41, 68, 0.92)),
        url("../images/banners/hero.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.page-hero-label {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d71920;
}

.page-hero h1 {
    margin: 0 0 18px;
    font-size: 52px;
    line-height: 1.15;
}

.page-hero p {
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,.85);
    font-size: 18px;
}


/* ABOUT INTRO */

.about-page-section {
    padding: 100px 0;
    background: #fff;
}

.about-page-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 75px;
    align-items: center;
}

.about-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(9,41,68,.14);
}

.about-image-card img {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    width: 115px;
    height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #d71920;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.about-image-badge strong {
    font-size: 24px;
    line-height: 1;
}

.about-image-badge span {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-page-content h2 {
    margin: 10px 0 22px;
    color: #092944;
    font-size: 42px;
    line-height: 1.18;
}

.about-page-content p {
    color: #667788;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-page-content .lead {
    color: #334b60;
    font-size: 18px;
    line-height: 1.75;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-highlight {
    display: flex;
    gap: 10px;
    align-items: center;
}

.about-highlight-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcebed;
    color: #d71920;
    border-radius: 8px;
}

.about-highlight strong,
.about-highlight span {
    display: block;
}

.about-highlight strong {
    color: #092944;
    font-size: 13px;
}

.about-highlight span {
    margin-top: 3px;
    color: #7b8995;
    font-size: 11px;
}


/* COMPANY PROFILE */

.company-profile-section {
    padding: 100px 0;
    background: #f6f8fa;
}

.section-heading.center {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading.center h2 {
    margin: 10px 0 15px;
    color: #092944;
    font-size: 40px;
}

.section-heading.center p {
    color: #71808d;
    line-height: 1.8;
}

.profile-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.profile-card {
    padding: 35px 28px;
    background: #fff;
    border: 1px solid #e8edf1;
    border-radius: 10px;
    transition: .3s ease;
}

.profile-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(9,41,68,.10);
}

.profile-card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #d71920;
    color: #fff;
    border-radius: 9px;
    font-size: 22px;
}

.profile-card h3 {
    margin-bottom: 12px;
    color: #092944;
    font-size: 20px;
}

.profile-card p {
    margin: 0;
    color: #71808d;
    font-size: 14px;
    line-height: 1.75;
}


/* SPECIALIZED */

.specialized-section {
    padding: 100px 0;
    background: #fff;
}

.specialized-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

.specialized-content h2 {
    margin: 10px 0 20px;
    color: #092944;
    font-size: 42px;
    line-height: 1.2;
}

.specialized-content > p {
    color: #71808d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.specialized-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
    margin-top: 30px;
}

.specialized-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #344d61;
    font-weight: 600;
    font-size: 14px;
}

.specialized-list i {
    color: #d71920;
}

.specialized-side {
    display: grid;
    gap: 20px;
}

.specialized-box {
    padding: 35px;
    border-radius: 10px;
    background: #092944;
    color: #fff;
}

.specialized-box:nth-child(2) {
    background: #d71920;
}

.specialized-box-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(255,255,255,.14);
    border-radius: 8px;
    font-size: 22px;
}

.specialized-box h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.specialized-box p {
    margin: 0;
    color: rgba(255,255,255,.82);
    line-height: 1.75;
    font-size: 14px;
}


/* APPROACH */

.approach-section {
    padding: 100px 0;
    background: #f6f8fa;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.approach-item {
    position: relative;
    padding: 35px 28px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8edf1;
}

.approach-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #e4e9ed;
    font-size: 32px;
    font-weight: 800;
}

.approach-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #fcebed;
    color: #d71920;
    border-radius: 8px;
    font-size: 21px;
}

.approach-item h3 {
    color: #092944;
    margin-bottom: 10px;
}

.approach-item p {
    margin: 0;
    color: #71808d;
    line-height: 1.7;
    font-size: 14px;
}


/* CLIENTS */

.about-clients-section {
    padding: 100px 0;
    background: #fff;
}

.about-clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-clients-content h2 {
    margin: 10px 0 20px;
    color: #092944;
    font-size: 40px;
    line-height: 1.2;
}

.about-clients-content p {
    color: #71808d;
    line-height: 1.8;
}

.about-client-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.client-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    background: #f6f8fa;
    border: 1px solid #e8edf1;
    border-radius: 8px;
    color: #092944;
    font-weight: 700;
}

.client-list-item i {
    color: #d71920;
    font-size: 20px;
}


/* INNER CTA */

.inner-page-cta {
    padding: 70px 0;
    background: #092944;
}

.inner-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.inner-page-cta h2 {
    margin: 10px 0;
    color: #fff;
    font-size: 38px;
}

.inner-page-cta p {
    margin: 0;
    color: rgba(255,255,255,.75);
}

.inner-page-cta .section-label {
    color: #d71920;
}

.inner-page-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 24px;
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: #092944;
}


/* =========================================
   ABOUT RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .page-hero h1 {
        font-size: 42px;
    }

    .about-page-grid,
    .specialized-grid,
    .about-clients-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .profile-cards,
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .inner-page-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .page-hero {
        padding: 75px 0;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .about-page-section,
    .company-profile-section,
    .specialized-section,
    .approach-section,
    .about-clients-section {
        padding: 65px 0;
    }

    .about-page-content h2,
    .specialized-content h2,
    .about-clients-content h2,
    .section-heading.center h2 {
        font-size: 30px;
    }

    .about-image-card img {
        height: 360px;
    }

    .profile-cards,
    .approach-grid,
    .specialized-list,
    .about-client-list {
        grid-template-columns: 1fr;
    }

    .inner-page-cta {
        padding: 55px 0;
    }

    .inner-page-cta h2 {
        font-size: 30px;
    }

    .inner-page-cta-actions {
        width: 100%;
        flex-direction: column;
    }

}


/* =====================================================
   SERVICES PAGE
===================================================== */

.inner-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(9,41,68,.96), rgba(9,41,68,.78)),
        url("../images/banners/services-banner.jpg") center/cover no-repeat;
}

.inner-hero-content {
    max-width: 760px;
    padding: 80px 0;
}

.inner-hero h1 {
    color: #fff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.08;
    margin: 15px 0 22px;
    font-weight: 800;
}

.inner-hero h1 span,
.section-heading h2 span,
.service-content h2 span,
.complete-system-content h2 span,
.services-final-cta h2 span {
    color: var(--primary-red);
}

.inner-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: var(--dark-navy);
}


/* INTRO */

.service-intro {
    background: #fff;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.service-intro-card {
    padding: 35px 30px;
    border: 1px solid #e8edf2;
    background: #fff;
    transition: .3s ease;
}

.service-intro-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(9,41,68,.10);
}

.service-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215,25,32,.08);
    color: var(--primary-red);
    font-size: 25px;
    margin-bottom: 22px;
}

.service-intro-card h3 {
    color: var(--dark-navy);
    font-size: 21px;
    margin-bottom: 12px;
}

.service-intro-card p {
    color: #687887;
    line-height: 1.7;
}


/* QUICK NAV */

.service-nav-section {
    background: var(--dark-navy);
    padding: 0;
}

.service-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.service-nav a {
    padding: 25px 18px;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,.12);
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.service-nav a:hover {
    background: var(--primary-red);
}

.service-nav span {
    display: block;
    color: rgba(255,255,255,.45);
    font-size: 12px;
    margin-bottom: 8px;
}


/* SERVICE DETAIL */

.service-detail-section {
    padding: 100px 0;
    background: #fff;
    scroll-margin-top: 90px;
}

.service-detail-alt {
    background: #f6f8fa;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.service-detail-grid.reverse .service-image {
    order: 2;
}

.service-detail-grid.reverse .service-content {
    order: 1;
}

.service-image {
    position: relative;
    min-height: 480px;
}

.service-image img {
    width: 100%;
    height: 480px;
    display: block;
    object-fit: cover;
}

.service-number {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    color: #fff;
    font-size: 25px;
    font-weight: 800;
}

.service-content {
    max-width: 620px;
}

.service-label {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-content h2 {
    color: var(--dark-navy);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    margin: 14px 0 22px;
}

.service-content p {
    color: #687887;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 25px;
    margin: 28px 0 32px;
}

.service-features div {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--dark-navy);
    font-size: 14px;
    font-weight: 600;
}

.service-features i {
    color: var(--primary-red);
    font-size: 13px;
}

.text-btn {
    color: var(--primary-red);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.text-btn:hover {
    gap: 15px;
}


/* COMPLETE SYSTEM STRIP */

.complete-system-strip {
    background: var(--primary-red);
    padding: 65px 0;
}

.complete-system-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.complete-system-content .eyebrow {
    color: rgba(255,255,255,.75);
}

.complete-system-content h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    margin: 10px 0 15px;
}

.complete-system-content h2 span {
    color: #fff;
}

.complete-system-content p {
    color: rgba(255,255,255,.85);
    max-width: 650px;
    line-height: 1.7;
}

.btn-light {
    background: #fff;
    color: var(--dark-navy);
    white-space: nowrap;
}

.btn-light:hover {
    background: var(--dark-navy);
    color: #fff;
}


/* SPECIALIZED */

.specialized-services {
    background: #fff;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.specialized-card {
    padding: 32px;
    border: 1px solid #e5eaf0;
    transition: .3s ease;
}

.specialized-card:hover {
    transform: translateY(-6px);
    border-color: rgba(215,25,32,.25);
    box-shadow: 0 18px 45px rgba(9,41,68,.08);
}

.specialized-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    background: rgba(215,25,32,.08);
    margin-bottom: 20px;
}

.specialized-card h3 {
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.specialized-card p {
    color: #687887;
    line-height: 1.65;
    min-height: 52px;
}

.specialized-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 18px;
}


/* PROCESS */

.service-process {
    background: #f6f8fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 45px;
}

.process-item {
    position: relative;
    padding: 30px;
    background: #fff;
    border-right: 1px solid #e7ebef;
}

.process-item > span {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 800;
}

.process-item > i {
    display: block;
    color: var(--navy);
    font-size: 27px;
    margin: 22px 0 18px;
}

.process-item h3 {
    color: var(--dark-navy);
    font-size: 19px;
    margin-bottom: 10px;
}

.process-item p {
    color: #687887;
    font-size: 14px;
    line-height: 1.65;
}


/* FINAL CTA */

.services-final-cta {
    padding: 80px 0;
    background: #fff;
}

.final-cta-box {
    background: var(--dark-navy);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta-box h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: 12px 0 15px;
}

.final-cta-box p {
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    max-width: 650px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #fff;
    color: #128C7E;
}


/* RESPONSIVE */

@media (max-width: 992px) {

    .service-intro-grid,
    .specialized-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-nav {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-detail-grid.reverse .service-image,
    .service-detail-grid.reverse .service-content {
        order: initial;
    }

    .service-image,
    .service-image img {
        min-height: 400px;
        height: 400px;
    }

    .complete-system-content,
    .final-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 767px) {

    .inner-hero {
        min-height: 420px;
    }

    .inner-hero-content {
        padding: 65px 0;
    }

    .inner-hero h1 {
        font-size: 40px;
    }

    .inner-hero p {
        font-size: 16px;
    }

    .service-intro-grid,
    .specialized-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-nav {
        grid-template-columns: 1fr 1fr;
    }

    .service-nav a {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .service-detail-section {
        padding: 65px 0;
    }

    .service-image,
    .service-image img {
        min-height: 300px;
        height: 300px;
    }

    .service-content h2 {
        font-size: 34px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .complete-system-strip {
        padding: 50px 0;
    }

    .final-cta-box {
        padding: 35px 25px;
    }

    .services-final-cta {
        padding: 55px 0;
    }

}

/* =====================================================
   PROJECTS PAGE
===================================================== */

.projects-hero {
    background:
        linear-gradient(90deg, rgba(9,41,68,.96), rgba(9,41,68,.78)),
        url("../images/banners/projects-banner.jpg") center/cover no-repeat;
}


/* INTRO */

.projects-intro {
    background: #fff;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 45px;
    border: 1px solid #e5eaf0;
}

.project-stat {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 28px 24px;
    border-right: 1px solid #e5eaf0;
}

.project-stat:last-child {
    border-right: 0;
}

.project-stat-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215,25,32,.08);
    color: var(--primary-red);
    font-size: 20px;
}

.project-stat strong {
    display: block;
    color: var(--dark-navy);
    font-size: 15px;
}

.project-stat span {
    display: block;
    color: #7a8792;
    font-size: 12px;
    margin-top: 4px;
}


/* GALLERY */

.projects-gallery-section {
    padding: 90px 0;
    background: #f6f8fa;
}

.projects-gallery-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
}

.projects-gallery-top h2 {
    margin: 10px 0 0;
    color: var(--dark-navy);
    font-size: clamp(34px, 4vw, 48px);
}

.projects-gallery-top h2 span {
    color: var(--primary-red);
}

.project-count {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 18px;
    border: 1px solid #e3e8ed;
}

.project-count strong {
    color: var(--primary-red);
    font-size: 25px;
}

.project-count span {
    color: #687887;
    font-size: 13px;
    font-weight: 700;
}


/* GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: #fff;
    overflow: hidden;
    border: 1px solid #e4e9ee;
    transition: .3s ease;
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(9,41,68,.12);
}

.project-image-btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
}

.project-image-btn img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.project-card:hover .project-image-btn img {
    transform: scale(1.06);
}

.project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    background: rgba(9,41,68,.78);
    color: #fff;
    opacity: 0;
    transition: .3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    font-size: 18px;
}

.project-overlay span {
    font-size: 13px;
    font-weight: 700;
}

.project-card-content {
    padding: 20px 22px 23px;
}

.project-card-content > span {
    color: var(--primary-red);
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.project-card-content h3 {
    color: var(--dark-navy);
    font-size: 18px;
    margin: 7px 0 0;
}


/* EMPTY */

.projects-empty {
    text-align: center;
    padding: 90px 25px;
    background: #fff;
    border: 1px dashed #ccd5dd;
}

.projects-empty-icon {
    color: var(--primary-red);
    font-size: 45px;
    margin-bottom: 20px;
}

.projects-empty h3 {
    color: var(--dark-navy);
    font-size: 24px;
    margin-bottom: 10px;
}

.projects-empty p {
    color: #687887;
    margin: 7px 0;
}

.projects-empty code {
    display: inline-block;
    background: #f2f4f6;
    padding: 9px 14px;
    color: var(--primary-red);
    margin: 5px 0 12px;
}


/* EXPERIENCE */

.projects-experience {
    background: #fff;
}

.projects-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.projects-experience-content h2 {
    color: var(--dark-navy);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    margin: 12px 0 20px;
}

.projects-experience-content h2 span {
    color: var(--primary-red);
}

.projects-experience-content p {
    color: #687887;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 28px;
}

.industry-project-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #dfe5ea;
    border: 1px solid #dfe5ea;
}

.industry-project-list div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px;
    background: #fff;
    color: var(--dark-navy);
    font-size: 14px;
    font-weight: 700;
}

.industry-project-list i {
    color: var(--primary-red);
    width: 22px;
    text-align: center;
}


/* LIGHTBOX */

body.lightbox-open {
    overflow: hidden;
}

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 90px;
    background: rgba(4,18,30,.96);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.project-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 1100px;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    display: block;
    margin: auto;
    object-fit: contain;
    box-shadow: 0 25px 80px rgba(0,0,0,.35);
}

.lightbox-caption {
    padding-top: 18px;
}

.lightbox-caption span {
    color: rgba(255,255,255,.55);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.lightbox-caption h3 {
    color: #fff;
    font-size: 20px;
    margin: 6px 0 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255,255,255,.1);
    transition: .25s ease;
}

.lightbox-close {
    top: 25px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 18px;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-red);
}


/* CTA */

.projects-final-cta {
    padding: 80px 0;
    background: #f6f8fa;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .project-stats {
        grid-template-columns: 1fr 1fr;
    }

    .project-stat:nth-child(2) {
        border-right: 0;
    }

    .project-stat:nth-child(-n+2) {
        border-bottom: 1px solid #e5eaf0;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .projects-gallery-section {
        padding: 65px 0;
    }

    .project-stats {
        grid-template-columns: 1fr;
    }

    .project-stat {
        border-right: 0;
        border-bottom: 1px solid #e5eaf0;
    }

    .project-stat:last-child {
        border-bottom: 0;
    }

    .projects-gallery-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-image-btn img {
        height: 250px;
    }

    .projects-experience-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .industry-project-list {
        grid-template-columns: 1fr;
    }

    .project-lightbox {
        padding: 25px 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

}

/* =====================================================
   INDUSTRIES PAGE
===================================================== */

.industries-hero {
    background:
        linear-gradient(90deg, rgba(9,41,68,.96), rgba(9,41,68,.78)),
        url("../images/banners/industries-banner.jpg") center/cover no-repeat;
}


/* =====================================================
   INDUSTRIES INTRO
===================================================== */

.industries-intro {
    background: #fff;
}

.industry-highlight-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 45px;
}

.industry-highlight {
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #e5eaf0;
    background: #fff;
    transition: .3s ease;
}

.industry-highlight:hover {
    transform: translateY(-6px);
    border-color: rgba(215,25,32,.25);
    box-shadow: 0 15px 35px rgba(9,41,68,.08);
}

.industry-highlight-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    background: rgba(215,25,32,.08);
    font-size: 20px;
}

.industry-highlight strong {
    display: block;
    color: var(--dark-navy);
    font-size: 14px;
}

.industry-highlight span {
    display: block;
    color: #7b8893;
    font-size: 11px;
    margin-top: 6px;
}


/* =====================================================
   INDUSTRY DETAIL
===================================================== */

.industry-detail {
    padding: 100px 0;
}

.industry-detail-light {
    background: #fff;
}

.industry-detail-dark {
    background: var(--dark-navy);
}

.industry-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.industry-detail-grid.reverse .industry-detail-image {
    order: 2;
}

.industry-detail-grid.reverse .industry-detail-content {
    order: 1;
}

.industry-detail-image {
    position: relative;
}

.industry-detail-image img {
    width: 100%;
    height: 450px;
    display: block;
    object-fit: cover;
}

.industry-detail-number {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.industry-detail-content {
    max-width: 620px;
}

.industry-detail-content h2 {
    color: var(--dark-navy);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    margin: 12px 0 20px;
}

.industry-detail-dark .industry-detail-content h2 {
    color: #fff;
}

.industry-detail-content h2 span {
    color: var(--primary-red);
}

.industry-detail-content p {
    color: #687887;
    line-height: 1.8;
    margin-bottom: 25px;
}

.industry-detail-dark .industry-detail-content p {
    color: rgba(255,255,255,.7);
}

.industry-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 25px;
    margin-bottom: 30px;
}

.industry-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-navy);
    font-size: 14px;
    font-weight: 600;
}

.industry-detail-dark .industry-points div {
    color: #fff;
}

.industry-points i {
    color: var(--primary-red);
    font-size: 12px;
}

.industry-detail-dark .text-btn {
    color: #fff;
}


/* =====================================================
   SOLUTION STRIP
===================================================== */

.industries-solution-strip {
    padding: 65px 0;
    background: var(--primary-red);
}

.industries-solution-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.industries-solution-content .eyebrow {
    color: rgba(255,255,255,.75);
}

.industries-solution-content h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.15;
    margin: 10px 0 15px;
}

.industries-solution-content h2 span {
    color: #fff;
}

.industries-solution-content p {
    max-width: 650px;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
}


/* =====================================================
   EXPERIENCE
===================================================== */

.industry-experience {
    background: #f6f8fa;
}

.experience-sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.experience-sector-card {
    padding: 32px;
    background: #fff;
    border: 1px solid #e5eaf0;
    transition: .3s ease;
}

.experience-sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(9,41,68,.08);
}

.experience-sector-card i {
    color: var(--primary-red);
    font-size: 25px;
    margin-bottom: 20px;
}

.experience-sector-card h3 {
    color: var(--dark-navy);
    font-size: 19px;
    margin-bottom: 10px;
}

.experience-sector-card p {
    color: #687887;
    font-size: 14px;
    line-height: 1.7;
}

.experience-button {
    text-align: center;
    margin-top: 40px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.industries-final-cta {
    padding: 80px 0;
    background: #fff;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .industry-highlight-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-detail-grid {
        gap: 45px;
    }

    .experience-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 992px) {

    .industry-detail-grid {
        grid-template-columns: 1fr;
    }

    .industry-detail-grid.reverse .industry-detail-image,
    .industry-detail-grid.reverse .industry-detail-content {
        order: initial;
    }

    .industry-detail-image img {
        height: 400px;
    }

    .industries-solution-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .industry-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-detail {
        padding: 65px 0;
    }

    .industry-detail-image img {
        height: 300px;
    }

    .industry-points {
        grid-template-columns: 1fr;
    }

    .experience-sector-grid {
        grid-template-columns: 1fr;
    }

    .industries-solution-strip {
        padding: 50px 0;
    }

}


@media (max-width: 480px) {

    .industry-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industry-highlight {
        padding: 20px 10px;
    }

}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-hero {
    background:
        linear-gradient(90deg, rgba(9,41,68,.96), rgba(9,41,68,.78)),
        url("../images/banners/contact-banner.jpg") center/cover no-repeat;
}


/* =====================================================
   CONTACT MAIN
===================================================== */

.contact-main {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}


/* LEFT */

.contact-info h2 {
    color: var(--dark-navy);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    margin: 12px 0 18px;
}

.contact-info h2 span {
    color: var(--primary-red);
}

.contact-intro {
    color: #687887;
    line-height: 1.8;
    margin-bottom: 38px;
    max-width: 560px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid #e6ebef;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215,25,32,.08);
    color: var(--primary-red);
    font-size: 19px;
}

.contact-info-item span {
    display: block;
    color: var(--primary-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.contact-info-item h3 {
    color: var(--dark-navy);
    font-size: 18px;
    margin-bottom: 7px;
}

.contact-info-item p {
    color: #687887;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.contact-info-item a {
    color: #687887;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--primary-red);
}


/* WHATSAPP */

.contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-top: 25px;
    background: #f3fbf6;
    border: 1px solid #d6f0df;
    color: #123b63;
    text-decoration: none;
    transition: .3s ease;
}

.contact-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(18,59,99,.08);
}

.contact-whatsapp-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
}

.contact-whatsapp strong {
    display: block;
    font-size: 14px;
}

.contact-whatsapp span {
    display: block;
    color: #71808c;
    font-size: 12px;
    margin-top: 4px;
}

.contact-whatsapp > i {
    margin-left: auto;
    color: #25D366;
}


/* =====================================================
   FORM
===================================================== */

.contact-form-wrapper {
    padding: 45px;
    background: #f6f8fa;
    border: 1px solid #e3e8ed;
}

.contact-form-header h2 {
    color: var(--dark-navy);
    font-size: 35px;
    line-height: 1.2;
    margin: 10px 0 12px;
}

.contact-form-header h2 span {
    color: var(--primary-red);
}

.contact-form-header p {
    color: #687887;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-form {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--dark-navy);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--primary-red);
}

.input-box {
    position: relative;
}

.input-box > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa6b0;
    font-size: 14px;
    z-index: 2;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    border: 1px solid #dce3e8;
    background: #fff;
    color: var(--dark-navy);
    padding: 14px 15px 14px 44px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: .25s ease;
    border-radius: 0;
}

.input-box textarea {
    min-height: 130px;
    resize: vertical;
    padding-top: 15px;
}

.textarea-box > i {
    top: 18px;
    transform: none;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(215,25,32,.07);
}

.select-box select {
    appearance: none;
    cursor: pointer;
}

.contact-submit {
    width: 100%;
    justify-content: center;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8a969f;
    font-size: 11px;
    margin: 14px 0 0;
}

.form-note i {
    color: #25a65a;
}


/* HONEYPOT */

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* =====================================================
   CONTACT SERVICES
===================================================== */

.contact-services {
    padding: 90px 0;
    background: #f6f8fa;
}

.contact-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.contact-service-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #e4e9ee;
    text-decoration: none;
    transition: .3s ease;
}

.contact-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(9,41,68,.08);
}

.contact-service-card > i {
    color: var(--primary-red);
    font-size: 27px;
    margin-bottom: 22px;
}

.contact-service-card h3 {
    color: var(--dark-navy);
    font-size: 17px;
    margin-bottom: 18px;
}

.contact-service-card span {
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 800;
}

.contact-service-card span i {
    margin-left: 6px;
}


/* =====================================================
   LOCATION
===================================================== */

.contact-location {
    padding: 90px 0;
    background: #fff;
}

.contact-location-box {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 400px;
    background: var(--dark-navy);
}

.contact-location-content {
    padding: 55px;
}

.contact-location-content .eyebrow {
    color: rgba(255,255,255,.6);
}

.contact-location-content h2 {
    color: #fff;
    font-size: 38px;
    line-height: 1.15;
    margin: 12px 0 18px;
}

.contact-location-content h2 span {
    color: var(--primary-red);
}

.contact-location-content p {
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    margin-bottom: 28px;
}

.map-placeholder {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(215,25,32,.06), rgba(215,25,32,.06)),
        #e9eef2;
}

.map-placeholder-inner {
    text-align: center;
}

.map-placeholder-inner > i {
    color: var(--primary-red);
    font-size: 42px;
    margin-bottom: 15px;
}

.map-placeholder-inner h3 {
    color: var(--dark-navy);
    font-size: 20px;
    margin-bottom: 7px;
}

.map-placeholder-inner p {
    color: #687887;
    margin-bottom: 18px;
}

.map-placeholder-inner a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.map-placeholder-inner a i {
    margin-left: 5px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.contact-final-cta {
    padding: 80px 0;
    background: #f6f8fa;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .contact-grid {
        gap: 45px;
    }

    .contact-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 992px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-location-box {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        min-height: 320px;
    }

}


@media (max-width: 767px) {

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-service-grid {
        grid-template-columns: 1fr;
    }

    .contact-location {
        padding: 60px 0;
    }

    .contact-location-content {
        padding: 35px 25px;
    }

    .map-placeholder {
        min-height: 280px;
    }

}


@media (max-width: 480px) {

    .contact-whatsapp {
        padding: 16px;
    }

    .contact-whatsapp > i {
        display: none;
    }

}

/* =========================================================
   RAPID FIRE PREVENTION
   PRODUCTS PAGE CSS
   ========================================================= */

/* ---------- Product Page Variables ---------- */

:root {
    --product-red: #d71920;
    --product-red-dark: #b51218;
    --product-navy: #123b63;
    --product-dark-navy: #092944;
    --product-blue: #174e7e;
    --product-light: #f5f8fb;
    --product-border: #e4eaf0;
    --product-text: #263746;
    --product-muted: #687786;
    --product-white: #ffffff;
    --product-shadow: 0 12px 35px rgba(9, 41, 68, 0.10);
    --product-radius: 14px;
}


/* =========================================================
   PRODUCTS HERO
   ========================================================= */



/* =========================================================
   PRODUCT INTRO
   ========================================================= */

.products-intro {
    padding: 90px 20px 55px;
    background: #ffffff;
}

.products-intro-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.products-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.products-intro-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--product-red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.products-intro-content h2 {
    margin: 0 0 20px;
    color: var(--product-dark-navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
}

.products-intro-content h2 span {
    color: var(--product-red);
}

.products-intro-content p {
    margin: 0 0 18px;
    color: var(--product-muted);
    font-size: 16px;
    line-height: 1.85;
}

.products-intro-content p:last-child {
    margin-bottom: 0;
}


/* ---------- Intro Highlight Box ---------- */

.products-intro-highlight {
    position: relative;
    padding: 34px;
    border-radius: var(--product-radius);
    background: linear-gradient(
        145deg,
        var(--product-navy),
        var(--product-dark-navy)
    );
    box-shadow: var(--product-shadow);
    overflow: hidden;
}

.products-intro-highlight::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border: 25px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.products-intro-highlight::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -50px;
    width: 180px;
    height: 180px;
    border: 20px solid rgba(215, 25, 32, 0.12);
    border-radius: 50%;
}

.products-intro-highlight h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 750;
}

.products-intro-highlight p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
}

.products-intro-highlight ul {
    position: relative;
    z-index: 2;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.products-intro-highlight li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 14px;
    line-height: 1.5;
}

.products-intro-highlight li:last-child {
    margin-bottom: 0;
}

.products-intro-highlight li i {
    flex: 0 0 18px;
    margin-top: 3px;
    color: #ffffff;
}


/* =========================================================
   PRODUCT QUICK NAVIGATION
   ========================================================= */

.product-quick-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--product-border);
    border-bottom: 1px solid var(--product-border);
    box-shadow: 0 5px 20px rgba(9, 41, 68, 0.06);
    backdrop-filter: blur(12px);
}

.product-quick-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--product-red) transparent;
}

.product-quick-nav-inner::-webkit-scrollbar {
    height: 4px;
}

.product-quick-nav-inner::-webkit-scrollbar-track {
    background: transparent;
}

.product-quick-nav-inner::-webkit-scrollbar-thumb {
    background: var(--product-red);
    border-radius: 10px;
}

.product-quick-nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 17px;
    border: 1px solid var(--product-border);
    border-radius: 50px;
    background: #ffffff;
    color: var(--product-navy);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.product-quick-nav a:hover {
    background: var(--product-red);
    border-color: var(--product-red);
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   PRODUCTS LIST / SECTIONS
   ========================================================= */

.products-list {
    background: var(--product-light);
}

.product-section {
    position: relative;
    padding: 95px 20px;
    scroll-margin-top: 95px;
}

.product-section:nth-child(even) {
    background: #ffffff;
}

.product-section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-section-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.product-section.reverse .product-section-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.product-section.reverse .product-section-image {
    order: 2;
}

.product-section.reverse .product-section-content {
    order: 1;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.product-section-image {
    position: relative;
}

.product-image-wrapper {
    position: relative;
    min-height: 410px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(9, 41, 68, 0.12);
}

.product-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(9, 41, 68, 0) 45%,
        rgba(9, 41, 68, 0.32) 100%
    );
    pointer-events: none;
}

.product-image-wrapper img {
    display: block;
    width: 100%;
    height: 410px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-image-wrapper:hover img {
    transform: scale(1.05);
}


/* ---------- Image Badge ---------- */

.product-image-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--product-navy);
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image-badge i {
    color: var(--product-red);
}


/* ---------- Floating Number ---------- */

.product-number {
    position: absolute;
    top: -18px;
    left: -18px;
    z-index: 5;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--product-red);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(215, 25, 32, 0.28);
}


/* =========================================================
   PRODUCT CONTENT
   ========================================================= */

.product-section-content .product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--product-red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.product-section-content .product-tag::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--product-red);
    border-radius: 5px;
}

.product-section-content h2 {
    margin: 0 0 18px;
    color: var(--product-dark-navy);
    font-size: clamp(29px, 3.5vw, 43px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.product-section-content > p {
    margin: 0 0 22px;
    color: var(--product-muted);
    font-size: 15.5px;
    line-height: 1.85;
}


/* =========================================================
   PRODUCT FEATURE LIST
   ========================================================= */

.product-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 25px 0 28px;
    padding: 0;
    list-style: none;
}

.product-features li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid var(--product-border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--product-text);
    font-size: 13.5px;
    line-height: 1.5;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.product-features li:hover {
    border-color: rgba(215, 25, 32, 0.25);
    box-shadow: 0 7px 20px rgba(9, 41, 68, 0.07);
    transform: translateY(-2px);
}

.product-features li i {
    flex: 0 0 17px;
    margin-top: 2px;
    color: var(--product-red);
    font-size: 13px;
}


/* =========================================================
   PRODUCT BUTTONS
   ========================================================= */

.product-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.product-btn-primary {
    background: var(--product-red);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(215, 25, 32, 0.20);
}

.product-btn-primary:hover {
    background: var(--product-red-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(215, 25, 32, 0.28);
}

.product-btn-secondary {
    border: 1px solid var(--product-navy);
    background: #ffffff;
    color: var(--product-navy);
}

.product-btn-secondary:hover {
    background: var(--product-navy);
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   PRODUCT INFORMATION BOX
   ========================================================= */

.product-info-box {
    margin-top: 25px;
    padding: 20px 22px;
    border-left: 4px solid var(--product-red);
    border-radius: 0 10px 10px 0;
    background: #f7f9fb;
}

.product-info-box h4 {
    margin: 0 0 7px;
    color: var(--product-navy);
    font-size: 15px;
    font-weight: 800;
}

.product-info-box p {
    margin: 0;
    color: var(--product-muted);
    font-size: 13.5px;
    line-height: 1.7;
}


/* =========================================================
   OTHER PRODUCTS
   ========================================================= */

.other-products {
    padding: 95px 20px;
    background: var(--product-light);
}

.other-products-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.other-products-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.other-products-heading .section-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--product-red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.other-products-heading h2 {
    margin: 0 0 15px;
    color: var(--product-dark-navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
}

.other-products-heading p {
    margin: 0;
    color: var(--product-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* ---------- Other Product Grid ---------- */

.other-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.other-product-card {
    position: relative;
    padding: 28px 22px;
    border: 1px solid var(--product-border);
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 8px 25px rgba(9, 41, 68, 0.05);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.other-product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--product-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.other-product-card:hover {
    border-color: rgba(215, 25, 32, 0.20);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(9, 41, 68, 0.10);
}

.other-product-card:hover::before {
    transform: scaleX(1);
}

.other-product-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(215, 25, 32, 0.08);
    color: var(--product-red);
    font-size: 25px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.other-product-card:hover .other-product-icon {
    background: var(--product-red);
    color: #ffffff;
}

.other-product-card h3 {
    margin: 0 0 9px;
    color: var(--product-navy);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.other-product-card p {
    margin: 0;
    color: var(--product-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   COMPLETE SOLUTIONS STRIP
   ========================================================= */

.products-solution-strip {
    position: relative;
    padding: 70px 20px;
    background:
        linear-gradient(
            110deg,
            var(--product-dark-navy),
            var(--product-navy)
        );
    overflow: hidden;
}

.products-solution-strip::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 70px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.products-solution-strip::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(215, 25, 32, 0.09);
    border-radius: 50%;
}

.products-solution-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.products-solution-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.products-solution-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff6970;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.products-solution-content h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
}

.products-solution-content p {
    margin: 0;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
}

.products-solution-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.products-solution-points li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 13px;
    font-weight: 600;
}

.products-solution-points li i {
    color: #ffffff;
}

.products-solution-action {
    display: flex;
    justify-content: flex-end;
}

.products-solution-action .product-btn {
    min-width: 190px;
    background: #ffffff;
    color: var(--product-navy);
}

.products-solution-action .product-btn:hover {
    background: var(--product-red);
    color: #ffffff;
}


/* =========================================================
   PRODUCT CTA
   ========================================================= */

.products-cta {
    padding: 95px 20px;
    background: #ffffff;
}

.products-cta-container {
    position: relative;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 65px 60px;
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #ffffff
        );
    border: 1px solid var(--product-border);
    text-align: center;
    box-shadow: var(--product-shadow);
    overflow: hidden;
}

.products-cta-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: var(--product-red);
}

.products-cta-container::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 230px;
    height: 230px;
    border: 45px solid rgba(18, 59, 99, 0.045);
    border-radius: 50%;
}

.products-cta-container .section-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 12px;
    color: var(--product-red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.products-cta-container h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 15px;
    color: var(--product-dark-navy);
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.15;
    font-weight: 800;
}

.products-cta-container p {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto 28px;
    color: var(--product-muted);
    font-size: 15px;
    line-height: 1.8;
}

.products-cta-actions {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   ANCHOR SCROLL FIX
   ========================================================= */

#fire-extinguishers,
#fire-hydrant-system,
#fire-sprinkler-system,
#fire-alarm-system,
#fire-detectors,
#fire-hose-hose-reel,
#fire-pumps {
    scroll-margin-top: 100px;
}


/* =========================================================
   COMMON PRODUCT CARD SUPPORT
   ========================================================= */

.products-page .product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--product-radius);
    background: #ffffff;
    border: 1px solid var(--product-border);
    box-shadow: 0 8px 25px rgba(9, 41, 68, 0.06);
}

.products-page .product-card img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
}

.products-page .product-card-content {
    padding: 24px;
}

.products-page .product-card-content h3 {
    margin: 0 0 10px;
    color: var(--product-navy);
    font-size: 19px;
    font-weight: 800;
}

.products-page .product-card-content p {
    margin: 0;
    color: var(--product-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   IMAGE FALLBACK
   ========================================================= */

.product-image-wrapper img {
    background: #eef2f6;
}

.product-image-wrapper img[src=""],
.product-image-wrapper img:not([src]) {
    display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .products-page .page-hero {
        min-height: 350px;
    }

    .products-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-section {
        padding: 75px 20px;
    }

    .product-section-grid,
    .product-section.reverse .product-section-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .product-section.reverse .product-section-image {
        order: 1;
    }

    .product-section.reverse .product-section-content {
        order: 2;
    }

    .product-image-wrapper,
    .product-image-wrapper img {
        height: 390px;
        min-height: 390px;
    }

    .other-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-solution-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .products-solution-action {
        justify-content: flex-start;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .products-page .page-hero {
        min-height: 330px;
    }

    .products-page .page-hero-content {
        padding: 55px 20px 85px;
    }

    .products-page .page-hero h1 {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .products-page .page-hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .products-intro {
        padding: 65px 18px 40px;
    }

    .products-intro-content h2 {
        font-size: 31px;
    }

    .products-intro-highlight {
        padding: 26px 22px;
    }

    .product-quick-nav {
        padding: 11px 14px;
    }

    .product-quick-nav-inner {
        gap: 8px;
    }

    .product-quick-nav a {
        min-height: 38px;
        padding: 8px 13px;
        font-size: 12px;
    }

    .product-section {
        padding: 65px 18px;
        scroll-margin-top: 75px;
    }

    .product-section-grid,
    .product-section.reverse .product-section-grid {
        gap: 32px;
    }

    .product-image-wrapper,
    .product-image-wrapper img {
        height: 300px;
        min-height: 300px;
    }

    .product-number {
        top: -10px;
        left: -5px;
        width: 48px;
        height: 48px;
        font-size: 15px;
    }

    .product-image-badge {
        left: 14px;
        bottom: 14px;
        padding: 9px 13px;
        font-size: 11px;
    }

    .product-section-content h2 {
        font-size: 30px;
    }

    .product-section-content > p {
        font-size: 14.5px;
    }

    .product-features {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .product-features li {
        padding: 11px 12px;
        font-size: 13px;
    }

    .product-actions {
        width: 100%;
    }

    .product-btn {
        flex: 1 1 auto;
        min-height: 46px;
        padding: 11px 16px;
        font-size: 13px;
    }

    .other-products {
        padding: 65px 18px;
    }

    .other-products-heading {
        margin-bottom: 35px;
    }

    .other-products-heading h2 {
        font-size: 31px;
    }

    .other-products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .other-product-card {
        padding: 24px 20px;
    }

    .products-solution-strip {
        padding: 65px 18px;
    }

    .products-solution-content h2 {
        font-size: 31px;
    }

    .products-solution-points {
        grid-template-columns: 1fr;
    }

    .products-solution-action {
        justify-content: stretch;
    }

    .products-solution-action .product-btn {
        width: 100%;
    }

    .products-cta {
        padding: 65px 18px;
    }

    .products-cta-container {
        padding: 45px 25px;
        border-radius: 15px;
    }

    .products-cta-container h2 {
        font-size: 31px;
    }

    .products-cta-actions {
        flex-direction: column;
    }

    .products-cta-actions .product-btn {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .products-page .page-hero {
        min-height: 300px;
    }

    .products-page .page-hero h1 {
        font-size: 33px;
    }

    .products-page .page-hero p {
        font-size: 14px;
    }

    .product-image-wrapper,
    .product-image-wrapper img {
        height: 250px;
        min-height: 250px;
    }

    .product-section-content h2 {
        font-size: 27px;
    }

    .product-section-content .product-tag {
        font-size: 11px;
    }

    .product-info-box {
        padding: 17px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-btn {
        width: 100%;
    }

    .other-products-heading h2,
    .products-solution-content h2,
    .products-cta-container h2 {
        font-size: 28px;
    }

    .products-cta-container {
        padding: 38px 20px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .product-image-wrapper img,
    .product-quick-nav a,
    .product-features li,
    .product-btn,
    .other-product-card,
    .other-product-icon,
    .other-product-card::before {
        transition: none !important;
    }
}


/* =========================================================
   CERTIFICATES PAGE
========================================================= */


.certificates-section {
    padding: 90px 20px;
    background: #f5f8fb;
}

.certificates-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.certificates-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.certificates-heading .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.certificates-heading h2 {
    margin: 0 0 15px;
    color: #092944;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.15;
    font-weight: 800;
}

.certificates-heading p {
    margin: 0;
    color: #687786;
    font-size: 15px;
    line-height: 1.8;
}


/* GRID */

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* CARD */

.certificate-card {
    overflow: hidden;
    border: 1px solid #e4eaf0;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(9, 41, 68, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(9, 41, 68, 0.12);
}


/* IMAGE */

.certificate-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef2f6;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #ffffff;
    transition: transform 0.5s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.03);
}


/* VIEW ICON */

.certificate-view {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #ffffff;
    color: #123b63;

    cursor: pointer;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.certificate-view:hover {
    background: #d71920;
    color: #ffffff;
    transform: scale(1.08);
}


/* CONTENT */

.certificate-content {
    padding: 23px;
}

.certificate-number {
    display: block;
    margin-bottom: 7px;

    color: #d71920;
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.certificate-content h3 {
    margin: 0 0 17px;

    color: #123b63;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
}


/* BUTTON */

.certificate-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 0;

    border: 0;
    background: transparent;

    color: #d71920;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
}

.certificate-open-btn i {
    transition: transform 0.25s ease;
}

.certificate-open-btn:hover i {
    transform: translateX(4px);
}


/* EMPTY */

.certificates-empty {
    max-width: 600px;
    margin: 20px auto 0;
    padding: 70px 30px;

    border: 2px dashed #dce3e9;
    border-radius: 15px;

    background: #ffffff;

    text-align: center;
}

.certificates-empty-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(215, 25, 32, 0.08);
    color: #d71920;

    font-size: 28px;
}

.certificates-empty h3 {
    margin: 0 0 10px;
    color: #123b63;
    font-size: 22px;
}

.certificates-empty p {
    margin: 0;
    color: #687786;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.certificate-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(4, 18, 30, 0.92);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.certificate-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.certificate-lightbox-inner {
    position: relative;

    width: min(1100px, 100%);
    max-height: 92vh;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;
}

.certificate-lightbox-inner img {
    max-width: 100%;
    max-height: 82vh;

    display: block;

    border-radius: 8px;

    background: #ffffff;

    object-fit: contain;

    box-shadow: 0 20px 70px rgba(0,0,0,0.35);
}

.certificate-close {
    position: absolute;

    top: -20px;
    right: -20px;

    width: 45px;
    height: 45px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #ffffff;
    color: #123b63;

    font-size: 18px;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.certificate-close:hover {
    background: #d71920;
    color: #ffffff;
}

.certificate-lightbox-title {
    margin-top: 15px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-align: center;
}

body.certificate-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .certificates-page .page-hero {
        min-height: 310px;
    }

    .certificates-section {
        padding: 65px 18px;
    }

    .certificates-heading {
        margin-bottom: 35px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .certificate-content {
        padding: 20px;
    }

    .certificate-lightbox {
        padding: 15px;
    }

    .certificate-close {
        top: -10px;
        right: -5px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .certificate-image {
        aspect-ratio: 4 / 3;
    }

    .certificate-content h3 {
        font-size: 17px;
    }

}


/* =========================================================
   FIRE NOC + FIRE SAFETY AMC
   Additional Service Section CSS
========================================================= */

#fire-noc-assistance,
#fire-safety-amc {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
    scroll-margin-top: 100px;
}

#fire-noc-assistance.service-section-alt {
    background: #f7f9fc;
}

/* Main Container */
#fire-noc-assistance .service-section-container,
#fire-safety-amc .service-section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid */
#fire-noc-assistance .service-section-grid,
#fire-safety-amc .service-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

/* =========================================================
   IMAGE
========================================================= */

#fire-noc-assistance .service-section-image,
#fire-safety-amc .service-section-image {
    position: relative;
    width: 100%;
}

#fire-noc-assistance .service-image-wrapper,
#fire-safety-amc .service-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 18px;
    background: #eef2f6;
    box-shadow: 0 20px 45px rgba(9, 41, 68, 0.15);
}

#fire-noc-assistance .service-image-wrapper img,
#fire-safety-amc .service-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

#fire-noc-assistance .service-image-wrapper:hover img,
#fire-safety-amc .service-image-wrapper:hover img {
    transform: scale(1.04);
}

/* Number Badge */
#fire-noc-assistance .service-number,
#fire-safety-amc .service-number {
    position: absolute;
    left: 22px;
    bottom: 22px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d71920;
    color: #ffffff;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 800;

    border: 4px solid #ffffff;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   CONTENT
========================================================= */

#fire-noc-assistance .service-section-content,
#fire-safety-amc .service-section-content {
    width: 100%;
}

#fire-noc-assistance .service-tag,
#fire-safety-amc .service-tag {
    display: inline-block;

    margin-bottom: 14px;

    color: #d71920;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#fire-noc-assistance .service-section-content h2,
#fire-safety-amc .service-section-content h2 {
    margin: 0 0 20px;

    color: #092944;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 800;
}

#fire-noc-assistance .service-section-content h2 span,
#fire-safety-amc .service-section-content h2 span {
    display: block;
    color: #d71920;
}

#fire-noc-assistance .service-section-content p,
#fire-safety-amc .service-section-content p {
    margin: 0 0 18px;

    color: #5d6875;

    font-size: 16px;
    line-height: 1.8;
}

/* Heading 4 */
#fire-noc-assistance .service-section-content h4,
#fire-safety-amc .service-section-content h4 {
    margin: 28px 0 18px;

    color: #123b63;

    font-size: 19px;
    font-weight: 750;
}

/* =========================================================
   FEATURES
========================================================= */

#fire-noc-assistance .service-features,
#fire-safety-amc .service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 25px;

    margin-bottom: 30px;
}

#fire-noc-assistance .service-features > div,
#fire-safety-amc .service-features > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: #394653;

    font-size: 15px;
    line-height: 1.5;
}

#fire-noc-assistance .service-features i,
#fire-safety-amc .service-features i {
    flex-shrink: 0;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    background: rgba(215, 25, 32, 0.10);
    color: #d71920;

    border-radius: 50%;

    font-size: 11px;
}

/* =========================================================
   BUTTON
========================================================= */

#fire-noc-assistance .service-btn,
#fire-safety-amc .service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 24px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

#fire-noc-assistance .service-btn-primary,
#fire-safety-amc .service-btn-primary {
    background: #d71920;
    color: #ffffff;

    box-shadow: 0 8px 20px rgba(215, 25, 32, 0.18);
}

#fire-noc-assistance .service-btn-primary:hover,
#fire-safety-amc .service-btn-primary:hover {
    background: #b51218;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(215, 25, 32, 0.25);
}

#fire-noc-assistance .service-btn i,
#fire-safety-amc .service-btn i {
    transition: transform 0.3s ease;
}

#fire-noc-assistance .service-btn:hover i,
#fire-safety-amc .service-btn:hover i {
    transform: translateX(4px);
}

/* =========================================================
   ALTERNATE LAYOUT - FIRE NOC
========================================================= */

#fire-noc-assistance .service-section-grid {
    grid-template-columns: 1fr 1fr;
}

/* AMC image on right / content on left */
#fire-safety-amc .service-section-grid {
    grid-template-columns: 1fr 1fr;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    #fire-noc-assistance,
    #fire-safety-amc {
        padding: 75px 0;
    }

    #fire-noc-assistance .service-section-grid,
    #fire-safety-amc .service-section-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    #fire-noc-assistance .service-image-wrapper,
    #fire-safety-amc .service-image-wrapper {
        height: 430px;
    }

    #fire-noc-assistance .service-section-content h2,
    #fire-safety-amc .service-section-content h2 {
        font-size: 36px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    #fire-noc-assistance,
    #fire-safety-amc {
        padding: 60px 0;
    }

    #fire-noc-assistance .service-section-container,
    #fire-safety-amc .service-section-container {
        padding: 0 16px;
    }

    #fire-noc-assistance .service-section-grid,
    #fire-safety-amc .service-section-grid {
        gap: 32px;
    }

    #fire-noc-assistance .service-image-wrapper,
    #fire-safety-amc .service-image-wrapper {
        height: 320px;
        border-radius: 14px;
    }

    #fire-noc-assistance .service-number,
    #fire-safety-amc .service-number {
        width: 50px;
        height: 50px;

        left: 15px;
        bottom: 15px;

        font-size: 16px;
    }

    #fire-noc-assistance .service-section-content h2,
    #fire-safety-amc .service-section-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    #fire-noc-assistance .service-section-content p,
    #fire-safety-amc .service-section-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    #fire-noc-assistance .service-features,
    #fire-safety-amc .service-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    #fire-noc-assistance .service-btn,
    #fire-safety-amc .service-btn {
        width: 100%;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    #fire-noc-assistance .service-image-wrapper,
    #fire-safety-amc .service-image-wrapper {
        height: 280px;
    }

    #fire-noc-assistance .service-section-content h2,
    #fire-safety-amc .service-section-content h2 {
        font-size: 27px;
    }

    #fire-noc-assistance .service-tag,
    #fire-safety-amc .service-tag {
        font-size: 12px;
    }
}