/* ============================================
   MH EXPORT INTERNATIONAL - Modern Stylesheet
   Inspired by Dribbble's top import/export designs
   ============================================ */

/* CSS Variables */
:root {
    --primary: #050606;
    --primary-light: #0d1117;
    --primary-medium: #161b22;
    --secondary: #0bb99f;
    --secondary-light: #5ce6cf;
    --accent: #0ed6b8;
    --accent-glow: rgba(14, 214, 184, 0.3);
    --accent-subtle: rgba(14, 214, 184, 0.08);
    --teal: #2A585D;
    --teal-light: #3E9CBD;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --gradient-primary: linear-gradient(135deg, #050606 0%, #0d1117 50%, #161b22 100%);
    --brand: #0ed6b8;
    --brand-subtle: rgba(14, 214, 184, 0.08);
    --brand-hover: #0bb99f;
    --shadow-brand-soft: 0 4px 14px rgba(14, 214, 184, 0.25);
    --shadow-brand-strong: 0 8px 28px rgba(14, 214, 184, 0.35);
    --gradient-hero: linear-gradient(180deg, rgba(5, 6, 6, 0.95) 0%, rgba(13, 17, 23, 0.9) 50%, rgba(22, 27, 34, 0.85) 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg-light: rgba(255, 255, 255, 0.7);
    --glass-border-light: rgba(255, 255, 255, 0.5);
    --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.18);
    --shadow-brand: 0 8px 40px rgba(14, 214, 184, 0.2);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbars globally (still scrollable) */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.text-accent { color: var(--accent) !important; }

/* ============================================
   NAVIGATION - Modern Minimal
   ============================================ */
#mainNav {
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1050;
}

#mainNav.scrolled {
    background: rgba(5, 6, 6, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--brand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    transition: var(--transition);
    box-shadow: var(--shadow-brand-soft);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(-8deg) scale(1.05);
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

#mainNav .nav-link {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 20px !important;
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: 0.01em;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--white);
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown Menu - Hover compatible */
#mainNav .dropdown-menu {
    background: rgba(13, 17, 23, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 10px;
    margin-top: 8px;
    min-width: 220px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#mainNav .dropdown.show .dropdown-menu {
    display: block;
}

#mainNav .dropdown-item {
    color: rgba(255,255,255,0.7);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

#mainNav .dropdown-item:hover {
    background: rgba(14, 214, 184, 0.1);
    color: var(--accent);
}

#mainNav .dropdown-item i {
    width: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
}

#mainNav .dropdown-item:hover i {
    opacity: 1;
}

#mainNav .dropdown-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 6px 0;
}

.btn-accent {
    background: var(--brand);
    color: var(--primary) !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-brand-soft);
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.5s ease;
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand-strong);
    color: var(--primary) !important;
}

.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 12px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: var(--transition);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    font-size: 0.88rem;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--gray-200);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
    font-size: 0.88rem;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTIONS - Dribbble Modern Style
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=80') center/cover;
    opacity: 0.12;
}

