/* ===== Creative Industries - Premium Industrial CSS ===== */

/* --- CSS Variables --- */
:root {
    --primary: #0d47a1;
    --primary-dark: #0a3680;
    --primary-light: #1565c0;
    --secondary: #f57c00;
    --secondary-dark: #e65100;
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --gray-900: #212529;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow: 0 2px 12px rgba(0,0,0,.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all .25s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;padding:0;font-family:var(--font);font-size:15px;line-height:1.7;color:var(--gray-700);background:var(--white);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:var(--primary);text-decoration:none;transition:var(--transition)}
a:hover{color:var(--primary-dark)}
h1,h2,h3,h4,h5,h6{color:var(--dark);font-weight:700;line-height:1.3;margin:0 0 .5rem}
h1{font-size:2.5rem}
h2{font-size:2rem}
h3{font-size:1.5rem}
h4{font-size:1.25rem}

/* --- Skip Nav --- */
.skip-nav{position:absolute;top:-100%;left:0;background:var(--primary);color:#fff;padding:.5rem 1rem;z-index:9999;border-radius:0 0 var(--radius-sm) 0;font-weight:600}
.skip-nav:focus{top:0}

/* --- Page Header Banner --- */
.page-header h1{color:rgba(255,255,255,0.75)}

/* --- Scrollable Pagination --- */
.pagination-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:thin;scrollbar-color:var(--gray-400) transparent;padding-bottom:4px}
.pagination-scroll::-webkit-scrollbar{height:4px}
.pagination-scroll::-webkit-scrollbar-track{background:transparent}
.pagination-scroll::-webkit-scrollbar-thumb{background:var(--gray-400);border-radius:4px}
.pagination-scroll .pagination{flex-wrap:nowrap;white-space:nowrap}

/* --- Container --- */
.container{max-width:1280px}

/* --- Section --- */
.section{padding:5rem 0}
.section-sm{padding:3rem 0}
.section-bg{background:var(--gray-100)}
.section-header{text-align:center;max-width:700px;margin:0 auto 3rem}
.section-header h2{margin-bottom:1rem}
.section-header p{color:var(--gray-600);font-size:1.05rem}
.section-badge{display:inline-block;background:rgba(13,71,161,.08);color:var(--primary);padding:.3rem 1rem;border-radius:50px;font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px;margin-bottom:.75rem}

/* --- Top Bar --- */
.top-bar{background:var(--dark);color:var(--gray-400);font-size:.8rem;padding:.45rem 0}
.top-bar-left{display:flex;gap:1.5rem;flex-wrap:wrap}
.top-bar-link{color:var(--gray-400);transition:var(--transition);white-space:nowrap}
.top-bar-link:hover{color:var(--white)}
.top-bar-link i{margin-right:.35rem;color:var(--gray-500)}
.top-bar-text{color:var(--gray-400);white-space:nowrap}
.top-bar-text i{margin-right:.35rem;color:var(--gray-500)}

/* --- Header --- */
.main-header{background:var(--white);box-shadow:var(--shadow-sm);position:sticky;top:0;z-index:1000;transition:var(--transition);border-bottom:1px solid var(--gray-200)}
.main-header.scrolled{box-shadow:var(--shadow-md);padding:.3rem 0}
.main-header .navbar{padding:.6rem 0}
.navbar-brand{display:flex;align-items:center;text-decoration:none}
.brand-text{font-size:1.4rem;font-weight:800;color:var(--dark);letter-spacing:-.5px}
.brand-accent{color:var(--primary)}
.nav-link{color:var(--gray-700)!important;font-weight:500;font-size:.9rem;padding:.5rem .85rem!important;border-radius:var(--radius-sm);transition:var(--transition)}
.nav-link:hover,.nav-link.active{color:var(--primary)!important;background:rgba(13,71,161,.05)}
.header-icon{color:var(--gray-600);font-size:1rem;transition:var(--transition)}
.header-icon:hover{color:var(--primary)}
.cart-count{position:absolute;top:-6px;right:-8px;background:var(--secondary);color:#fff;font-size:.65rem;min-width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700}
.header-cta{font-weight:600;border-radius:var(--radius-sm)}

/* Offcanvas Mobile */
.offcanvas{max-width:320px;border:none}
.offcanvas-header{border-bottom:1px solid var(--gray-200);padding:1rem 1.25rem}
.offcanvas-body .nav-link{padding:.65rem 0;border-bottom:1px solid var(--gray-200);font-size:1rem}
.offcanvas-body .nav-link[aria-expanded="true"] i.fa-chevron-down{transform:rotate(180deg)}
.offcanvas-body .collapse .nav-link{border-bottom:1px solid var(--gray-200);font-size:.9rem}
.offcanvas-body .collapse .nav-link:last-child{border-bottom:none}
.mobile-contact a{color:var(--gray-600);font-size:.9rem}
.mobile-contact a:hover{color:var(--primary)}

/* --- Breadcrumbs --- */
.breadcrumb{background:transparent;padding:.5rem 0;margin:0;font-size:.85rem}
.breadcrumb-item a{color:var(--gray-600);text-decoration:none}
.breadcrumb-item a:hover{color:var(--primary)}
.breadcrumb-item.active{color:var(--gray-500)}

/* --- Hero --- */
.hero{background:linear-gradient(135deg,#0d47a1 0%,#1565c0 50%,#1976d2 100%);color:#fff;padding:6rem 0 5rem;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:0;right:0;width:50%;height:100%;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="60" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat;background-size:cover;pointer-events:none}
.hero h1{font-size:3rem;font-weight:800;line-height:1.15;margin-bottom:1.25rem}
.hero p{font-size:1.15rem;opacity:.9;max-width:600px;margin-bottom:2rem;line-height:1.8}
.hero .btn{font-weight:600;padding:.75rem 2rem;border-radius:var(--radius-sm)}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.15);pointer-events:none}

/* Trust Badges */
.trust-badges{display:flex;gap:1.5rem;flex-wrap:wrap;margin-top:3rem}
.trust-badge{display:flex;align-items:center;gap:.5rem;font-size:.85rem;opacity:.9}
.trust-badge i{font-size:1.1rem;color:var(--secondary)}
.trust-indicators{background:var(--white);box-shadow:var(--shadow-lg);border-radius:var(--radius-lg);padding:2rem;margin-top:-3rem;position:relative;z-index:10}
.trust-item{text-align:center;padding:1rem}
.trust-item i{font-size:2rem;color:var(--primary);margin-bottom:.75rem}
.trust-item h6{font-size:.85rem;font-weight:700;color:var(--dark);margin-bottom:.25rem}
.trust-item p{font-size:.75rem;color:var(--gray-600);margin:0}

/* --- Cards --- */
.card{border:1px solid var(--gray-200);border-radius:var(--radius);transition:var(--transition);overflow:hidden;background:var(--white)}
.card:hover{box-shadow:var(--shadow-md);border-color:transparent;transform:translateY(-2px)}
.card-img-top{object-fit:cover;width:100%;aspect-ratio:4/3}
.card-body{padding:1.25rem}
.card-title{font-size:1rem;font-weight:700;color:var(--dark);margin-bottom:.5rem;line-height:1.4}
.card-text{color:var(--gray-600);font-size:.875rem}

/* Product Card */
.product-card{border-radius:var(--radius);position:relative}
.product-card .card-img-wrap{position:relative;overflow:hidden;aspect-ratio:4/3;background:var(--gray-100)}
.product-card .card-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.product-card:hover .card-img-wrap img{transform:scale(1.05)}
.product-card .product-badge{position:absolute;top:12px;left:12px;display:flex;flex-direction:column;gap:6px;z-index:2}
.product-card .badge{padding:.3rem .65rem;font-size:.7rem;font-weight:600;border-radius:4px}
.product-card .card-body{padding:1.25rem}
.product-card .card-category{font-size:.75rem;color:var(--primary);font-weight:600;text-transform:uppercase;letter-spacing:.3px;margin-bottom:.35rem;display:block}
.product-card .card-title{font-size:1rem;margin-bottom:.5rem}
.product-card .card-title a{color:var(--dark);text-decoration:none}
.product-card .card-title a:hover{color:var(--primary)}
.product-card .product-price{font-size:1.1rem;font-weight:700;color:var(--primary);margin-bottom:.75rem}
.product-card .product-actions{display:flex;gap:.5rem}
.product-card .product-actions .btn{flex:1;font-size:.8rem;padding:.45rem .5rem}

/* --- Buttons --- */
.btn{font-weight:600;border-radius:var(--radius-sm);padding:.6rem 1.5rem;transition:var(--transition);font-size:.9rem;border:2px solid transparent}
.btn-primary{background:var(--primary);color:#fff;border-color:var(--primary)}
.btn-primary:hover{background:var(--primary-dark);border-color:var(--primary-dark);color:#fff;transform:translateY(-1px);box-shadow:0 4px 12px rgba(13,71,161,.3)}
.btn-secondary{background:var(--secondary);color:#fff;border-color:var(--secondary)}
.btn-secondary:hover{background:var(--secondary-dark);border-color:var(--secondary-dark);color:#fff}
.btn-outline-primary{color:var(--primary);border-color:var(--primary);background:transparent}
.btn-outline-primary:hover{background:var(--primary);color:#fff}
.btn-outline-secondary{color:var(--gray-600);border-color:var(--gray-400);background:transparent}
.btn-outline-secondary:hover{background:var(--gray-600);color:#fff;border-color:var(--gray-600)}
.btn-dark{background:var(--dark);color:#fff;border-color:var(--dark)}
.btn-dark:hover{background:var(--dark-light);color:#fff}
.btn-sm{padding:.4rem 1rem;font-size:.8rem}
.btn-lg{padding:.85rem 2.5rem;font-size:1rem}
.btn-icon{width:42px;height:42px;padding:0;display:inline-flex;align-items:center;justify-content:center;border-radius:50%}

/* --- Section Heading --- */
.section-heading{text-align:center;margin-bottom:3rem}
.section-heading .badge{margin-bottom:.75rem}
.section-heading h2{font-weight:800;color:var(--dark);margin-bottom:.75rem}
.section-heading p{color:var(--gray-600);max-width:600px;margin:0 auto;font-size:1rem}

/* --- Category Cards --- */
.category-card{text-align:center;border-radius:var(--radius);padding:2rem 1.5rem;border:1px solid var(--gray-200);transition:var(--transition);background:var(--white)}
.category-card:hover{border-color:var(--primary);box-shadow:var(--shadow-md);transform:translateY(-4px)}
.category-card .cat-icon{width:64px;height:64px;border-radius:50%;background:rgba(13,71,161,.08);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.5rem;color:var(--primary);transition:var(--transition)}
.category-card:hover .cat-icon{background:var(--primary);color:#fff}
.category-card h5{font-size:.95rem;font-weight:700;margin-bottom:.25rem}
.category-card p{font-size:.8rem;color:var(--gray-600);margin:0}

/* --- Feature Cards --- */
.feature-card{padding:2rem;border-radius:var(--radius);border:1px solid var(--gray-200);transition:var(--transition);background:var(--white);height:100%}
.feature-card:hover{box-shadow:var(--shadow-md);border-color:transparent}
.feature-card .feature-icon{width:56px;height:56px;border-radius:var(--radius);background:rgba(13,71,161,.08);display:flex;align-items:center;justify-content:center;font-size:1.3rem;color:var(--primary);margin-bottom:1.25rem;transition:var(--transition)}
.feature-card:hover .feature-icon{background:var(--primary);color:#fff}
.feature-card h5{font-size:1rem;font-weight:700;margin-bottom:.5rem}
.feature-card p{color:var(--gray-600);font-size:.875rem;margin:0}

/* --- How It Works --- */
.step-card{text-align:center;position:relative;padding:2rem 1.5rem}
.step-number{width:48px;height:48px;border-radius:50%;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.1rem;margin:0 auto 1rem}

/* --- Testimonial --- */
.testimonial-card{padding:2rem;border-radius:var(--radius);border:1px solid var(--gray-200);background:var(--white);height:100%}
.testimonial-card .stars{color:var(--warning);font-size:.85rem;margin-bottom:1rem}
.testimonial-card .review-text{color:var(--gray-700);font-size:.9rem;margin-bottom:1.25rem;font-style:italic;line-height:1.7}
.testimonial-card .reviewer{display:flex;align-items:center;gap:.75rem}
.testimonial-card .reviewer-avatar{width:44px;height:44px;border-radius:50%;object-fit:cover;background:var(--gray-200)}
.testimonial-card .reviewer-name{font-weight:700;font-size:.9rem;color:var(--dark)}
.testimonial-card .reviewer-info{font-size:.75rem;color:var(--gray-600)}

/* --- FAQ --- */
.faq-item{border:1px solid var(--gray-200);border-radius:var(--radius);margin-bottom:.75rem;overflow:hidden}
.faq-item .accordion-button{font-weight:600;color:var(--dark);font-size:.95rem;padding:1rem 1.25rem;background:var(--white);box-shadow:none}
.faq-item .accordion-button:not(.collapsed){color:var(--primary);background:rgba(13,71,161,.03)}
.faq-item .accordion-button::after{filter:invert(40%)}
.faq-item .accordion-body{color:var(--gray-600);font-size:.9rem;line-height:1.8;padding:0 1.25rem 1rem}

/* --- Blog Card --- */
.blog-card{border-radius:var(--radius);overflow:hidden;border:1px solid var(--gray-200);transition:var(--transition);background:var(--white)}
.blog-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.blog-card .card-img-wrap{overflow:hidden;aspect-ratio:16/9}
.blog-card .card-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.blog-card:hover .card-img-wrap img{transform:scale(1.05)}
.blog-card .card-body{padding:1.25rem}
.blog-card .blog-meta{display:flex;gap:1rem;font-size:.75rem;color:var(--gray-500);margin-bottom:.75rem}
.blog-card .blog-meta i{margin-right:.25rem}
.blog-card .card-title a{color:var(--dark);text-decoration:none;font-size:1rem}
.blog-card .card-title a:hover{color:var(--primary)}

/* --- Forms --- */
.form-control{border:1px solid var(--gray-400);border-radius:var(--radius-sm);padding:.65rem 1rem;font-size:.9rem;transition:var(--transition)}
.form-control:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(13,71,161,.1)}
.form-label{font-weight:600;font-size:.85rem;color:var(--gray-700);margin-bottom:.35rem}
.form-text{font-size:.75rem;color:var(--gray-500)}

/* --- Spec Table --- */
.spec-table{width:100%;border-collapse:collapse;border:1px solid var(--gray-200);border-radius:var(--radius);overflow:hidden}
.spec-table tr{border-bottom:1px solid var(--gray-200)}
.spec-table tr:last-child{border-bottom:none}
.spec-table td{padding:.65rem 1rem;font-size:.9rem}
.spec-table td:first-child{font-weight:600;color:var(--dark);width:35%;background:var(--gray-100)}
.spec-table td:last-child{color:var(--gray-700)}

/* --- Product Detail --- */
.product-gallery .swiper-slide{border-radius:var(--radius);overflow:hidden;cursor:zoom-in}
.product-gallery .swiper-slide img{width:100%;aspect-ratio:4/3;object-fit:cover}
.product-gallery .swiper-thumb{margin-top:.75rem}
.product-gallery .swiper-thumb .swiper-slide{opacity:.5;border:2px solid transparent;border-radius:var(--radius-sm);overflow:hidden;cursor:pointer;aspect-ratio:4/3}
.product-gallery .swiper-thumb .swiper-slide-active{opacity:1;border-color:var(--primary)}
.product-info h1{font-size:1.75rem;font-weight:800;margin-bottom:.75rem}
.product-meta{display:flex;gap:1.5rem;font-size:.85rem;color:var(--gray-600);margin-bottom:1rem;flex-wrap:wrap}
.product-price-box{background:var(--gray-100);border-radius:var(--radius);padding:1.25rem;margin-bottom:1.5rem}
.product-price-box .price{font-size:1.5rem;font-weight:800;color:var(--primary)}
.product-price-box .price-note{font-size:.8rem;color:var(--gray-600)}
.product-cta-group{display:flex;gap:.5rem;flex-wrap:wrap}
.product-cta-group .btn{flex:1;min-width:140px}
.product-detail-section{padding:2.5rem 0;border-bottom:1px solid var(--gray-200)}
.product-detail-section:last-child{border-bottom:none}
.product-detail-section h3{font-size:1.25rem;font-weight:700;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:2px solid var(--primary);display:inline-block}

/* --- Pagination --- */
.pagination{gap:.35rem}
.page-link{border:1px solid var(--gray-400);color:var(--gray-700);padding:.45rem .75rem;font-size:.85rem;border-radius:var(--radius-sm)!important;transition:var(--transition)}
.page-link:hover{background:var(--primary);color:#fff;border-color:var(--primary)}
.page-item.active .page-link{background:var(--primary);border-color:var(--primary)}

/* --- Floating Buttons --- */
.floating-buttons{position:fixed;bottom:24px;right:24px;display:flex;flex-direction:column;gap:12px;z-index:999}
.floating-btn{width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.2rem;box-shadow:var(--shadow-md);transition:var(--transition);text-decoration:none}
.floating-btn:hover{transform:scale(1.1);color:#fff}
.floating-whatsapp{background:#25d366}
.floating-call{background:var(--primary)}
.floating-quote{background:var(--secondary)}

/* --- Footer --- */
.site-footer{background:var(--dark);color:var(--gray-400);padding-top:4rem}
.footer-widget{margin-bottom:1.5rem}
.footer-brand{font-size:1.3rem;font-weight:800;color:var(--white);display:inline-block;margin-bottom:1rem;text-decoration:none}
.footer-brand span{color:var(--primary-light)}
.footer-desc{font-size:.875rem;line-height:1.7;color:var(--gray-500)}
.footer-title{color:var(--white);font-size:1rem;font-weight:700;margin-bottom:1.25rem;position:relative;padding-bottom:.75rem}
.footer-title::after{content:'';position:absolute;bottom:0;left:0;width:36px;height:2px;background:var(--primary)}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin-bottom:.6rem}
.footer-links a{color:var(--gray-500);font-size:.875rem;transition:var(--transition)}
.footer-links a:hover{color:var(--white);padding-left:4px}
.footer-contact p{font-size:.875rem;margin-bottom:.5rem;color:var(--gray-500)}
.footer-contact a{color:var(--gray-500)}
.footer-contact a:hover{color:var(--white)}
.footer-contact i{width:20px;margin-right:.5rem;color:var(--gray-500)}
.footer-social{display:flex;gap:.75rem;margin-top:1rem}
.footer-social a{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:var(--gray-400);transition:var(--transition);font-size:.85rem}
.footer-social a:hover{background:var(--primary);color:var(--white)}
.footer-newsletter .input-group{border-radius:var(--radius-sm);overflow:hidden}
.footer-newsletter .form-control{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);color:var(--white);font-size:.85rem}
.footer-newsletter .form-control::placeholder{color:var(--gray-500)}
.footer-newsletter .form-control:focus{box-shadow:none;border-color:var(--primary)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:1.25rem 0;margin-top:2rem}
.footer-bottom p{font-size:.8rem;color:var(--gray-500)}
.footer-bottom-links{display:flex;gap:1rem;flex-wrap:wrap}
.footer-bottom-links a{color:var(--gray-500);font-size:.8rem;transition:var(--transition)}
.footer-bottom-links a:hover{color:var(--white)}

/* --- About Page --- */
.about-hero{background:linear-gradient(135deg,#0d47a1,#1976d2);color:#fff;padding:4rem 0}
.about-content p{font-size:1rem;line-height:1.8;color:var(--gray-700);margin-bottom:1.25rem}
.about-content h3{margin-top:2rem}

/* --- Location Card --- */
.location-card{border-radius:var(--radius);border:1px solid var(--gray-200);padding:1.5rem;transition:var(--transition);background:var(--white);text-decoration:none;display:block}
.location-card:hover{border-color:var(--primary);box-shadow:var(--shadow-md);transform:translateY(-2px);text-decoration:none}
.location-card h5{color:var(--dark);font-size:1rem;margin-bottom:.5rem}
.location-card p{color:var(--gray-600);font-size:.85rem;margin:0}
.location-city-card:hover{border-color:var(--primary)!important;box-shadow:var(--shadow-sm);transform:translateY(-2px)}

/* --- Gallery --- */
.gallery-item{border-radius:var(--radius);overflow:hidden;position:relative;cursor:pointer}
.gallery-item img{width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .4s ease}
.gallery-item:hover img{transform:scale(1.05)}
.gallery-overlay{position:absolute;inset:0;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;opacity:0;transition:var(--transition)}
.gallery-item:hover .gallery-overlay{opacity:1}
.gallery-overlay i{color:#fff;font-size:1.5rem}

/* --- CTA Section --- */
.cta-section{background:linear-gradient(135deg,var(--primary) 0%,#1565c0 100%);color:#fff;padding:4rem 0;text-align:center;border-radius:var(--radius-lg)}
.cta-section h2{color:#fff;margin-bottom:1rem}
.cta-section p{opacity:.9;max-width:500px;margin:0 auto 2rem}

/* --- Video Card --- */
.video-card{border-radius:var(--radius);overflow:hidden;border:1px solid var(--gray-200);position:relative;background:var(--dark);cursor:pointer}
.video-card img{width:100%;aspect-ratio:16/9;object-fit:cover;opacity:.8;transition:var(--transition)}
.video-card:hover img{opacity:.6}
.video-card .play-btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:56px;height:56px;border-radius:50%;background:rgba(255,255,255,.9);display:flex;align-items:center;justify-content:center;color:var(--primary);font-size:1.25rem;transition:var(--transition)}
.video-card:hover .play-btn{background:var(--primary);color:#fff;transform:translate(-50%,-50%) scale(1.1)}
.video-card .card-body{padding:1rem;background:var(--white)}

/* --- Industries Page --- */
.industry-card{border-radius:var(--radius);border:1px solid var(--gray-200);padding:2rem;text-align:center;transition:var(--transition);background:var(--white);height:100%}
.industry-card:hover{border-color:var(--primary);box-shadow:var(--shadow-md);transform:translateY(-3px)}
.industry-card .icon{width:72px;height:72px;border-radius:var(--radius);background:rgba(13,71,161,.08);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.75rem;color:var(--primary);transition:var(--transition)}
.industry-card:hover .icon{background:var(--primary);color:#fff}
.industry-card h5{font-weight:700;margin-bottom:.5rem}

/* --- Comparisons --- */
.compare-table th,.compare-table td{padding:.75rem;text-align:center;font-size:.85rem;border:1px solid var(--gray-200)}
.compare-table th{background:var(--primary);color:#fff;font-weight:600}
.compare-table td:first-child{font-weight:600;background:var(--gray-100);text-align:left}

/* --- Machine Finder --- */
.finder-card{background:var(--gray-100);border-radius:var(--radius-lg);padding:2.5rem;border:1px solid var(--gray-200)}

/* --- Scroll to Top --- */
.scroll-top{position:fixed;bottom:90px;right:24px;width:40px;height:40px;border-radius:50%;background:var(--primary);color:#fff;border:none;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-md);z-index:998;opacity:0;visibility:hidden;transition:var(--transition);cursor:pointer;font-size:.9rem}
.scroll-top.show{opacity:1;visibility:visible}
.scroll-top:hover{background:var(--primary-dark);color:#fff}

/* --- Responsive --- */
/* --- Hero Product Card Slider (Corporate Showcase) --- */
.hero-slider-wrap{position:relative;padding:10px 0 30px}
.heroProductSlider{padding:10px 0}
.heroProductSlider .swiper-slide{height:auto}
.hero-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,.2);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hero-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0,0,0,.2);
}
.hero-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(245,124,0,.35);
}
.hero-product-link{text-decoration:none;display:block}
.hero-product-image {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.hero-product-card:hover .hero-product-image img {
    transform: scale(1.05);
}
.hero-product-info {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hero-product-category {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(13,71,161,.08);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    align-self: flex-start;
}
.hero-product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.35;
}
.hero-product-title a{color:var(--dark);text-decoration:none}
.hero-product-title a:hover{color:var(--primary)}
.hero-product-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    margin-top: auto;
}
.hero-product-actions {
    display: flex;
    gap: 8px;
}
.hero-product-actions .btn {
    flex: 1;
    padding: 8px 12px;
    font-size: .78rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

/* Hero Slider Navigation */
.hero-slider-nav{position:absolute;top:50%;left:0;right:0;z-index:10;display:flex;justify-content:space-between;pointer-events:none;transform:translateY(-50%);padding:0 -8px}
.hero-slider-prev,.hero-slider-next{
    width:36px;height:36px;border-radius:50%;
    background:var(--white);border:2px solid var(--gray-300);
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;pointer-events:all;
    box-shadow:0 4px 12px rgba(0,0,0,.12);
    transition:var(--transition);color:var(--dark);font-size:.8rem;
}
.hero-slider-prev:hover,.hero-slider-next:hover{
    background:var(--primary);border-color:var(--primary);color:var(--white);
    transform:scale(1.1);
}
.hero-slider-prev{margin-left:0}
.hero-slider-next{margin-right:0}

/* Hero Slider Pagination */
.hero-slider-pagination{display:flex;justify-content:center;gap:6px;margin-top:8px}
.hero-slider-pagination .swiper-pagination-bullet{
    width:8px;height:8px;opacity:.4;
    background:var(--white);transition:var(--transition);
}
.hero-slider-pagination .swiper-pagination-bullet-active{
    opacity:1;width:24px;border-radius:4px;
    background:var(--secondary);
}

/* --- Product Detail: GEO/SEO Sections --- */
.geo-info-box{background:linear-gradient(135deg,rgba(13,71,161,.04),rgba(21,101,192,.06));border:1px solid rgba(13,71,161,.12);border-radius:var(--radius);padding:1.25rem 1.5rem}
.geo-info-box h4{font-size:1rem;font-weight:700;color:var(--dark);margin-bottom:.5rem}
.geo-badge{display:inline-flex;align-items:center;padding:.35rem .75rem;background:var(--white);border:1px solid var(--gray-200);border-radius:20px;font-size:.78rem;font-weight:600;color:var(--gray-700);gap:.35rem}
.geo-badge i{color:var(--primary);font-size:.7rem}

.quick-specs-box{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.25rem 1.5rem}
.quick-specs-box h4{font-size:1rem;font-weight:700;color:var(--dark);margin-bottom:.5rem}
.quick-spec-item{background:var(--gray-100);border-radius:var(--radius-sm);padding:.75rem 1rem;border-left:3px solid var(--primary)}
.quick-spec-label{display:block;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--gray-600);margin-bottom:2px}
.quick-spec-value{display:block;font-size:.9rem;font-weight:600;color:var(--dark)}

/* --- Product Detail: Feature Items --- */
.feature-item-box{display:flex;gap:1rem;padding:1rem;background:var(--gray-100);border-radius:var(--radius);border:1px solid var(--gray-200);height:100%;transition:var(--transition)}
.feature-item-box:hover{border-color:var(--primary);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.feature-item-icon{flex-shrink:0;width:40px;height:40px;border-radius:50%;background:rgba(13,71,161,.08);display:flex;align-items:center;justify-content:center;color:var(--primary);font-size:1rem}
.feature-item-text h5{font-size:.9rem;font-weight:700;color:var(--dark);margin-bottom:.25rem;line-height:1.35}
.feature-item-text p{font-size:.82rem;color:var(--gray-600);margin:0;line-height:1.55}

/* --- Product Detail: Spec Table --- */
.spec-table-wrap{overflow-x:auto}
.spec-table thead{background:var(--primary);color:var(--white)}
.spec-table thead th{padding:.7rem 1rem;font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.3px}
.spec-table thead th:first-child{border-radius:var(--radius-sm) 0 0 0}
.spec-table thead th:last-child{border-radius:0 var(--radius-sm) 0 0}
.spec-table td{padding:.7rem 1rem;font-size:.9rem}

/* --- Product Detail: Working Steps --- */
.working-steps{display:flex;flex-direction:column;gap:1.25rem}
.working-step{display:flex;gap:1rem;align-items:flex-start;padding:1.25rem;background:var(--gray-100);border-radius:var(--radius);border:1px solid var(--gray-200);transition:var(--transition)}
.working-step:hover{border-color:var(--primary);box-shadow:var(--shadow-sm)}
.working-step-num{flex-shrink:0;width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--primary),var(--primary-light));color:var(--white);display:flex;align-items:center;justify-content:center;font-size:1.1rem;font-weight:800;box-shadow:0 4px 12px rgba(13,71,161,.25)}
.working-step-content h4{font-size:.95rem;font-weight:700;color:var(--dark);margin-bottom:.35rem}
.working-step-content p{font-size:.88rem;color:var(--gray-600);margin:0;line-height:1.7}

/* --- Product Detail: Application Items --- */
.application-item{padding:1.25rem;background:var(--gray-100);border:1px solid var(--gray-200);border-radius:var(--radius);text-align:center;height:100%;transition:var(--transition)}
.application-item:hover{border-color:var(--primary);box-shadow:var(--shadow-md);transform:translateY(-3px)}
.application-item .app-icon{font-size:1.5rem;color:var(--primary);margin-bottom:.5rem}
.application-item h5{font-size:.9rem;font-weight:700;color:var(--dark);margin-bottom:.35rem}
.application-item p{font-size:.78rem;color:var(--gray-600);margin:0;line-height:1.55}

/* --- Product Card: Overlay Actions (Wishlist + Compare) --- */
.product-overlay-actions{position:absolute;top:12px;right:12px;display:flex;flex-direction:column;gap:6px;z-index:2;opacity:0;transform:translateX(8px);transition:var(--transition)}
.product-card:hover .product-overlay-actions{opacity:1;transform:translateX(0)}
.overlay-btn{width:34px;height:34px;border-radius:50%;background:var(--white);border:none;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 2px 8px rgba(0,0,0,.15);transition:var(--transition);color:var(--gray-600);font-size:.8rem}
.overlay-btn:hover{transform:scale(1.1);box-shadow:0 4px 12px rgba(0,0,0,.2)}
.overlay-btn.active{color:var(--white)}
.overlay-btn.wishlist-toggle:hover,.overlay-btn.wishlist-toggle.active{background:var(--danger);color:var(--white)}
.overlay-btn.compare-toggle:hover,.overlay-btn.compare-toggle.active{background:var(--primary);color:var(--white)}
.overlay-btn i{font-size:.85rem}

/* --- Product Detail: CTA Buttons row --- */
.product-detail-actions-row{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1rem}
.product-detail-actions-row .btn{flex:1;min-width:auto}

/* --- Mobile Bottom Navigation (App-style) --- */
.mobile-bottom-nav{position:fixed;bottom:0;left:0;right:0;z-index:1100;display:flex;align-items:stretch;background:var(--white);border-top:1px solid var(--gray-200);box-shadow:0 -2px 12px rgba(0,0,0,.08);padding-bottom:env(safe-area-inset-bottom)}
.mobile-bottom-nav-item{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;padding:8px 4px 6px;text-decoration:none;color:var(--gray-600);font-size:.65rem;font-weight:600;letter-spacing:.2px;transition:color .2s;position:relative;-webkit-tap-highlight-color:transparent}
.mobile-bottom-nav-item i{font-size:1.15rem;transition:color .2s}
.mobile-bottom-nav-item span:last-child{line-height:1}
.mobile-bottom-nav-item.active{color:var(--primary)}
.mobile-bottom-nav-item.active i{color:var(--primary)}
.mobile-bottom-nav-item:active{opacity:.7}
.mobile-nav-badge{position:absolute;top:4px;right:50%;transform:translateX(calc(50% + 10px));background:var(--danger);color:#fff;font-size:.55rem;min-width:15px;height:15px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;line-height:1;padding:0 3px;pointer-events:none}

/* Hide floating buttons on mobile (replaced by bottom nav) */
@media (max-width:991.98px) {
    .floating-buttons{display:none!important}
}

/* --- Media Queries --- */
@media (max-width:991.98px) {
    .hero{padding:4rem 0 3.5rem}
    .hero h1{font-size:2.25rem}
    .section{padding:3.5rem 0}
    .trust-indicators{margin-top:-2rem}
    .top-bar{display:none!important}
    .hero-product-card{margin-top:2rem}
}
@media (max-width:767.98px) {
    h1{font-size:1.75rem}
    h2{font-size:1.5rem}
    .hero{padding:3rem 0 2.5rem}
    .hero h1{font-size:1.85rem}
    .section{padding:3rem 0}
    .trust-badges{flex-direction:column;gap:.75rem}
    .product-cta-group{flex-direction:column}
    .product-cta-group .btn{min-width:100%}
    .hero-product-image{height:180px}
    .feature-item-box{flex-direction:column;gap:.75rem}
    .working-step{flex-direction:column;gap:.75rem}
    .spec-table td:first-child{white-space:normal}
    body{padding-bottom:70px}
}
@media (max-width:575.98px) {
    .hero h1{font-size:1.6rem}
    .footer-bottom .text-md-end{margin-top:.75rem}
    .hero-product-actions{flex-direction:column}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
    .product-card:hover .card-img-wrap img,
    .blog-card:hover .card-img-wrap img,
    .gallery-item:hover img {transform:none}
    .hero-product-card:hover{transform:none}
    .hero-product-card:hover .hero-product-image img{transform:none}
}

/* Products Dropdown */
.main-header .dropdown-menu{border:1px solid var(--gray-200);box-shadow:var(--shadow-lg);border-radius:.5rem;margin-top:.5rem;max-height:420px;overflow-y:auto;min-width:220px}
.main-header .dropdown-item{padding:.45rem 1rem;font-size:.9rem;transition:background .2s}
.main-header .dropdown-item:hover{background:var(--primary-light);color:var(--primary)}

/* Cart badge bump animation */
@keyframes cartBump{0%{transform:scale(1)}50%{transform:scale(1.4)}100%{transform:scale(1)}}
.cart-bump{animation:cartBump .4s ease}

/* Mini Cart Panel */
.mini-cart-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.15);z-index:2000;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s}
.mini-cart-overlay.open{opacity:1;visibility:visible}
.mini-cart-panel{position:fixed;top:0;right:0;width:380px;max-width:90vw;height:100%;background:var(--white);z-index:2001;transform:translateX(100%);transition:transform .35s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;box-shadow:-4px 0 20px rgba(0,0,0,.15)}
.mini-cart-panel.open{transform:translateX(0)}
.mini-cart-body{flex:1;overflow-y:auto}
.mini-cart-body .min-width-0{min-width:0}
.mini-cart-footer .btn{font-size:.9rem}
