/* ============================================================
   BOPP Films India - Main Stylesheet
   ============================================================ */

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: color 0.3s; }
a:hover { text-decoration: none; }

/* ----- Top Bar ----- */
.top-bar {
    background: var(--color-primary);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: #fff; }
.top-bar-social a {
    display: inline-block;
    width: 28px; height: 28px;
    line-height: 28px;
    text-align: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    margin-left: 5px;
    color: #fff !important;
    transition: background 0.3s;
}
.top-bar-social a:hover { background: var(--color-secondary); }

/* ----- Header ----- */
.site-header {
    background: var(--color-header-bg);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    z-index: 1000;
}
.site-header.sticky-top { position: sticky; top: 0; }
.navbar { padding: 0; }
.navbar-brand { padding: 12px 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.logo-tagline {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.site-logo { height: 55px; width: auto; }
.navbar .nav-link {
    padding: 22px 14px !important;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 3px;
    background: var(--color-secondary);
    transition: all 0.3s;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { left: 0; right: 0; }
.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-top: 3px solid var(--color-secondary);
    min-width: 200px;
    padding: 5px 0;
}
.dropdown-item { padding: 10px 20px; font-size: 14px; color: #333; transition: all 0.3s; }
.dropdown-item:hover { background: var(--color-primary); color: #fff; padding-left: 28px; }
.btn-inquiry-cta {
    border-radius: 4px;
    font-weight: 600;
    padding: 9px 22px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ----- Hero Slider ----- */
.hero-slider { position: relative; overflow: hidden; }
.slider-slide { position: relative; height: 600px; overflow: hidden; }
@media (max-width: 768px) { .slider-slide { height: 400px; } }
.slider-slide img, .slider-slide video {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.slider-slide video { position: absolute; top: 0; left: 0; }
.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,30,80,0.75) 0%, rgba(0,0,0,0.35) 100%);
    display: flex; align-items: center;
    z-index: 2;
}
.slider-content { color: #fff; max-width: 700px; }
.slider-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.slider-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 1.8rem;
}
.slider-btn {
    display: inline-block;
    background: var(--color-secondary);
    color: #fff;
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.slider-btn:hover { background: var(--color-accent); color: #333; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.swiper-pagination-bullet { background: #fff; opacity: 0.5; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--color-secondary); }
.swiper-button-next, .swiper-button-prev { color: #fff !important; }

/* ----- Section Styles ----- */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-divider {
    width: 60px; height: 3px;
    background: var(--color-secondary);
    border: none;
    margin: 0 auto 20px;
}
.section-divider.left { margin-left: 0; }
.section-desc {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ----- Stats Banner ----- */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #01579b 100%);
    padding: 50px 0;
    color: #fff;
}
.stat-item { text-align: center; padding: 20px; }
.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    display: block;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }
.stat-icon { font-size: 28px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }

/* ----- Product Cards ----- */
.product-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-card-bg);
    transition: all 0.35s cubic-bezier(.25,.46,.45,.94);
    height: 100%;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--color-primary);
}
.product-card-image { height: 220px; overflow: hidden; position: relative; background: #f5f5f5; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-card-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--color-secondary);
    color: #fff; font-size: 11px;
    padding: 4px 10px; border-radius: 3px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.product-card-body { padding: 22px; }
.product-card-cat { font-size: 12px; color: var(--color-secondary); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 8px; }
.product-card-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; line-height: 1.35; }
.product-card-desc { font-size: 14px; color: #666; margin-bottom: 18px; line-height: 1.6; }
.product-card-footer { padding: 15px 22px; border-top: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; }
.product-card-link { font-size: 13px; font-weight: 600; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.5px; }
.product-card-link:hover { color: var(--color-secondary); }

/* ----- Category Cards ----- */
.cat-card {
    position: relative; overflow: hidden; border-radius: 8px;
    height: 280px; display: block; cursor: pointer;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-card:hover img { transform: scale(1.1); }
.cat-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,30,80,0.85) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 25px;
    transition: background 0.3s;
}
.cat-card:hover .cat-card-overlay { background: linear-gradient(to top, rgba(0,30,80,0.92) 0%, rgba(0,30,80,0.3) 100%); }
.cat-card-title { color: #fff; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; }
.cat-card-arrow { color: var(--color-accent); margin-left: 8px; }

/* ----- Why Choose Us ----- */
.feature-box {
    text-align: center; padding: 35px 25px;
    border-radius: 8px; transition: all 0.3s;
    border: 1px solid transparent;
}
.feature-box:hover {
    background: #fff;
    border-color: var(--color-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.feature-icon {
    width: 75px; height: 75px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px; color: #fff;
    transition: transform 0.3s;
}
.feature-box:hover .feature-icon { transform: rotateY(180deg); }
.feature-box h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 12px; }
.feature-box p { font-size: 14px; color: #666; line-height: 1.7; }

/* ----- Testimonials ----- */
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    position: relative;
    border-left: 4px solid var(--color-secondary);
    height: 100%;
}
.testimonial-quote {
    font-size: 48px;
    color: var(--color-secondary);
    opacity: 0.2;
    position: absolute;
    top: 15px; right: 20px;
    font-family: Georgia;
    line-height: 1;
}
.testimonial-text { font-size: 15px; color: #555; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    object-fit: cover; background: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; font-weight: 700;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-role { font-size: 12px; color: #888; }

/* ----- Career Cards ----- */
.career-card {
    border: 1px solid var(--color-border);
    border-radius: 8px; padding: 25px;
    background: #fff; transition: all 0.3s;
    margin-bottom: 20px;
}
.career-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.career-card-title { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 12px; }
.career-badge {
    display: inline-block;
    padding: 4px 12px; border-radius: 20px;
    font-size: 12px; font-weight: 600;
    margin-right: 6px; margin-bottom: 8px;
}
.badge-dept { background: rgba(0,51,102,0.1); color: var(--color-primary); }
.badge-type { background: rgba(232,80,42,0.1); color: var(--color-secondary); }
.badge-exp { background: rgba(245,166,35,0.15); color: #c47a00; }

/* ----- Contact Form ----- */
.contact-form-wrap { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.form-control, .form-select {
    border: 1.5px solid var(--color-border);
    border-radius: 6px; padding: 12px 16px;
    font-size: 15px; transition: all 0.3s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,51,102,0.1);
    outline: none;
}
.form-label { font-weight: 600; font-size: 14px; color: #444; margin-bottom: 6px; }

/* ----- Page Banner ----- */
.page-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, #01579b 100%);
    padding: 70px 0 60px;
    color: #fff; position: relative; overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner h1 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: 12px; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 14px; }
.breadcrumb-item a { color: rgba(255,255,255,0.8); }
.breadcrumb-item a:hover { color: #fff; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ----- About Section ----- */
.about-image-wrap { position: relative; }
.about-image-main { border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--color-secondary);
    color: #fff; padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(232,80,42,0.3);
}
.about-badge-num { font-size: 2.5rem; font-weight: 700; line-height: 1; display: block; }
.about-badge-txt { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 8px 0; padding-left: 28px; position: relative; font-size: 15px; color: #444; }
.check-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--color-secondary); }

/* ----- Footer ----- */
.footer-main { background: var(--color-footer-bg); padding: 70px 0 40px; }
.footer-brand { color: #fff; font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; }
.footer-logo { height: 50px; width: auto; }
.footer-about { color: var(--color-footer-text); font-size: 14px; line-height: 1.8; margin-bottom: 0; }
.footer-title { color: #fff; font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--color-secondary); display: inline-block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--color-footer-text); font-size: 14px; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--color-secondary); font-size: 18px; line-height: 1; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-social a.social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: #fff !important;
    margin-right: 8px; transition: all 0.3s;
    font-size: 15px;
}
.footer-social a.social-icon:hover { background: var(--color-secondary); transform: translateY(-3px); }
.footer-contact-info .contact-item { display: flex; gap: 12px; margin-bottom: 15px; color: var(--color-footer-text); font-size: 14px; }
.footer-contact-info .contact-item i { color: var(--color-secondary); margin-top: 3px; min-width: 15px; }
.footer-contact-info a { color: var(--color-footer-text); transition: color 0.3s; }
.footer-contact-info a:hover { color: #fff; }
.footer-bottom {
    background: rgba(0,0,0,0.3); padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6); font-size: 13px;
}
.footer-bottom p { color: rgba(255,255,255,0.6); }
.footer-meta-link { color: rgba(255,255,255,0.6); font-size: 13px; transition: color 0.3s; }
.footer-meta-link:hover { color: #fff; }

/* ----- Back to Top ----- */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-secondary);
    color: #fff !important; display: flex; align-items: center; justify-content: center;
    font-size: 16px; opacity: 0; visibility: hidden; transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); background: var(--color-primary); }

/* ----- Buttons ----- */
.btn { border-radius: 4px; font-weight: 600; transition: all 0.3s; }
.btn-lg { padding: 14px 36px; font-size: 15px; }
.btn-sm { padding: 7px 18px; font-size: 13px; }

/* ----- Utilities ----- */
.text-secondary-custom { color: var(--color-secondary) !important; }
.bg-gradient-primary { background: linear-gradient(135deg, var(--color-primary) 0%, #01579b 100%) !important; }
.shadow-card { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.border-radius-lg { border-radius: 12px; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.hover-lift { transition: transform 0.3s, box-shadow 0.3s; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }

/* ----- Alerts & Messages ----- */
.alert-custom {
    border-radius: 8px; padding: 15px 20px; border: none;
    font-size: 15px; display: flex; align-items: center; gap: 12px;
}
.alert-custom-success { background: #d4edda; color: #155724; }
.alert-custom-error { background: #f8d7da; color: #721c24; }

/* ----- Product Detail ----- */
.product-gallery-main { border-radius: 10px; overflow: hidden; background: #f5f5f5; }
.product-gallery-thumb { height: 80px; border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.3s; }
.product-gallery-thumb.active { border-color: var(--color-primary); }
.spec-table th { background: var(--color-alt-bg); font-weight: 600; width: 40%; }
.spec-table td, .spec-table th { padding: 10px 16px; border: 1px solid var(--color-border); vertical-align: middle; }
.product-tabs .nav-tabs { border-bottom: 2px solid var(--color-border); }
.product-tabs .nav-link { color: #555; font-weight: 500; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; padding: 12px 20px; }
.product-tabs .nav-link.active { color: var(--color-primary); border-bottom-color: var(--color-secondary); background: none; }

/* ----- News/Blog Cards ----- */
.news-card { border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 5px 25px rgba(0,0,0,0.07); transition: all 0.3s; height: 100%; }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.news-card-image { height: 200px; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-card-image img { transform: scale(1.07); }
.news-card-body { padding: 22px; }
.news-card-date { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.news-card-title { font-family: var(--font-heading); font-size: 1.05rem; line-height: 1.4; margin-bottom: 10px; }

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .navbar .nav-link { padding: 12px 16px !important; }
    .navbar .nav-link::after { display: none; }
    .dropdown-menu { border-left: 3px solid var(--color-secondary); }
    .section { padding: 50px 0; }
    .about-badge { display: none; }
}
@media (max-width: 575px) {
    .slider-slide { height: 320px; }
    .contact-form-wrap { padding: 25px; }
    .feature-box { padding: 25px 15px; }
}

/* ═══════════════════════════════════════════════
   Additional Styles — v2
═══════════════════════════════════════════════ */

/* Hero Slider */
.hero-slider { position:relative; overflow:hidden; }
.hero-swiper { width:100%; height:92vh; min-height:480px; max-height:780px; }
.slider-slide { position:relative; width:100%; height:100%; display:flex; align-items:center; }
.slider-media { position:absolute; inset:0; }
.slider-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.42); }
.slider-content { position:relative; z-index:2; color:#fff; max-width:700px; }
.slider-content h1 { color:#fff; font-size:clamp(1.8rem,4vw,3.2rem); font-weight:800; line-height:1.2; margin-bottom:1rem; }
.slider-content p { font-size:1.15rem; opacity:0.88; margin-bottom:0; }
.swiper-button-next, .swiper-button-prev { color:#fff!important; }
.swiper-pagination-bullet-active { background:#fff!important; }

/* Page Banner */
.page-banner { position:relative; padding:80px 0; background-size:cover; background-position:center; }
.page-banner .banner-overlay { position:absolute; inset:0; background:rgba(0,0,30,0.58); }
.page-banner .banner-content { position:relative; z-index:2; text-align:center; color:#fff; }
.page-banner h1 { color:#fff; font-weight:800; margin-bottom:12px; }
.page-banner .breadcrumb { justify-content:center; }
.page-banner .breadcrumb-item a { color:rgba(255,255,255,.7); text-decoration:none; }
.page-banner .breadcrumb-item.active, .page-banner .breadcrumb-item+.page-banner .breadcrumb-item::before { color:#fff; }

/* Top Bar */
.top-bar { background:var(--color-primary,#003366); padding:7px 0; font-size:13px; }
.top-bar .top-bar-left a, .top-bar .top-bar-left span { color:rgba(255,255,255,.8); text-decoration:none; }
.top-bar .top-bar-social a { color:rgba(255,255,255,.75); margin-left:12px; font-size:14px; transition:color .2s; }
.top-bar .top-bar-social a:hover { color:#fff; }
.whatsapp-btn { background:#25d366; color:#fff!important; padding:2px 10px; border-radius:4px; font-size:12px; font-weight:600; }

/* Site Header / Navbar */
.site-header { background:var(--color-nav-bg,#003366); box-shadow:0 2px 12px rgba(0,0,0,.15); }
.site-header .navbar { padding:10px 0; }
.site-logo { max-height:55px; width:auto; }
.logo-text { display:flex; flex-direction:column; }
.logo-main { color:#fff; font-size:1.2rem; font-weight:800; line-height:1.1; }
.logo-tagline { color:rgba(255,255,255,.6); font-size:11px; }
.navbar .nav-link { font-weight:500; padding:.5rem 1rem!important; }
.navbar .dropdown-menu { border:none; box-shadow:0 8px 24px rgba(0,0,0,.12); border-radius:10px; padding:8px 0; }
.navbar .dropdown-item:hover { background:var(--color-primary,#003366); color:#fff; }
.btn-main { background:var(--color-secondary,#e8502a)!important; color:#fff!important; border:none!important; border-radius:6px; font-weight:600; padding:8px 22px; }
.btn-inquiry-cta { border-radius:6px; }

/* Section Spacing */
.section-padding { padding:70px 0; }
.section-label { font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--color-secondary,#e8502a); margin-bottom:8px; display:block; }
.section-title { font-weight:700; font-size:clamp(1.5rem,3vw,2.2rem); margin-bottom:1rem; }
@media(max-width:576px) { .section-padding{padding:45px 0} }

/* Feature Card */
.feature-card { padding:28px; border-radius:14px; background:#fff; box-shadow:0 4px 18px rgba(0,0,0,.07); transition:transform .3s; }
.feature-card:hover { transform:translateY(-6px); }
.feature-icon { width:56px; height:56px; border-radius:14px; background:var(--color-primary,#003366); color:#fff; display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:1.2rem; }

/* Page Content (TinyMCE output) */
.page-content { line-height:1.8; }
.page-content img { max-width:100%; height:auto; border-radius:8px; margin:12px 0; }
.page-content table { width:100%; border-collapse:collapse; margin:1rem 0; }
.page-content table th,.page-content table td { padding:10px 14px; border:1px solid #ddd; }
.page-content table th { background:var(--color-primary,#003366); color:#fff; }
.page-content h2,.page-content h3,.page-content h4 { margin-top:2rem; margin-bottom:1rem; }

/* Product Cards */
.product-card { transition:transform .25s; }
.product-card:hover { transform:translateY(-5px); }

/* Blog Cards */
.blog-card { transition:transform .25s; }
.blog-card:hover { transform:translateY(-5px); }

/* Footer */
.site-footer { background:var(--color-footer-bg,#1a1a2e); color:var(--color-footer-text,#ccc); }
.footer-main { padding:60px 0 40px; }
.footer-brand { color:#fff; font-size:1.4rem; font-weight:800; margin-bottom:12px; }
.footer-logo { max-height:50px; width:auto; filter:brightness(0) invert(1); opacity:.9; }
.footer-about { font-size:14px; opacity:.75; line-height:1.7; }
.footer-title { color:#fff; font-size:15px; font-weight:700; margin-bottom:16px; letter-spacing:.3px; }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom:9px; }
.footer-links a { color:rgba(255,255,255,.65); text-decoration:none; font-size:13.5px; transition:color .2s; display:flex; align-items:center; gap:7px; }
.footer-links a:hover { color:#fff; }
.footer-links a::before { content:'›'; color:var(--color-secondary,#e8502a); font-weight:700; }
.footer-social { display:flex; flex-wrap:wrap; gap:8px; }
.social-icon { display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.1); color:rgba(255,255,255,.8); font-size:14px; text-decoration:none; transition:all .25s; }
.social-icon:hover { background:var(--color-secondary,#e8502a); color:#fff; transform:translateY(-3px); }
.footer-contact-info { display:flex; flex-direction:column; gap:10px; }
.contact-item { display:flex; align-items:flex-start; gap:10px; font-size:13.5px; }
.contact-item i { color:var(--color-secondary,#e8502a); margin-top:2px; width:14px; flex-shrink:0; }
.contact-item a { color:rgba(255,255,255,.75); text-decoration:none; }
.contact-item a:hover { color:#fff; }
.footer-bottom { background:rgba(0,0,0,.25); padding:16px 0; font-size:13px; color:rgba(255,255,255,.6); }
.footer-meta-link { color:rgba(255,255,255,.55); text-decoration:none; font-size:12px; }
.footer-meta-link:hover { color:#fff; }

/* Back to Top */
.back-to-top { position:fixed; bottom:28px; right:28px; width:42px; height:42px; border-radius:50%; background:var(--color-primary,#003366); color:#fff; display:flex; align-items:center; justify-content:center; text-decoration:none; font-size:16px; opacity:0; transition:all .3s; z-index:999; box-shadow:0 4px 14px rgba(0,0,0,.2); }
.back-to-top.visible { opacity:1; }
.back-to-top:hover { background:var(--color-secondary,#e8502a); color:#fff; transform:translateY(-4px); }

/* Announcement Bar */
.announcement-bar { font-size:14px; line-height:1.5; }

/* Breadcrumb override */
.breadcrumb-item+.breadcrumb-item::before { color:rgba(255,255,255,.5)!important; }

/* Product Detail */
.page-banner-mini { padding:30px 0; }