/* Animated gradient orbs */
.hero-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(14, 214, 184, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: float-orb 15s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 30px) scale(1.05); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 214, 184, 0.1);
    border: 1px solid rgba(14, 214, 184, 0.2);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    filter: drop-shadow(0 4px 12px rgba(14, 214, 184, 0.3));
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats-bar {
    display: flex;
    gap: 40px;
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    letter-spacing: -0.02em;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Hero glass card */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ============================================
   HERO 2D TRADE NETWORK MODULE
   ============================================ */
.trade-scene {
    position: relative;
    width: 100%;
    max-width: 470px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tech dot grid background */
.trade-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(14, 214, 184, 0.16) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    border-radius: 50%;
    -webkit-mask-image: radial-gradient(circle, #000 50%, transparent 76%);
    mask-image: radial-gradient(circle, #000 50%, transparent 76%);
}

/* Rotating radar sweep */
.radar-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(14, 214, 184, 0.22) 0deg, transparent 70deg);
    -webkit-mask-image: radial-gradient(circle, transparent 10%, #000 20%, #000 68%, transparent 76%);
    mask-image: radial-gradient(circle, transparent 10%, #000 20%, #000 68%, transparent 76%);
    animation: radarSweep 7s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* SVG network layer */
.trade-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: visible;
}

.net-circle {
    fill: none;
    stroke: rgba(14, 214, 184, 0.22);
    stroke-width: 1;
    stroke-dasharray: 5 9;
    transform-origin: 230px 230px;
}

.net-circle-1 { animation: netSpin 50s linear infinite; }
.net-circle-2 {
    stroke: rgba(14, 214, 184, 0.12);
    stroke-dasharray: 2 11;
    animation: netSpin 75s linear infinite reverse;
}

@keyframes netSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.net-route {
    fill: none;
    stroke: rgba(14, 214, 184, 0.38);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-dasharray: 7 9;
    animation: dashFlow 1.2s linear infinite;
}

@keyframes dashFlow {
    to { stroke-dashoffset: -32; }
}

.route-dot {
    fill: var(--brand);
    filter: drop-shadow(0 0 6px rgba(14, 214, 184, 0.9));
}

.node-dot {
    fill: var(--brand);
    filter: drop-shadow(0 0 8px rgba(14, 214, 184, 0.9));
}

.node-pulse {
    fill: none;
    stroke: rgba(14, 214, 184, 0.6);
    stroke-width: 1.5;
    transform-box: fill-box;
    transform-origin: center;
    animation: nodePulse 3s ease-out infinite;
}

@keyframes nodePulse {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.node-label {
    fill: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}

/* Orbit rings with cargo icons */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 3;
}

.ring-a { width: 65%; height: 65%; animation: netSpin 28s linear infinite; }
.ring-b { width: 85%; height: 85%; animation: netSpin 42s linear infinite reverse; }

.ring-icon {
    position: absolute;
    width: 42px;
    height: 42px;
    background: rgba(13, 17, 23, 0.92);
    border: 1px solid rgba(14, 214, 184, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), 0 0 16px rgba(14, 214, 184, 0.15);
}

.icon-ship  { left: 50%; top: 0; }
.icon-plane { left: 50%; top: 100%; }
.icon-cube  { left: 100%; top: 50%; }
.icon-leaf  { left: 0; top: 50%; }

.ring-a .ring-icon { animation: iconCounter 28s linear infinite; }
.ring-b .ring-icon { animation: iconCounterReverse 42s linear infinite; }

@keyframes iconCounter {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes iconCounterReverse {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center hub */
.trade-hub {
    position: relative;
    width: 22%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.hub-core {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: clamp(1.4rem, 3vw, 2rem);
    position: relative;
    z-index: 2;
    animation: hubGlow 3.5s ease-in-out infinite;
}

@keyframes hubGlow {
    0%, 100% { box-shadow: 0 0 50px rgba(14, 214, 184, 0.45), 0 0 0 10px rgba(14, 214, 184, 0.08); }
    50% { box-shadow: 0 0 72px rgba(14, 214, 184, 0.7), 0 0 0 16px rgba(14, 214, 184, 0.12); }
}

.hub-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(14, 214, 184, 0.55);
    animation: hubPing 3.2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: 1;
}

.hub-ping-2 { animation-delay: 1.6s; }

@keyframes hubPing {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(3); opacity: 0; }
}

/* Floating stat chips */
.float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 18px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 6;
    animation: chipFloat 5s ease-in-out infinite;
}

.float-chip i {
    width: 40px;
    height: 40px;
    background: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(14, 214, 184, 0.3);
    flex-shrink: 0;
}

.float-chip strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.float-chip span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.chip-1 { top: 5%; left: -8%; animation-delay: 0s; }
.chip-2 { top: 42%; right: -10%; animation-delay: 1.6s; }
.chip-3 { bottom: 9%; left: -2%; animation-delay: 3.2s; }

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Live shipments pill */
.live-pill {
    position: absolute;
    bottom: -1%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 17, 23, 0.92);
    border: 1px solid rgba(14, 214, 184, 0.3);
    border-radius: 30px;
    padding: 9px 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 6;
    white-space: nowrap;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 10px var(--brand);
    animation: liveBlink 1.4s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.75); }
}

