/* ============================================
   APFOXX INTERNATIONAL - CUSTOM CSS
   (Bootstrap 5.3 ke upar)
============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0d6efd;
    --primary-dark: #0a4b9c;
    --secondary: #7c3aed;
    --accent: #00d4ff;
    --dark: #0a1628;
    --dark-2: #1a3a5c;
    --gray: #6c757d;
    --light: #f8f9fa;
    --border: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #7c3aed 100%);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0d6efd 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-primary: 0 10px 30px rgba(13,110,253,0.35);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* ===== BASE ===== */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

body {
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ===== CUSTOM BUTTONS ===== */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: #fff !important;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(13,110,253,0.5);
    color: #fff !important;
}
.btn-primary-custom.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    cursor: pointer;
}
.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13,110,253,0.55);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-sm);
    padding: 12px 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: var(--primary);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-2px);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleAnim 0.8s ease-out;
    pointer-events: none;
}
@keyframes rippleAnim {
    to {
        transform: translate(-50%, -50%) scale(15);
        opacity: 0;
    }
}

/* ===== TOPBAR ===== */
.topbar-custom {
    background: var(--dark);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}
.topbar-custom a:hover { color: var(--accent) !important; }

/* ===== NAVBAR ===== */
.main-nav {
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1030;
}
.main-nav.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1) !important;
}
.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: var(--shadow-primary);
}
.brand-text strong {
    font-size: 18px;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.1;
}
.brand-text small {
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.main-nav .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 16px !important;
    position: relative;
    font-size: 15px;
}
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary) !important;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 60%;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: #fff;
    padding: 0;
    margin-top: -70px;
    position: relative;
    z-index: 5;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
@media (max-width: 767px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-card {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    transition: var(--transition);
    cursor: pointer;
}
.stat-card:nth-child(2n) { border-right: none; }
@media (min-width: 768px) {
    .stat-card:nth-child(2n) { border-right: 1px solid #f0f0f0; }
    .stat-card:last-child { border-right: none; }
}
.stat-card:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-5px);
}
.stat-card:hover .stat-icon,
.stat-card:hover .stat-number,
.stat-card:hover .stat-label { color: #fff; }

.stat-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
    transition: var(--transition);
}
.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}
.stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: var(--transition);
}

