/* ==================================================
   Industrial Website CMS - Main Stylesheet
   Color palette: dark blue, grey, steel, white, orange accent
   ================================================== */

/* === CSS VARIABLES === */
:root {
    --primary: #1a3a5c;
    --primary-dark: #0f2840;
    --primary-light: #2d5f8a;
    --secondary: #2d5f8a;
    --accent: #e8712a;
    --accent-hover: #d4631e;
    --dark: #1a1a2e;
    --dark-alt: #16213e;
    --steel: #6c757d;
    --steel-light: #8a939b;
    --light: #f4f6f8;
    --lighter: #f8f9fa;
    --white: #ffffff;
    --border: #dee2e6;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --whatsapp: #25D366;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

/* === LAYOUT === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 90px 0;
}

.bg-light {
    background: var(--light);
}

.bg-dark {
    background: var(--dark);
    color: var(--white);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark p {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 2rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    line-height: 1.4;
}

.btn i {
    font-size: 14px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 113, 42, 0.3);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    color: var(--white);
}

.btn-whatsapp-sm {
    background: var(--whatsapp);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-whatsapp-sm:hover {
    background: #1ebe57;
    color: var(--white);
}

.btn-call-sm {
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-call-sm:hover {
    background: var(--accent-hover, #d4631e);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-contact-sm {
    background: #1a3a5c;
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-contact-sm:hover {
    background: #0f2137;
    color: #fff;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* === CERTIFICATION BADGES STRIP === */
.certifications-strip {
    background: #f0f4f8;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1a3a5c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #1a3a5c;
    background: #fff;
}

.cert-iso {
    font-size: 14px;
}

.cert-ce {
    font-size: 16px;
    font-weight: 900;
}

.cert-gmp {
    font-size: 11px;
    letter-spacing: 1px;
}

.cert-info {
    display: flex;
    flex-direction: column;
}

.cert-info strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a3a5c;
    line-height: 1.2;
}

.cert-info span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Footer Certification Badges */
.footer-certs {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
}

.footer-cert-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.footer-cert i {
    font-size: 13px;
    color: var(--accent, #e8712a);
}

@media (max-width: 768px) {
    .cert-badges {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .cert-badge {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .footer-cert-badges {
        gap: 15px;
    }
}

.btn-lg {
    padding: 15px 35px;
    font-size: 15px;
}

/* === TOP BAR === */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.top-bar-left a:hover {
    color: var(--accent);
}

.top-bar-right {
    display: flex;
    gap: 10px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.top-bar-right a:hover {
    background: var(--accent);
    color: var(--white);
}

/* === HEADER === */
.main-header {
    background: var(--white);
    padding: 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--primary);
}

.logo-image {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 26px;
    color: var(--accent);
}

.logo-text {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 5px;
}

.main-nav a {
    padding: 10px 16px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    border-radius: var(--radius);
    position: relative;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
    background: rgba(232, 113, 42, 0.08);
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
    border-radius: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO === */
.hero {
    background: linear-gradient(135deg, rgba(15, 33, 55, 0.85) 0%, rgba(26, 58, 92, 0.85) 100%),
        url('https://images.unsplash.com/photo-1513828583688-c52646db42da?w=1600&q=80') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,181.3C384,203,480,213,576,197.3C672,181,768,139,864,128C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(45, 95, 138, 0.3) 0%, transparent 60%);
}

/* Animated background elements */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 113, 42, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 113, 42, 0.15);
    color: var(--accent);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(232, 113, 42, 0.3);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 800;
}

.hero h1 .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: 2px;
}

