/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Source Sans 3', Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.col-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
.col-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.text-center { text-align: center; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: #1a1a2e;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: #E30613; }
.top-bar-left { display: flex; gap: 25px; align-items: center; }
.top-bar-left i { margin-right: 6px; color: #E30613; }
.top-bar-right { display: flex; gap: 15px; }
.top-bar-right a { color: #aaa; font-size: 15px; }
.top-bar-right a:hover { color: #E30613; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.logo img { height: 55px; }
.main-nav { display: flex; gap: 0; align-items: center; }
.main-nav > li { position: relative; }
.main-nav > li > a {
    display: block;
    padding: 12px 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1a1a2e;
    transition: color 0.3s, background 0.3s;
    border-bottom: 3px solid transparent;
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
    color: #E30613;
    border-bottom-color: #E30613;
}
.nav-cta {
    background: #E30613;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 4px;
    font-weight: 600 !important;
    border-bottom: none !important;
    cursor: pointer;
}
.nav-cta:hover { background: #c00510; }
.mobile-toggle { display: none; font-size: 24px; cursor: pointer; color: #1a1a2e; z-index: 1001; position: relative; }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Nav Panel */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 0 30px;
        margin: 0;
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.mobile-open {
        display: flex;
    }
    .main-nav > li > a {
        padding: 16px 24px;
        font-size: 17px;
        border-bottom: 1px solid #f0f0f0;
        border-left: 3px solid transparent;
    }
    .main-nav > li > a:hover,
    .main-nav > li > a.active {
        border-left-color: #E30613;
        background: rgba(227,6,19,0.04);
    }
    .main-nav .nav-cta {
        margin: 20px 24px 0;
        padding: 14px 28px !important;
        text-align: center;
        border-bottom: none !important;
        border-left: none !important;
        border-radius: 6px;
        font-size: 16px;
    }
    .mobile-toggle { display: block; }
    .mobile-toggle .fa-bars { display: block; }
    .mobile-toggle .fa-times { display: none; }
    .mobile-toggle.active .fa-bars { display: none; }
    .mobile-toggle.active .fa-times { display: block; }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
}
.hero-slide {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}
.hero-badge {
    display: inline-block;
    background: rgba(227,6,19,0.9);
    color: #fff;
    padding: 6px 20px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}
.hero-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-buttons { display: flex; gap: 15px; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary { background: #E30613; color: #fff; border-color: #E30613; }
.btn-primary:hover { background: #c00510; border-color: #c00510; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Swiper pagination */
.hero-slider .swiper-pagination { bottom: 25px !important; }
.hero-slider .swiper-pagination-bullet {
    width: 30px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.4); opacity: 1;
}
.hero-slider .swiper-pagination-bullet-active { background: #E30613; width: 50px; }

/* ============================================
   SECTION COMMON
   ============================================ */
.section { padding: 80px 0; }
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .overline {
    display: inline-block;
    color: #E30613;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}
.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   PRODUCT CATEGORIES
   ============================================ */
.products-section { background: #f8f9fa; }
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.product-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-img .overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.product-card:hover .overlay { opacity: 1; }
.overlay .btn { font-size: 13px; padding: 10px 24px; }
.product-card-body { padding: 22px; }
.product-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.product-card-body p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}
.product-card-body .enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    color: #E30613;
    font-weight: 600;
    font-size: 14px;
}
.product-card-body .enquire-btn:hover { color: #c00510; }
.product-card-body .enquire-btn i { font-size: 11px; transition: transform 0.3s; }
.product-card-body .enquire-btn:hover i { transform: translateX(4px); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: #fff; }
.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}
.about-image { flex: 1; position: relative; }
.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #E30613;
    color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(227,6,19,0.3);
}
.experience-badge .number {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}
.experience-badge .label { font-size: 13px; margin-top: 5px; opacity: 0.9; }
.about-content { flex: 1; }
.about-content .overline {
    color: #E30613;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}
.about-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
}
.about-feature-item i {
    color: #E30613;
    font-size: 16px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: #f8f9fa; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.why-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.why-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(227,6,19,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-card-icon i {
    font-size: 28px;
    color: #E30613;
}
.why-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.why-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* ============================================
   COUNTER / STATS BAR
   ============================================ */
.stats-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item .number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #E30613;
    line-height: 1;
}
.stat-item .label {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.7;
}

/* ============================================
   BANNER CTA
   ============================================ */
.banner-cta {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.banner-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.88);
}
.banner-cta .content { position: relative; z-index: 2; }
.banner-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}
.banner-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: #fff; }
.testimonials-slider { padding: 0 50px 10px; overflow: visible; position: relative; }
.testimonial-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 35px;
    position: relative;
    height: 100%;
}
.testimonial-card .quote-icon {
    font-size: 36px;
    color: rgba(227,6,19,0.15);
    margin-bottom: 15px;
}
.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E30613;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-author .name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 15px;
}
.testimonial-author .company {
    font-size: 13px;
    color: #999;
}
.testimonial-card .stars {
    color: #f4b400;
    font-size: 14px;
    margin-bottom: 15px;
}
/* Side arrows */
.testimonials-slider .swiper-button-prev,
.testimonials-slider .swiper-button-next {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid #E30613;
    border-radius: 50%;
    color: #E30613;
    transition: all 0.3s;
}
.testimonials-slider .swiper-button-prev:hover,
.testimonials-slider .swiper-button-next:hover {
    background: #E30613;
    color: #fff;
}
.testimonials-slider .swiper-button-prev::after,
.testimonials-slider .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}
.testimonials-slider .swiper-button-prev { left: 0; }
.testimonials-slider .swiper-button-next { right: 0; }
/* Bottom pagination */
.testimonials-slider .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}
.testimonials-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s;
}
.testimonials-slider .swiper-pagination-bullet-active {
    background: #E30613;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: #f8f9fa; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(227,6,19,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-item .icon i { color: #E30613; font-size: 18px; }
.contact-info-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}
.contact-info-item p { font-size: 14px; color: #666; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
    transition: border 0.3s;
    background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #E30613;
}
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; }