/* ===== SECTION HEADERS ===== */
.section-tag {
    display: inline-block;
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.section-tag.light {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.section-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.section-heading.light { color: #fff; }

.section-desc-center {
    max-width: 650px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}
.section-desc-center.light { color: rgba(255,255,255,0.8); }

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}



/* ===== ABOUT PREVIEW ===== */

/* ============================================
   ABOUT PREVIEW SECTION
============================================ */
.about-preview-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;  /* ⭐ Important — prevents horizontal scroll */
}

/* Left Visual */
.about-visual-wrap {
    position: relative;
    padding: 0 20px 60px 0;  /* Right & bottom space for overlapping elements */
    max-width: 500px;
    margin: 0 auto;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    aspect-ratio: 4/5;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.about-visual-wrap:hover .about-img-main img {
    transform: scale(1.05);
}

.about-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    max-width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    aspect-ratio: 1/1;
}
.about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-badge-float {
    position: absolute;
    top: 20px;
    left: 0;
    background: #fff;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}
.about-badge-float i {
    font-size: 26px;
    color: var(--primary);
    flex-shrink: 0;
}
.about-badge-float strong {
    display: block;
    font-size: 20px;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.1;
}
.about-badge-float span {
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Right Content */
.about-content-wrap {
    padding-left: 20px;
}

.about-desc {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-bottom: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
}
.about-feature-item i {
    color: #00c853;
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-action-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.about-call-block {
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-call-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.about-call-info span {
    display: block;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}
.about-call-info a {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}
.about-call-info a:hover { color: var(--primary); }

/* ============================================
   RESPONSIVE — ABOUT PREVIEW
============================================ */

/* Tablet */
@media (max-width: 991px) {
    .about-preview-section { padding: 70px 0; }
    
    .about-visual-wrap {
        max-width: 450px;
        margin: 0 auto 40px;
        padding: 0 20px 50px 0;
    }
    
    .about-content-wrap {
        padding-left: 0;
        text-align: center;
    }
    
    .about-content-wrap .section-tag {
        display: inline-block;
    }
    
    .about-features-list {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
    
    .about-action-row {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-preview-section { padding: 60px 0; }
    
    .about-visual-wrap {
        max-width: 100%;
        padding: 0 15px 45px 0;
        margin-bottom: 30px;
    }
    
    .about-img-main {
        aspect-ratio: 4/3;  /* ⭐ Mobile pe landscape */
    }
    
    .about-img-small {
        width: 40%;
        max-width: 150px;
        border-width: 4px;
    }
    
    .about-badge-float {
        padding: 10px 14px;
        gap: 10px;
        top: 12px;
    }
    .about-badge-float i { font-size: 22px; }
    .about-badge-float strong { font-size: 16px; }
    .about-badge-float span { font-size: 9px; }
    
    .about-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .about-features-list {
        grid-template-columns: 1fr;  /* ⭐ Single column on mobile */
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .about-feature-item { font-size: 13px; }
    
    .about-action-row {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .about-action-row .btn-gradient {
        width: 100%;
        justify-content: center;
    }
    
    .about-call-block {
        justify-content: center;
    }
    .about-call-icon { width: 42px; height: 42px; font-size: 16px; }
    .about-call-info a { font-size: 14px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-preview-section { padding: 50px 0; }
    
    .about-visual-wrap {
        padding: 0 12px 35px 0;
    }
    
    .about-img-small {
        width: 38%;
        max-width: 120px;
        border-width: 3px;
    }
    
    .about-badge-float {
        padding: 8px 12px;
        gap: 8px;
        top: 10px;
    }
    .about-badge-float i { font-size: 18px; }
    .about-badge-float strong { font-size: 14px; }
    .about-badge-float span { font-size: 8px; letter-spacing: 0.5px; }
}

/*.about-preview { padding: 100px 0; background: #fff; }*/
/*.about-preview-grid {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr;*/
/*    gap: 50px;*/
/*    align-items: center;*/
/*}*/
/*@media (min-width: 992px) {*/
/*    .about-preview-grid { grid-template-columns: 1fr 1fr; gap: 70px; }*/
/*}*/
/*.about-preview-visual { position: relative; }*/
/*.apv-image-main {*/
/*    border-radius: var(--radius-lg);*/
/*    overflow: hidden;*/
/*    box-shadow: var(--shadow-lg);*/
/*}*/
/*.apv-image-main img {*/
/*    width: 100%;*/
/*    height: 480px;*/
/*    object-fit: cover;*/
/*    transition: transform 0.6s ease;*/
/*}*/
/*.about-preview-visual:hover .apv-image-main img { transform: scale(1.05); }*/
/*.apv-image-small {*/
/*    position: absolute;*/
/*    bottom: -30px;*/
/*    right: -20px;*/
/*    width: 200px;*/
/*    height: 200px;*/
/*    border-radius: var(--radius-md);*/
/*    overflow: hidden;*/
/*    border: 6px solid #fff;*/
/*    box-shadow: var(--shadow-lg);*/
/*}*/
/*.apv-image-small img { width: 100%; height: 100%; object-fit: cover; }*/
/*.apv-badge {*/
/*    position: absolute;*/
/*    top: 30px;*/
/*    left: -20px;*/
/*    background: #fff;*/
/*    padding: 15px 20px;*/
/*    border-radius: var(--radius-md);*/
/*    box-shadow: var(--shadow-lg);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*}*/
/*.apv-badge i {*/
/*    font-size: 28px;*/
/*    color: var(--primary);*/
/*}*/
/*.apv-badge strong {*/
/*    display: block;*/
/*    font-size: 20px;*/
/*    color: var(--dark);*/
/*    font-weight: 800;*/
/*}*/
/*.apv-badge span {*/
/*    font-size: 11px;*/
/*    color: var(--gray);*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 1px;*/
/*    font-weight: 600;*/
/*}*/
/*.about-features {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 15px;*/
/*    margin: 30px 0;*/
/*}*/
/*@media (max-width: 575px) {*/
/*    .about-features { grid-template-columns: 1fr; }*/
/*}*/
/*.af-item {*/
/*    display: flex;*/
/*    align-items: flex-start;*/
/*    gap: 10px;*/
/*    font-size: 14px;*/
/*    color: #444;*/
/*    font-weight: 500;*/
/*}*/
/*.af-item i {*/
/*    color: #00c853;*/
/*    font-size: 16px;*/
/*    margin-top: 3px;*/
/*    flex-shrink: 0;*/
/*}*/
/*.about-actions {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 30px;*/
/*    flex-wrap: wrap;*/
/*    margin-top: 20px;*/
/*}*/
/*.about-contact {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*}*/
/*.ac-icon {*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    border-radius: 50%;*/
/*    background: rgba(13,110,253,0.1);*/
/*    color: var(--primary);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 20px;*/
/*}*/
/*.about-contact span {*/
/*    display: block;*/
/*    font-size: 12px;*/
/*    color: var(--gray);*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 1px;*/
/*    font-weight: 600;*/
/*}*/
/*.about-contact a {*/
/*    font-size: 16px;*/
/*    font-weight: 700;*/
/*    color: var(--dark);*/
/*}*/
/*.about-contact a:hover { color: var(--primary); }*/



/* ===== WHY CHOOSE ===== */
.why-choose { padding: 100px 0; background: var(--light); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotate(-8deg) scale(1.1);
}
.why-card h3 {
    font-size: 19px;
    color: var(--dark);
    margin-bottom: 12px;
}
.why-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}
.why-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(13,110,253,0.06);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    transition: var(--transition);
}
.why-card:hover .why-number {
    color: rgba(13,110,253,0.15);
    transform: scale(1.1);
}







/* ============================================
   PRODUCTS PREMIUM (WITH IMAGES)
============================================ */
.products-premium { padding: 100px 0; background: #fff; }

.products-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-premium-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: transparent;
}

/* Product Image */
.ppc-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e8f0 100%);
}
.ppc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.product-premium-card:hover .ppc-image img {
    transform: scale(1.1);
}

.ppc-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.7) 0%,
        rgba(10, 22, 40, 0.2) 40%,
        transparent 100%
    );
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.product-premium-card:hover .ppc-image-overlay {
    opacity: 0.85;
}

.ppc-image-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Product Body */
.ppc-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.ppc-icon-wrap {
    position: absolute;
    top: -32px;
    left: 30px;
    z-index: 3;
}
.ppc-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(13,110,253,0.4);
    border: 4px solid #fff;
    transition: var(--transition);
}
.product-premium-card:hover .ppc-icon {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(13,110,253,0.5);
}

.ppc-body h3 {
    font-size: 19px;
    color: var(--dark);
    margin: 30px 0 12px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.ppc-body > p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.ppc-preview {
    border-top: 1px solid var(--border);
    padding-top: 18px;
    margin-bottom: 20px;
}
.ppc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 8px 0;
    color: #555;
    font-weight: 500;
    gap: 10px;
}
.ppc-row span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ppc-row span:last-child {
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.ppc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    align-self: flex-start;
}
.ppc-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}
.ppc-link i { transition: transform 0.3s ease; }
.ppc-link:hover i { transform: translateX(5px); }

/* Responsive */
@media (max-width: 767px) {
    .products-premium { padding: 60px 0; }
    .products-premium-grid { grid-template-columns: 1fr; gap: 25px; }
    .ppc-image { height: 200px; }
    .ppc-body { padding: 25px 22px; }
    .ppc-icon { width: 56px; height: 56px; font-size: 20px; }
    .ppc-icon-wrap { top: -28px; left: 22px; }
    .ppc-body h3 { font-size: 17px; margin-top: 25px; }
}





/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(13,110,253,0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(124,58,237,0.3) 0%, transparent 50%);
}
.process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}
.process-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    color: #fff;
}
.process-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.3);
}
.process-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 42px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(13,110,253,0.5);
    transition: var(--transition);
}
.process-card:hover .process-icon {
    transform: rotate(360deg) scale(1.1);
}
.process-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
}
.process-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--light); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tc-quote {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 40px;
    color: rgba(13,110,253,0.08);
    line-height: 1;
}
.tc-stars {
    color: #ffc107;
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}
.tc-text {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}
.tc-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.tc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}
.tc-author strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 2px;
}
.tc-author span {
    font-size: 12px;
    color: var(--gray);
}