.hero p {
    font-size: clamp(14px, 2vw, 17px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 6px;
}

/* Hero responsive improvements */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero::after {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -80px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-stats {
        gap: 25px;
        justify-content: flex-start;
    }

    .hero-btns {
        margin-bottom: 35px;
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-badge {
    display: inline-block;
    background: rgba(232, 113, 42, 0.1);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--steel);
    max-width: 600px;
    margin: 0 auto;
}

/* === PRODUCT SLIDER (E-commerce Style) === */
.product-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 55px;
    margin: 0 -55px;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* DESKTOP → 4 CARDS (default) */
.slider-track .product-card {
    width: calc((100% - 72px) / 4) !important;
    flex-shrink: 0 !important;
}

/* SLIDER BUTTONS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover:not(:disabled) {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-50%);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Slider dots for mobile */
.slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* LARGE DESKTOP - 4 CARDS */
@media (min-width: 1280px) {
    .slider-track .product-card {
        width: calc((100% - 72px) / 4) !important;
    }
}

/* MEDIUM DESKTOP - 4 CARDS */
@media (min-width: 1101px) and (max-width: 1279px) {
    .slider-track .product-card {
        width: calc((100% - 72px) / 4) !important;
    }
}

/* TABLET - 3 CARDS */
@media (min-width: 769px) and (max-width: 1100px) {
    .product-slider {
        padding: 10px 50px;
        margin: 0 -50px;
    }

    .slider-track {
        gap: 20px;
    }

    .slider-track .product-card {
        width: calc((100% - 40px) / 3) !important;
    }
}

/* MOBILE LANDSCAPE - 2 CARDS */
@media (min-width: 481px) and (max-width: 768px) {
    .product-slider {
        padding: 10px 45px;
        margin: 0 -45px;
    }

    .slider-track {
        gap: 16px;
    }

    .slider-track .product-card {
        width: calc((100% - 16px) / 2) !important;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

/* MOBILE PORTRAIT - 1 CARD WITH SCROLL */
@media (max-width: 480px) {
    .product-slider {
        padding: 10px 0;
        margin: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .product-slider::-webkit-scrollbar {
        display: none;
    }

    .slider-track {
        gap: 12px;
        padding: 0 15px;
        transition: none;
    }

    .slider-track .product-card {
        width: calc(100% - 30px) !important;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .slider-btn {
        display: none;
    }

    .slider-dots {
        display: flex;
    }
}




/* === PRODUCT CARDS (CATALOG STYLE) === */

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGE AREA */
.product-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product overlay with quick view button */
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 92, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

/* Product Image Placeholder */
.product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image-placeholder i {
    font-size: 60px;
    color: rgba(26, 58, 92, 0.2);
}

/* FEATURED BADGE */
.badge-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(232, 113, 42, 0.4);
}

/* PRODUCT INFO */
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.product-category {
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 16px;
    margin: 0 0 10px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info h3 a {
    color: var(--dark);
    transition: var(--transition);
}

.product-info h3 a:hover {
    color: var(--accent);
}

.product-info p {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    min-height: 42px;
}

/* Product card actions (add to cart, wishlist, etc.) */
.product-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.product-card-actions .btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.product-card-actions .btn-icon:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .product-image {
        height: 180px;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-info {
        padding: 15px;
    }

    .product-info h3 {
        font-size: 14px;
        min-height: 40px;
    }

    .product-info p {
        font-size: 12px;
        min-height: 38px;
    }

    .badge-featured {
        padding: 4px 10px;
        font-size: 10px;
    }

    /* Always show overlay on mobile */
    .product-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(26, 58, 92, 0.7) 0%, transparent 70%);
    }

    .product-overlay .btn {
        transform: translateY(0);
        padding: 6px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 160px;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 14px;
        min-height: 40px;
    }

    .product-info p {
        font-size: 12px;
        min-height: 38px;
    }

    .product-card-actions {
        margin-top: 12px;
        padding-top: 12px;
    }
}


/* === CATEGORY CARDS === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    display: block;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    border-color: rgba(232, 113, 42, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    color: var(--dark);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 26px;
    color: var(--white);
}

.category-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 700;
}

.category-card p {
    font-size: 13px;
    color: var(--steel);
    margin-bottom: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.category-link:hover {
    gap: 10px;
}

/* Categories responsive */
@media (max-width: 1100px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-card {
        padding: 24px 16px;
    }

    .category-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 14px;
    }

    .category-icon i {
        font-size: 22px;
    }

    .category-card h3 {
        font-size: 15px;
    }

    .category-card p {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* === ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-img-placeholder {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-img-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--accent);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    line-height: 1.3;
}

.about-content h2 {
    font-size: 30px;
    margin-bottom: 18px;
}

.about-content p {
    color: var(--steel);
    margin-bottom: 18px;
    font-size: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

/* === WHY CHOOSE US === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 113, 42, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(232, 113, 42, 0.3);
}

.feature-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(232, 113, 42, 0.4);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Features responsive */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px 20px;
    }
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 70px 0;
}

.cta-content h2 {
    color: var(--white);
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BLOG CARDS === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* === PRODUCT GRID (3 columns on desktop) === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-grid .product-card {
    height: 100%;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light);
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.blog-image-placeholder i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.blog-content {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 12px;
    color: var(--steel);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--dark);
}

.blog-content h3 a:hover {
    color: var(--accent);
}

.blog-content p {
    font-size: 13px;
    color: var(--steel);
    margin-bottom: 15px;
    flex: 1;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    gap: 10px;
    color: var(--accent-hover);
}

/* === PAGE BANNER === */
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    text-align: center;
}

.page-banner-sm {
    padding: 45px 0;
}

.page-banner h1 {
    color: var(--white);
    font-size: 34px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    margin: 0 8px;
}

/* === PRODUCT FILTERS === */
.product-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--steel);
    background: var(--light);
    transition: var(--transition);
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--white);
}

