@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #021732;
    --primary-dark: #010f22;
    --primary-light: #032550;
    --accent: #021732;
    --bg-body: #f5f5f5;
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --text: #2f333a;
    --text-muted: #777;
    --text-light: #999;
    --border: #e8e8e8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    --radius: 4px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-body);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--text); }

.container { max-width: 1200px; }

/* ============ COMPANY INFO HEADER ============ */
.company-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.company-header .company-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.company-header .company-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.company-header .company-meta svg {
    flex-shrink: 0;
}
.company-header .company-meta .gst {
    font-weight: 600;
    color: var(--text);
}
.company-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}
.trust-seal-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.trust-seal-box:hover { border-color: var(--primary); color: var(--primary); }

.call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
}
.call-btn:hover {
    background: var(--primary);
    color: #fff;
}
.call-btn:hover svg path { fill: #fff; }
.call-btn .call-number { font-weight: 700; font-size: 14px; }
.call-btn .call-rate { font-size: 11px; color: var(--text-muted); margin-top: -2px; }
.call-btn:hover .call-rate { color: rgba(255,255,255,0.8); }

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.email-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ============ NAVBAR ============ */
.main-nav {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    background: rgba(255,255,255,0.15);
}
.nav-menu > li > a svg { flex-shrink: 0; }
.nav-menu > li > a .sub-toggle {
    margin-left: 4px;
    font-size: 10px;
}

/* Mega Menu */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    min-width: 700px;
    z-index: 1001;
    border-radius: 0 0 4px 4px;
}
.has-mega-menu:hover > .mega-menu { display: block; }
.mega-menu-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.mega-menu-column { min-width: 150px; }
.mega-menu-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}
.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-menu-column ul li a {
    display: block;
    padding: 4px 0;
    color: var(--text);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}
.mega-menu-column ul li a:hover { color: var(--primary); }
.mega-menu-view-all {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
}
.mega-menu-view-all:hover { background: var(--primary-dark); color: #fff; }

.nav-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    margin-left: 12px;
}
.nav-search input {
    border: none;
    outline: none;
    padding: 8px 14px;
    font-size: 13px;
    width: 200px;
    background: transparent;
}
.nav-search button {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}
.nav-search button:hover { background: var(--primary-dark); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* ============ BREADCRUMBS ============ */
.breadcrumb-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.breadcrumb-bar .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}
.breadcrumb-bar .breadcrumb li { color: var(--text-muted); }
.breadcrumb-bar .breadcrumb li a { color: var(--primary); }
.breadcrumb-bar .breadcrumb li.active { color: var(--text); font-weight: 600; }
.breadcrumb-bar .breadcrumb li + li::before {
    content: '›';
    margin-right: 8px;
    color: var(--text-light);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 24px;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: var(--font);
    line-height: 1.4;
}
.btn-teal {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-teal:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}
.btn-outline-teal {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-teal:hover {
    background: var(--primary);
    color: #fff;
}
.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}
.btn-sm { padding: 6px 16px; font-size: 12px; }
.btn-lg { padding: 12px 32px; font-size: 15px; }

/* ============ CATEGORIES ROW ============ */
.categories-section {
    background: var(--bg-white);
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.categories-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.category-item {
    text-align: center;
    text-decoration: none;
    color: var(--text);
    width: 100px;
    transition: transform 0.2s;
}
.category-item:hover { transform: translateY(-3px); color: var(--primary); }
.category-item .cat-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px;
    display: block;
    border: 2px solid var(--border);
    transition: border-color 0.2s;
}
.category-item:hover .cat-img { border-color: var(--primary); }
.category-item .cat-name {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    display: block;
}