/* ===== CTA PREMIUM ===== */
.cta-premium {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; overflow: hidden; }
.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.cta-shape-1 { width: 400px; height: 400px; background: #0d6efd; top: -100px; right: -100px; }
.cta-shape-2 { width: 350px; height: 350px; background: #7c3aed; bottom: -100px; left: -100px; }

.cta-premium-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    color: #fff;
}
.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255,255,255,0); }
}

.cta-premium-inner h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 20px;
}
.cta-premium-inner > p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
.cta-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.cta-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* ===== FOOTER PREMIUM ===== */
.footer-premium {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    position: relative;
}
.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}
.footer-brand { display: flex; align-items: center; }
.footer-brand h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}
.brand-icon-footer {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}
.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact a {
    color: rgba(255,255,255,0.7);
}
.footer-contact a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float-custom {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}
.whatsapp-float-custom:hover {
    transform: scale(1.1);
    color: #fff;
    background: #128c7e;
}
@keyframes pulseWhatsapp {
    0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.7); }
    50% { box-shadow: 0 8px 25px rgba(37,211,102,0.5), 0 0 0 15px rgba(37,211,102,0); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13,110,253,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-premium { padding: 80px 0 100px; min-height: auto; }
    .hero-desc { font-size: 15px; }
    .about-preview { padding: 70px 0; }
    .why-choose, .products-premium, .process-section,
    .testimonials-section, .cta-premium { padding: 70px 0; }
    .section-header-center { margin-bottom: 40px; }
    .apv-image-small { width: 150px; height: 150px; bottom: -20px; right: 10px; }
    .apv-badge { left: 10px; }
}

