/* ==========================================================================
   Avecena Gloves Sdn Bhd — Main Stylesheet
   Medical · Manufacturing · Export Corporate Theme
   ========================================================================== */

:root {
    /* Brand palette aligned with avecenagloves.com */
    --color-primary: #1a5f4a;
    --color-primary-dark: #134a3a;
    --color-primary-light: #27cc4c;
    --color-accent: #27cc4c;
    --color-accent-bright: #65ff63;
    --color-glovanil: #2563eb;
    --color-glovatex: #ea580c;
    --color-dark: #1e293b;
    --color-dark-soft: #334155;
    --color-gray: #64748b;
    --color-gray-light: #94a3b8;
    --color-light: #f4f9f6;
    --color-white: #ffffff;
    --color-success: #27cc4c;
    --gradient-primary: linear-gradient(135deg, #1a5f4a 0%, #27cc4c 100%);
    --gradient-hero: linear-gradient(160deg, #f8fcfa 0%, #eef8f2 50%, #ffffff 100%);
    --font-primary: 'Open Sans', system-ui, sans-serif;
    --font-heading: 'Montserrat', 'Open Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(30, 41, 59, 0.06);
    --shadow-md: 0 8px 30px rgba(30, 41, 59, 0.08);
    --shadow-lg: 0 16px 48px rgba(30, 41, 59, 0.1);
    --shadow-glass: 0 8px 32px rgba(39, 204, 76, 0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-height); }
body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.3;
}
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
img { max-width: 100%; height: auto; }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glass-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(39, 204, 76, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    transition: transform var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 74, 140, 0.35);
    background: var(--gradient-primary);
}
.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.22); color: var(--color-white); }
.btn-glass-dark {
    background: rgba(10, 37, 64, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.btn-glass-dark:hover { background: rgba(10, 37, 64, 0.35); color: var(--color-white); }
.btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.btn-outline-primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* Sections */
.section { padding: 96px 0; position: relative; }
.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    background: rgba(39, 204, 76, 0.1);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.section-desc { font-size: 1.0625rem; max-width: 640px; }
.section-header { margin-bottom: 3rem; }

.btn-whatsapp {
    background: #25d366;
    border: none;
    color: var(--color-white);
    font-weight: 600;
}
.btn-whatsapp:hover {
    background: #1fb855;
    color: var(--color-white);
    transform: translateY(-2px);
}

.text-glovanil { color: var(--color-glovanil); }
.text-glovatex { color: var(--color-glovatex); }
.brand-glovanil { background: var(--color-glovanil); }
.brand-glovatex { background: var(--color-glovatex); }

/* Preloader */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--color-white);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.preloader-logo-img { max-width: 180px; margin-bottom: 1.25rem; }
.preloader-bar { width: 200px; height: 4px; background: #e2e8f0; border-radius: 3px; margin: 0 auto 1rem; overflow: hidden; }
.preloader-progress { display: block; height: 100%; width: 0; background: var(--gradient-primary); animation: preloaderBar 1.5s ease forwards; }
@keyframes preloaderBar { to { width: 100%; } }
.preloader-tagline { color: var(--color-gray); font-size: 0.875rem; font-weight: 600; margin: 0; }

/* Navbar */
.site-header { position: relative; z-index: 1030; }
.navbar {
    padding: 0.875rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}
.brand-logo { height: 48px; width: auto; max-width: 160px; object-fit: contain; }
.navbar-brand { padding: 0; }
.nav-link {
    color: var(--color-dark-soft) !important;
    font-weight: 500; font-size: 0.9375rem;
    padding: 0.5rem 0.875rem !important;
    position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    width: 0; height: 2px; background: var(--color-primary);
    transition: all var(--transition); transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active { color: var(--color-primary) !important; }
.nav-link:hover::after, .nav-link.active::after { width: 55%; }
.navbar-toggler { padding: 0.25rem 0.5rem; }
.navbar-toggler:focus { box-shadow: none; }

.breadcrumb-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 0.4rem 0; background: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(12,74,140,0.06);
    display: none;
}
.navbar.scrolled ~ .breadcrumb-nav { display: block; }
.breadcrumb { margin: 0; padding: 0; font-size: 0.8125rem; background: transparent; }
.breadcrumb-item.active { color: var(--color-gray); }

/* Offcanvas */
.offcanvas-menu { background: var(--color-white); max-width: 320px; }
.offcanvas-brand {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading); font-weight: 700;
    color: var(--color-dark); font-size: 1.125rem;
}
.offcanvas-nav a {
    display: block; padding: 0.75rem 0;
    color: var(--color-dark-soft); font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
    transition: color var(--transition), padding-left var(--transition);
}
.offcanvas-nav a:hover { color: var(--color-primary); padding-left: 0.5rem; }
.offcanvas-contact p { font-size: 0.9375rem; color: var(--color-gray); margin-bottom: 0.35rem; }

/* Hero */
.hero-section {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: var(--gradient-hero); overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(39, 204, 76, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(26, 95, 74, 0.06) 0%, transparent 35%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding-top: calc(var(--navbar-height) + 2rem); }
.hero-eyebrow {
    font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--color-primary); margin-bottom: 0.75rem;
}
.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800; color: var(--color-dark);
    line-height: 1.1; margin-bottom: 0.5rem;
}
.hero-brand-line {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700; color: var(--color-primary-light);
    margin-bottom: 1.25rem;
}
.hero-subtitle { font-size: 1.0625rem; color: var(--color-gray); max-width: 560px; margin-bottom: 1.75rem; }
.hero-product-showcase { padding: 1.5rem; text-align: center; position: relative; }
.hero-product-img { max-height: 380px; object-fit: contain; }
.hero-product-badges {
    display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap;
}
.badge-glovanil, .badge-glovatex {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
    padding: 0.35rem 0.85rem; border-radius: 50px; color: var(--color-white);
}
.badge-glovanil { background: var(--color-glovanil); }
.badge-glovatex { background: var(--color-glovatex); }
.about-tagline-quote {
    font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem;
    color: var(--color-primary); border-left: 4px solid var(--color-accent);
    padding-left: 1rem; margin-top: 1rem;
}
.about-video-wrap { overflow: hidden; padding: 0; }
.about-video { width: 100%; border-radius: var(--radius-lg); display: block; }
.product-featured .product-body { padding: 1.75rem; }
.icon-box.text-center { text-align: center; }
.icon-green { background: rgba(39, 204, 76, 0.12) !important; color: var(--color-primary-light) !important; }
/* About */
.section-about { background: var(--color-white); }
.about-img-main { width: 100%; }
.about-img-float {
    position: absolute; bottom: -16px; right: -8px; width: 42%;
    padding: 0.4rem; border: 3px solid var(--color-white);
}
.about-badge {
    position: absolute; top: 16px; left: -8px;
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1rem; font-size: 0.8125rem; font-weight: 600; color: var(--color-dark);
}
.about-badge i { color: var(--color-primary); }
.about-leadership { padding: 1.25rem; }
.leadership-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: rgba(12,74,140,0.1); color: var(--color-primary);
    border-radius: var(--radius-sm); font-size: 1.5rem;
}
.about-leadership strong { display: block; color: var(--color-dark); }
.about-leadership span { font-size: 0.875rem; color: var(--color-gray); }
.highlight-item {
    padding: 1rem; background: var(--color-light);
    border-radius: var(--radius-md); text-align: center;
    border: 1px solid rgba(12,74,140,0.06);
}
.highlight-item strong {
    display: block; font-family: var(--font-heading);
    font-size: 1.35rem; color: var(--color-primary);
}
.highlight-item span { font-size: 0.75rem; color: var(--color-gray); }