/* Two-Column Contact Layout */
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info-side {
    background: #1a1a2e;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
}
.contact-info-side .overline {
    color: #E30613;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}
.contact-info-side h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}
.contact-info-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}
.contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(227,6,19,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i { color: #E30613; font-size: 18px; }
.contact-info-row h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.contact-info-row p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.contact-info-row p a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.contact-info-row p a:hover { color: #E30613; }

.contact-form-side {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form-side input,
.contact-form-side textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    margin-bottom: 16px;
    transition: border 0.3s, box-shadow 0.3s;
    background: #f9fafb;
}
.contact-form-side input:focus,
.contact-form-side textarea:focus {
    outline: none;
    border-color: #E30613;
    box-shadow: 0 0 0 3px rgba(227,6,19,0.08);
    background: #fff;
}
.contact-form-side textarea { height: 130px; resize: vertical; }
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .contact-two-col { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .contact-info-side { padding: 30px; }
    .contact-form-side { padding: 30px; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1a1a2e;
    color: #ccc;
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 15px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: #aaa;
    transition: color 0.3s;
}
.footer-col ul li a:hover { color: #E30613; }
.footer-col ul li a i { margin-right: 8px; font-size: 12px; }
.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}
.footer-contact-item i { color: #E30613; margin-top: 3px; }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}
.about-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}
.about-hero p {
    font-size: 17px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-story-img img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.about-story-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
}
.about-story-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-5px); }
.value-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(227,6,19,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-card-icon i { font-size: 32px; color: #E30613; }
.value-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.value-card p { font-size: 14px; color: #777; line-height: 1.7; }
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E30613;
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:nth-child(odd) { justify-content: flex-start; padding-right: 55%; }
.timeline-item:nth-child(even) { justify-content: flex-end; padding-left: 55%; }
.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #E30613;
    margin-bottom: 8px;
}
.timeline-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 5px;
}
.timeline-content p { font-size: 14px; color: #777; }
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.cert-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}
.cert-card i {
    font-size: 40px;
    color: #E30613;
    margin-bottom: 15px;
}
.cert-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #1a1a2e;
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}
.contact-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-hero p {
    font-size: 17px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.contact-detail-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}
.contact-detail-card:hover { transform: translateY(-3px); }
.contact-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(227,6,19,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon i { color: #E30613; font-size: 22px; }
.contact-detail-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.contact-detail-card p { font-size: 14px; color: #666; line-height: 1.6; }
.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    transition: background 0.3s;
}
.faq-question:hover { background: #f8f9fa; }
.faq-question i { color: #E30613; transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner {
    padding: 0 25px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.faq-item.active .faq-answer { max-height: 200px; }

/* ============================================
   PRODUCTS PAGE SPECIFIC
   ============================================ */
.products-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}
.products-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}
.products-hero p {
    font-size: 17px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}
.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E30613;
}
.sidebar ul li { margin-bottom: 5px; }
.sidebar ul li a {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 14px;
    color: #555;
    border-radius: 6px;
    transition: all 0.3s;
}
.sidebar ul li a:hover,
.sidebar ul li a.active {
    background: rgba(227,6,19,0.08);
    color: #E30613;
    font-weight: 600;
}
.sidebar ul li a .count {
    background: #f0f0f0;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- Tablet (max-width: 992px) ---- */
@media (max-width: 992px) {
    .container { padding: 0 20px; }
    .col-4, .col-3 { flex: 0 0 50%; max-width: 50%; }
    .about-grid, .about-story { flex-direction: column; gap: 40px; }
    .about-image { width: 100%; }
    .about-content { width: 100%; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .hero-content h1 { font-size: 34px; }
    .hero-slide { min-height: 420px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-details-grid { grid-template-columns: 1fr; }
    .products-layout { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .section { padding: 60px 0; }
    .banner-cta { padding: 60px 0; }
    .banner-cta h2 { font-size: 28px; }
    .about-hero, .products-hero, .contact-hero { padding: 80px 0 50px; }
    .about-hero h1, .products-hero h1, .contact-hero h1 { font-size: 34px; }
    .testimonials-slider { padding: 0 40px 10px; }
    .hero-buttons { flex-wrap: wrap; }
    .hero-buttons .btn { flex: 1; min-width: 160px; justify-content: center; }
    .contact-two-col { grid-template-columns: 1fr; gap: 30px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .products-layout { gap: 30px; }
    .timeline-item:nth-child(odd) { padding-right: 52%; }
    .timeline-item:nth-child(even) { padding-left: 52%; }
    .footer-col { text-align: center; }
    .footer-col ul { display: inline-block; text-align: left; }
    .footer-contact-item { justify-content: center; }
}

/* ---- Mobile Large (max-width: 768px) ---- */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .top-bar .container { flex-direction: column; gap: 6px; text-align: center; }
    .top-bar-left { flex-wrap: wrap; justify-content: center; gap: 10px; font-size: 12px; }
    .top-bar-right { gap: 12px; }
    .header-inner { padding: 10px 0; }
    .logo img { height: 45px; }
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 26px; }
    .section-header p { font-size: 14px; }
    .stats-bar { padding: 40px 0; }
    .stats-grid { gap: 16px; }
    .stat-item .number { font-size: 36px; }
    .stat-item .label { font-size: 12px; }
    .banner-cta { padding: 50px 0; }
    .banner-cta h2 { font-size: 24px; }
    .banner-cta p { font-size: 15px; }
    .about-hero, .products-hero, .contact-hero { padding: 70px 0 40px; }
    .about-hero h1, .products-hero h1, .contact-hero h1 { font-size: 28px; }
    .about-hero p, .products-hero p, .contact-hero p { font-size: 15px; }
    .about-image .experience-badge { position: static; margin-top: 20px; display: inline-block; }
    .testimonials-slider { overflow: hidden; }
    .about-content h2 { font-size: 24px; }
    .about-story-content h2 { font-size: 24px; }
    .values-grid { grid-template-columns: 1fr; gap: 20px; }
    .value-card { padding: 30px 20px; }
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-card { padding: 30px 20px; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .cert-card { padding: 20px 15px; }
    .cert-card i { font-size: 32px; }
    .products-grid { grid-template-columns: 1fr; gap: 16px; }
    .product-card { margin-bottom: 0; }
    .product-card-img { height: 200px; }
    .row { margin: 0 -8px; }
    .col-4, .col-3, .col-6 { padding: 0 8px; }
    .contact-two-col { gap: 24px; }
    .contact-info-side { padding: 30px 24px; }
    .contact-info-side h2 { font-size: 22px; }
    .contact-form-side { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-col ul { display: inline-block; text-align: left; }
    .footer-contact-item { justify-content: center; }
    .footer-col h4 { margin-bottom: 15px; }
    .timeline::before { left: 20px; }
    .timeline-item { padding-left: 50px !important; padding-right: 0 !important; justify-content: flex-start !important; }
    .faq-question { padding: 16px 20px; font-size: 15px; }
    .faq-answer-inner { padding: 0 20px 16px; }
    .testimonial-card { padding: 24px; }
    .testimonials-slider { padding: 0 20px 10px; }
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 15px; }
    .hero-slide { min-height: 75vh; }
    .hero-badge { font-size: 11px; padding: 5px 14px; }
    .btn { padding: 12px 24px; font-size: 14px; }
    .contact-info-side .overline { font-size: 11px; }
    .contact-info-row { gap: 12px; margin-bottom: 18px; }
    .contact-info-icon { width: 40px; height: 40px; }
    .contact-info-icon i { font-size: 16px; }
}

/* ---- Mobile Small (max-width: 600px) ---- */
@media (max-width: 600px) {
    .row { margin: 0 -8px; }
    .col-4, .col-3, .col-6 { flex: 0 0 100%; max-width: 100%; padding: 0 8px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 24px; }
    .section-header h2 { font-size: 22px; }
    .stat-item .number { font-size: 32px; }
    .products-grid { grid-template-columns: 1fr; }
    .section { padding: 40px 0; }
    .hero-content p { font-size: 14px; }
    .hero-slide { min-height: 75vh; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .banner-cta h2 { font-size: 22px; }
    .banner-cta p { font-size: 14px; }
    .about-hero h1, .products-hero h1, .contact-hero h1 { font-size: 24px; }
    .about-hero p, .products-hero p, .contact-hero p { font-size: 14px; }
    .testimonials-slider { padding: 0 15px 10px; }
    .testimonial-card { padding: 20px; }
    .testimonial-card p { font-size: 14px; }
    .why-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr 1fr; }
    .contact-detail-card { flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 24px 20px; }
    .site-footer { padding-top: 30px; }
    .footer-grid { gap: 24px; }
    .about-features { grid-template-columns: 1fr; gap: 10px; }
    .about-feature-item { font-size: 13px; }
    .about-grid, .about-story { gap: 30px; }
    .product-card-img { height: 180px; }
    .product-card-body { padding: 16px; }
    .product-card-body h3 { font-size: 16px; }
    .product-card-body p { font-size: 13px; }
    .contact-info-side { padding: 24px 20px; }
    .contact-info-side h2 { font-size: 20px; }
    .contact-form-side { padding: 20px; }
    .form-row-2 { gap: 0; }
    .form-row-2 input { margin-bottom: 12px; }
    .sidebar h3 { font-size: 16px; }
    .sidebar ul li a { padding: 10px 12px; font-size: 13px; }
}

/* ---- Mobile XS (max-width: 480px) ---- */
@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .hero-content h1 { font-size: 22px; }
    .hero-slide { min-height: 75vh; }
    .section-header h2 { font-size: 20px; }
    .logo img { height: 40px; }
    .top-bar { padding: 6px 0; font-size: 11px; }
    .top-bar-left { gap: 8px; }
    .top-bar-right { gap: 10px; }
    .top-bar-right a { font-size: 13px; }
    .stat-item .number { font-size: 28px; }
    .stat-item .label { font-size: 11px; }
    .banner-cta h2 { font-size: 20px; }
    .about-content h2 { font-size: 22px; }
    .about-story-content h2 { font-size: 22px; }
    .values-grid { gap: 16px; }
    .value-card { padding: 24px 16px; }
    .value-card-icon { width: 60px; height: 60px; }
    .value-card-icon i { font-size: 26px; }
    .cert-grid { gap: 12px; }
    .cert-card { padding: 16px 12px; }
    .cert-card i { font-size: 28px; margin-bottom: 10px; }
    .cert-card h3 { font-size: 13px; }
    .footer-bottom { font-size: 12px; padding: 16px 0; }
    .contact-info-icon { width: 36px; height: 36px; border-radius: 8px; }
    .contact-info-icon i { font-size: 14px; }
    .contact-info-row h4 { font-size: 14px; }
    .contact-info-row p { font-size: 13px; }
    .contact-form-side input, .contact-form-side textarea { padding: 12px 14px; font-size: 14px; }
    .btn-block { padding: 14px 24px; font-size: 15px; }
    .testimonials-slider .swiper-button-prev,
    .testimonials-slider .swiper-button-next {
        display: none;
    }
}

/* ---- Mobile XXS (max-width: 360px) ---- */
@media (max-width: 360px) {
    .container { padding: 0 10px; }
    .hero-content h1 { font-size: 20px; }
    .hero-slide { min-height: 75vh; }
    .hero-content p { font-size: 13px; }
    .hero-badge { font-size: 10px; padding: 4px 12px; }
    .section-header h2 { font-size: 18px; }
    .section-header .overline { font-size: 11px; }
    .section-header p { font-size: 13px; }
    .section { padding: 30px 0; }
    .btn { padding: 10px 18px; font-size: 13px; }
    .logo img { height: 36px; }
    .stats-bar { padding: 30px 0; }
    .stat-item .number { font-size: 24px; }
    .stat-item .label { font-size: 10px; }
    .stats-grid { gap: 12px; }
    .banner-cta { padding: 40px 0; }
    .banner-cta h2 { font-size: 18px; }
    .banner-cta p { font-size: 13px; }
    .about-content h2 { font-size: 20px; }
    .about-story-content h2 { font-size: 20px; }
    .about-hero h1, .products-hero h1, .contact-hero h1 { font-size: 22px; }
    .about-hero p, .products-hero p, .contact-hero p { font-size: 13px; }
    .about-hero, .products-hero, .contact-hero { padding: 60px 0 30px; }
    .footer-grid { gap: 20px; }
    .footer-col h4 { font-size: 15px; }
    .footer-col p, .footer-col ul li a { font-size: 13px; }
    .footer-bottom { font-size: 11px; }
    .contact-detail-card { padding: 20px 16px; }
    .faq-question { padding: 14px 16px; font-size: 14px; }
    .faq-answer-inner { padding: 0 16px 14px; font-size: 13px; }
    .cert-grid { grid-template-columns: 1fr 1fr; }
    .cert-card { padding: 14px 10px; }
    .cert-card i { font-size: 24px; }
    .cert-card h3 { font-size: 12px; }
    .top-bar { font-size: 10px; }
    .top-bar-left { gap: 6px; font-size: 11px; }
    .top-bar-right a { font-size: 12px; }
    .rk-floating-bar { bottom: 12px; gap: 6px; }
    .rk-floating-btn { padding: 8px 12px; font-size: 12px; }
}
/* ============================================
   LEAD CAPTURE - TOAST & FIELD ERRORS
   ============================================ */
.rk-field-error {
    border-color: #ef4444 !important;
}
.rk-field-error-msg {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 4px;
    animation: rkFadeIn 0.2s ease;
}
@keyframes rkFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MOBILE TOUCH TARGETS & PERFORMANCE
   ============================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; }
a, button, .btn, .rk-open-modal, .mobile-toggle, select { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
@media (hover: hover) { a:hover, .btn:hover, .tab-btn:hover, .enquire-btn:hover { opacity: 0.9; } }
@media (pointer: coarse) {
    .nav-cta, .btn, .enquire-btn, .mobile-toggle, .tab-btn, a.nav-link, .header-inner nav a, .footer-links a { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
:focus-visible { outline: 2px solid #E30613; outline-offset: 2px; }

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .page-title { font-size: 26px; margin-bottom: 20px; }
}
@media (max-width: 480px) {
    .page-title { font-size: 22px; }
}