@media (max-width: 1199.98px) {
    .float-chip { padding: 10px 14px; }
    .float-chip strong { font-size: 1.05rem; }
    .float-chip i { width: 34px; height: 34px; font-size: 14px; }
    .chip-1 { left: -4%; }
    .chip-2 { right: -6%; }
}

/* Page Hero (Sub-pages) */
.page-hero {
    position: relative;
    padding: 170px 0 90px;
    background: var(--gradient-primary);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=80') center/cover;
    opacity: 0.08;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 214, 184, 0.06) 0%, transparent 60%);
    border-radius: 50%;
}

.page-hero .content {
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    margin-bottom: 20px;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.88rem;
}

.page-hero .breadcrumb a:hover {
    color: var(--accent);
}

.page-hero .breadcrumb .separator {
    color: rgba(255,255,255,0.25);
    margin: 0 10px;
}

.page-hero .breadcrumb .current {
    color: var(--accent);
    font-weight: 500;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.page-hero .lead {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 600px;
    font-weight: 400;
}

/* ============================================
   TRUST TICKER - Refined
   ============================================ */
.trust-ticker {
    background: var(--primary-light);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ticker-wrapper {
    display: flex;
    animation: ticker 40s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 0 40px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.ticker-item i {
    color: var(--accent);
    font-size: 5px;
    opacity: 0.7;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 110px 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 65px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-subtle);
    border: 1px solid rgba(14, 214, 184, 0.15);
    color: var(--secondary);
    padding: 7px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-title p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ============================================
   SERVICE CARDS - Glassmorphism
   ============================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--secondary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--brand);
    color: var(--primary);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: var(--shadow-brand-strong);
}

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.92rem;
    margin-bottom: 22px;
    line-height: 1.7;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.88rem;
}

.service-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* ============================================
   PRODUCT CARDS - Modern
   ============================================ */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.product-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-img .product-count {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(5, 6, 6, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

.product-card-body {
    padding: 26px;
}

.product-card-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.product-card-body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.65;
}

/* ============================================
   QUALITY CARDS (Category Pages)
   ============================================ */
.quality-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.quality-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.quality-icon {
    width: 56px;
    height: 56px;
    background: var(--brand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 18px;
    box-shadow: var(--shadow-brand-soft);
}

.quality-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.quality-count {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quality-card p {
    color: var(--gray-600);
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.quality-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quality-specs span {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    color: var(--gray-700);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 500;
}

/* ============================================
   CATEGORY TYPE CARDS
   ============================================ */
.category-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.category-type-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.category-type-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.category-type-icon {
    width: 52px;
    height: 52px;
    background: var(--brand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-brand-soft);
}

.category-type-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.category-type-count {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-type-body {
    padding: 0 24px 24px;
}

.category-type-body > p {
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.category-type-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ct-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
}

.ct-feature i {
    color: var(--secondary);
    margin-top: 3px;
    font-size: 0.78rem;
    flex-shrink: 0;
}

.ct-feature strong {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.ct-feature div {
    color: var(--gray-600);
    line-height: 1.4;
}

/* ============================================
   PRODUCT DETAIL CARDS (Category Pages)
   ============================================ */
.product-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-detail-card .product-detail-image {
    margin: -28px -28px 0 -28px;
    height: 200px;
    overflow: hidden;
}

.product-detail-card .product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-detail-card:hover .product-detail-image img {
    transform: scale(1.06);
}

.product-detail-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.product-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.product-detail-type {
    background: var(--accent-subtle);
    border: 1px solid rgba(14, 214, 184, 0.15);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-detail-badge {
    background: var(--brand);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    font-weight: 700;
}

.product-detail-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.product-detail-desc {
    color: var(--gray-600);
    font-size: 0.88rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.product-detail-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    flex-grow: 1;
}

.spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    color: var(--gray-700);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 500;
}

.spec-tag i {
    color: var(--secondary);
    font-size: 0.6rem;
}

.product-detail-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}

/* Product Meta List */
.product-meta-list {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--gray-700);
}

.product-meta-list > div {
    padding: 3px 0;
}

.product-meta-list i {
    color: var(--secondary);
    width: 18px;
    font-size: 0.78rem;
}

/* ============================================
   CATEGORY TABLE PAGE
   ============================================ */
.category-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.category-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.category-table thead th {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    padding: 16px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    border: none;
}

.category-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.category-table tbody tr:last-child td {
    border-bottom: none;
}

.category-table tbody tr:hover td {
    background: var(--gray-50);
}

.cat-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.cat-thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--gray-100);
}

.cat-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.cat-slug {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 3px;
    font-family: monospace;
}

.cat-desc {
    font-size: 0.86rem;
    color: var(--gray-600);
    line-height: 1.6;
    display: block;
    max-width: 320px;
}

.count-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent-subtle);
    color: var(--secondary);
    border: 1px solid rgba(14, 214, 184, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.82rem;
    white-space: nowrap;
}

.type-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.type-chip {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 9px 18px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-brand-soft);
    white-space: nowrap;
}

