/* --- Global Reset & Variables --- */
:root {
    --primary-color: #d93838;
    /* Bright Fire Red */
    --primary-dark: #b32424;
    --secondary-color: #0f172a;
    /* Deep Slate Blue */
    --text-color: #334155;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

/* --- Top Bar Styling --- */
.top-bar {
    background-color: var(--secondary-color);
    color: #cbd5e1;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #1e293b;
}

.top-bar-content {
    display: flex;
    justify-content: start;
    gap: 24px;
}

.contact-info-left {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    margin-left: auto;
}

.info-item {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    color: #cbd5e1;
    text-decoration: none;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 6px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.portal-link:hover {
    color: var(--white);
}

.btn-top-contact {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-top-contact:hover {2
    background-color: var(--primary-dark);
}

/* --- Mobile Responsive Rules --- */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 5px 10px;
    }

    .contact-info-left {
        flex-direction: column; 
        align-items: center;
        gap: 8px;
        margin-left: 0;
        width: 100%;
    }

    .info-item {
        white-space: normal; 
        font-size: 12px;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }

    .btn-top-contact {
        width: 100%;
        max-width: 200px;
        padding: 6px 16px;
    }
}

/* --- Navigation Header --- */
.main-header {
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.main-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-graphic {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-meta h2 {
    font-size: 20px;
    color: red;
    font-weight: 700;
    line-height: 1.2;
}

.logo-meta span {
    font-size: 11px;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links-list {
    display: flex;
    justify-content: end;

    gap: 25px;
}

.nav-links-list a {
    font-weight: 500;
    color: #475569;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links-list a:hover,
.nav-links-list a.active {
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero-wrapper {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.sfs-prod-tag {
    background-color: rgba(217, 56, 56, 0.15);
    color: #ff6b6b;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 20px;
    border: 1px solid rgba(217, 56, 56, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-main-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-sub-desc {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
}

.btn-hero-prime {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(217, 56, 56, 0.4);
}

.btn-hero-prime:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-hero-sub {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-hero-sub:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-display-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

/* --- Feature Strip --- */
.feature-strip {
    background-color: var(--light-bg);
    border-bottom: 1px solid #e2e8f0;
    padding: 25px 0;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: center;
}

.strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: var(--secondary-color);
}

.strip-item i {
    color: var(--primary-color);
    font-size: 20px;
}

/* --- Global Section Headings --- */
.section-mini-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.center-heading-zone {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.center-heading-zone h2 {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 700;
}

/* --- About Section --- */
.about-section-block {
    padding: 80px 0;
}

.grid-two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.content-left h2 {
    font-size: 34px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-left p {
    margin-bottom: 30px;
    color: #475569;
}

.about-points-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-mini-card {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.about-mini-card i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-mini-card h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.about-mini-card p {
    font-size: 13px;
    margin: 0;
}

.about-main-img {
    width: 100%;
    border-radius: 12px;
}

/* --- Services Section --- */
.services-section-block {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.services-triple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-promo-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.service-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.srv-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(217, 56, 56, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-promo-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-promo-card p {
    font-size: 14px;
    color: #64748b;
}

/* --- Services Section Core Layout --- */
.services-section-block {
    padding: 80px 0;
}

.services-triple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* --- Fire NOC Advisory Block Style --- */
.fire-noc-section {
    margin-top: 60px;
    border-top: 1px solid #1e293b;
    padding-top: 50px;
}

.noc-heading-zone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.noc-mini-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
    margin-bottom: 12px;
}

.noc-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.noc-sub-desc {
    color: #cbd5e1;
    max-width: 600px;
    font-size: 15px;
    line-height: 1.6;
}

/* --- NOC Process Grid Layout (Square Aesthetic) --- */
.noc-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.noc-process-card {
    background: #0f172a;
    padding: 40px;
    border: 1px solid #1e293b;
    border-radius: 0px; /* Square Theme */
    transition: all 0.3s ease;
}

.noc-process-card:hover {
    transform: translateY(-5px);
    border-color: #34495e;
}

.noc-icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px; /* Square Theme */
    margin-bottom: 30px;
}

.noc-icon-box i {
    font-size: 30px;
}

/* Steps Color Coding */
.step-1-icon { background: rgba(52, 152, 219, 0.1); border: 1px solid #3498db; }
.step-1-icon i { color: #3498db; }
.step-1-bullets i { color: #3498db; margin-right: 10px; }

.step-2-icon { background: rgba(241, 196, 15, 0.1); border: 1px solid #f1c40f; }
.step-2-icon i { color: #f1c40f; }
.step-2-bullets i { color: #f1c40f; margin-right: 10px; }

.step-3-icon { background: rgba(46, 204, 113, 0.1); border: 1px solid #2ecc71; }
.step-3-icon i { color: #2ecc71; }
.step-3-bullets i { color: #2ecc71; margin-right: 10px; }

.process-step-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7f8c8d;
    margin-bottom: 10px;
    display: block;
}

.noc-process-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.noc-process-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bullet-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .services-triple-grid, .noc-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .noc-heading-zone {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .services-triple-grid, .noc-process-grid {
        grid-template-columns: 1fr;
    }
    .noc-main-title {
        font-size: 26px;
    }
}
/* --- 5-Types Products Showcase Section --- */
.products-showcase-section {
    padding: 80px 0;
}

.products-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--white);
    z-index: 10;
}

/* Custom Extinguisher Badge Colors */
.badge.powder {
    background-color: #3498db;
}

.badge.co2 {
    background-color: #2c3e50;
}

.badge.foam {
    background-color: #f1c40f;
    color: #000;
}

.badge.chemical {
    background-color: #e67e22;
}

.badge.water {
    background-color: #2ecc71;
}

.prod-img-box {
    background-color: #fafafa;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.prod-img-box img {
    max-height: 160px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .prod-img-box img {
    transform: scale(1.05);
}

.prod-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prod-details h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.prod-details p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    border-top: 1px dashed #e2e8f0;
    padding-top: 10px;
}

.price-tag span {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

/* --- Safety Matrix & Sidebar --- */
.matrix-section-block {
    background-color: var(--light-bg);
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
}

.grid-matrix {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: start;
}

.matrix-table-space {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
}

.matrix-header-box {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px;
}

.matrix-header-box h3 {
    font-size: 18px;
    font-weight: 600;
}

.table-scroll-container {
    overflow-x: auto;
}

.data-matrix-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.data-matrix-table th,
.data-matrix-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.data-matrix-table th {
    background-color: #f1f5f9;
    color: var(--secondary-color);
    font-weight: 600;
}

.td-best {
    color: #27ae60;
    font-weight: 500;
}

.td-avoid {
    color: #c0392b;
}

.matrix-sidebar-cta {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 35px;
    border-radius: 8px;
}

.sidebar-tag {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.matrix-sidebar-cta h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.matrix-sidebar-cta p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.bullet-checklist {
    margin-bottom: 30px;
}

.bullet-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.bullet-checklist li i {
    color: var(--primary-color);
}

.sidebar-action-btn {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-action-btn:hover {
    background-color: var(--primary-dark);
}

/* --- Footer Area --- */
.site-footer {
    background-color: #0b0f19;
    color: #94a3b8;
    padding: 60px 0 20px 0;
    font-size: 14px;
}

.footer-layout-grid {
    display: grid;
    grid-template-columns: 1fr 0.6fr 1.4fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-column h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-brand-column p {
    margin-bottom: 20px;
    font-size: 13px;
}

.footer-social-tray {
    display: flex;
    gap: 12px;
}

.footer-social-tray a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social-tray a:hover {
    background-color: var(--primary-color);
}

.footer-links-column h4,
.footer-contact-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    transition: var(--transition);
    font-size: 13px;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-row i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact-row span {
    display: block;
    font-size: 11px;
    color: #64748b;
}

.footer-highlight-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-highlight-link:hover {
    color: var(--primary-color);
}

.footer-text-light {
    color: #cbd5e1;
    font-size: 13px;
}

.footer-copyright-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #475569;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {

    .hero-grid-layout,
    .grid-two-col,
    .grid-matrix,
    .footer-layout-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-space {
        max-width: 500px;
        margin: 0 auto;
    }

    .main-header-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .nav-links-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }

    .hero-main-title {
        font-size: 32px;
    }

    .hero-btn-group {
        flex-direction: column;
    }

    .about-points-container {
        grid-template-columns: 1fr;
    }
}



.logo-graphic {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* --- FAQ Accordion Section Styling --- */
.faq-section-block {
    padding: 0 0 60px 0;
    background-color: #fafcfb; 
}

.faq-accordion-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: #e74c3c; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; 
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question .ac-icon {
    font-size: 14px;
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question .ac-icon {
    transform: rotate(180deg); 
    color: #e74c3c;
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section-block {
        padding: 40px 15px;
    }
    .faq-question {
        padding: 14px 16px;
        font-size: 15px;
    }
    .faq-answer {
        padding: 0 16px 16px 16px;
        padding-top: 12px;
        font-size: 13.5px;
    }
}