/* Products */
.section-products { background: var(--color-light); }
/* Product cards — equal height, contained images (no stretch) */
.product-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.product-card .product-img {
    position: relative;
    flex-shrink: 0;
}
.product-card .image-wrapper {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f9fa;
    padding: 20px;
}
.product-card .image-wrapper-lg {
    height: 300px;
    padding: 24px;
}
.product-card .image-wrapper img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}
.product-card:hover .image-wrapper img {
    transform: scale(1.03);
}
.product-card .product-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card .product-body p {
    flex-grow: 1;
    margin-bottom: 1rem;
}
.product-card .product-body .btn {
    align-self: flex-start;
    margin-top: auto;
}
.product-brand {
    position: absolute; top: 12px; left: 12px;
    background: var(--color-primary); color: var(--color-white);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem; border-radius: 4px;
}
.product-card .product-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.product-specs {
    list-style: none; padding: 0; margin: 0 0 1rem;
    font-size: 0.8125rem; color: var(--color-gray);
}
.product-specs li::before { content: '✓ '; color: var(--color-success); font-weight: 700; }

/* Why Choose */
.section-whychoose { background: var(--color-white); }
.icon-box { padding: 2rem 1.5rem; }
.icon-box-icon {
    width: 64px; height: 64px; margin: 0 auto 1.25rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(12,74,140,0.08); color: var(--color-primary);
    border-radius: 50%; font-size: 1.75rem;
    transition: all var(--transition);
}
.icon-box:hover .icon-box-icon {
    background: var(--gradient-primary); color: var(--color-white);
    transform: scale(1.05);
}
.icon-box h3 { font-size: 1.125rem; margin-bottom: 0.65rem; }
.icon-box p { font-size: 0.9rem; margin: 0; }

