/* ============================================
   KALPATRUCOAT - Modern Professional Design
   ============================================ */

:root {
    --primary: #D4A017;
    --primary-light: #f5d76e;
    --primary-dark: #b8860b;
    --dark: #0f1724;
    --dark-light: #1a2332;
    --gray-900: #1a1a2e;
    --gray-800: #2d2d44;
    --gray-700: #4a4a5a;
    --gray-600: #6c6c7e;
    --gray-400: #9e9eae;
    --gray-200: #e2e2ea;
    --gray-100: #f4f4f8;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, #e8b828 50%, var(--primary-dark) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ---------- PRELOADER ---------- */
.kc-preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}
.kc-preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.kc-preloader .preloader-logo {
    height: 50px;
    opacity: 0.9;
    animation: preloader-fade 1.5s ease infinite;
}
@keyframes preloader-fade {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}
.kc-preloader .spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(212,160,23,0.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.kc-preloader .preloader-text {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- HEADER ---------- */
.kc-header {
    position: relative;
    z-index: 1000;
}

/* Gold accent line at very top */
.kc-accent-line {
    height: 4px;
    background: var(--gradient);
}

/* Top strip - dark minimal bar */
.kc-topstrip {
    background: var(--dark);
    padding: 8px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.3px;
}
.kc-topstrip .topstrip-left i {
    color: var(--primary);
    margin-right: 5px;
}
.kc-topstrip .topstrip-right {
    display: flex;
    gap: 6px;
}
.kc-topstrip .topstrip-right a {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    transition: var(--transition);
}
.kc-topstrip .topstrip-right a:hover {
    transform: translateY(-1px);
}
.kc-topstrip .topstrip-right a.fb:hover { background: #1877F2; color: #fff; }
.kc-topstrip .topstrip-right a.li:hover { background: #0A66C2; color: #fff; }
.kc-topstrip .topstrip-right a.wa:hover { background: #25D366; color: #fff; }

/* Header middle - logo + contact info */
.kc-header-mid {
    background: var(--white);
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-200);
}
.kc-logo img {
    height: 65px;
    transition: var(--transition);
}
.kc-header-contacts {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 28px;
    border-right: 1px solid var(--gray-200);
}
.header-contact-item:last-of-type {
    border-right: none;
    padding-right: 0;
}
.header-contact-item .hc-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.header-contact-item .hc-icon i {
    color: var(--primary);
    font-size: 16px;
}
.header-contact-item .hc-text {
    line-height: 1.3;
}
.header-contact-item .hc-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    font-weight: 600;
}
.header-contact-item .hc-text a,
.header-contact-item .hc-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.header-contact-item .hc-text a:hover {
    color: var(--primary);
}

/* Navigation bar */
.kc-navbar {
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background: var(--dark-light);
}
.kc-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.kc-navbar .navbar-brand img {
    height: 45px;
    padding: 6px 0;
}
.kc-navbar .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.8);
    padding: 16px 18px !important;
    transition: var(--transition);
    position: relative;
}
.kc-navbar .nav-link:hover,
.kc-navbar .nav-link.active {
    color: var(--primary) !important;
    background: rgba(255,255,255,0.05);
}
.kc-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 3px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}
.kc-navbar .nav-link:hover::after,
.kc-navbar .nav-link.active::after { width: 100%; }
.kc-navbar .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 10px;
}
.kc-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- HERO ---------- */
.kc-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.kc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,36,0.75) 0%, rgba(26,35,50,0.55) 50%, rgba(15,23,36,0.7) 100%);
}
.kc-hero .container { position: relative; z-index: 2; }
.kc-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,23,0.15);
    border: 1px solid rgba(212,160,23,0.3);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.kc-hero h1 {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.kc-hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    min-width: 280px;
}
@media (max-width: 767px) {
    .kc-hero h1 span { min-width: 180px; }
}
@media (max-width: 480px) {
    .kc-hero h1 span { min-width: 140px; }
}
.kc-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
}
.kc-hero .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.kc-hero .hero-stats .stat h3 {
    font-size: 36px;
    color: var(--primary);
    font-weight: 800;
}
.kc-hero .hero-stats .stat p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ---------- BUTTONS ---------- */
.btn-kc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-kc-primary {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: 0 8px 30px rgba(212,160,23,0.25);
}
.btn-kc-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212,160,23,0.4);
    color: var(--dark);
}
.btn-kc-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-kc-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-3px);
}
.btn-kc-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-kc-dark:hover {
    background: var(--gray-800);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-kc i, .btn-kc svg { font-size: 12px; }

/* ---------- SECTIONS ---------- */
.kc-section {
    padding: 100px 0;
    position: relative;
}
.kc-section-dark {
    background: var(--dark);
    color: var(--white);
}
.kc-section-dark h2, .kc-section-dark h3, .kc-section-dark h4 { color: var(--white); }
.kc-section-gray { background: var(--gray-100); }
.kc-section-header {
    text-align: center;
    margin-bottom: 64px;
}
.kc-section-header .label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}
.kc-section-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 16px;
}
.kc-section-header p {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}
.kc-section-dark .kc-section-header p { color: rgba(255,255,255,0.6); }

/* ---------- WHY CHOOSE SECTION ---------- */
/* ---------- WHY CHOOSE SECTION ---------- */
.kc-why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8f5ef 100%);
    position: relative;
    overflow: hidden;
}
.kc-why-section::before {
    content: '';
    position: absolute;
    top: -200px; left: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,160,23,0.12), transparent 70%);
    border-radius: 50%;
}
.kc-why-section::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,160,23,0.1), transparent 70%);
    border-radius: 50%;
}
.kc-why-left {
    position: relative;
    z-index: 1;
}
.kc-why-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 16px;
    padding: 8px 18px;
    background: var(--gradient);
    border-radius: 50px;
}
.kc-why-left h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
.kc-why-left h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.kc-why-left > p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}
.kc-why-counter-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-top: 2px solid rgba(212,160,23,0.15);
    border-bottom: 2px solid rgba(212,160,23,0.15);
    margin-bottom: 8px;
}
.kc-why-stat h3 {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
    line-height: 1;
}
.kc-why-stat span {
    font-size: 12px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.kc-why-divider {
    width: 1px;
    height: 40px;
    background: rgba(212,160,23,0.2);
}

/* Why cards - BOLD */
.kc-why-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid transparent;
}
.kc-why-card:nth-child(odd) { border-top-color: var(--primary); }
.kc-why-card:nth-child(even) { border-top-color: #3498db; }
.kc-why-card:nth-child(3n) { border-top-color: #27ae60; }
.kc-why-card:hover {
    border-color: transparent;
    border-top-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.kc-why-num {
    position: absolute;
    top: 14px; right: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(212,160,23,0.06);
    line-height: 1;
    transition: var(--transition);
}
.kc-why-card:hover .kc-why-num {
    color: rgba(212,160,23,0.12);
}
.kc-why-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.kc-why-card:nth-child(1) .kc-why-icon { background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05)); }
.kc-why-card:nth-child(2) .kc-why-icon { background: linear-gradient(135deg, rgba(52,152,219,0.15), rgba(52,152,219,0.05)); }
.kc-why-card:nth-child(3) .kc-why-icon { background: linear-gradient(135deg, rgba(46,125,50,0.15), rgba(46,125,50,0.05)); }
.kc-why-card:nth-child(4) .kc-why-icon { background: linear-gradient(135deg, rgba(231,76,60,0.15), rgba(231,76,60,0.05)); }
.kc-why-card:nth-child(5) .kc-why-icon { background: linear-gradient(135deg, rgba(155,89,182,0.15), rgba(155,89,182,0.05)); }
.kc-why-card:nth-child(6) .kc-why-icon { background: linear-gradient(135deg, rgba(230,126,34,0.15), rgba(230,126,34,0.05)); }
.kc-why-card:hover .kc-why-icon {
    background: var(--gradient);
    transform: scale(1.1) rotate(-5deg);
}
.kc-why-icon i {
    font-size: 24px;
    transition: var(--transition);
}
.kc-why-card:nth-child(1) .kc-why-icon i { color: var(--primary); }
.kc-why-card:nth-child(2) .kc-why-icon i { color: #3498db; }
.kc-why-card:nth-child(3) .kc-why-icon i { color: #2e7d32; }
.kc-why-card:nth-child(4) .kc-why-icon i { color: #e74c3c; }
.kc-why-card:nth-child(5) .kc-why-icon i { color: #9b59b6; }
.kc-why-card:nth-child(6) .kc-why-icon i { color: #e67e22; }
.kc-why-card:hover .kc-why-icon i {
    color: var(--dark);
}
.kc-why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.kc-why-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* old service cards kept for about page */
.kc-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
}
.kc-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.kc-service-card .icon-wrap {
    width: 80px; height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(212,160,23,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}
.kc-service-card:hover .icon-wrap {
    background: var(--gradient);
}
.kc-service-card .icon-wrap i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}
.kc-service-card:hover .icon-wrap i { color: var(--dark); }
.kc-service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}
.kc-service-card p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

/* ---------- ABOUT SECTION (Homepage) ---------- */
.kc-about-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

/* Left visual */
.kc-about-visual {
    position: relative;
    padding: 20px;
    height: 100%;
    min-height: 500px;
}
.about-main-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    z-index: 2;
}
.about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.about-accent-box {
    position: absolute;
    top: 0; left: 0;
    width: 60%;
    height: 60%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: 1;
    opacity: 0.2;
}
.about-experience-badge {
    position: absolute;
    bottom: 0; right: 0;
    background: var(--primary);
    color: var(--dark);
    padding: 22px 28px;
    border-radius: var(--radius-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(212,160,23,0.35);
}
.about-experience-badge .exp-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}
.about-experience-badge .exp-number sup {
    font-size: 24px;
}
.about-experience-badge .exp-text {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.85;
}
.about-experience-badge .exp-text strong {
    display: block;
    font-size: 15px;
    opacity: 1;
}

/* Right content */
.kc-about-right {
    padding: 20px 0 20px 48px;
}
.kc-about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    background: rgba(212,160,23,0.08);
    padding: 8px 18px;
    border-radius: 50px;
}
.kc-about-label i { font-size: 12px; }
.kc-about-right h2 {
    font-size: clamp(26px, 3vw, 38px);
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.25;
}
.kc-about-right h2 span {
    color: var(--primary-dark);
}
.kc-about-right .about-lead {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

/* Feature list */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.about-feature-item .af-icon {
    flex-shrink: 0;
    margin-top: 2px;
}
.about-feature-item .af-icon i {
    font-size: 20px;
    color: var(--primary);
}
.about-feature-item h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}
.about-feature-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* CTA row */
.about-cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.about-call {
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-call-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(212,160,23,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-ring 2s ease infinite;
}
.about-call-icon i {
    color: var(--primary);
    font-size: 18px;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(212,160,23,0.3); }
    70% { box-shadow: 0 0 0 12px rgba(212,160,23,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); }
}
.about-call span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    font-weight: 600;
}
.about-call a {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
}
.about-call a:hover { color: var(--primary); }

/* About page specific (reuse) */
.kc-about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.kc-about-img img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
}
.kc-about-img::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 200px; height: 200px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}
.kc-about-content .label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}
.kc-about-content h2 {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 20px;
}
.kc-about-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 15px;
}
.kc-about-content .highlight-box {
    background: var(--gray-100);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
}