.btn-view:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand-strong);
    color: var(--primary);
}

/* Category detail blocks */
.category-detail-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-card);
}

.category-detail-head {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.category-detail-thumb {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid var(--gray-100);
    flex-shrink: 0;
}

.category-detail-title {
    flex: 1;
}

.category-detail-title h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.category-detail-title p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.category-table-sm thead th {
    background: var(--gray-50);
    color: var(--gray-600);
    font-size: 0.7rem;
    padding: 12px 16px;
}

.category-table-sm tbody td {
    padding: 13px 16px;
    font-size: 0.85rem;
}

@media (max-width: 767.98px) {
    .category-detail-head {
        flex-direction: column;
    }
    .category-detail-thumb {
        width: 70px;
        height: 70px;
    }
    .cat-desc {
        max-width: 220px;
    }
}

/* ============================================
   PRODUCT DETAILS MODAL
   ============================================ */
.product-modal {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

.product-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(5, 6, 6, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.product-modal-close:hover {
    background: var(--danger, #ef4444);
}

.product-modal-img {
    height: 100%;
    min-height: 320px;
    background: var(--gray-100);
}

.product-modal-img img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.product-modal-body {
    padding: 32px 30px;
}

.product-modal-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 12px 0 8px;
    letter-spacing: -0.02em;
}

.product-modal-category {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.product-modal-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 14px 0;
}

.product-modal-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-modal-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
}

.product-modal-link:hover {
    color: var(--accent);
    gap: 12px;
}

@media (max-width: 767.98px) {
    .product-modal-img,
    .product-modal-img img {
        min-height: 220px;
        max-height: 240px;
    }
}

/* ============================================
   STANDARD CARDS (Quality Process)
   ============================================ */
.standard-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.standard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.standard-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 16px;
}

.standard-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.standard-card p {
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ============================================
   QUOTE OPTION CARDS
   ============================================ */
.quote-option-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.quote-option-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.quote-option-card.active {
    border-color: var(--accent);
    background: var(--accent-subtle);
    box-shadow: var(--shadow-brand);
}

.quote-option-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 20px;
}

.quote-option-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.quote-option-card p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.quote-option-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.quote-option-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-700);
}

.quote-option-features span i {
    color: var(--secondary);
    font-size: 0.75rem;
}

/* WhatsApp Quote Box */
.whatsapp-quote-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    border: 1px solid var(--gray-100);
}

.whatsapp-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 30px auto 0;
}

.whatsapp-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}

.whatsapp-feature i {
    width: 44px;
    height: 44px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #25D366;
    flex-shrink: 0;
}