@media (max-width: 767px) {
    .hero-premium { padding: 60px 0 80px; }
    .stats-section { margin-top: -40px; }
    .stat-card { padding: 25px 15px; }
    .stat-number { font-size: 26px; }
    .stat-icon { font-size: 24px; }
    .stat-label { font-size: 11px; }
    .why-choose, .products-premium, .process-section,
    .testimonials-section, .cta-premium, .about-preview { padding: 60px 0; }
    .hero-trust { gap: 15px; }
    .trust-item { font-size: 12px; }
    .btn-gradient, .btn-ghost, .btn-white, .btn-whatsapp {
        padding: 12px 24px;
        font-size: 14px;
    }
    .whatsapp-float-custom { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
    .back-to-top { width: 42px; height: 42px; bottom: 80px; right: 20px; }
    .testimonial-card { padding: 25px 20px; }
    .product-premium-card { padding: 25px 20px; }
    .why-card { padding: 30px 22px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .hero-badge { font-size: 11px; padding: 6px 14px; }
    .section-tag { font-size: 10px; padding: 5px 14px; }
    .cta-buttons .btn-white,
    .cta-buttons .btn-whatsapp { width: 100%; justify-content: center; }
    .cta-info { flex-direction: column; gap: 12px; align-items: center; }
}


/*================================================================*/

/* ============================================
   PAGE BANNER PREMIUM
============================================ */
.page-banner-premium {
    position: relative;
    background: var(--gradient-hero);
    padding: 100px 0 80px;
    overflow: hidden;
    color: #fff;
}
.page-banner-shapes { position: absolute; inset: 0; overflow: hidden; }
.pb-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.pb-shape-1 { width: 350px; height: 350px; background: #0d6efd; top: -100px; right: 10%; animation: floatShape 15s ease-in-out infinite; }
.pb-shape-2 { width: 300px; height: 300px; background: #7c3aed; bottom: -100px; left: 10%; animation: floatShape 12s ease-in-out infinite reverse; }

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-banner-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 15px 0 20px;
    letter-spacing: -1px;
}
.page-banner-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}
.page-banner-content .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.page-banner-content .breadcrumb-item a:hover { color: #fff; }
.page-banner-content .breadcrumb-item.active { color: #fff; }
.page-banner-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "›";
    font-size: 18px;
    line-height: 1;
}

/* ============================================
   ABOUT INTRO
============================================ */
.about-intro { padding: 100px 0; background: #fff; }

.about-intro-visual {
    position: relative;
    padding: 20px 40px 40px 0;
}
.about-intro-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.ai-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #fff;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.ai-badge i {
    font-size: 28px;
    color: #ffd700;
}
.ai-badge strong {
    display: block;
    font-size: 22px;
    color: var(--dark);
    font-weight: 800;
    line-height: 1;
}
.ai-badge span {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.ai-experience {
    position: absolute;
    top: 40px;
    right: 10px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-primary);
    transform: rotate(5deg);
    transition: var(--transition);
}
.ai-experience:hover { transform: rotate(0deg) scale(1.05); }
.ai-experience span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 3px;
}
.ai-experience strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.about-quick-info {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.aqi-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    min-width: 220px;
    flex: 1;
}
.aqi-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.aqi-item strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 2px;
}
.aqi-item span {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ============================================
   MVV SECTION
============================================ */
.mvv-section { padding: 100px 0; background: var(--light); }

.mvv-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: width 0.5s ease;
}
.mvv-card:hover::before { width: 80px; }
.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.mvv-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    transition: var(--transition);
}
.mvv-icon.vision { background: rgba(124,58,237,0.1); color: var(--secondary); }
.mvv-icon.values { background: rgba(255,107,53,0.1); color: #ff6b35; }
.mvv-card:hover .mvv-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotate(360deg) scale(1.1);
}
.mvv-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}
.mvv-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   WHY CHOOSE ABOUT
============================================ */
.why-choose-about {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.why-choose-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(13,110,253,0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(124,58,237,0.2) 0%, transparent 50%);
}