/* ---------- ECO SECTION ---------- */
.kc-eco-section {
    position: relative;
    padding: 100px 0;
    background: var(--gray-100);
    overflow: hidden;
}
.eco-bg-left {
    position: absolute;
    top: 0; left: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    border-radius: 0 60px 60px 0;
    z-index: 0;
}
.kc-eco-section .container {
    position: relative;
    z-index: 1;
}

/* Left panel */
.eco-left-panel {
    background: linear-gradient(160deg, #1b5e20, #2e7d32);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.eco-leaf-bg {
    position: absolute;
    bottom: -30px; right: -20px;
    font-size: 180px;
    color: rgba(255,255,255,0.04);
    transform: rotate(-15deg);
    line-height: 1;
}
.eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}
.eco-badge i { font-size: 14px; }
.eco-left-panel h2 {
    font-size: clamp(24px, 2.8vw, 34px);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}
.eco-left-panel > p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}
.eco-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
.eco-highlight-num {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #a5d6a7;
    line-height: 1;
}
.eco-highlight-text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

/* Right panel */
.eco-right-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    height: 100%;
    overflow: hidden;
}
.eco-feature-col {
    padding: 40px 28px;
    height: 100%;
    border-right: 1px solid var(--gray-100);
    transition: var(--transition);
}
.eco-feature-col:hover {
    background: rgba(212,160,23,0.03);
}
.eco-feature-mid {
    background: var(--gray-100);
}
.eco-feature-mid:hover {
    background: rgba(212,160,23,0.06);
}
.eco-feature-col:last-child {
    border-right: none;
}
.eco-feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(27,94,32,0.1), rgba(46,125,50,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.eco-feature-col:hover .eco-feature-icon {
    background: linear-gradient(135deg, #2e7d32, #43a047);
}
.eco-feature-icon i {
    font-size: 22px;
    color: #2e7d32;
    transition: var(--transition);
}
.eco-feature-col:hover .eco-feature-icon i {
    color: var(--white);
}
.eco-feature-col h4 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-100);
}
.eco-feature-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eco-feature-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.5;
}
.eco-feature-col ul li i {
    color: #43a047;
    font-size: 11px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ---------- FLEXIBILITY SECTION ---------- */
.kc-flex-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

/* Image side */
.flex-img-wrap {
    position: relative;
    padding: 20px;
}
.flex-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.flex-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 2;
    animation: float-y 3s ease-in-out infinite;
}
.flex-float-1 {
    top: 15%; left: -10px;
}
.flex-float-2 {
    bottom: 15%; right: -10px;
    animation-delay: 1.5s;
}
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.ffc-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(212,160,23,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ffc-icon i { color: var(--primary); font-size: 16px; }
.ffc-green { background: rgba(46,125,50,0.1); }
.ffc-green i { color: #2e7d32; }
.flex-float-card strong {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--dark);
    display: block;
    line-height: 1.2;
}
.flex-float-card span {
    font-size: 12px;
    color: var(--gray-400);
}

/* Content side */
.flex-content .flex-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    background: rgba(212,160,23,0.08);
    padding: 8px 18px;
    border-radius: 50px;
}
.flex-content .flex-label i { font-size: 12px; }
.flex-content h2 {
    font-size: clamp(26px, 3vw, 38px);
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.25;
}
.flex-content h2 span { color: var(--primary-dark); }
.flex-content > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Feature items */
.flex-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
}
.flex-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}
.flex-feat:last-child { border-bottom: none; }
.flex-feat:hover {
    background: var(--gray-100);
    border-radius: var(--radius);
}
.flex-feat-num {
    position: absolute;
    top: 18px; right: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
}
.flex-feat:hover .flex-feat-num { color: rgba(212,160,23,0.15); }
.flex-feat img {
    width: 44px; height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}