/* ============ HOMEPAGE BANNER ============ */
.banner-section {
    padding: 24px 0;
}
.banner-top {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.banner-featured {
    flex: 2;
    display: flex;
    gap: 16px;
}
.banner-product-card {
    flex: 1;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.banner-product-card:hover { box-shadow: var(--shadow-md); }
.banner-product-card .card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--bg-light);
}
.banner-product-card .card-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.banner-product-card .card-body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.banner-product-card .card-body h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}
.banner-product-card .card-body h3 a { color: var(--text); }
.banner-product-card .card-body h3 a:hover { color: var(--primary); }
.banner-product-card .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.banner-product-card .price .currency { font-size: 14px; }
.banner-product-card .price .unit { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.banner-product-card .specs {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 12px;
    flex: 1;
}
.banner-product-card .specs li {
    padding: 2px 0;
    color: var(--text-muted);
}
.banner-product-card .specs li strong { color: var(--text); font-weight: 600; }
.banner-cat-card .specs {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 12px;
    flex: 1;
}
.banner-cat-card .specs li {
    padding: 2px 0;
    color: var(--text-muted);
}
.banner-cat-card .specs li strong { color: var(--text); font-weight: 600; }
.banner-product-card .btn-get-quote {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
    align-self: flex-start;
}
.banner-product-card .btn-get-quote:hover {
    background: var(--primary-dark);
    color: #fff;
}

.banner-cta {
    flex: 1;
    background: var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    text-decoration: none;
}
.banner-cta:hover { color: #fff; }
.banner-cta .cta-img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.3;
}
.banner-cta h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.banner-cta .cta-arrow {
    font-size: 20px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

/* Bottom product row */
.banner-bottom {
    display: flex;
    gap: 16px;
    overflow-x: auto;
}
.banner-bottom .banner-product-card { min-width: 200px; flex: 1; }

/* ============ PRODUCT CARDS (Grid) ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: var(--shadow-md); }
.product-card .product-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--bg-light);
    text-decoration: none;
}
.product-card .product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card .product-info {
    padding: 12px 14px;
}
.product-card .product-info h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}
.product-card .product-info h4 a { color: var(--text); }
.product-card .product-info h4 a:hover { color: var(--primary); }
.product-card .product-info .product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}
.product-card .product-info .product-price .currency { font-size: 13px; }
.product-card .product-info .product-price .unit { font-size: 11px; font-weight: 400; color: var(--text-muted); }
.product-card .product-info .product-specs {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    font-size: 11px;
}
.product-card .product-info .product-specs li {
    padding: 1px 0;
    color: var(--text-muted);
}
.product-card .product-info .product-specs li strong { color: var(--text); }
.product-badge-sale {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
    text-transform: uppercase;
}

/* ============ ABOUT SECTION (Homepage) ============ */
.about-section {
    padding: 48px 0;
    background: var(--bg-white);
}
.about-section .about-title h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.about-section .about-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.about-section .about-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
.about-section .about-text a { color: var(--primary); font-weight: 600; }
.about-section .about-cta {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.about-info-box .info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}
.about-info-box .info-text h6 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}
.about-info-box .info-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* ============ STATS ============ */
.stats-bar {
    background: var(--primary);
    color: #fff;
    padding: 32px 0;
}
.stats-bar .stat-item {
    text-align: center;
    padding: 12px;
}
.stats-bar .stat-number {
    font-size: 28px;
    font-weight: 800;
    display: block;
}
.stats-bar .stat-label {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 2px;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    padding: 48px 0;
    background: var(--bg-light);
}
.testimonials-section .section-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
}
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}
.testimonial-card .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.testimonial-card .reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.testimonial-card .reviewer-name { font-weight: 700; font-size: 14px; }
.testimonial-card .reviewer-location { font-size: 12px; color: var(--text-muted); }
.testimonial-card .stars { color: #ffb400; font-size: 14px; margin-bottom: 6px; }
.testimonial-card .review-date { font-size: 12px; color: var(--text-light); }
.testimonial-card .review-product { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.testimonial-card .review-text { font-size: 13px; color: var(--text); line-height: 1.6; }
.testimonial-card .review-tags { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.testimonial-card .review-tag {
    font-size: 11px;
    padding: 2px 8px;
    background: var(--bg-light);
    border-radius: 2px;
    color: var(--text-muted);
}

/* ============ ABOUT PAGE ============ */
.about-page-content {
    padding: 32px 0;
}
.about-page-content h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}
.about-page-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.about-page-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}
.about-page-content p a { color: var(--primary); font-weight: 600; }

.factsheet-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
.factsheet-table th {
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}
.factsheet-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.factsheet-table tr:nth-child(even) td { background: var(--bg-light); }
.factsheet-table td:first-child { font-weight: 600; color: var(--text); width: 40%; }

.infrastructure-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
}
.infrastructure-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.infrastructure-card .card-body {
    padding: 16px;
}
.infrastructure-card .card-body h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.infrastructure-card .card-body p { font-size: 12px; color: var(--text-muted); }