.about-stats-mini {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.asm-item {
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
}
.asm-item strong {
    display: block;
    font-size: 26px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}
.asm-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-feature-box {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: var(--transition);
    height: 100%;
    color: #fff;
}
.about-feature-box:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
}
.afb-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-primary);
}
.about-feature-box h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}
.about-feature-box p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   COMPANY INFO
============================================ */
.company-info { padding: 100px 0; background: #fff; }

.info-detail-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
    height: 100%;
    transition: var(--transition);
}
.info-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.idc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.idc-header i {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.idc-header h4 {
    margin: 0;
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
}
.idc-list { list-style: none; padding: 0; margin: 0; }
.idc-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
}
.idc-list li:last-child { border-bottom: none; }
.idc-list li span {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    flex-shrink: 0;
}
.idc-list li span i {
    color: var(--primary);
    font-size: 14px;
}
.idc-list li strong,
.idc-list li a {
    color: var(--dark);
    font-weight: 600;
    text-align: right;
    text-decoration: none;
}
.idc-list li a:hover { color: var(--primary); }

/* Responsive */
@media (max-width: 991px) {
    .about-intro { padding: 70px 0; }
    .mvv-section, .why-choose-about, .company-info { padding: 70px 0; }
    .about-intro-visual { padding: 20px 30px 30px 0; }
    .about-intro-visual img { height: 400px; }
    .ai-experience { right: 0; }
}
@media (max-width: 767px) {
    .about-intro, .mvv-section, .why-choose-about, .company-info { padding: 60px 0; }
    .about-intro-visual { padding: 0 15px 15px 0; }
    .about-intro-visual img { height: 320px; }
    .ai-badge { left: 10px; bottom: 15px; padding: 14px 18px; }
    .ai-badge strong { font-size: 18px; }
    .ai-experience { padding: 15px; top: 20px; }
    .ai-experience strong { font-size: 20px; }
    .mvv-card { padding: 35px 25px; }
    .info-detail-card { padding: 25px 20px; }
    .idc-list li { flex-direction: column; gap: 5px; }
    .idc-list li strong, .idc-list li a { text-align: left; }
}