.flex-feat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(212,160,23,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.flex-feat-icon i { color: var(--primary); font-size: 18px; }
.flex-feat h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.flex-feat p {
    font-size: 13.5px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ---------- TESTIMONIALS V2 ---------- */
.kc-testi-v2 {
    padding: 100px 0;
    background: var(--gray-100);
    overflow: hidden;
}

/* Left panel */
.testi-v2-left .testi-v2-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(212,160,23,0.08);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.testi-v2-left .testi-v2-label i { font-size: 11px; }
.testi-v2-left h2 {
    font-size: clamp(26px, 3vw, 36px);
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 16px;
}
.testi-v2-left h2 span {
    color: var(--primary-dark);
}
.testi-v2-left > p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Stats */
.testi-v2-stats {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 28px;
}
.tv2-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.tv2-stars {
    display: flex;
    gap: 3px;
}
.tv2-stars i {
    color: #f59e0b;
    font-size: 14px;
}
.tv2-stat strong {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}
.tv2-stat span {
    font-size: 13px;
    color: var(--gray-400);
}

/* Nav arrows */
.testi-v2-nav {
    display: flex;
    gap: 10px;
}
.testi-v2-nav button {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.testi-v2-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: scale(1.08);
}

/* Testimonial cards */
.tv2-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.tv2-card:hover {
    border-color: rgba(212,160,23,0.3);
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.tv2-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.tv2-quote {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tv2-quote i {
    color: var(--dark);
    font-size: 16px;
}
.tv2-rating {
    display: flex;
    gap: 2px;
}
.tv2-rating i {
    color: #f59e0b;
    font-size: 13px;
}
.tv2-card p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

/* Author */
.tv2-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-100);
}
.tv2-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}
.tv2-av-2 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; }
.tv2-av-3 { background: linear-gradient(135deg, #10b981, #059669); color: #fff; }
.tv2-av-4 { background: linear-gradient(135deg, #f59e0b, #d97706); color: var(--dark); }
.tv2-author strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}
.tv2-author span {
    font-size: 12px;
    color: var(--gray-400);
}

/* ---------- CTA SECTION ---------- */
.kc-cta-section {
    padding: 0;
    background: var(--white);
}
.kc-cta-wrap {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animated floating shapes */
.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--primary);
}
.cta-shape-1 {
    width: 400px; height: 400px;
    top: -150px; right: -100px;
    animation: cta-float 8s ease-in-out infinite;
}
.cta-shape-2 {
    width: 250px; height: 250px;
    bottom: -80px; left: 5%;
    animation: cta-float 6s ease-in-out infinite reverse;
}
.cta-shape-3 {
    width: 150px; height: 150px;
    top: 40%; left: 40%;
    animation: cta-float 10s ease-in-out infinite;
    opacity: 0.03;
}
@keyframes cta-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(15px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 15px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Content left */
.cta-content .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.2);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 20px;
}
.cta-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-content h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-content p {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    line-height: 1.8;
    max-width: 440px;
}

/* Action cards right */
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta-action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 18px 22px;
    transition: var(--transition);
}
.cta-action-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(212,160,23,0.25);
    transform: translateX(-6px);
}
.cta-ac-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: rgba(212,160,23,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.cta-action-card:hover .cta-ac-icon {
    background: var(--gradient);
}
.cta-ac-icon i {
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}
.cta-action-card:hover .cta-ac-icon i { color: var(--dark); }
.cta-ac-whatsapp { background: rgba(37,211,102,0.12); }
.cta-ac-whatsapp i { color: #25D366; }
.cta-action-card:hover .cta-ac-whatsapp { background: #25D366; }
.cta-action-card:hover .cta-ac-whatsapp i { color: #fff; }
.cta-ac-mail { background: rgba(66,133,244,0.12); }
.cta-ac-mail i { color: #4285F4; }
.cta-action-card:hover .cta-ac-mail { background: #4285F4; }
.cta-action-card:hover .cta-ac-mail i { color: #fff; }
.cta-action-card span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    margin-bottom: 2px;
}
.cta-action-card a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}
.cta-action-card:hover a { color: var(--primary-light); }

/* ---------- PRODUCT/APP CARDS ---------- */
.kc-product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}
.kc-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.kc-product-card .card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.kc-product-card .card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.kc-product-card:hover .card-img img {
    transform: scale(1.08);
}
.kc-product-card .card-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,36,0.7), transparent);
    opacity: 0;
    transition: var(--transition);
}
.kc-product-card:hover .card-img .overlay { opacity: 1; }
.kc-product-card .card-body {
    padding: 24px;
    text-align: center;
}
.kc-product-card h4 {
    font-size: 17px;
    margin-bottom: 12px;
}
.kc-product-card .card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.kc-product-card:hover .card-link { gap: 10px; }

/* ---------- COLOR CARD GRID ---------- */
.kc-color-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
    transition: var(--transition);
}
.kc-color-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.kc-color-card .color-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: var(--transition);
}
.kc-color-card:hover .color-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}
.kc-color-card h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}
.kc-color-card .card-link {
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.kc-color-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- PAGE BANNER ---------- */
.kc-page-banner {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.kc-page-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,160,23,0.08), transparent 70%);
    border-radius: 50%;
}
.kc-page-banner h1 {
    color: var(--white);
    font-size: clamp(32px, 4vw, 52px);
}
.kc-page-banner .breadcrumb {
    margin-top: 12px;
}
.kc-page-banner .breadcrumb a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.kc-page-banner .breadcrumb span {
    color: var(--primary);
    font-size: 14px;
}

/* ---------- COUNTERS ---------- */
.kc-counter {
    text-align: center;
    padding: 32px 16px;
}
.kc-counter h3 {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.kc-section-dark .kc-counter p { color: rgba(255,255,255,0.6); }

/* ---------- VISION/MISSION CARDS ---------- */
.kc-vm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.kc-vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--gradient);
}
.kc-vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.kc-vm-card h4 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--primary-dark);
}
.kc-vm-card p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

/* ---------- CONTACT CARDS ---------- */
.kc-contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition);
}
.kc-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.kc-contact-card .icon-wrap {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.kc-contact-card .icon-wrap i {
    font-size: 24px;
    color: var(--primary);
}
.kc-contact-card h5 {
    font-size: 17px;
    margin-bottom: 8px;
}
.kc-contact-card p, .kc-contact-card a {
    font-size: 14px;
    color: var(--gray-600);
}
.kc-contact-card a:hover { color: var(--primary); }

/* ---------- FORMS ---------- */
.kc-form .form-control, .kc-form .form-select {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
}
.kc-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212,160,23,0.1);
    background: var(--white);
}
.kc-form label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.kc-form textarea.form-control { min-height: 140px; resize: vertical; }

/* ---------- FOOTER ---------- */
.kc-ft {
    position: relative;
}

/* Floating contact bar */
.ft-contact-bar {
    position: relative;
    z-index: 2;
    margin-top: -40px;
    padding-bottom: 40px;
    background: var(--gray-100);
}
/* Adapt contact bar bg based on what's above */
.kc-cta-section + .kc-ft .ft-contact-bar,
.prod-cta + .kc-ft .ft-contact-bar {
    background: linear-gradient(to bottom, var(--dark) 50%, var(--gray-100) 50%);
}
.cta-sep-colorful + .kc-ft .ft-contact-bar {
    background: linear-gradient(to bottom, #0f3460 50%, var(--gray-100) 50%);
}
.about-choose + .kc-ft .ft-contact-bar {
    background: linear-gradient(to bottom, var(--white) 50%, var(--gray-100) 50%);
}
.ft-contact-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 16px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
}
.ft-ci {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ft-ci-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.ft-ci:hover .ft-ci-icon {
    background: var(--gradient);
}
.ft-ci-icon i {
    font-size: 18px;
    color: var(--primary);
    transition: var(--transition);
}
.ft-ci:hover .ft-ci-icon i { color: var(--dark); }
.ft-ci-wa { background: rgba(37,211,102,0.1); }
.ft-ci-wa i { color: #25D366; }
.ft-ci:hover .ft-ci-wa { background: #25D366; }
.ft-ci:hover .ft-ci-wa i { color: #fff; }
.ft-ci span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    font-weight: 700;
    margin-bottom: 2px;
}
.ft-ci strong {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.ft-ci strong a { color: var(--dark); }
.ft-ci strong a:hover { color: var(--primary); }

/* Main */
.ft-main {
    background: var(--gray-100);
    padding: 80px 0 50px;
}
.ft-logo {
    height: 55px;
    margin-bottom: 18px;
}
.ft-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}
.ft-social {
    display: flex;
    gap: 8px;
}
.ft-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ft-social a:hover {
    transform: translateY(-3px);
}
.ft-social a.fb:hover { background: #1877F2; color: #fff; box-shadow: 0 8px 20px rgba(24,119,242,0.3); }
.ft-social a.li:hover { background: #0A66C2; color: #fff; box-shadow: 0 8px 20px rgba(10,102,194,0.3); }
.ft-social a.wa:hover { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

/* Titles */
.ft-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.ft-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ft-links li {
    margin-bottom: 12px;
}
.ft-links li a {
    font-size: 14px;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}
.ft-links li a::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gray-300, #ccc);
    margin-right: 10px;
    vertical-align: middle;
    transition: var(--transition);
}
.ft-links li a:hover {
    color: var(--primary);
    padding-left: 4px;
}
.ft-links li a:hover::before {
    background: var(--primary);
}

/* Offices */
.ft-office {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.ft-office-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gray-300, #ccc);
    margin-top: 5px;
    flex-shrink: 0;
    position: relative;
}
.ft-office-dot::after {
    content: '';
    position: absolute;
    top: 14px; left: 4px;
    width: 2px; height: 36px;
    background: var(--gray-200);
}
.ft-office:last-child .ft-office-dot::after { display: none; }
.ft-office-dot-gold { background: var(--primary); }
.ft-office strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}
.ft-office p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Bottom */
.ft-bottom {
    background: var(--white);
    padding: 18px 0;
    border-top: 1px solid var(--gray-200);
}
.ft-bottom p {
    margin: 0;
    font-size: 13px;
    color: var(--gray-400);
}

/* Old footer class kept for inner pages */
.kc-footer {
    background: #1e293b;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.kc-footer h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.kc-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}
.kc-footer .footer-logo { height: 50px; margin-bottom: 20px; }
.kc-footer p { font-size: 14px; line-height: 1.8; }
.kc-footer ul { list-style: none; padding: 0; }
.kc-footer ul li { margin-bottom: 10px; }
.kc-footer ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.kc-footer ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}
.kc-footer ul li i {
    color: var(--primary);
    width: 18px;
}
.kc-footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.kc-footer .social-links a {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.kc-footer .social-links a:hover {
    background: var(--gradient);
    color: var(--dark);
    transform: translateY(-3px);
}
.kc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    margin-top: 60px;
    text-align: center;
}
.kc-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ---------- MOBILE TOOLBAR ---------- */
.kc-mobile-toolbar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
    z-index: 999;
    display: none;
    padding: 8px 0;
}
.kc-mobile-toolbar ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
}
.kc-mobile-toolbar li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
    padding: 6px 12px;
}
.kc-mobile-toolbar li a img { width: 22px; height: 22px; }
.kc-mobile-toolbar li a:hover { color: var(--primary); }

/* ---------- MAP ---------- */
.kc-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.kc-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ---------- ANIMATIONS ---------- */
[data-aos] { transition: var(--transition); }

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .kc-mobile-toolbar { display: block; }
    body { padding-bottom: 70px; }
    .kc-section { padding: 70px 0; }
    .kc-hero { min-height: 90vh; }
    .kc-hero h1 { font-size: 36px; }
    .kc-hero .hero-stats { gap: 24px; flex-wrap: wrap; }
    .kc-hero .hero-stats .stat h3 { font-size: 28px; }
    .kc-why-section { padding: 70px 0; }
    .kc-why-left { margin-bottom: 48px; }
    .kc-why-card { margin-top: 0 !important; }
    .eco-bg-left { display: none; }
    .eco-left-panel { margin-bottom: 24px; }
    .eco-feature-col { border-right: none; border-bottom: 1px solid var(--gray-100); }
    .kc-eco-section { padding: 60px 0; }
    .kc-flex-section { padding: 60px 0; }
    .flex-float-card { display: none; }
    .flex-img-wrap { padding: 0; margin-bottom: 32px; }
    .kc-testi-v2 { padding: 60px 0; }
    .testi-v2-left { margin-bottom: 40px; }
    .testi-v2-nav { margin-bottom: 20px; }
    .kc-cta-wrap { padding: 60px 0; }
    .cta-content { margin-bottom: 40px; text-align: center; }
    .cta-content p { max-width: 100%; }
    .cta-shape-1 { width: 250px; height: 250px; }
    .cta-shape-2 { width: 150px; height: 150px; }
    .ft-contact-inner { flex-wrap: wrap; gap: 16px; padding: 24px 20px; }
    .ft-contact-bar { margin-top: -30px; }
    .ft-main { padding: 60px 0 40px; }
    .kc-navbar .navbar-collapse {
        background: var(--dark);
        padding: 16px;
        border-radius: 0 0 var(--radius) var(--radius);
    }
    .kc-navbar .nav-link { padding: 10px 16px !important; }
    .kc-testimonial { padding: 32px 20px; }
}