/* Process */
.section-process { background: var(--color-light); }
.process-steps { display: flex; flex-direction: column; gap: 1rem; }
.process-step-item {
    display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem;
}
.step-num {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
    color: rgba(12,74,140,0.15); line-height: 1; flex-shrink: 0;
}
.process-step-item h3 { font-size: 1.0625rem; margin-bottom: 0.35rem; }
.process-step-item p { font-size: 0.9rem; margin: 0; }

/* Factory */
.section-factory { background: var(--color-white); }
.factory-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.factory-list li {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 0; font-size: 0.9375rem;
}
.factory-list i { color: var(--color-success); }
.factory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; height: 100%; }
.factory-stat { padding: 1.25rem; }
.factory-stat i { font-size: 1.75rem; color: var(--color-primary); margin-bottom: 0.5rem; display: block; }
.factory-stat h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.factory-stat p { font-size: 0.8125rem; margin: 0; }
.factory-location { padding: 1.25rem; }
.factory-location i { color: var(--color-primary); font-size: 1.25rem; margin-right: 0.5rem; }
.factory-location p { margin: 0; font-size: 0.9375rem; }

/* Certification */
.section-certification { background: var(--color-light); }
.cert-card { padding: 2rem 1.25rem; }
.cert-icon { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 1rem; }
.cert-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.cert-card p { font-size: 0.875rem; margin: 0; }
.cert-note { font-size: 0.9rem; color: var(--color-gray); }
.cert-note i { color: var(--color-primary); }

/* Counter */
.section-counter { padding: 80px 0; background: var(--color-dark); }
.counter-wrapper { padding: 0; background: transparent; border: none; box-shadow: none; }
.counter-number {
    display: block; font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800;
    color: var(--color-accent-bright); line-height: 1;
}
.counter-label { display: block; margin-top: 0.5rem; font-size: 1rem; color: rgba(255,255,255,0.85); font-weight: 500; }

/* Export */
.section-export { background: var(--color-white); }
.export-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.export-list li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    padding: 0.4rem 0; font-size: 0.9375rem;
}
.export-list i { color: var(--color-primary); margin-top: 0.2rem; }
.export-map { padding: 1rem; position: relative; }
.export-regions {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-top: 1rem;
}
.region-badge {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.8125rem; font-weight: 600;
    background: var(--color-light); color: var(--color-primary);
    padding: 0.35rem 0.75rem; border-radius: 50px;
    border: 1px solid rgba(12,74,140,0.1);
}

/* OEM */
.section-oem { background: var(--color-light); }
.oem-visual { position: relative; padding: 1rem; }
.oem-moq {
    position: absolute; bottom: -12px; right: -8px;
    padding: 1rem 1.25rem; max-width: 220px;
}
.oem-moq h4 { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--color-dark); }
.oem-moq p { font-size: 0.8125rem; margin: 0.2rem 0; }
.oem-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.25rem; }
.oem-feature-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem; background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(12,74,140,0.06);
    transition: box-shadow var(--transition);
}
.oem-feature-item:hover { box-shadow: var(--shadow-md); }
.oem-feature-item i {
    font-size: 1.5rem; color: var(--color-primary);
    flex-shrink: 0; margin-top: 0.15rem;
}
.oem-feature-item strong { display: block; color: var(--color-dark); font-size: 0.9375rem; }
.oem-feature-item span { font-size: 0.8125rem; color: var(--color-gray); }