/* ============================================
   PRODUCT NAV SECTION
============================================ */
.product-nav-section {
    padding: 30px 0;
    background: #fff;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.product-nav-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}
.product-nav-scroll::-webkit-scrollbar { height: 4px; }
.product-nav-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.product-nav-scroll::-webkit-scrollbar-track { background: #f0f0f0; }

.pnav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light);
    color: var(--dark);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
}
.pnav-btn i { color: var(--primary); font-size: 14px; }
.pnav-btn:hover,
.pnav-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
}
.pnav-btn:hover i,
.pnav-btn.active i { color: #fff; }

/* ============================================
   PRODUCTS LIST
============================================ */
.products-list-section { padding: 60px 0 80px; background: var(--light); }

.product-block {
    background: #fff;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.product-block:hover { box-shadow: var(--shadow-md); }

.product-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2ff 100%);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.pbh-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 250px;
}
.pbh-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}
.pbh-left h2 {
    font-size: 20px;
    color: var(--dark);
    margin: 0 0 5px;
    font-weight: 700;
}
.pbh-left p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
}
.pbh-count {
    background: var(--gradient-primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Product Table Premium */
.product-table-premium {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.product-table-premium thead th {
    background: #fff;
    color: var(--dark);
    padding: 18px 25px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border);
}
.product-table-premium tbody tr {
    border-bottom: 1px solid #f5f5f5;
    transition: var(--transition);
}
.product-table-premium tbody tr:hover {
    background: linear-gradient(90deg, #f0f7ff 0%, transparent 100%);
}
.product-table-premium tbody tr:last-child { border-bottom: none; }
.product-table-premium td {
    padding: 18px 25px;
    font-size: 14px;
    color: #444;
    vertical-align: middle;
}

.ptp-sno {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(13,110,253,0.08);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}
.ptp-product {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
}
.ptp-product i {
    color: var(--primary);
    font-size: 16px;
}
.ptp-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 16px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
}
.ptp-action { text-align: center; }
.ptp-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.ptp-enquiry-btn:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
}

/* Product Note */
.product-note {
    display: flex;
    gap: 15px;
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: var(--radius-md);
    padding: 20px 25px;
    margin-top: 30px;
}
.product-note i {
    color: #ffc107;
    font-size: 22px;
    flex-shrink: 0;
}
.product-note p {
    margin: 0;
    font-size: 14px;
    color: #664d03;
    line-height: 1.7;
}
.product-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   WHY BUY SECTION
============================================ */
.why-buy-section { padding: 100px 0; background: #fff; }

.why-buy-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.why-buy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.why-buy-card i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.why-buy-card:hover i {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotate(360deg) scale(1.1);
}
.why-buy-card h4 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}
.why-buy-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .product-nav-section { top: 60px; }
    .products-list-section { padding: 40px 0 60px; }
    .why-buy-section { padding: 70px 0; }
}
@media (max-width: 767px) {
    .product-block-header { padding: 20px; }
    .pbh-icon { width: 50px; height: 50px; font-size: 20px; }
    .pbh-left h2 { font-size: 17px; }
    .pbh-left p { font-size: 12px; }
    .product-table-premium thead th,
    .product-table-premium td { padding: 12px 15px; font-size: 13px; }
    .ptp-sno { width: 30px; height: 30px; font-size: 11px; }
    .ptp-price { font-size: 14px; }
    .ptp-enquiry-btn { padding: 6px 10px; font-size: 11px; }
    .ptp-enquiry-btn span { display: none; }
    .product-note { padding: 15px 18px; flex-direction: column; gap: 10px; }
    .why-buy-card { padding: 25px 20px; }
    .why-buy-card i { width: 55px; height: 55px; font-size: 22px; }
}



/* ============================================
   GALLERY PAGE
============================================ */
.gallery-intro { padding: 80px 0 40px; background: #fff; }

.gallery-section-premium {
    padding: 40px 0 100px;
    background: var(--light);
}

/* Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.gfilter-btn {
    padding: 10px 24px;
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: capitalize;
}
.gfilter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.gfilter-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

/* Gallery Grid */
.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item-premium {
    transition: all 0.4s ease;
}

.gip-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}
.gip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item-premium:hover .gip-image img {
    transform: scale(1.1);
}

.gip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item-premium:hover .gip-overlay { opacity: 1; }

.gip-content { width: 100%; color: #fff; }
.gip-cat {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.gip-content h4 {
    font-size: 16px;
    color: #fff;
    margin: 0 0 10px;
    font-weight: 700;
}
.gip-zoom {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}
.gip-zoom:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-modal.active {
    display: flex;
    opacity: 1;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 44px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    z-index: 2;
}
.lightbox-close:hover { color: var(--primary); transform: rotate(90deg); }
.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    text-align: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}
#lightboxCaption {
    color: #fff;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .gallery-grid-premium { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
    .lightbox-close { top: 10px; right: 20px; font-size: 36px; }
}




/* ============================================
   CONTACT PAGE
============================================ */

/* Contact Info Cards */
.contact-cards-section {
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
.contact-cards-wrapper { position: relative; }

.contact-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}
.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.cic-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}
.cic-icon.email { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); box-shadow: 0 10px 30px rgba(124,58,237,0.35); }
.cic-icon.location { background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); box-shadow: 0 10px 30px rgba(255,107,53,0.35); }
.contact-info-card:hover .cic-icon { transform: rotate(360deg) scale(1.1); }