/* ============ CONTACT PAGE ============ */
.contact-page-content { padding: 32px 0; }

.contact-info-sidebar {
    padding-right: 24px;
}
.contact-info-sidebar h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}
.contact-info-sidebar p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.contact-detail-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.contact-detail-item .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.contact-detail-item h6 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-detail-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

.enquiry-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.enquiry-form-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    color: var(--text);
    transition: border-color 0.2s;
    background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0,96,97,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group .text-danger { font-size: 12px; margin-top: 2px; display: block; }

.map-section {
    padding: 32px 0;
    background: var(--bg-light);
}
.map-section iframe {
    width: 100%;
    height: 350px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* ============ PRODUCTS PAGE ============ */
.products-page { padding: 24px 0; }

.filter-sidebar {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
}
.filter-sidebar .filter-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 700;
}
.filter-sidebar .filter-header i { margin-right: 6px; color: var(--primary); }
.filter-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.filter-sidebar ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}
.filter-sidebar ul li a:last-child { border-bottom: none; }
.filter-sidebar ul li a:hover { background: var(--bg-light); color: var(--primary); }
.filter-sidebar ul li a.active {
    background: rgba(0,96,97,0.08);
    color: var(--primary);
    font-weight: 700;
}
.filter-sidebar ul li a .badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    background: var(--bg-light);
    color: var(--text-muted);
    font-weight: 500;
}

.products-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============ PRODUCT DETAIL ============ */
.product-detail { padding: 24px 0; }

.product-gallery {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}
.product-gallery img {
    max-height: 320px;
    max-width: 100%;
    object-fit: contain;
}
.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.gallery-thumbs .thumb {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}
.gallery-thumbs .thumb.active,
.gallery-thumbs .thumb:hover { border-color: var(--primary); }
.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}
.product-detail-info .brand-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-decoration: none;
}
.product-detail-info .brand-link:hover { color: var(--primary); }
.product-detail-info .detail-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0;
}
.product-detail-info .detail-price .old-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}
.product-detail-info .detail-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.detail-actions .btn { flex: 1; min-width: 160px; }