@media (max-width: 767px) {
    .kc-section { padding: 50px 0; }
    .kc-section-header { margin-bottom: 40px; }
    .kc-page-banner { padding: 130px 0 60px; }
    .kc-about-img::after { display: none; }
    .kc-about-section { padding: 50px 0; }
    .kc-about-visual { min-height: 350px; margin-bottom: 32px; }
    .kc-about-right { padding: 0; }
    .about-accent-box { display: none; }
    .kc-hero .hero-stats { gap: 16px; }
    .kc-counter h3 { font-size: 36px; }
    .kc-footer { padding: 50px 0 0; }
    .mb-mob { margin-bottom: 32px; }
}

@media (max-width: 576px) {
    .kc-hero p { font-size: 15px; }
    .btn-kc { padding: 12px 24px; font-size: 13px; }
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* --- About Banner with color splashes --- */
.about-banner {
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}
.about-banner-colors {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.35;
}
.ab-color {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: ab-float 8s ease-in-out infinite;
}
.ab-c1 { width: 350px; height: 350px; background: #e74c3c; top: -100px; right: 5%; animation-delay: 0s; }
.ab-c2 { width: 300px; height: 300px; background: #3498db; bottom: -80px; right: 25%; animation-delay: 1.5s; }
.ab-c3 { width: 280px; height: 280px; background: #f39c12; top: -20px; left: 0%; animation-delay: 3s; }
.ab-c4 { width: 250px; height: 250px; background: #27ae60; bottom: -60px; left: 20%; animation-delay: 4.5s; }
.ab-c5 { width: 320px; height: 320px; background: #9b59b6; top: -80px; left: 40%; animation-delay: 2s; }
@keyframes ab-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.08); }
}
.about-banner .breadcrumb {
    margin-bottom: 16px;
}
.about-banner .breadcrumb a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.about-banner .breadcrumb span {
    color: var(--primary);
    font-size: 14px;
}
.about-banner h1 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 18px;
}
.about-banner h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-banner > .container > .row > div > p {
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
}

/* --- Color Strip Divider --- */
.color-strip-divider {
    display: flex;
    height: 6px;
}
.csd-bar {
    flex: 1;
}

/* --- Vision Mission Section --- */
.about-vms {
    padding: 100px 0;
    background: var(--gray-100);
}
.vms-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.vms-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.vms-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.vms-mission .vms-icon { background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.04)); }
.vms-mission .vms-icon i { color: var(--primary); font-size: 22px; }
.vms-mission:hover { border-color: rgba(212,160,23,0.3); }
.vms-vision .vms-icon { background: linear-gradient(135deg, rgba(52,152,219,0.12), rgba(52,152,219,0.04)); }
.vms-vision .vms-icon i { color: #3498db; font-size: 22px; }
.vms-vision:hover { border-color: rgba(52,152,219,0.3); }
.vms-quality .vms-icon { background: linear-gradient(135deg, rgba(46,125,50,0.12), rgba(46,125,50,0.04)); }
.vms-quality .vms-icon i { color: #2e7d32; font-size: 22px; }
.vms-quality:hover { border-color: rgba(46,125,50,0.3); }
.vms-num {
    position: absolute;
    top: 20px; right: 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
}
.vms-card:hover .vms-num { color: var(--gray-200); }
.vms-card h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}
.vms-card p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.75;
    margin: 0;
}

/* --- Process Timeline --- */
.about-process {
    padding: 100px 0;
    background: var(--white);
}
.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}
.ps-num {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--white);
    background: var(--primary);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    position: relative;
    z-index: 2;
}
.ps-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}
.process-step:hover .ps-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.ps-icon i {
    color: var(--dark);
    font-size: 24px;
}
.process-step h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}
.process-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-200);
    margin-top: 50px;
    flex-shrink: 0;
    position: relative;
}
.process-connector::after {
    content: '';
    position: absolute;
    right: -4px; top: -3px;
    width: 8px; height: 8px;
    border-right: 2px solid var(--gray-300, #ccc);
    border-top: 2px solid var(--gray-300, #ccc);
    transform: rotate(45deg);
}

/* --- About Counters --- */
.about-counters {
    padding: 80px 0;
    background: var(--dark);
}
.about-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ac-item {
    text-align: center;
    padding: 36px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.ac-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,160,23,0.2);
    transform: translateY(-4px);
}
.ac-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(212,160,23,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.ac-icon i {
    color: var(--primary);
    font-size: 22px;
}
.ac-item h3 {
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}
.ac-item p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0;
}

/* --- About Choose / CTA --- */
.about-choose {
    padding: 100px 0;
    background: var(--white);
}
.ac-feature-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    height: 100%;
}
.ac-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.ac-feature-box i {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}
.ac-feature-box h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.ac-feature-box p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* --- About page responsive --- */
@media (max-width: 991px) {
    .about-banner { padding: 60px 0 70px; }
    .process-timeline { flex-direction: column; align-items: center; }
    .process-connector { width: 2px; height: 40px; margin: 0; }
    .process-connector::after { display: none; }
    .process-step { max-width: 300px; }
    .about-counter-grid { grid-template-columns: repeat(2, 1fr); }
    .about-vms { padding: 60px 0; }
    .about-process { padding: 60px 0; }
    .about-choose { padding: 60px 0; }
}
@media (max-width: 767px) {
    .about-banner h1 { font-size: 32px; }
    .about-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ac-item { padding: 24px 16px; }
    .ac-item h3 { font-size: 32px; }
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

/* --- Products Intro --- */
.prod-intro {
    padding: 100px 0;
    background: var(--white);
}
.prod-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.prod-hl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}
.prod-hl i {
    color: var(--primary);
    font-size: 16px;
}

/* Stats grid */
.prod-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.prod-stat-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.prod-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,160,23,0.2);
}
.psc-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.psc-icon i { font-size: 22px; }
.prod-stat-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}
.prod-stat-card p {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}

/* --- Product Grid --- */
.prod-grid {
    padding: 100px 0;
    background: var(--gray-100);
}

/* Product Card */
.prod-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
    border-color: transparent;
}
.prod-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.prod-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.prod-card:hover .prod-card-img img {
    transform: scale(1.08);
}
.prod-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,36,0.5), transparent 60%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 14px;
}
.prod-tag {
    background: rgba(212,160,23,0.9);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
}
.prod-card-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}
.prod-card-num {
    position: absolute;
    top: 20px; right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
}
.prod-card:hover .prod-card-num {
    color: rgba(212,160,23,0.1);
}
.prod-card-body h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.prod-card-body > p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}
.prod-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.prod-card-features span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.prod-card-features span i {
    color: var(--primary);
    font-size: 10px;
}
.prod-card-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    transition: var(--transition);
}
.prod-card:hover .prod-card-link {
    gap: 12px;
    color: var(--primary);
}