.whatsapp-feature strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.whatsapp-feature span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: var(--radius-xl);
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

/* ============================================
   PRODUCT SHOWCASE CARDS - Enhanced
   ============================================ */
.product-showcase-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    height: 100%;
    position: relative;
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.product-showcase-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase-card:hover .product-showcase-img img {
    transform: scale(1.08);
}

.product-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(5, 6, 6, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.product-showcase-count {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(5, 6, 6, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--white);
    padding: 7px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.02em;
}

.product-showcase-content {
    padding: 28px;
    position: relative;
}

.product-showcase-icon {
    width: 52px;
    height: 52px;
    background: var(--brand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 18px;
    position: absolute;
    top: -30px;
    left: 28px;
    box-shadow: 0 4px 16px rgba(14, 214, 184, 0.3);
    z-index: 2;
}

.product-showcase-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 16px;
    letter-spacing: -0.01em;
}

.product-showcase-content p {
    color: var(--gray-600);
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.65;
}

.product-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
}

.product-showcase-link:hover {
    color: var(--accent);
    gap: 12px;
}

.product-showcase-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.product-showcase-card:hover .product-showcase-link i {
    transform: translateX(4px);
}

/* Individual Product Item */
.product-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.product-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.product-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.product-item p {
    color: var(--gray-600);
    font-size: 0.88rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.product-specs {
    display: inline-block;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    color: var(--gray-700);
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

/* ============================================
   STATS SECTION - Dark Modern
   ============================================ */
.stats-section {
    background: var(--gradient-primary);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=80') center/cover;
    opacity: 0.06;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 214, 184, 0.06) 0%, transparent 60%);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    padding: 35px 20px;
    position: relative;
    z-index: 2;
}

.stat-item .stat-icon {
    width: 72px;
    height: 72px;
    background: rgba(14, 214, 184, 0.1);
    border: 1px solid rgba(14, 214, 184, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    margin: 0 auto 22px;
}

.stat-item .stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-item .stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============================================
   FEATURE CARDS - Why Choose Us
   ============================================ */
.feature-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-subtle);
    border: 1px solid rgba(14, 214, 184, 0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--secondary);
    margin: 0 auto 22px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--brand);
    color: var(--primary);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: var(--shadow-brand-strong);
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ============================================
   PROCESS STEPS - Modern
   ============================================ */
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step .step-number {
    width: 64px;
    height: 64px;
    background: var(--brand);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 22px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-brand-soft);
}

.process-step h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.6;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 62px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-200), transparent);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

/* ============================================
   FAQ ACCORDION - Clean
   ============================================ */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(14, 214, 184, 0.3);
}

.faq-item .accordion-button {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    background: var(--white);
    border: none;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--secondary);
}

.faq-item .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(70%) sepia(50%) saturate(500%) hue-rotate(1deg);
}

.faq-item .accordion-body {
    padding: 0 28px 22px;
    color: var(--gray-600);
    line-height: 1.75;
    font-size: 0.92rem;
}

/* ============================================
   CTA BANNER - Bold
   ============================================ */
.cta-banner {
    background: var(--gradient-primary);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 214, 184, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 88, 93, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 1.08rem;
    margin-bottom: 32px;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-accent,
.cta-banner .btn {
    position: relative;
    z-index: 2;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.contact-card .card-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-subtle);
    border: 1px solid rgba(14, 214, 184, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 22px;
}

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.contact-info-list li i {
    color: var(--secondary);
    width: 18px;
    margin-top: 3px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.form-control, .form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    font-size: 0.92rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(14, 214, 184, 0.08);
    outline: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}

/* ============================================
   LOGISTICS CARDS
   ============================================ */
.logistics-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.logistics-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.logistics-card .icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--brand);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 22px;
    box-shadow: var(--shadow-brand-soft);
}

.logistics-card h4 {
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 1.15rem;
}

.logistics-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logistics-card ul li {
    padding: 6px 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.logistics-card ul li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.78rem;
}