/* Testimonials */
.section-testimonials { background: var(--color-white); }
.testimonial-carousel { max-width: 780px; margin: 0 auto; }
.testimonial-card { padding: 2.5rem 2rem; }
.testimonial-stars { color: #f59e0b; margin-bottom: 1.25rem; }
.testimonial-card blockquote p {
    font-size: 1.125rem; font-style: italic;
    color: var(--color-dark-soft); line-height: 1.65; margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.testimonial-author img { width: 60px; height: 60px; object-fit: cover; }
.testimonial-author cite { display: block; font-style: normal; font-weight: 700; color: var(--color-dark); }
.testimonial-author span { font-size: 0.8125rem; color: var(--color-gray); }
.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 44px; height: 44px; background: var(--color-white);
    border-radius: 50%; opacity: 1; box-shadow: var(--shadow-md);
    color: var(--color-primary); top: 50%; transform: translateY(-50%);
}
.testimonial-carousel .carousel-indicators { position: relative; margin-top: 1.5rem; }
.testimonial-carousel .carousel-indicators button {
    width: 8px; height: 8px; border-radius: 50%;
    background: #cbd5e1; border: none;
}
.testimonial-carousel .carousel-indicators .active { background: var(--color-primary); }

/* Blog */
.section-blog { background: var(--color-light); }
/* Blog cards — consistent industry imagery */
.blog-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.blog-card .blog-image {
    display: block;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
}
.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}
.blog-card .blog-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card .blog-body p {
    flex-grow: 1;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.65;
}
.blog-meta { font-size: 0.8rem; color: var(--color-gray-light); }
.blog-card .blog-body h3 {
    font-size: 1.0625rem;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.4;
}
.blog-card .blog-body h3 a {
    color: var(--color-dark);
    transition: color var(--transition);
}
.blog-card .blog-body h3 a:hover {
    color: var(--color-primary);
}
.blog-read-more {
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* FAQ */
.section-faq { background: var(--color-white); }
.faq-accordion .accordion-item { border: none; margin-bottom: 0.65rem; overflow: hidden; }
.faq-accordion .accordion-button {
    font-family: var(--font-heading); font-weight: 600; font-size: 0.975rem;
    color: var(--color-dark); background: transparent; box-shadow: none;
    padding: 1.15rem 1.35rem;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--color-primary); }
.faq-accordion .accordion-body { padding: 0 1.35rem 1.15rem; font-size: 0.9375rem; }

/* Gallery */
.section-gallery { background: var(--color-light); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px;
    gap: 1rem;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(30, 41, 59, 0.65);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--transition);
    color: var(--color-white); font-size: 1.5rem;
}
.gallery-overlay span { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.35rem; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Contact */
.section-contact { background: var(--color-white); }
.contact-info li { display: flex; gap: 1rem; margin-bottom: 1.35rem; }
.contact-icon {
    flex-shrink: 0; width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(12,74,140,0.08); color: var(--color-primary);
    border-radius: var(--radius-sm); font-size: 1.2rem;
}
.contact-info strong { display: block; color: var(--color-dark); margin-bottom: 0.2rem; }
.contact-info p { margin: 0; font-size: 0.9375rem; }
.contact-form { padding: 2.25rem; }
.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e2e8f0; border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(12, 74, 140, 0.12);
}

/* Map */
.section-map { background: var(--color-light); padding-bottom: 80px; }
.map-wrapper { overflow: hidden; padding: 0; }
.map-wrapper iframe { display: block; width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.map-actions {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    justify-content: center; padding: 1.25rem;
    background: rgba(255,255,255,0.9);
}

/* CTA */
.section-cta { padding: 88px 0; background: var(--color-light); }
.cta-banner {
    padding: 4rem 2rem;
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: var(--radius-xl, 20px);
    box-shadow: var(--shadow-lg);
}
.cta-title { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--color-white); margin-bottom: 0.75rem; line-height: 1.3; }
.cta-desc { color: rgba(255,255,255,0.92); max-width: 640px; margin: 0 auto 1.5rem; font-weight: 600; }
.cta-note { color: rgba(255,255,255,0.8); font-size: 0.875rem; }
.cta-note i { color: var(--color-accent-bright); }