/* --- Product CTA --- */
.prod-cta {
    padding: 80px 0;
    background: var(--white);
}
.prod-cta-inner {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
}
.prod-cta-inner::before {
    content: '';
    position: absolute;
    top: -50px; right: -30px;
    width: 200px; height: 200px;
    border: 35px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}
.prod-cta-inner h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--dark);
    margin-bottom: 8px;
    position: relative; z-index: 1;
}
.prod-cta-inner p {
    color: rgba(15,23,36,0.6);
    font-size: 15px;
    margin: 0;
    position: relative; z-index: 1;
}
.prod-cta-inner .btn-kc {
    position: relative; z-index: 1;
}

/* --- Products responsive --- */
@media (max-width: 991px) {
    .prod-intro { padding: 60px 0; }
    .prod-grid { padding: 60px 0; }
    .prod-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .prod-cta { padding: 50px 0; }
    .prod-cta-inner { padding: 32px 24px; text-align: center; }
    .prod-cta-inner .text-lg-end { text-align: center !important; margin-top: 20px; }
}
@media (max-width: 767px) {
    .prod-stat-card { padding: 24px 16px; }
    .prod-stat-card h3 { font-size: 28px; }
}

/* --- Product Detail Section --- */
.prod-detail {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.prod-detail-img {
    position: relative;
}
.prod-detail-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.prod-detail-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--white);
    padding: 12px 22px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}
.prod-detail-badge i {
    color: var(--primary);
    font-size: 16px;
}
.prod-detail-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.3;
}
.prod-detail-lead {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 12px;
}
.prod-detail-content > p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 28px;
}
.prod-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}
.pdf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}
.pdf-item i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .prod-detail { padding: 60px 0; }
    .prod-detail-img { margin-bottom: 32px; }
    .prod-detail-features { grid-template-columns: 1fr; }
}

/* --- Product Advantages Section --- */
.prod-adv-section {
    padding: 100px 0;
    background: var(--gray-100);
}
.prod-adv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.prod-adv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.prod-adv-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}
.prod-adv-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.prod-adv-header h3 {
    font-size: 20px;
    margin: 0;
}
.prod-adv-green .prod-adv-icon { background: linear-gradient(135deg, rgba(46,125,50,0.12), rgba(46,125,50,0.04)); }
.prod-adv-green .prod-adv-icon i { color: #2e7d32; font-size: 20px; }
.prod-adv-green:hover { border-color: rgba(46,125,50,0.3); }
.prod-adv-amber .prod-adv-icon { background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(245,158,11,0.04)); }
.prod-adv-amber .prod-adv-icon i { color: #f59e0b; font-size: 20px; }
.prod-adv-amber:hover { border-color: rgba(245,158,11,0.3); }
.prod-adv-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.prod-adv-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-100);
}
.prod-adv-card ul li:last-child { border: none; }
.prod-adv-green ul li i { color: #2e7d32; font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.prod-adv-amber ul li i { color: #f59e0b; font-size: 14px; margin-top: 3px; flex-shrink: 0; }

/* --- Best For Section --- */
.prod-bestfor {
    padding: 100px 0;
    background: var(--white);
}
.bestfor-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.bestfor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,160,23,0.3);
}
.bestfor-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}
.bestfor-card:hover .bestfor-icon { transform: scale(1.1); }
.bestfor-icon i { font-size: 22px; color: var(--primary); }
.bestfor-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.bestfor-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .prod-adv-section { padding: 60px 0; }
    .prod-bestfor { padding: 60px 0; }
}

/* ============================================
   APPLICATION PAGE STYLES
   ============================================ */
.app-detail-row {
    padding: 48px 0;
    border-bottom: 1px solid var(--gray-200);
}
.app-detail-row:last-child { border-bottom: none; }

.app-detail-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.app-detail-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.app-detail-row:hover .app-detail-img img {
    transform: scale(1.03);
}
.app-detail-tag {
    position: absolute;
    top: 16px; left: 16px;
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.app-detail-tag i {
    color: #fff;
    font-size: 20px;
}

.app-detail-content {
    position: relative;
}
.app-num {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    position: absolute;
    top: -20px; right: 0;
    transition: var(--transition);
}
.app-detail-row:hover .app-num {
    color: rgba(212,160,23,0.1);
}
.app-detail-content h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.app-detail-content > p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}
.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.app-tags span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 6px 16px;
    border-radius: 50px;
    transition: var(--transition);
}
.app-tags span:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

@media (max-width: 991px) {
    .app-detail-row { padding: 32px 0; }
    .app-num { font-size: 50px; top: -10px; }
    .app-detail-content h3 { font-size: 22px; }
    .app-detail-img { margin-bottom: 24px; }
}

/* ============================================
   COLOR CARD PAGE STYLES
   ============================================ */
.cc-collections {
    padding: 100px 0;
    background: var(--gray-100);
}

.cc-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 260px;
    transition: var(--transition);
}
.cc-card-lg { height: 260px; }
.cc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.cc-card-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}
.cc-card:hover .cc-card-inner {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.15) 100%);
}
.cc-count {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    width: fit-content;
}
.cc-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 6px;
}
.cc-card-lg h3 { font-size: 26px; }
.cc-card p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5;
}
.cc-link {
    color: var(--primary-light);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}
.cc-card:hover .cc-link {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .cc-collections { padding: 60px 0; }
    .cc-card, .cc-card-lg { height: 220px; }
}
@media (max-width: 767px) {
    .cc-card h3 { font-size: 18px; }
    .cc-card-lg h3 { font-size: 20px; }
}

/* --- Back to Top Button --- */
#backToTop {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#backToTop:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212,160,23,0.5);
}
@media (max-width: 991px) {
    #backToTop { bottom: 80px; right: 16px; width: 42px; height: 42px; font-size: 14px; }
}