/* === PAGINATION === */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--accent);
    color: var(--white);
}

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 60px;
    color: var(--border);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--steel);
    margin-bottom: 20px;
}

/* === PRODUCT DETAILS === */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light);
    aspect-ratio: 4 / 3;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--light);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.thumb {
    width: 75px;
    height: 75px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
    flex-shrink: 0;
}

.thumb:hover,
.thumb.active {
    border-color: var(--accent);
    opacity: 1;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-category-badge {
    display: inline-block;
    background: rgba(232, 113, 42, 0.1);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.badge-featured-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.product-detail-info h1 {
    font-size: 28px;
    margin: 10px 0 15px;
    line-height: 1.3;
}

.product-short-desc {
    font-size: 15px;
    color: var(--steel);
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
    line-height: 1.7;
}

.product-action-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === PRODUCT MODEL SELECTOR === */
.product-models-section {
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.product-models-section h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-models-section h3 i {
    color: var(--accent);
    font-size: 20px;
}

.model-selector-wrapper {
    margin-bottom: 16px;
}

.model-dropdown {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.model-dropdown:hover {
    border-color: var(--accent);
}

.model-dropdown:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 113, 42, 0.12);
}

.model-details-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: var(--lighter, #f8f9fa);
    border-radius: var(--radius-lg);
    color: var(--steel);
    gap: 8px;
}

.model-details-placeholder i {
    font-size: 28px;
    opacity: 0.5;
    color: var(--accent);
}

.model-details-placeholder p {
    font-size: 14px;
    margin: 0;
}

.model-details-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.model-details-card.active {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(232, 113, 42, 0.1);
}

.model-name-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover, #d4631e));
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.model-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.model-spec-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.model-spec-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.model-spec-label i {
    color: var(--accent);
    font-size: 14px;
}

.model-spec-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === PRODUCT TABS === */
.product-tabs {
    margin-bottom: 50px;
}

.tab-nav {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 25px;
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--steel);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.product-description {
    line-height: 1.8;
    color: #555;
    font-size: 14px;
}

.product-description h3 {
    color: var(--dark);
    margin: 20px 0 10px;
    font-size: 20px;
}

.product-description h4 {
    color: var(--dark);
    margin: 18px 0 10px;
    font-size: 17px;
}

.product-description p {
    margin-bottom: 15px;
}

.product-description ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.product-description li {
    margin-bottom: 8px;
}

/* === SPECS TABLE === */
.specs-table-wrapper {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.specs-table thead th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.specs-table tbody tr.even {
    background: var(--lighter);
}

.specs-table tbody tr.odd {
    background: var(--white);
}

.specs-table tbody tr:hover {
    background: rgba(232, 113, 42, 0.05);
}

.specs-table .spec-name {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.specs-table .spec-name i {
    color: var(--accent);
    font-size: 12px;
    flex-shrink: 0;
}

.specs-table .spec-value {
    color: #555;
}

.specs-table tbody tr:last-child td {
    border-bottom: none;
}

/* === INQUIRY FORM === */
.inquiry-section {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 50px;
}

.inquiry-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inquiry-section>p {
    color: var(--steel);
    margin-bottom: 25px;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 113, 42, 0.1);
}

.form-group small {
    display: block;
    font-size: 12px;
    color: var(--steel);
    margin-top: 5px;
}

/* === RELATED PRODUCTS === */
.related-products {
    margin-top: 30px;
}

.related-products h2 {
    font-size: 26px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* === ALERTS === */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* === BLOG DETAILS === */
.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.blog-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
    max-height: 400px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--steel);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-body {
    line-height: 1.9;
    color: #444;
    font-size: 15px;
}

.blog-body h3 {
    color: var(--dark);
    margin: 25px 0 12px;
    font-size: 22px;
}

.blog-body h4 {
    color: var(--dark);
    margin: 20px 0 10px;
}

.blog-body p {
    margin-bottom: 15px;
}

.blog-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.blog-body li {
    margin-bottom: 8px;
}

.blog-share {
    border-top: 1px solid var(--border);
    padding-top: 25px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btns {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: var(--whatsapp);
}

.share-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

/* === SIDEBAR === */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--dark);
}

.recent-post-item:hover {
    color: var(--accent);
}

.recent-post-image {
    width: 65px;
    height: 55px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light);
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steel);
}