/* ============================================
   FEATURE TAGS
   ============================================ */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-subtle);
    border: 1px solid rgba(14, 214, 184, 0.15);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
}

.feature-tag i {
    font-size: 0.68rem;
}

/* ============================================
   SOURCING STORY
   ============================================ */
.sourcing-story {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 44px;
    margin-bottom: 44px;
    border: 1px solid var(--gray-100);
}

.sourcing-story h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.sourcing-story p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   PRICING CARDS (Bulk Order)
   ============================================ */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.pricing-featured {
    border-color: var(--accent);
    position: relative;
    transform: scale(1.04);
}

.pricing-featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.pricing-header {
    background: var(--gray-50);
    padding: 32px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-featured .pricing-header {
    background: var(--brand);
}

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.pricing-featured .pricing-badge {
    background: var(--primary);
    color: var(--white);
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-volume {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.pricing-body {
    padding: 32px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pricing-features li {
    padding: 9px 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--secondary);
    font-size: 0.82rem;
}

/* ============================================
   MOQ CARDS (Bulk Order)
   ============================================ */
.moq-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px;
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.moq-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.moq-icon {
    font-size: 3.2rem;
    margin-bottom: 16px;
}

.moq-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.moq-value {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.moq-tons {
    color: var(--gray-600);
    font-size: 0.88rem;
    margin-bottom: 18px;
}

.moq-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.moq-details li {
    padding: 6px 0;
    color: var(--gray-600);
    font-size: 0.88rem;
}

.moq-details li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.78rem;
}

/* ============================================
   FOOTER - Sleek Dark
   ============================================ */
.site-footer {
    background: var(--primary);
    color: var(--white);
}

.footer-top {
    padding: 90px 0 45px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 22px;
}

.footer-logo .brand-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 14px;
}

.footer-logo .brand-text {
    font-size: 1.4rem;
}

.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 28px;
    line-height: 1.75;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h5,
.footer-contact h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--white);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.footer-contact ul li i {
    color: var(--accent);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    margin: 0;
}

/* ============================================
   WHATSAPP FLOAT - Modern
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35); }
}

/* ============================================
   UTILITIES
   ============================================ */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

.text-gradient {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    filter: drop-shadow(0 2px 8px rgba(14, 214, 184, 0.3));
}

.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }

.hover-lift {
    transition: var(--transition);
}
.hover-lift:hover {
    transform: translateY(-5px);
}

/* Map Section */
.map-section {
    background: var(--gray-100);
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Alert Messages */
.alert-success-custom {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #166534;
    border-radius: var(--radius-md);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First
   ============================================ */
@media (max-width: 1199.98px) {
    .hero-stats-bar {
        gap: 30px;
    }
}

@media (max-width: 991.98px) {
    #mainNav .navbar-collapse {
        background: rgba(5, 6, 6, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 24px;
        border-radius: var(--radius-lg);
        margin-top: 12px;
        border: 1px solid rgba(255,255,255,0.06);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats-bar {
        gap: 20px;
        flex-wrap: wrap;
    }

    .process-step::after {
        display: none;
    }

    .stat-item .stat-number {
        font-size: 2.5rem;
    }

    .pricing-featured {
        transform: scale(1);
    }
    .pricing-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 70px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 0;
    }

    .hero-content {
        padding: 130px 0 70px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-stats-bar {
        gap: 15px;
        margin-top: 45px;
    }

    .hero-stat .stat-number {
        font-size: 1.8rem;
    }

    .hero-stat .stat-label {
        font-size: 0.72rem;
    }

    .page-hero {
        padding: 140px 0 70px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 32px 26px;
    }

    .contact-form {
        padding: 28px;
    }

    .footer-top {
        padding: 55px 0 35px;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .sourcing-story {
        padding: 28px;
    }

    .cta-banner {
        padding: 70px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .feature-tags {
        gap: 8px;
    }

    .feature-tag {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .stat-item .stat-number {
        font-size: 2.2rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