/* --- Colorful CTA Separator --- */
.cta-sep-colorful {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-sep-colorful .cta-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}
.cta-sep-colorful .cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: ab-float 8s ease-in-out infinite;
}
.cta-sep-colorful .cb1 { width: 280px; height: 280px; background: #e74c3c; top: -100px; right: 5%; animation-delay: 0s; }
.cta-sep-colorful .cb2 { width: 220px; height: 220px; background: #3498db; bottom: -80px; left: 10%; animation-delay: 2s; }
.cta-sep-colorful .cb3 { width: 250px; height: 250px; background: #f39c12; top: -60px; left: 30%; animation-delay: 1s; }
.cta-sep-colorful .cb4 { width: 200px; height: 200px; background: #27ae60; bottom: -60px; right: 25%; animation-delay: 3s; }
.cta-sep-colorful .cb5 { width: 180px; height: 180px; background: #9b59b6; top: 10%; right: 40%; animation-delay: 1.5s; }
.cta-sep-colorful .container { position: relative; z-index: 2; }
.cta-sep-colorful h3 {
    color: #fff;
    font-size: clamp(22px, 2.5vw, 32px);
    margin-bottom: 10px;
}
.cta-sep-colorful p {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ============================================ */

/* ---- Tablet (max 991px) ---- */
@media (max-width: 991px) {
    /* Header */
    .kc-header-mid { display: none !important; }
    .kc-topstrip { display: none !important; }
    .kc-accent-line { height: 3px; }
    .kc-navbar { position: sticky; top: 0; }
    .kc-navbar .navbar-brand { display: flex !important; }
    .kc-navbar .navbar-brand img { height: 42px; padding: 5px 10px; background: rgba(255,255,255,0.95); border-radius: 8px; }
    .kc-navbar .navbar-collapse {
        background: var(--dark);
        padding: 16px;
        border-radius: 0 0 12px 12px;
        margin-top: 8px;
    }
    .kc-navbar .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 14px;
    }
    .kc-navbar .nav-link::after { display: none; }

    /* Hero */
    .kc-hero { min-height: auto; padding: 80px 0; }
    .kc-hero h1 { font-size: 32px; }
    .kc-hero p { font-size: 15px; }
    .kc-hero .hero-stats { gap: 20px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; }
    .kc-hero .hero-stats .stat h3 { font-size: 26px; }
    .hero-badge { font-size: 11px; padding: 6px 14px; }

    /* Banner */
    .about-banner { padding: 60px 0 70px; }
    .about-banner h1 { font-size: 30px; }
    .about-banner > .container > .row > div > p { font-size: 14px; }

    /* About Section */
    .kc-about-section { padding: 60px 0; }
    .kc-about-visual { min-height: 300px; margin-bottom: 32px; padding: 10px; }
    .kc-about-right { padding: 0 !important; }
    .about-accent-box { display: none; }
    .about-experience-badge { bottom: 10px; right: 10px; padding: 16px 20px; }
    .about-experience-badge .exp-number { font-size: 36px; }
    .about-cta-row { flex-direction: column; gap: 20px; }

    /* Why Choose */
    .kc-why-section { padding: 60px 0; }
    .kc-why-left { margin-bottom: 40px; }
    .kc-why-card { margin-top: 0 !important; }
    .kc-why-counter-row { gap: 16px; }
    .kc-why-stat h3 { font-size: 26px; }

    /* Eco Section */
    .kc-eco-section { padding: 60px 0; }
    .eco-bg-left { display: none; }
    .eco-left-panel { margin-bottom: 24px; padding: 36px 24px; }
    .eco-right-panel { border-radius: 12px; }
    .eco-feature-col { border-right: none; border-bottom: 1px solid var(--gray-100); padding: 28px 20px; }

    /* Flexibility */
    .kc-flex-section { padding: 60px 0; }
    .flex-float-card { display: none; }
    .flex-img-wrap { padding: 0; margin-bottom: 32px; }

    /* Testimonials */
    .kc-testi-v2 { padding: 60px 0; }
    .testi-v2-left { margin-bottom: 36px; }

    /* CTA */
    .kc-cta-wrap { padding: 50px 0; }
    .cta-content { margin-bottom: 36px; text-align: center; }
    .cta-content p { max-width: 100%; }
    .cta-action-card:hover { transform: none; }

    /* Footer */
    .ft-contact-inner { flex-wrap: wrap; gap: 16px; padding: 24px 20px; }
    .ft-contact-bar { margin-top: -30px; }
    .ft-main { padding: 50px 0 30px; }
    .ft-bottom { text-align: center; }
    .ft-bottom .d-flex { justify-content: center; flex-direction: column; align-items: center; }

    /* Process Timeline */
    .process-timeline { flex-direction: column; align-items: center; gap: 0; }
    .process-connector { width: 2px; height: 30px; margin: 0; }
    .process-connector::after { display: none; }
    .process-step { max-width: 280px; }

    /* Counters */
    .about-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Product Stats */
    .prod-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* Color Card */
    .cc-collections { padding: 60px 0; }
    .cc-card, .cc-card-lg { height: 200px; }

    /* Application Details */
    .app-detail-row { padding: 32px 0; }
    .app-num { font-size: 50px; top: -10px; }
    .app-detail-img { margin-bottom: 20px; }

    /* Colorful CTA */
    .cta-sep-colorful { padding: 50px 0; }

    /* Mobile Toolbar */
    .kc-mobile-toolbar { display: block; }
    body { padding-bottom: 65px; }
}

/* ---- Mobile (max 767px) ---- */
@media (max-width: 767px) {
    /* General */
    .kc-section { padding: 50px 0; }
    .kc-section-header { margin-bottom: 32px; }
    .kc-section-header h2 { font-size: 24px; }
    .kc-section-header p { font-size: 14px; }

    /* Hero */
    .kc-hero { padding: 60px 0; }
    .kc-hero h1 { font-size: 28px; }
    .kc-hero .hero-stats .stat h3 { font-size: 22px; }
    .kc-hero .hero-stats .stat p { font-size: 12px; }
    .btn-kc { padding: 12px 22px; font-size: 13px; }

    /* Banner */
    .about-banner { padding: 50px 0 60px; }
    .about-banner h1 { font-size: 26px; }

    /* About */
    .kc-about-visual { min-height: 260px; }
    .about-experience-badge .exp-number { font-size: 30px; }
    .about-experience-badge .exp-text { font-size: 11px; }
    .kc-about-right h2 { font-size: 24px; }
    .about-features { gap: 16px; }

    /* Why Choose */
    .kc-why-left h2 { font-size: 26px; }
    .kc-why-counter-row { flex-wrap: wrap; gap: 12px; }
    .kc-why-divider { display: none; }

    /* Eco */
    .eco-left-panel h2 { font-size: 24px; }
    .eco-highlight-num { font-size: 32px; }

    /* Flex */
    .flex-content h2 { font-size: 24px; }

    /* Testimonials */
    .tv2-card { padding: 24px 20px; }
    .tv2-card p { font-size: 13.5px; }
    .testi-v2-left h2 { font-size: 24px; }

    /* CTA */
    .cta-content h2 { font-size: 26px; }
    .cta-action-card { padding: 14px 16px; }
    .cta-action-card a { font-size: 14px; }

    /* Footer */
    .ft-ci strong { font-size: 12px; }
    .ft-ci span { font-size: 9px; }
    .ft-contact-inner { gap: 12px; padding: 20px 16px; }
    .ft-office-dot::after { height: 28px; }

    /* Counters */
    .about-counter-grid { gap: 10px; }
    .ac-item { padding: 20px 12px; }
    .ac-item h3 { font-size: 28px; }
    .ac-icon { width: 44px; height: 44px; }
    .ac-icon i { font-size: 18px; }

    /* Product Cards */
    .prod-card-img { height: 160px; }
    .prod-card-body { padding: 20px 18px; }
    .prod-card-num { font-size: 36px; }
    .prod-stat-card h3 { font-size: 26px; }
    .prod-stat-card { padding: 20px 14px; }

    /* Color Card */
    .cc-card, .cc-card-lg { height: 180px; }
    .cc-card h3 { font-size: 17px; }
    .cc-card-lg h3 { font-size: 19px; }
    .cc-count { font-size: 10px; padding: 4px 10px; }

    /* Application */
    .app-detail-content h3 { font-size: 22px; }
    .app-num { font-size: 40px; }
    .app-tags span { font-size: 11px; padding: 5px 12px; }

    /* VMS Cards */
    .vms-card { padding: 28px 24px; }
    .vms-num { font-size: 40px; }

    /* Best For */
    .bestfor-card { padding: 24px 18px; }
    .bestfor-icon { width: 50px; height: 50px; }

    /* Product Detail */
    .prod-detail { padding: 60px 0; }
    .prod-detail-img { margin-bottom: 28px; }
    .prod-detail-features { grid-template-columns: 1fr; }
    .prod-detail-content h2 { font-size: 24px; }

    /* Colorful CTA */
    .cta-sep-colorful { padding: 40px 0; }
    .cta-sep-colorful h3 { font-size: 22px; }
    .cta-sep-colorful p { font-size: 14px; }

    /* Forms */
    .kc-form .form-control { padding: 12px 14px; font-size: 13px; }
    .kc-form label { font-size: 12px; }
}

/* ---- Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
    .kc-hero h1 { font-size: 24px; }
    .kc-hero p { font-size: 14px; }
    .about-banner h1 { font-size: 22px; }
    .btn-kc { padding: 11px 20px; font-size: 12px; }
    .kc-about-right h2 { font-size: 22px; }
    .kc-why-left h2 { font-size: 22px; }
    .ft-contact-inner { flex-direction: column; }
    .ft-ci { width: 100%; }
    .about-counter-grid { grid-template-columns: 1fr 1fr; }
    .prod-stats-grid { grid-template-columns: 1fr 1fr; }
    .cc-card, .cc-card-lg { height: 160px; }
    .testi-v2-nav button { width: 40px; height: 40px; }
    .kc-mobile-toolbar li a { font-size: 10px; }
    .kc-mobile-toolbar li a img { width: 18px; height: 18px; }
    #backToTop { bottom: 75px; right: 12px; width: 38px; height: 38px; font-size: 13px; }
}

/* --- Ticker Bar --- */
.kc-ticker {
    background: var(--dark);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}
.kc-ticker::before,
.kc-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.kc-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--dark), transparent);
}
.kc-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--dark), transparent);
}
.kc-ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}
.kc-ticker-track:hover {
    animation-play-state: paused;
}
.kc-ticker-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    letter-spacing: 0.3px;
    padding: 0 8px;
}
.ticker-item i {
    color: var(--primary);
    font-size: 14px;
}
.ticker-sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
    margin: 0 20px;
    flex-shrink: 0;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 767px) {
    .ticker-item { font-size: 12px; }
    .ticker-sep { margin: 0 14px; }
    .kc-ticker { padding: 12px 0; }
}

/* --- Math Captcha --- */
.captcha-box {
    background: linear-gradient(135deg, rgba(212,160,23,0.06), rgba(212,160,23,0.02));
    border: 1.5px solid rgba(212,160,23,0.15);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.captcha-question {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.captcha-question i {
    color: var(--primary);
    font-size: 20px;
}
.captcha-question span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}
.captcha-question strong {
    color: var(--primary-dark);
    font-size: 16px;
}
.captcha-input {
    max-width: 160px;
    text-align: center;
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: 2px;
    padding: 12px 14px !important;
    overflow: hidden;
    text-overflow: ellipsis;
}
.captcha-input::placeholder {
    font-size: 11px !important;
    letter-spacing: 0;
    font-weight: 400 !important;
    color: var(--gray-400);
}
.captcha-input:focus::placeholder {
    opacity: 0;
}
@media (max-width: 576px) {
    .captcha-box { flex-direction: column; gap: 12px; align-items: flex-start; }
    .captcha-input { max-width: 100%; }
}

/* --- Floating Brochure Button --- */
#floatingBrochure {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 997;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 12px 18px 12px 14px;
    border-radius: 0 50px 50px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(231,76,60,0.35);
    transition: all 0.4s ease;
    writing-mode: horizontal-tb;
}
#floatingBrochure i {
    font-size: 18px;
}
#floatingBrochure span {
    display: inline;
}
#floatingBrochure:hover {
    padding-right: 24px;
    box-shadow: 0 8px 35px rgba(231,76,60,0.5);
    color: #fff;
}
@media (max-width: 991px) {
    #floatingBrochure {
        top: auto;
        bottom: 75px;
        left: 0;
        transform: none;
        padding: 10px 14px 10px 12px;
        font-size: 11px;
    }
    #floatingBrochure span { display: none; }
    #floatingBrochure i { font-size: 16px; }
}