.contact-info-card h4 {
    font-size: 19px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}
.contact-info-card > p {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 18px;
}
.contact-info-card > a {
    display: block;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    text-decoration: none;
    transition: var(--transition);
}
.contact-info-card > a:hover { color: var(--primary); }
.contact-info-card small {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
}
.contact-info-card small a { color: var(--primary); font-weight: 600; }
.cic-address {
    display: block;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}
.cic-map-link {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: rgba(13,110,253,0.1);
    color: var(--primary) !important;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cic-map-link:hover {
    background: var(--gradient-primary);
    color: #fff !important;
}

/* Contact Main Section */
.contact-main-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.contact-main-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(13,110,253,0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(124,58,237,0.3) 0%, transparent 50%);
}

.contact-left-panel {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-right: 30px;
}
.contact-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}
.cf-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.cf-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(5px);
}
.cf-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.cf-item strong {
    display: block;
    font-size: 15px;
    color: #fff;
    margin-bottom: 3px;
}
.cf-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.contact-social-block { margin-top: 35px; }
.contact-social-block h5 {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
}
.contact-social-links {
    display: flex;
    gap: 10px;
}
.contact-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}
.contact-social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    border-color: transparent;
}

/* Contact Form Premium */
.contact-form-premium {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.cfp-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.cfp-header h3 {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 800;
}
.cfp-header p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* Custom Form Fields */
.form-floating-custom {
    position: relative;
    margin-bottom: 5px;
}
.form-floating-custom label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    background: #fff;
    transition: var(--transition);
    outline: none;
}
.form-floating-custom input:focus,
.form-floating-custom select:focus,
.form-floating-custom textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
}
.form-floating-custom input::placeholder,
.form-floating-custom textarea::placeholder {
    color: #adb5bd;
}
.form-floating-custom textarea { resize: vertical; min-height: 120px; }
.form-floating-custom select {
    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='%236c757d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Map Section */
.map-section-premium { padding: 100px 0; background: #fff; }

.map-wrapper-premium {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.map-wrapper-premium iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s;
}
.map-wrapper-premium:hover iframe { filter: grayscale(0%); }

.map-info-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #fff;
    padding: 25px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    z-index: 2;
}
.mio-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}
.map-info-overlay h4 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}
.map-info-overlay p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}
.map-info-overlay .btn-gradient {
    padding: 10px 20px;
    font-size: 13px;
}

/* FAQ Section */
.faq-section { padding: 100px 0; background: var(--light); }

.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.faq-question {
    width: 100%;
    padding: 22px 30px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    font-family: inherit;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 14px;
}
.faq-item.active .faq-question { color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-cards-section { margin-top: 40px; }
    .contact-main-section { padding: 70px 0; }
    .contact-left-panel { padding-right: 0; margin-bottom: 40px; }
    .contact-form-premium { padding: 35px 30px; }
    .map-section-premium, .faq-section { padding: 70px 0; }
    .map-info-overlay { position: relative; top: auto; left: auto; margin: 20px; max-width: 100%; }
}
@media (max-width: 767px) {
    .contact-info-card { padding: 30px 20px; }
    .contact-main-section, .map-section-premium, .faq-section { padding: 60px 0; }
    .contact-form-premium { padding: 30px 20px; }
    .cfp-header h3 { font-size: 22px; }
    .faq-question { padding: 18px 20px; font-size: 14px; }
    .faq-answer p { padding: 0 20px 20px; font-size: 13px; }
    .map-wrapper-premium iframe { height: 350px !important; }
}









/* ============================================
   FEATURED PRODUCTS — PER PRODUCT CARDS
============================================ */
.featured-products {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

/* Filter Tabs */
.fp-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}
.fp-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    color: var(--dark);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.fp-filter-btn i { color: var(--primary); font-size: 13px; transition: var(--transition); }
.fp-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.fp-filter-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}
.fp-filter-btn.active i { color: #fff; }

/* Products Grid */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Product Card */
.fp-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
}
.fp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: rgba(13,110,253,0.1);
}

/* Image Section */
.fp-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e8f0 100%);
}
.fp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.fp-card:hover .fp-image img {
    transform: scale(1.1);
}