/* Premium minimal footer */
.site-footer-premium {
    background: linear-gradient(180deg, #0a1a28 0%, #06121d 100%);
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(39, 204, 76, 0.15);
    position: relative;
}
.site-footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 204, 76, 0.4), rgba(212, 168, 83, 0.35), transparent);
}
.footer-bar {
    padding: 1.125rem 0;
}
.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-bar-left {
    flex: 1 1 280px;
    min-width: 0;
}
.footer-copyright {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}
.footer-credit {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}
.footer-highlight {
    color: #d4a853;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer-highlight:hover {
    color: var(--color-accent-bright);
    text-shadow: 0 0 12px rgba(39, 204, 76, 0.45);
}
.footer-bar-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}
.exportersway-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.4rem;
    border-radius: 10px;
    transition: transform 0.35s ease;
}
.exportersway-glow {
    position: absolute;
    inset: -6px;
    border-radius: 12px;
    background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.25) 0%, rgba(39, 204, 76, 0.08) 45%, transparent 70%);
    opacity: 0.85;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.exportersway-badge:hover {
    transform: translateY(-2px);
}
.exportersway-badge:hover .exportersway-glow {
    opacity: 1;
    transform: scale(1.05);
}
.exportersway-logo {
    position: relative;
    z-index: 1;
    height: 58px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 0.2rem 0.35rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 168, 83, 0.15);
    transition: box-shadow 0.35s ease;
}
.exportersway-badge:hover .exportersway-logo {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), 0 0 28px rgba(212, 168, 83, 0.35);
}
.footer-bar-right {
    flex: 0 0 auto;
}
.btn-footer-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: #06121d;
    background: linear-gradient(135deg, #27cc4c 0%, #65ff63 100%);
    border: 1px solid rgba(101, 255, 99, 0.4);
    border-radius: 50px;
    text-decoration: none;
    box-shadow:
        0 4px 16px rgba(39, 204, 76, 0.35),
        0 0 24px rgba(39, 204, 76, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn-footer-enquiry i {
    font-size: 1rem;
}
.btn-footer-enquiry:hover {
    color: #06121d;
    transform: translateY(-3px);
    box-shadow:
        0 8px 28px rgba(39, 204, 76, 0.5),
        0 0 32px rgba(101, 255, 99, 0.25);
    background: linear-gradient(135deg, #32d956 0%, #7aff77 100%);
}

/* Scroll to top — above footer enquiry */
.scroll-top {
    position: fixed;
    bottom: 5.5rem;
    right: 1.75rem;
    width: 44px;
    height: 44px;
    background: rgba(6, 18, 29, 0.92);
    color: var(--color-accent-bright);
    border: 1px solid rgba(39, 204, 76, 0.35);
    border-radius: 50%;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1035;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 16px rgba(39, 204, 76, 0.12);
    backdrop-filter: blur(8px);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover {
    transform: translateY(-3px);
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: 0 6px 24px rgba(39, 204, 76, 0.4);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed; inset: 0; z-index: 100000;
    background: rgba(10, 37, 64, 0.94);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all var(--transition);
}
.gallery-lightbox.active { opacity: 1; visibility: visible; }
.gallery-lightbox img { max-width: 92%; max-height: 90vh; border-radius: var(--radius-md); }
.gallery-lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; color: var(--color-white);
    font-size: 2rem; cursor: pointer;
}

/* Responsive */
@media (max-width: 991.98px) {
    .section { padding: 72px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item-lg { grid-column: span 2; grid-row: span 1; }
    .factory-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
    .section { padding: 60px 0; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item { height: 220px; }
    .about-img-float, .oem-moq { display: none; }
    .hero-cta .btn { width: 100%; }
    .contact-form { padding: 1.5rem; }
    .product-card .image-wrapper { height: 220px; padding: 16px; }
    .product-card .image-wrapper-lg { height: 260px; padding: 20px; }
    .blog-card .blog-image { height: 200px; }
    .footer-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
    .footer-bar-left { flex: 1 1 100%; }
    .footer-bar-center { order: 2; }
    .footer-bar-right { order: 3; width: 100%; display: flex; justify-content: center; }
    .btn-footer-enquiry { width: 100%; max-width: 280px; justify-content: center; }
    .scroll-top { bottom: 6.5rem; right: 1rem; }
}