/* --- Color Card PDF Section --- */
.cc-pdf-section {
    padding: 100px 0;
    background: var(--gray-100);
}
.cc-pdf-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.cc-pdf-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cc-pdf-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}
.cc-pdf-info-item > i {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(231,76,60,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 18px;
    flex-shrink: 0;
}
.cc-pdf-info-item:last-child > i {
    background: linear-gradient(135deg, rgba(52,152,219,0.1), rgba(52,152,219,0.04));
    color: #3498db;
}
.cc-pdf-info-item strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.cc-pdf-info-item span {
    font-size: 12px;
    color: var(--gray-400);
}

/* PDF Viewer */
.cc-pdf-viewer {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
}
.cc-pdf-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--dark);
    color: #fff;
}
.cc-pdf-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cc-pdf-title i {
    color: var(--primary);
}
.cc-pdf-btns {
    display: flex;
    gap: 8px;
}
.cc-pdf-btns a {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    transition: var(--transition);
}
.cc-pdf-btns a:hover {
    background: var(--primary);
    color: var(--dark);
}
.cc-pdf-embed {
    height: 550px;
    background: var(--gray-100);
}
.cc-pdf-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .cc-pdf-section { padding: 60px 0; }
    .cc-pdf-embed { height: 400px; }
    .cc-pdf-viewer { margin-top: 32px; }
}
@media (max-width: 767px) {
    .cc-pdf-embed { height: 350px; }
    .cc-pdf-actions { flex-direction: column; }
    .cc-pdf-actions .btn-kc { width: 100%; justify-content: center; }
}

/* --- Share Box --- */
.cc-share-box {
    margin-top: 24px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}
.cc-share-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.cc-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.cc-share-wa {
    background: #25D366;
    color: #fff;
}
.cc-share-wa:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,211,102,0.3);
}
.cc-share-email {
    background: #3498db;
    color: #fff;
}
.cc-share-email:hover {
    background: #2980b9;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52,152,219,0.3);
}
.cc-share-copy {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}
.cc-share-copy:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   PREMIUM FINISHING TOUCHES
   ============================================ */

/* 1. Scroll Progress Bar */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient);
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(212,160,23,0.5);
}

/* 2. Typing Cursor - homepage + inner pages */
.kc-hero h1 span,
.about-banner h1 span {
    border-right: 3px solid var(--primary);
    padding-right: 4px;
    animation: blink-cursor 0.8s step-end infinite;
}
@keyframes blink-cursor {
    50% { border-color: transparent; }
}

/* 3. Floating WhatsApp */
#floatingWhatsapp {
    position: fixed;
    bottom: 90px;
    right: 86px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 998;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: all 0.4s ease;
    animation: wa-pulse 2s ease infinite;
    text-decoration: none;
}
#floatingWhatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 35px rgba(37,211,102,0.55);
    color: #fff;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* 4. Smooth image hover zoom for all images */
.kc-about-visual img,
.about-main-img img,
.flex-main-img,
.prod-detail-img img,
.app-detail-img img {
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.kc-about-visual:hover img,
.about-main-img:hover img,
.flex-img-wrap:hover .flex-main-img,
.prod-detail-img:hover img,
.app-detail-img:hover img {
    transform: scale(1.03);
}

/* 5. Gradient text selection */
::selection {
    background: var(--primary);
    color: var(--dark);
}

/* 6. Smooth link underline animation */
.ft-links li a,
.app-tags span,
.prod-card-link {
    position: relative;
}

/* 7. Section divider dots */
.kc-section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--gradient);
    border-radius: 4px;
    margin: 16px auto 0;
}
.kc-section-header h2:only-child::after,
.testi-v2-left h2::after,
.kc-about-right h2::after,
.kc-why-left h2::after,
.flex-content h2::after,
.prod-detail-content h2::after,
.app-detail-content h3::after {
    display: none;
}

/* 8. Navbar active glow */
.kc-navbar .nav-link.active {
    text-shadow: 0 0 12px rgba(212,160,23,0.4);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    #floatingWhatsapp {
        bottom: 75px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    #backToTop { right: 68px; }
    .kc-hero h1 span { border-right-width: 2px; }
}
@media (max-width: 480px) {
    #floatingWhatsapp {
        bottom: 72px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    #backToTop { right: 60px; }
}

/* ============================================
   MOBILE RESPONSIVE FINAL FIXES
   ============================================ */

/* Fix overlapping floating buttons */
@media (max-width: 991px) {
    #floatingWhatsapp { bottom: 78px; right: 16px; width: 46px; height: 46px; font-size: 22px; }
    #backToTop { bottom: 78px; right: 70px; width: 40px; height: 40px; font-size: 14px; }
    #floatingBrochure { bottom: 78px; left: 0; padding: 8px 12px; font-size: 10px; border-radius: 0 8px 8px 0; }
    #floatingBrochure i { font-size: 14px; }
    #floatingBrochure span { display: none; }

    /* Fix header contacts overflow */
    .kc-header-contacts { gap: 16px; }
    .header-contact-item { padding-right: 16px; }

    /* Fix hero overflow */
    .kc-hero { overflow: hidden; }
    .kc-hero .d-flex { gap: 8px !important; }
    .kc-hero .btn-kc { font-size: 12px; padding: 10px 18px; }

    /* Fix ticker overflow */
    .kc-ticker { overflow: hidden; }

    /* Fix eco section overflow */
    .eco-right-panel { overflow: hidden; }
    .eco-feature-col h4 { font-size: 15px; }

    /* Fix testimonial cards */
    .tv2-card { margin-bottom: 16px; }

    /* Fix footer contact bar overflow */
    .ft-contact-inner { flex-wrap: wrap; }
    .ft-ci { min-width: 45%; }

    /* Fix process steps */
    .process-step { padding: 0 8px; }
    .ps-icon { width: 56px; height: 56px; }
    .ps-icon i { font-size: 20px; }

    /* Fix color card grid */
    .cc-card h3 { font-size: 16px; }
    .cc-card p { font-size: 12px; display: none; }
    .cc-count { font-size: 10px; margin-bottom: 8px; }

    /* Fix CTA section */
    .cta-action-card { gap: 12px; }
    .cta-ac-icon { width: 42px; height: 42px; }

    /* Fix about banner text */
    .about-banner p { font-size: 13px !important; }

    /* Fix product detail features grid */
    .prod-detail-features { grid-template-columns: 1fr; }

    /* Fix advantages cards */
    .prod-adv-card { padding: 28px 20px; }
    .prod-adv-card ul li { font-size: 13px; }

    /* Fix share buttons */
    .cc-share-btns { gap: 6px; }
    .cc-share-btn { font-size: 11px; padding: 8px 12px; }

    /* PDF viewer height */
    .cc-pdf-embed { height: 350px; }
}

@media (max-width: 767px) {
    /* Stack hero buttons */
    .kc-hero .d-flex { flex-direction: column; align-items: flex-start; }
    .kc-hero .btn-kc { width: 100%; justify-content: center; }

    /* Fix Why Choose section */
    .kc-why-counter-row { flex-direction: column; gap: 16px; text-align: center; }
    .kc-why-divider { width: 40px; height: 1px; }

    /* Fix eco section */
    .eco-left-panel { padding: 28px 20px; }
    .eco-highlight { flex-direction: column; text-align: center; }

    /* Fix testimonials - show 1 card only */
    .tv2-card:nth-child(2) { display: block; }

    /* Fix footer */
    .ft-ci { min-width: 100%; }
    .ft-contact-inner { padding: 20px 16px; }

    /* Fix application detail */
    .app-detail-content { padding-top: 16px; }
    .app-num { position: static; font-size: 32px; margin-bottom: 8px; }
    .app-tags { gap: 6px; }
    .app-tags span { font-size: 10px; padding: 4px 10px; }

    /* Fix product intro */
    .prod-highlights .prod-hl { font-size: 13px; }

    /* Fix color collections */
    .cc-card, .cc-card-lg { height: 160px; }

    /* Fix PDF viewer */
    .cc-pdf-embed { height: 280px; }
    .cc-pdf-toolbar { padding: 10px 14px; }
    .cc-pdf-title { font-size: 11px; }

    /* Fix brochure button hero */
    .kc-hero .btn-kc:last-child { font-size: 12px; }

    /* Fix bestfor cards */
    .bestfor-card { padding: 20px 16px; }
    .bestfor-icon { width: 48px; height: 48px; margin-bottom: 12px; }

    /* Fix about feature items */
    .about-feature-item { gap: 10px; }
    .about-feature-item h5 { font-size: 14px; }
    .about-feature-item p { font-size: 13px; }
}