.recent-post-info h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.recent-post-info span {
    font-size: 12px;
    color: var(--steel);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.sidebar-cta h3 {
    color: var(--white);
    border-bottom-color: var(--accent);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* === CONTACT PAGE === */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-form-wrapper>p,
.contact-info-wrapper>p {
    color: var(--steel);
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 18px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(232, 113, 42, 0.08);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 18px;
}

.info-icon.whatsapp {
    background: var(--whatsapp);
}

.info-details h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.info-details p {
    font-size: 14px;
    color: var(--steel);
}

.info-details a {
    color: var(--primary);
}

.contact-social {
    margin-top: 25px;
}

.contact-social h4 {
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.map-section {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* === MISSION & VALUES === */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.mission-icon i {
    font-size: 26px;
    color: var(--white);
}

.mission-card h3 {
    margin-bottom: 12px;
}

.mission-card p {
    text-align: justify;
}

/* === COUNTERS === */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.counter-item {
    text-align: center;
    padding: 25px;
}

.counter-icon {
    margin-bottom: 12px;
}

.counter-icon i {
    font-size: 34px;
    color: var(--accent);
}

.counter-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
}

.counter-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.counter-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === TEAM === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    margin-bottom: 18px;
}

.team-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.team-placeholder i {
    font-size: 34px;
    color: var(--white);
}

.team-card h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.team-role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 13px;
    color: var(--steel);
}

/* === FOOTER === */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 35px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    font-size: 26px;
    color: var(--accent);
}

.footer-logo .logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-image {
    max-height: 45px;
    width: auto;
}

.footer-about {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
}

.contact-item i {
    color: var(--accent);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.6);
}

.contact-item a:hover {
    color: var(--accent);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    margin-top: 8px;
    text-align: center;
}

.copyright-bar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float i {
    color: var(--white);
    font-size: 26px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* === RESPONSIVE: TABLETS (max 1024px) === */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .product-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 30px;
    }

    .product-detail-grid {
        gap: 30px;
    }

    .contact-grid {
        gap: 30px;
    }
}

/* === RESPONSIVE: MOBILE (max 768px) === */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .section {
        padding: 55px 0;
    }

    .hero {
        padding: 70px 0 50px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-content {
        justify-content: flex-end;
    }

    /* Mobile nav */
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        padding: 90px 25px 25px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 3px;
    }

    .main-nav a {
        padding: 14px 18px;
        display: block;
        font-size: 16px;
        border-radius: var(--radius);
    }

    .header-actions .btn-whatsapp-sm {
        display: none;
    }

    /* Overlay when menu is open */
    .main-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    /* Grids */
    .about-grid,
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .mission-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Product detail */
    .product-detail-info h1 {
        font-size: 22px;
    }

    .gallery-main {
        aspect-ratio: 4 / 3;
    }

    .inquiry-section {
        padding: 25px 18px;
    }

    .inquiry-form .form-row,
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .product-action-btns {
        flex-direction: column;
    }

    .product-action-btns .btn {
        width: 100%;
        justify-content: center;
    }

    /* About */
    .experience-badge {
        bottom: 10px;
        right: 10px;
        padding: 15px;
    }

    .exp-number {
        font-size: 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    /* Page banner */
    .page-banner {
        padding: 45px 0;
    }

    .page-banner h1 {
        font-size: 24px;
    }

    /* Feature cards */
    .feature-card {
        padding: 25px 18px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon i {
        font-size: 22px;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 22px;
    }
}

/* === RESPONSIVE: SMALL PHONES (max 480px) === */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 45px 0;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .slider-btn {
        display: none;
    }

    .product-grid,
    .product-grid-4 {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-thumbs {
        gap: 6px;
    }

    .thumb {
        width: 55px;
        height: 55px;
    }

    .product-detail-info h1 {
        font-size: 20px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .counter-number {
        font-size: 34px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .page-banner h1 {
        font-size: 22px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    /* Single column for product slider on very small screens */
    .slider-track .product-card {
        width: calc(100% - 30px) !important;
    }

    .blog-grid {
        gap: 20px;
    }

    .blog-card {
        border-radius: var(--radius);
    }

    /* Header adjustments */
    .header-content {
        height: 65px;
    }

    .logo {
        font-size: 18px;
    }
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* White outline button for dark CTA backgrounds */
.cta-section .btn-outline {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 24px;
    }

    .cta-btns {
        flex-direction: column;
    }

    .cta-btns .btn {
        width: 100%;
        justify-content: center;
    }
}