/* ============ FOOTER ============ */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 40px 0 0;
}
.footer h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer p { font-size: 13px; line-height: 1.7; }
.footer-link {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    padding: 3px 0;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-link:hover { color: #fff; padding-left: 4px; }
.footer .social-links a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    margin-right: 6px;
    transition: background 0.2s;
    text-decoration: none;
}
.footer .social-links a:hover { background: rgba(255,255,255,0.3); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 16px 0;
    margin-top: 32px;
    text-align: center;
    font-size: 13px;
}
.footer-bottom a { color: #fff; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-float .pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: background 0.2s;
}
.back-to-top:hover { background: var(--primary-dark); }

/* ============ PAGE HEADER ============ */
.page-header {
    background: var(--primary);
    color: #fff;
    padding: 32px 0;
}
.page-header h1 { font-size: 22px; font-weight: 800; color: #fff; }
.page-header .breadcrumb { background: transparent; padding: 0; margin-bottom: 8px; }
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; }
.page-header .breadcrumb-item.active { color: #fff; font-weight: 600; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============ SPECS TABLE ============ */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
    padding: 10px 16px;
    font-size: 13px;
}
.specs-table td:first-child {
    font-weight: 600;
    color: var(--text);
    width: 40%;
    background: var(--bg-light);
}
.specs-table td:last-child { color: var(--text-muted); }

/* ============ RATING BREAKDOWN (Testimonials) ============ */
.rating-summary {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.rating-big {
    text-align: center;
    min-width: 120px;
}
.rating-big .score { font-size: 48px; font-weight: 800; color: var(--text); }
.rating-big .max { font-size: 18px; color: var(--text-muted); }
.rating-big .total-stars { color: #ffb400; font-size: 20px; margin: 4px 0; }
.rating-big .total-reviews { font-size: 13px; color: var(--text-muted); }
.rating-bars { flex: 1; }
.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 13px;
}
.rating-bar-row .label { width: 50px; text-align: right; color: var(--text-muted); }
.rating-bar-row .bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.rating-bar-row .bar-fill {
    height: 100%;
    background: #ffb400;
    border-radius: 4px;
}
.rating-bar-row .count { width: 40px; font-size: 12px; color: var(--text-muted); }

.satisfaction-bars {
    min-width: 200px;
}
.satisfaction-bar {
    margin-bottom: 8px;
}
.satisfaction-bar .label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.satisfaction-bar .bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.satisfaction-bar .bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

/* ============ VIDEO SECTION ============ */
.video-section {
    padding: 32px 0;
}
.video-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
}
.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.video-card .card-body { padding: 16px; }
.video-card .card-body h5 { font-size: 14px; font-weight: 700; }
.video-card .card-body a { color: var(--primary); font-weight: 600; }

/* ============ ENQUIRY SIDEBAR (Product Detail) ============ */
.enquiry-sidebar {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.enquiry-sidebar h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}
.enquiry-sidebar .contact-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.enquiry-sidebar .contact-person .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}
.enquiry-sidebar .contact-person .name { font-weight: 700; font-size: 14px; }
.enquiry-sidebar .contact-person .role { font-size: 12px; color: var(--text-muted); }
.enquiry-sidebar .share-links { display: flex; gap: 8px; margin-top: 12px; }
.enquiry-sidebar .share-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}
.enquiry-sidebar .share-links a:hover { background: var(--primary); color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
    .company-header .company-meta { font-size: 12px; gap: 10px; }
    .banner-top { flex-direction: column; }
    .banner-featured { flex-direction: column; }
    .banner-cta { min-height: 200px; }
    .banner-bottom { flex-wrap: nowrap; overflow-x: auto; }
    .about-info-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: block; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        z-index: 1001;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-menu.open { display: flex; }
    .nav-menu > li > a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .mega-menu { display: none !important; position: static; box-shadow: none; border: none; min-width: auto; }
    .has-mega-menu:hover > .mega-menu { display: block !important; }
    .mega-menu-row { flex-direction: column; gap: 16px; }
    .nav-search { display: none; }
    .categories-grid { gap: 12px; }
    .category-item { width: 80px; }
    .category-item .cat-img { width: 60px; height: 60px; }
    .rating-summary { flex-direction: column; }
}

@media (max-width: 575.98px) {
    .company-header-right { flex-wrap: wrap; justify-content: center; }
    .banner-featured { gap: 12px; }
    .banner-product-card .card-img { height: 140px; }
    .banner-bottom { gap: 12px; }
    .banner-bottom .banner-product-card { min-width: 160px; }
    .footer .row { gap: 24px; }
}

/* ============ PAGINATION ============ */
.pagination-container {
    margin-top: 32px;
}
.pagination-container nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.pagination-container nav > div:first-child {
    font-size: 13px;
    color: var(--text-muted);
}
.pagination-container nav > div:first-child span,
.pagination-container nav > div:first-child font {
    font-weight: 600;
    color: var(--text);
}
.pagination {
    margin: 0;
    gap: 6px;
}
.pagination .page-item {
    margin: 0;
}
.pagination .page-link {
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    font-size: 13px;
    padding: 8px 14px;
    transition: all 0.2s ease;
    background: var(--bg-white);
}
.pagination .page-item.active .page-link {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}
.pagination .page-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.pagination .page-item.disabled .page-link {
    color: var(--text-light);
    border-color: var(--border);
    background: var(--bg-light);
    opacity: 0.6;
}

/* ============ ALERTS ============ */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 16px;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============ UTILITIES ============ */
.text-teal { color: var(--primary) !important; }
.bg-teal { background: var(--primary) !important; }
.border-teal { border-color: var(--primary) !important; }

/* ============ PREMIUM PRODUCT CARDS ============ */
.product-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    border-color: var(--primary) !important;
}
.product-card:hover .product-watermark {
    color: rgba(0, 0, 0, 0.25) !important;
    letter-spacing: 1px !important;
}
.product-card:hover .card-title a {
    color: var(--primary) !important;
}
.product-watermark {
    transition: all 0.3s ease;
}
