:root {
    --primary-blue: #0056b3;
    --dark-bg: #2c3e50;
    --text-color: #333;
    --border-color: #e0e0e0;
}
/* General Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', sans-serif; background-color: #f5f7fa; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.flex-row { display: flex; align-items: center; justify-content: space-between; }

/* White Branding Row */
.header-main-row {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.brand-identity { display: flex; align-items: center; gap: 15px; }
.main-logo { height: 55px; width: auto; }

.company-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.company-info { font-size: 0.85rem; color: #666; }
.gst-tag { margin-left: 15px; color: #444; }

/* Contact & Buttons */
.header-actions { display: flex; align-items: center; gap: 20px; }

.contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    padding: 6px 15px;
    border-radius: 6px;
    background: #fff;
}

.call-text .label {
    display: block;
    font-weight: 700;
    color: #0056b3;
    font-size: 0.95rem;
}

.call-text .sub-label {
    font-size: 0.75rem;
    color: #888;
}

.btn-email-main {
    background: #0056b3;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-email-main:hover { background: #003d80; }

/* Dark Navigation Bar */
.nav-bar {
    background: #2c3e50;
    color: white;
}

.nav-menu { list-style: none; display: flex; }
.nav-menu li a {
    color: #dfe6e9;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s;
}

.nav-menu li a:hover { background: rgba(255,255,255,0.1); color: #fff; }

.menu-item-primary a {
    background: rgba(0,0,0,0.2);
    font-weight: 700;
}
/* ================= RESPONSIVE HEADER ================= */

/* Tablet */
@media (max-width: 992px) {

    .header-main-row .flex-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .company-title {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .brand-identity {
        gap: 10px;
    }

    .main-logo {
        height: 45px;
    }

    .company-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .header-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-pill {
        width: 100%;
        justify-content: center;
    }

    .btn-email-main {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }

    /* NAVIGATION */
    .nav-container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        padding: 10px;
    }

    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        background: #fff;
        margin: 5px 0;
    }

    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c3e50;
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu li a {
        padding: 12px 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

/* Hide hamburger on desktop */
/* @media (min-width: 769px) {
 .mobile-menu-toggle {
        display: none;
    }
} */
/* .mobile-menu-toggle {
    display: block;
    cursor: pointer;
    padding: 8px;
    width: 50px;          
    flex-shrink: 0;       
} */

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;          /* fixed line width */
    background: #fff;
    margin: 5px 0;
}

/* Align it properly in navbar */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Hide on desktop */
.mobile-menu-toggle {
    display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        width: 30px;
        flex-shrink: 0;
    }
}
/* Product Cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; padding: 40px 0; }
.product-card { background: #fff; border: 1px solid var(--border-color); border-radius: 4px; overflow: hidden; transition: box-shadow 0.3s; }
.product-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.card-img-container { width: 100%; background: #eee; }
.card-img-container img { width: 100%; height: 100%; }
.card-content { width: 100%; padding: 20px; }
.p-title { margin: 0 0 10px; font-size: 1.1rem; text-transform: capitalize; }
.p-price { color: var(--primary-blue); font-size: 1.3rem; font-weight: bold; margin: 0 0 15px; }
.p-specs { list-style: none; padding: 0; margin: 0 0 20px; font-size: 0.85rem; line-height: 1.6; }
.btn-get-quote { background: var(--primary-blue); color: white; border: none; width: 100%; padding: 12px; border-radius: 4px; font-weight: bold; cursor: pointer; }

/* Modal */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 9999; align-items: center; justify-content: center; }
.modal-box { background: white; width: 90%; max-width: 700px; border-radius: 8px; position: relative; animation: fadeIn 0.3s; }
.modal-body { display: flex; }
.modal-product-view { width: 40%; padding: 25px; border-right: 1px solid #eee; background: #fbfbfb; }
.modal-product-view img { width: 100%; border-radius: 4px; margin-bottom: 15px; }
.modal-form-view { width: 60%; padding: 25px; }
.close-modal { position: absolute; right: 15px; top: 10px; font-size: 28px; cursor: pointer; color: #aaa; }
.form-group { margin: 20px 0; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; }
.form-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
.btn-submit { background: #28a745; color: white; border: none; width: 100%; padding: 15px; border-radius: 4px; font-size: 1rem; font-weight: bold; cursor: pointer; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Adjustment */
@media (max-width: 600px) {
    .product-card, .modal-body { flex-direction: column; }
    .card-img-container, .card-content, .modal-product-view, .modal-form-view { width: 100%; }
}
/* Company Profile Section */
.company-profile {
    padding: 60px 0;
    background-color: #fff;
}

.profile-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Left Column */
.profile-left { flex: 1; }
.welcome-text { font-size: 1.4rem; color: #444; letter-spacing: 1px; }
.profile-title { 
    font-size: 2.5rem; 
    color: #2c3e50; 
    margin: 10px 0 20px; 
    line-height: 1.2; 
}
.profile-desc { 
    color: #666; 
    line-height: 1.6; 
    margin-bottom: 20px; 
    font-size: 1.05rem; 
}
.read-more { color: #333; font-weight: bold; text-decoration: none; border-bottom: 1px solid #333; }

.cta-subtext { font-size: 0.9rem; color: #555; margin-bottom: 15px; font-weight: 500; }
.btn-contact-blue {
    background: #0056b3;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

/* Right Column Grid */
.profile-right { flex: 1.2; }
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #f4f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 4px;
}

.info-text { display: flex; flex-direction: column; }
.info-label { font-size: 0.85rem; color: #333; font-weight: 600; margin-bottom: 2px; }
.info-value { font-size: 0.9rem; color: #777; }

.trust-verified { grid-column: span 1; margin-top: 10px; }
.seal-bg { background: #fffbe6; border: 1px solid #ffe58f; }

/* Responsive */
@media (max-width: 992px) {
    .profile-flex { flex-direction: column; }
    .info-grid { grid-template-columns: 1fr; }
}
/* Product Range Section */
.product-range-section { padding: 40px 0; background: #fff; }
.section-header h2 { font-size: 1.5rem; color: #333; margin-bottom: 25px; }
.view-all-link { font-size: 0.9rem; color: #0056b3; text-decoration: none; margin-left: 10px; }

/* Horizontal Grid */
.product-slider { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    gap: 15px; 
}

.item-card { 
    border: 1px solid #e0e0e0; 
    border-radius: 8px; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    transition: transform 0.2s; 
}
.item-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.item-img { height: 200px; background: #f9f9f9; }
.item-img img { width: 100%; height: 100%; object-fit: contain; }

.item-info { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.item-name { font-size: 1rem; margin-bottom: 8px; color: #2c3e50; min-height: 40px; }
.item-price { color: #0056b3; font-weight: bold; font-size: 1.1rem; margin-bottom: 10px; }
.item-specs { list-style: none; padding: 0; margin-bottom: 15px; font-size: 0.8rem; color: #666; line-height: 1.5; }

.btn-action { 
    background: #0056b3; 
    color: #fff; 
    border: none; 
    padding: 10px; 
    border-radius: 4px; 
    cursor: pointer; 
    font-weight: 600;
    margin-top: auto; /* Pushes button to bottom */
}
.btn-action:hover { background: #004494; }
/* Videos */
.video-section { padding: 40px 0; background: #fff; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-thumbnail { position: relative; height: 200px; border-radius: 8px; overflow: hidden; background: #000; }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #fff; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #0056b3; font-size: 20px; cursor: pointer; }
.video-title { margin: 15px 0 10px; font-size: 0.95rem; font-weight: 500; }
.btn-quote-sm { background: #0056b3; color: white; border: none; padding: 8px 15px; border-radius: 4px; cursor: pointer; }

/* Ratings Section */
.ratings-section { padding: 40px 0; background: #f9f9f9; border-top: 1px solid #eee; }
.ratings-container { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 30px; }

.rating-avg { text-align: center; border-right: 1px solid #ddd; padding-right: 40px; }
.rating-avg .score { font-size: 2.5rem; font-weight: bold; }
.rating-avg .stars { color: #f1c40f; font-size: 1.2rem; }

.rating-bars { flex: 1; padding: 0 40px; }
.bar-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; margin-bottom: 8px; }
.progress { flex: 1; height: 10px; background: #eee; border-radius: 5px; overflow: hidden; }
.fill { height: 100%; background: #76b852; }

.satisfaction-metrics { border-left: 1px solid #ddd; padding-left: 40px; text-align: center; }
.satisfaction-metrics h3 { font-size: 1rem; margin-bottom: 20px; color: #555; }
.circles-flex { display: flex; gap: 15px; }

.stat-circle { position: relative; width: 70px; text-align: center; }
.stat-circle svg { width: 70px; height: 70px; }
.circle { stroke: #76b852; stroke-width: 2.8; fill: none; stroke-linecap: round; }
.stat-circle strong { position: absolute; top: 25px; left: 50%; transform: translateX(-50%); font-size: 0.8rem; }
.stat-circle span { display: block; font-size: 0.7rem; color: #666; margin-top: 5px; }

@media (max-width: 768px) {
    .video-grid, .ratings-container { flex-direction: column; grid-template-columns: 1fr; }
    .rating-avg, .satisfaction-metrics { border: none; padding: 0; }
}
/* Footer Styles */
.site-footer {
    position: relative;
    color: white;
}

.footer-contact-dark {
    background-color: #2c3e50;
    padding: 60px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* Contact Details */
.contact-info { flex: 1.5; }
.footer-heading { font-size: 1.5rem; margin-bottom: 25px; }
.contact-details p { margin-bottom: 5px; font-size: 0.95rem; color: #dfe6e9; }
.directions { color: white; text-decoration: none; display: inline-block; margin-top: 10px; font-weight: bold; }

.contact-methods { margin: 30px 0; }
.contact-methods p { font-size: 1.1rem; margin-bottom: 10px; }

.social-share { display: flex; align-items: center; gap: 15px; }
.social-icon { 
    width: 32px; height: 32px; border: 1px solid #fff; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    text-decoration: none; color: white; font-size: 0.8rem;
}

/* Form Box */
.requirement-box { flex: 1; }
.form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 8px;
    color: #333;
}
.form-wrapper label { display: block; font-size: 0.85rem; color: #666; margin-bottom: 10px; }
.form-wrapper textarea {
    width: 100%; height: 120px; border: 1px solid #ddd; border-radius: 4px;
    padding: 10px; resize: none; margin-bottom: 20px; font-family: inherit;
}
.btn-submit-footer {
    background: #0056b3; color: white; border: none; padding: 12px 40px;
    border-radius: 4px; font-weight: bold; cursor: pointer; width: 150px;
}

/* Light Section */
.footer-links-light {
    background: #fff;
    color: #333;
    padding: 40px 0;
    border-top: 1px solid #eee;
}
.links-grid { display: flex; justify-content: space-between; }
.link-col h4 { margin-bottom: 20px; font-size: 1.1rem; }
.link-col ul { list-style: none; padding: 0; }
.link-col ul li { margin-bottom: 10px; }
.link-col ul li a { text-decoration: none; color: #666; font-size: 0.9rem; }
.link-col ul li a:hover { color: #0056b3; }

.sub-links-flex { display: flex; gap: 40px; }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 45px; height: 45px; border-radius: 50%;
    background: #fff; border: 1px solid #ddd;
    cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .footer-grid, .links-grid { flex-direction: column; }
    .sub-links-flex { flex-direction: column; gap: 0; }
}

/* DETAIL PAGE*/
/* Sidebar Layout Container */
.sidebar-layout {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    align-items: flex-start;
}

/* Sticky Sidebar */
.product-sidebar {
    width: 280px;
    position: sticky;
    top: 20px; /* Keeps it fixed when scrolling */
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.sidebar-menu .menu-category { border-bottom: 1px solid #ddd; }
.cat-toggle { padding: 12px 15px; font-size: 0.9rem; cursor: pointer; display: flex; justify-content: space-between; background: #fff; }
.cat-list { list-style: none; padding: 10px 0; }
.cat-list li a { display: block; padding: 8px 25px; font-size: 0.85rem; color: #555; text-decoration: none; }
.cat-list li a.active { color: #0056b3; background: #eef4ff; border-right: 3px solid #0056b3; }

/* Main Product Feed */
.product-feed { flex: 1; }
.breadcrumb { font-size: 0.8rem; color: #888; margin-bottom: 10px; }
.main-title { font-size: 1.6rem; color: #2c3e50; margin-bottom: 15px; }

.detail-card { background: #fff; padding: 20px 0; margin-bottom: 40px; overflow: visible; }
.detail-title { font-size: 1.4rem; border-bottom: 2px solid #0056b3; display: inline-block; margin-bottom: 20px; }

.detail-grid {  display: grid;  align-items: flex-start;  grid-template-columns: 1fr 1fr; gap: 25px; }
.detail-img-box { position: sticky; top: 10px;  width: 100%; text-align: center; }
.detail-img-box img { width: 100%; border-radius: 4px; border: 1px solid #eee; }

.btn-best-quote { 
    margin-top: 15px; background: #fff; border: 2px solid #0056b3; color: #0056b3; 
    padding: 10px 30px; border-radius: 25px; font-weight: bold; cursor: pointer; 
}

.detail-specs-box { width: 105%; line-height: 1.6; }
.price-val { font-size: 1.5rem; color: #333; font-weight: bold; }
.latest-price-link { margin-left: 10px; color: #0056b3; font-weight: bold; }

.specs-table { width: 100%; margin: 20px 0; border-collapse: collapse; }
.specs-table td { padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid #f0f0f0; }
.specs-table td:first-child { color: #777; width: 40%; }

.request-callback { 
    background: #fff; border: 1px solid #0056b3; color: #0056b3; 
    padding: 8px 20px; border-radius: 20px; cursor: pointer; 
}

.detail-description { margin-top: 30px; border-top: 1px solid #eee; padding-top: 20px; }
.detail-description h3 { font-size: 1rem; margin-bottom: 10px; }
.detail-description p { font-size: 0.9rem; color: #555; line-height: 1.6; }

.divider { border: 0; border-top: 1px dashed #ccc; margin: 40px 0; }

/* Responsive */
@media (max-width: 992px) {
    .sidebar-layout { flex-direction: column; }
    .product-sidebar { width: 100%; position: static; }
    .detail-grid { flex-direction: column; overflow: visible;}
    .detail-img-box, .detail-specs-box { width: 100%; }
}
.btn-best-quote {
    margin-top: 15px;
    background: #fff;
    border: 2px solid #0056b3;
    color: #0056b3;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-best-quote:hover {
    background: #0056b3;
    color: #fff;
}

.request-callback {
    background: #f8f9fa;
    border: 1px solid #0056b3;
    color: #0056b3;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
}

.request-callback:hover {
    background: #eef4ff;
}

/* PRODUCT LIST*/
/* Layout Container */
.product-list-container {
    padding: 40px 0;
    background-color: #fff;
}

.page-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.page-description {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Responsive Grid */
.product-grid-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 20px;
}

/* Card Styling */
.category-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-img {
    padding: 15px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-content {
    padding: 15px;
    border-top: 1px solid #f0f0f0;
    flex-grow: 1;
}

.category-content h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

/* List Styling */
.sub-product-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.sub-product-list li {
    margin-bottom: 10px;
}

.sub-product-list li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.2s;
}

.sub-product-list li a:hover {
    color: #0056b3;
}

.view-all-link {
    display: inline-block;
    color: #333;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); } /* 2 columns on tablets */
}

@media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; } /* 1 column on mobile */
}
/* Layout */
.about-flex {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    align-items: flex-start;
}

.about-content { flex: 7; }
.about-sidebar { flex: 3; position: sticky; top: 20px; }

/* Typography */
.about-title { font-size: 28px; margin-bottom: 20px; color: #333; }
.about-section { margin-bottom: 35px; line-height: 1.7; color: #444; }
.about-section h2 { 
    font-size: 18px; 
    color: #0056b3; 
    border-bottom: 2px solid #eee; 
    padding-bottom: 8px; 
    margin-bottom: 15px; 
    text-transform: uppercase;
}
.capability-item h3 { font-size: 16px; margin: 15px 0 5px 0; color: #333; }

/* Special Blocks */
.highlight-bg {
    background: #f1f7ff;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #0056b3;
}

.styled-list { padding-left: 20px; }
.styled-list li { margin-bottom: 10px; position: relative; list-style-type: square; }

/* Sidebar Factsheet */
.factsheet {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
}
.fact-header {
    background: #f8f9fa;
    padding: 15px;
    margin: 0;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
}
.fact-row {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}
.f-label { display: block; font-size: 12px; color: #666; }
.f-value { font-weight: bold; color: #333; }

.trust-badge {
    padding: 20px;
    text-align: center;
    background: #fff9e6;
}
.trust-badge img { width: 60px; margin-bottom: 10px; }

/* Button */
.btn-contact-large {
    background: #0056b3;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-flex { flex-direction: column; }
    .about-sidebar { width: 100%; position: static; }
}
/* Layout Container */
.contact-flex {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    align-items: flex-start;
}

.contact-info-side { flex: 6; }
.inquiry-form-side { flex: 4; position: sticky; top: 20px; }

/* Content Styling */
.page-main-title { font-size: 28px; color: #333; margin-bottom: 20px; }
.contact-info-side h3 { 
    color: #0056b3; 
    border-bottom: 2px solid #eee; 
    padding-bottom: 5px; 
    margin: 25px 0 15px 0;
    font-size: 18px;
}

.step-list { padding-left: 20px; margin-bottom: 15px; }
.step-list li { margin-bottom: 8px; list-style-type: square; }
.tagline { font-weight: bold; color: #28a745; font-style: italic; }

.faq-item { margin-bottom: 20px; padding: 15px; background: #f9f9f9; border-radius: 4px; }
.faq-item strong { display: block; margin-bottom: 8px; color: #333; }

/* Form Styling */
.form-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-card h2 { font-size: 20px; margin-bottom: 20px; text-align: center; color: #0056b3; }

.form-row { margin-bottom: 15px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: #555; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.btn-submit-inquiry {
    width: 100%;
    background: #0056b3;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit-inquiry:hover { background: #004494; }

.quick-contact-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-flex { flex-direction: column; }
    .inquiry-form-side { width: 100%; position: static; }
}
/* Mobile */
@media (max-width: 767px) {
    .product-grid-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
@media (max-width: 768px) {

  /* Main row stacked */
  .header-main-row .flex-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Logo + company name */
  .brand-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-logo {
    margin-bottom: 8px;
  }

  .company-title {
    font-size: 16px;
    line-height: 1.4;
  }

  /* Contact section */
  .header-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    gap: 8px;
  }

  .contact-pill,
  .btn-contact-blue {
    width: auto;
    text-align: center;
  }

}
@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-img-box {
        position: relative;
        top: 0;
    }
}