@media (max-width: 480px) {
    /* Extra compact */
    .kc-hero { padding: 50px 0; }
    .hero-badge { font-size: 9px; padding: 5px 12px; letter-spacing: 0.5px; }
    .kc-hero .hero-stats { margin-top: 32px; padding-top: 20px; }
    .kc-hero .hero-stats .stat h3 { font-size: 20px; }
    .kc-hero .hero-stats .stat p { font-size: 11px; }

    .about-banner { padding: 40px 0 50px; }
    .about-banner h1 { font-size: 20px; }

    .kc-section-header h2 { font-size: 20px; }
    .kc-section-header p { font-size: 13px; }
    .kc-section-header h2::after { width: 36px; height: 3px; margin-top: 12px; }

    .kc-about-right h2 { font-size: 20px; }
    .kc-why-left h2 { font-size: 20px; }

    .about-experience-badge { padding: 12px 16px; }
    .about-experience-badge .exp-number { font-size: 26px; }

    /* Floating buttons tight */
    #floatingWhatsapp { bottom: 70px; right: 10px; width: 40px; height: 40px; font-size: 18px; }
    #backToTop { bottom: 70px; right: 56px; width: 36px; height: 36px; font-size: 12px; }
    #floatingBrochure { bottom: 70px; padding: 7px 10px; }
    #floatingBrochure i { font-size: 12px; }

    .kc-mobile-toolbar li a { font-size: 9px; padding: 4px 8px; }
    .kc-mobile-toolbar li a img { width: 16px; height: 16px; }

    /* Fix ticker */
    .ticker-item { font-size: 11px; gap: 6px; }
    .ticker-sep { margin: 0 10px; width: 4px; height: 4px; }

    .btn-kc { padding: 10px 18px; font-size: 12px; gap: 6px; }
}

/* Fix iOS Safari bottom bar */
@supports (-webkit-touch-callout: none) {
    .kc-mobile-toolbar { padding-bottom: env(safe-area-inset-bottom); }
    body { padding-bottom: calc(65px + env(safe-area-inset-bottom)); }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .kc-ticker-track { animation: none; }
}

/* ============================================
   WOW FACTOR EFFECTS
   ============================================ */

/* 1. Mouse Glow on Hero */
.hero-mouse-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.15), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* 2. Page Transition */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* 3. Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* 4. Animated Gradient Border on hover */
.kc-why-card::before,
.tv2-card::before,
.prod-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), #e74c3c, #3498db, #27ae60, var(--primary));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradient-border 4s ease infinite;
}
.kc-why-card:hover::before,
.tv2-card:hover::before,
.prod-card:hover::before {
    opacity: 1;
}
@keyframes gradient-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.kc-why-card,
.tv2-card,
.prod-card {
    position: relative;
    z-index: 0;
}
.kc-why-card > *,
.tv2-card > *,
.prod-card > * {
    position: relative;
    z-index: 1;
}

/* 5. Glowing section headers */
.kc-section-header .label {
    position: relative;
}
.kc-section-header .label::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: var(--primary);
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s;
    z-index: -1;
}
.kc-section-header .label:hover::before { opacity: 0.2; }

/* 6. Animated Stats Numbers Glow */
.kc-hero .hero-stats .stat h3,
.ac-item h3,
.kc-counter h3 {
    text-shadow: 0 0 30px rgba(212,160,23,0.15);
}

/* 7. Navbar logo hover */
.kc-logo img,
.kc-navbar .navbar-brand img {
    transition: all 0.4s ease;
}
.kc-logo:hover img,
.kc-navbar .navbar-brand:hover img {
    filter: brightness(1.1);
    transform: scale(1.03);
}

/* 8. Button Shine Effect */
.btn-kc-primary {
    position: relative;
    overflow: hidden;
}
.btn-kc-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    transition: none;
    animation: btn-shine 3s ease-in-out infinite;
}
@keyframes btn-shine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* 9. Footer links arrow on hover */
.ft-links li a:hover::after {
    content: ' →';
    opacity: 1;
}

/* 10. Smooth card inner glow on hover */
.kc-contact-card:hover,
.bestfor-card:hover,
.ac-feature-box:hover,
.vms-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08), inset 0 0 30px rgba(212,160,23,0.03);
}

/* 11. Section separator wave - removed */

@media (max-width: 991px) {
    .hero-mouse-glow { display: none; }
    .btn-kc-primary::before { animation: none; display: none; }
    .kc-why-card::before, .tv2-card::before, .prod-card::before { display: none; }
}

/* ============================================
   EXTRA WOW FEATURES
   ============================================ */

/* --- Trusted Industries Strip --- */
.kc-trusted {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}
.kc-trusted-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}
.trusted-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}
.trusted-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
}
.trusted-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: default;
}
.trusted-item:hover {
    border-color: var(--primary);
    background: rgba(212,160,23,0.06);
    transform: translateY(-2px);
}
.trusted-item i {
    font-size: 16px;
    color: var(--primary);
}
.trusted-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
}
@media (max-width: 991px) {
    .kc-trusted-inner { flex-direction: column; gap: 16px; text-align: center; }
    .trusted-icons { justify-content: center; }
}
@media (max-width: 480px) {
    .trusted-item { padding: 8px 12px; }
    .trusted-item span { font-size: 11px; }
}

/* --- Social Proof Toast --- */
#socialToast {
    position: fixed;
    bottom: 100px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 1px solid var(--gray-200);
    z-index: 997;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
    max-width: 360px;
}
#socialToast.show {
    transform: translateX(0);
    opacity: 1;
}
.st-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46,125,50,0.12), rgba(46,125,50,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.st-icon i { color: #2e7d32; font-size: 16px; }
.st-body { line-height: 1.4; }
.st-name {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}
.st-action {
    display: block;
    font-size: 12px;
    color: var(--gray-600);
}
.st-time {
    font-size: 11px;
    color: var(--gray-400);
}
.st-close {
    position: absolute;
    top: 6px; right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
}
.st-close:hover { color: var(--dark); }
@media (max-width: 991px) {
    #socialToast { bottom: 80px; left: 12px; right: 12px; max-width: none; }
}

/* --- Cookie Consent --- */
#cookieConsent {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 16px 28px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 996;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    transition: bottom 0.5s ease;
    max-width: 600px;
    width: 90%;
}
#cookieConsent.show { bottom: 90px; }
.cc-text {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.cc-text i { color: var(--primary); font-size: 18px; flex-shrink: 0; }
.cc-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cc-accept {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.cc-accept:hover { background: var(--primary-light); }
.cc-decline {
    background: transparent;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.cc-decline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
@media (max-width: 767px) {
    #cookieConsent { flex-direction: column; border-radius: var(--radius-lg); padding: 20px; gap: 14px; bottom: -200px; }
    #cookieConsent.show { bottom: 80px; }
    .cc-text { text-align: center; justify-content: center; font-size: 12px; }
    .cc-btns { width: 100%; justify-content: center; }
}

/* ============================================
   QUICK ENQUIRY PANEL + SMART HEADER
   ============================================ */

/* Quick Enquiry Panel */
#quickEnquiry {
    position: fixed;
    right: -360px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 995;
    transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
#quickEnquiry.open { right: 0; }

.qe-tab {
    position: absolute;
    left: -44px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    background: var(--gradient);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 10px 10px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.qe-tab:hover { background: var(--primary-light); }
.qe-tab i { font-size: 13px; }

.qe-panel {
    width: 340px;
    background: var(--white);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    padding: 28px 24px;
    max-height: 90vh;
    overflow-y: auto;
}
.qe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-100);
}
.qe-header h4 {
    font-size: 17px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}
.qe-header h4 i { color: var(--primary); }
.qe-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
}
.qe-close:hover { color: var(--dark); }

.qe-form input,
.qe-form select,
.qe-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 10px;
    background: var(--white);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.qe-form input:focus,
.qe-form select:focus,
.qe-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.qe-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 4px;
}
.qe-form button:hover { box-shadow: 0 6px 20px rgba(212,160,23,0.3); }

.qe-or {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin: 16px 0 10px;
    position: relative;
}
.qe-or::before, .qe-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: var(--gray-200);
}
.qe-or::before { left: 0; }
.qe-or::after { right: 0; }

.qe-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}
.qe-call:hover { border-color: var(--primary); color: var(--primary-dark); }
.qe-call i { color: var(--primary); }

/* Smart Header transition */
#mainNav {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (max-width: 991px) {
    #quickEnquiry { display: none; }
}