/* Category Badge */
.fp-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: calc(100% - 90px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fp-cat-badge i { font-size: 10px; }

/* Rate Badge */
.fp-rate-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 6px 20px rgba(13,110,253,0.4);
    z-index: 2;
}
.fp-rate-label {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 2px;
}
.fp-rate-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

/* Hover Overlay */
.fp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.fp-card:hover .fp-overlay { opacity: 1; }

.fp-quick-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.fp-quick-view:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.05);
}

/* Body Section */
.fp-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.fp-title {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}
.fp-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Actions */
.fp-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.fp-btn-wa {
    background: #25d366;
    color: #fff;
    flex: 1;
}
.fp-btn-wa:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}
.fp-btn-email {
    background: rgba(124,58,237,0.1);
    color: var(--secondary);
    width: 42px;
    padding: 10px;
}
.fp-btn-email:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}
.fp-btn-call {
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    width: 42px;
    padding: 10px;
}
.fp-btn-call:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* View All Button */
.fp-view-all {
    text-align: center;
    margin-top: 50px;
}

/* Hidden Cards (for filter) */
.fp-card.hidden {
    display: none;
}

/* ============================================
   QUICK VIEW MODAL
============================================ */
.qv-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.qv-modal.active { display: flex; }

.qv-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.qv-content {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    animation: slideUp 0.4s ease;
    z-index: 2;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.qv-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--dark);
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.qv-close:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg);
}

.qv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.qv-image {
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e8f0 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.qv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.qv-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}
.qv-tag {
    display: inline-block;
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    align-self: flex-start;
}
.qv-info h3 {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.3;
}
.qv-info > p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.qv-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin-bottom: 20px;
}
.qv-price span {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
}
.qv-price strong {
    color: var(--primary);
    font-size: 32px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}
.qv-note {
    display: flex;
    gap: 10px;
    padding: 12px 15px;
    background: #fff8e1;
    border-left: 3px solid #ffc107;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}
.qv-note i { color: #ffc107; flex-shrink: 0; margin-top: 2px; }
.qv-note span { font-size: 12px; color: #664d03; line-height: 1.5; }

.qv-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}
.qv-actions .btn-gradient,
.qv-actions .btn-ghost-dark {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}
.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.btn-ghost-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(13,110,253,0.05);
}

.qv-contact {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.qv-contact p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}
.qv-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}
.qv-contact a:hover { color: var(--primary-dark); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
    .featured-products { padding: 70px 0; }
    .fp-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    
    .qv-grid { grid-template-columns: 1fr; }
    .qv-image { min-height: 250px; max-height: 300px; }
    .qv-info { padding: 30px 25px; }
    .qv-info h3 { font-size: 22px; }
    .qv-price strong { font-size: 26px; }
}

@media (max-width: 767px) {
    .featured-products { padding: 60px 0; }
    .fp-filters { 
        flex-wrap: nowrap; 
        overflow-x: auto; 
        justify-content: flex-start;
        padding-bottom: 10px;
        margin-bottom: 35px;
        scrollbar-width: none;
    }
    .fp-filters::-webkit-scrollbar { display: none; }
    .fp-filter-btn { flex-shrink: 0; padding: 9px 16px; font-size: 12px; }
    
    .fp-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
    .fp-image { height: 190px; }
    .fp-body { padding: 18px; }
    .fp-title { font-size: 15px; min-height: 38px; }
    .fp-desc { font-size: 12px; margin-bottom: 14px; }
    .fp-rate-value { font-size: 16px; }
    .fp-cat-badge { font-size: 9px; padding: 5px 10px; }
    
    .fp-btn { padding: 9px 14px; font-size: 12px; }
    .fp-btn-email, .fp-btn-call { width: 38px; padding: 9px; }
    
    .qv-modal { padding: 10px; }
    .qv-content { max-height: 95vh; }
    .qv-image { min-height: 220px; }
    .qv-info { padding: 25px 20px; }
    .qv-info h3 { font-size: 19px; }
    .qv-info > p { font-size: 14px; }
    .qv-price { padding: 15px; }
    .qv-price strong { font-size: 22px; }
    .qv-close { top: 10px; right: 10px; width: 35px; height: 35px; }
}

@media (max-width: 480px) {
    .fp-grid { grid-template-columns: 1fr; }
    .fp-image { height: 220px; }
}
