/* --- VARIABLES & RESET --- */
:root {
    --primary-blue: #1e3a8a;
    --primary-red: #dc2626;
    --dark-blue: #1e293b;
    --accent-blue: #3b82f6;
    --accent-red: #ef4444;
    --accent-grey: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 50px rgba(30, 58, 138, 0.15);
    --shadow-card: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* --- FLOATING DECORATIVE SHAPES --- */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: 10%;
    left: 5%;
    animation: float-1 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    top: 60%;
    right: 10%;
    animation: float-2 25s ease-in-out infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    bottom: 20%;
    left: 15%;
    animation: float-3 30s ease-in-out infinite;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: 40%;
    right: 30%;
    animation: float-1 22s ease-in-out infinite reverse;
}

.shape-5 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    top: 70%;
    left: 40%;
    animation: float-2 28s ease-in-out infinite reverse;
}

.shape-6 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    top: 25%;
    left: 60%;
    animation: float-3 24s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 40px) rotate(180deg);
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-40px, 30px) scale(1.1);
    }
    66% {
        transform: translate(30px, -40px) scale(0.9);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(50px, 50px) rotate(180deg) scale(1.2);
    }
}

/* --- DECORATIVE ICONS --- */
.decorative-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.decorative-icons i {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(59, 130, 246, 0.08);
    animation: floatIcon 15s ease-in-out infinite;
}

.decorative-icons i:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-icons i:nth-child(2) {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
    color: rgba(220, 38, 38, 0.08);
}

.decorative-icons i:nth-child(3) {
    bottom: 25%;
    left: 12%;
    animation-delay: 4s;
    color: rgba(34, 197, 94, 0.08);
}

.decorative-icons i:nth-child(4) {
    top: 60%;
    right: 15%;
    animation-delay: 6s;
    color: rgba(168, 85, 247, 0.08);
}

.decorative-icons i:nth-child(5) {
    bottom: 15%;
    right: 5%;
    animation-delay: 8s;
}

.decorative-icons i:nth-child(6) {
    top: 40%;
    left: 8%;
    animation-delay: 10s;
    color: rgba(234, 88, 12, 0.08);
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.08;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.15;
    }
}

/* --- PARTICLE EFFECTS --- */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 80%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 20%; top: 70%; animation-delay: 1s; animation-duration: 16s; background: radial-gradient(circle, rgba(220, 38, 38, 0.6), transparent); }
.particle:nth-child(3) { left: 30%; top: 90%; animation-delay: 2s; animation-duration: 20s; }
.particle:nth-child(4) { left: 40%; top: 85%; animation-delay: 3s; animation-duration: 17s; background: radial-gradient(circle, rgba(34, 197, 94, 0.6), transparent); }
.particle:nth-child(5) { left: 50%; top: 75%; animation-delay: 4s; animation-duration: 19s; }
.particle:nth-child(6) { left: 60%; top: 95%; animation-delay: 5s; animation-duration: 15s; background: radial-gradient(circle, rgba(168, 85, 247, 0.6), transparent); }
.particle:nth-child(7) { left: 70%; top: 80%; animation-delay: 6s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; top: 70%; animation-delay: 7s; animation-duration: 16s; background: radial-gradient(circle, rgba(234, 88, 12, 0.6), transparent); }
.particle:nth-child(9) { left: 90%; top: 85%; animation-delay: 8s; animation-duration: 18s; }
.particle:nth-child(10) { left: 15%; top: 65%; animation-delay: 9s; animation-duration: 20s; }
.particle:nth-child(11) { left: 25%; top: 95%; animation-delay: 1.5s; animation-duration: 17s; background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent); }
.particle:nth-child(12) { left: 35%; top: 75%; animation-delay: 2.5s; animation-duration: 19s; }
.particle:nth-child(13) { left: 45%; top: 90%; animation-delay: 3.5s; animation-duration: 16s; background: radial-gradient(circle, rgba(220, 38, 38, 0.6), transparent); }
.particle:nth-child(14) { left: 55%; top: 80%; animation-delay: 4.5s; animation-duration: 21s; }
.particle:nth-child(15) { left: 65%; top: 70%; animation-delay: 5.5s; animation-duration: 15s; background: radial-gradient(circle, rgba(34, 197, 94, 0.6), transparent); }
.particle:nth-child(16) { left: 75%; top: 95%; animation-delay: 6.5s; animation-duration: 18s; }
.particle:nth-child(17) { left: 85%; top: 75%; animation-delay: 7.5s; animation-duration: 20s; background: radial-gradient(circle, rgba(168, 85, 247, 0.6), transparent); }
.particle:nth-child(18) { left: 12%; top: 88%; animation-delay: 8.5s; animation-duration: 17s; }
.particle:nth-child(19) { left: 48%; top: 68%; animation-delay: 9.5s; animation-duration: 19s; background: radial-gradient(circle, rgba(234, 88, 12, 0.6), transparent); }
.particle:nth-child(20) { left: 78%; top: 92%; animation-delay: 10s; animation-duration: 16s; }

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

/* --- PRODUCT CATALOG WRAPPER WITH GRADIENTS & PATTERNS --- */
.product-catalog-wrapper {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.catalog-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom center, rgba(34, 197, 94, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.catalog-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 2px, transparent 2px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 2px, transparent 2px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* --- SECTION DIVIDERS --- */
.section-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: -1px 0;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transform: rotateY(180deg);
}

.section-divider path {
    fill: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(220, 38, 38, 0.1));
    fill: rgba(248, 250, 252, 0.8);
}

.section-divider.divider-2 {
    transform: rotate(180deg);
}

.section-divider.divider-2 path {
    fill: rgba(255, 255, 255, 0.9);
}

/* --- ANIMATIONS (WOW FACTOR) --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatHero {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 51, 153, 0.5),
                    0 0 10px rgba(0, 51, 153, 0.3),
                    0 0 15px rgba(0, 51, 153, 0.2);
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 51, 153, 0.8),
                    0 0 20px rgba(0, 51, 153, 0.5),
                    0 0 30px rgba(0, 51, 153, 0.3);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }
.reveal:nth-child(9) { transition-delay: 0.64s; }

/* --- NAVIGATION --- */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 0 rgba(0,0,0,0.05), 0 10px 30px -10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

header.scrolled {
    padding: 0.3rem 0;
    box-shadow: 0 1px 0 0 rgba(0,0,0,0.08), 0 20px 40px -10px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

header.scrolled .nav-container {
    padding: 0.8rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 5px 15px rgba(59, 130, 246, 0.3));
}

header.scrolled .logo-img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    border-radius: 8px;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary-blue);
}

nav a:hover::after, nav a.active::after {
    width: 60%;
}

nav a.active { 
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
    mix-blend-mode: overlay;
    z-index: 2;
    animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 50%, rgba(51, 65, 85, 0.85) 100%);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.3;
    mix-blend-mode: overlay;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 1.5rem; 
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out;
}

.hero p { 
    font-size: 1.25rem; 
    margin-bottom: 2.5rem; 
    opacity: 0.9;
    color: #cbd5e1;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3), 0 4px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 1.4s ease-out;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(255,255,255,0);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.cta-button:active::after {
    animation: ripple 0.6s ease-out;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4), 0 8px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
}

/* --- CARDS & GRIDS --- */
.container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.container h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    width: 100%;
}

.container h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 5;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-card), 0 1px 0 0 rgba(255,255,255,0.5) inset;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(220, 38, 38, 0.15));
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover::after {
    width: 500px;
    height: 500px;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2), 0 1px 0 0 rgba(255,255,255,0.8) inset;
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover i {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 8px 20px rgba(220, 38, 38, 0.4));
    animation: glow 1.5s ease-in-out infinite alternate;
}

/* --- LEGALITAS HIGHLIGHT --- */
.legalitas-highlight {
    background: linear-gradient(to right, #fff, #f9f9f9);
    border-left: 8px solid var(--primary-red);
    padding: 3rem;
    border-radius: 0 15px 15px 0;
    box-shadow: var(--shadow-soft);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.legalitas-highlight::after {
    content: 'SBJ';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    pointer-events: none;
}

/* --- ABOUT US SECTION --- */
.about-us-section {
    margin: 3rem 0;
    padding: 3rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.2;
}

.about-text {
    padding: 2rem;
}

/* --- VISI MISI CARDS --- */
.visi-card, .misi-card {
    position: relative;
}

.visi-icon, .misi-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.visi-icon {
    background: linear-gradient(135deg, var(--primary-blue), #0066cc);
    color: white;
}

.misi-icon {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    color: white;
}

.visi-card:hover .visi-icon,
.misi-card:hover .misi-icon {
    transform: rotateY(360deg) scale(1.1);
}

.visi-card {
    border-bottom-color: var(--primary-blue) !important;
}

.misi-card {
    border-bottom-color: var(--primary-red) !important;
}

/* --- LEGALITAS SECTION --- */
.legalitas-section {
    padding: 3rem 0;
}

.legalitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.legal-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card), 0 1px 0 0 rgba(255,255,255,0.5) inset;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-red));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.legal-card:hover::before {
    transform: scaleX(1);
}

.legal-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.3),
                0 0 40px rgba(30, 58, 138, 0.15),
                0 1px 0 0 rgba(255,255,255,0.8) inset;
    border-color: rgba(59, 130, 246, 0.3);
}

.legal-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: -35px auto 0 auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4), 0 1px 0 0 rgba(255,255,255,0.3) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.legal-card:hover .legal-icon {
    transform: rotateY(360deg) scale(1.2);
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5), 0 2px 0 0 rgba(255,255,255,0.4) inset;
}

.legal-preview {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.legal-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.25s ease;
    filter: brightness(0.98);
}

.legal-card:hover .legal-preview img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.1);
}

.legal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(59, 130, 246, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.legal-card:hover .legal-overlay {
    opacity: 1;
}

.btn-view {
    background: white;
    color: var(--primary-blue);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    border: 2px solid transparent;
}

.btn-view:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--primary-red));
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.legal-card h4 {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin: 2rem 1.5rem 0.5rem 1.5rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.legal-card p {
    color: var(--text-muted);
    margin: 0 1.5rem 1rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.verified-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 10px 18px;
    margin: 1rem 1.5rem 1.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.verified-badge i {
    font-size: 1rem;
}

/* --- FEATURED PRODUCTS CAROUSEL SECTION --- */
.featured-products-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.95));
    padding: 4rem 0;
    margin: -2rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

.featured-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.featured-products-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(59, 130, 246, 0.03) 35px, rgba(59, 130, 246, 0.03) 70px);
    pointer-events: none;
    animation: diagonalMove 20s linear infinite;
}

@keyframes diagonalMove {
    0% { background-position: 0 0; }
    100% { background-position: 70px 70px; }
}

.featured-carousel-wrapper {
    position: relative;
    padding: 0 80px;
    margin-top: 2rem;
}

/* Carousel Progress Bar */
.carousel-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 2px;
    overflow: hidden;
    z-index: 5;
}

.carousel-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), var(--primary-blue), #818cf8);
    background-size: 200% 100%;
    animation: gradientSlide 2s linear infinite;
    transition: width 0.05s linear;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    color: var(--primary-blue);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 10;
    position: absolute;
    overflow: hidden;
}

.carousel-nav::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue), #818cf8);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.5),
        0 0 60px rgba(59, 130, 246, 0.3),
        0 12px 40px rgba(30, 58, 138, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-nav:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.carousel-nav:active::after {
    width: 100px;
    height: 100px;
}

.carousel-nav i {
    transition: transform 0.3s ease;
}

.carousel-nav.prev-btn:hover i {
    animation: slideLeft 0.6s ease-in-out infinite;
}

.carousel-nav.next-btn:hover i {
    animation: slideRight 0.6s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-4px); }
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.carousel-nav.prev-btn {
    left: 0;
}

.carousel-nav.next-btn {
    right: 0;
}

.featured-carousel-wrapper {
    position: relative;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.featured-product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card), 0 1px 0 0 rgba(255,255,255,0.5) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.featured-product-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.featured-product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-product-card:hover::before {
    opacity: 1;
}

.featured-product-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.3), 0 1px 0 0 rgba(255,255,255,0.8) inset;
    border-color: transparent;
}

.featured-product-img {
    height: 200px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.featured-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.featured-product-img .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 12px;
    color: #94a3b8;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.featured-product-card:hover .img-placeholder {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    color: #64748b;
    transform: scale(1.08);
}

.featured-product-card:hover .featured-product-img img {
    transform: scale(1.15);
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}

.featured-product-card:hover .featured-product-img {
    background: linear-gradient(135deg, #dbeafe, #fee2e2);
}

.featured-product-card:hover .drum-css {
    transform: rotateY(15deg) scale(1.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    filter: brightness(1.1);
}

.featured-product-info {
    padding: 1.5rem;
}

.featured-product-card .product-brand {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.featured-product-card .product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 8px 0 15px 0;
    min-height: 50px;
    line-height: 1.4;
}

.featured-product-card .btn-wa {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.featured-product-card .btn-wa:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    border-color: rgba(255,255,255,0.4);
}

/* Stagger animation for featured products */
.featured-product-card:nth-child(1) { transition-delay: 0.05s; }
.featured-product-card:nth-child(2) { transition-delay: 0.1s; }
.featured-product-card:nth-child(3) { transition-delay: 0.15s; }
.featured-product-card:nth-child(4) { transition-delay: 0.2s; }

/* --- BRAND PARTNERS SECTION --- */
.brand-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card), 0 1px 0 0 rgba(255,255,255,0.5) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    aspect-ratio: 1;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue), var(--primary-red), var(--accent-red));
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-logo::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 19px;
    z-index: -1;
}

.brand-logo:hover::before {
    opacity: 1;
}

.brand-logo:hover {
    transform: translateY(-12px) scale(1.05) rotate(-2deg);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25), 0 1px 0 0 rgba(255,255,255,0.8) inset;
}

.brand-logo img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: all 0.2s ease;
}

.brand-logo:hover img {
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
    transform: scale(1.15) rotate(2deg);
}

/* Placeholder untuk brand yang belum ada gambar */
.brand-placeholder {
    font-weight: 800;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: all 0.2s ease;
}

.brand-logo:hover .brand-placeholder {
    transform: scale(1.15) rotate(2deg);
    filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.3));
}

/* Animasi infinite slide untuk brand logos */
@keyframes brandFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.brand-logo {
    animation: brandFloat 3s ease-in-out infinite;
}

.brand-logo:nth-child(1) { animation-delay: 0s; }
.brand-logo:nth-child(2) { animation-delay: 0.2s; }
.brand-logo:nth-child(3) { animation-delay: 0.4s; }
.brand-logo:nth-child(4) { animation-delay: 0.6s; }
.brand-logo:nth-child(5) { animation-delay: 0.8s; }
.brand-logo:nth-child(6) { animation-delay: 1s; }
.brand-logo:nth-child(7) { animation-delay: 1.2s; }
.brand-logo:nth-child(8) { animation-delay: 1.4s; }
.brand-logo:nth-child(9) { animation-delay: 1.6s; }

/* --- PRODUCT PAGE STYLES --- */
.product-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

.search-box-container {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    position: sticky;
    top: 100px;
}

.search-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.search-input:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.category-filter li {
    list-style: none;
    margin-bottom: 8px;
}

.category-filter button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    color: #666;
}

.category-filter button:hover, .category-filter button.active {
    background-color: rgba(0, 51, 153, 0.1);
    color: var(--primary-blue);
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card), 0 1px 0 0 rgba(255,255,255,0.5) inset;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(220, 38, 38, 0.08));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25), 0 1px 0 0 rgba(255,255,255,0.8) inset;
    border-color: transparent;
    z-index: 10;
}

.product-img {
    height: 220px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    padding: 1rem;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 12px;
    color: #94a3b8;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.product-card:hover .img-placeholder {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    color: #64748b;
    transform: scale(1.05);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

.product-card:hover .product-img {
    background: linear-gradient(135deg, #dbeafe, #fee2e2);
}

/* CSS Drum Shape (Fallback jika gambar tidak ada) */
.drum-css {
    width: 90px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    padding: 8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.drum-css::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 12px;
    background: rgba(255,255,255,0.4); 
    border-radius: 50%;
}

.product-card:hover .drum-css {
    transform: rotateY(15deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    filter: brightness(1.1);
}

.product-info { padding: 1.2rem; }
.product-brand { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.product-title { font-size: 1rem; font-weight: 700; color: var(--primary-blue); margin: 5px 0 15px 0; }
.btn-wa {
    display: block; width: 100%; padding: 10px;
    background: #25D366; color: white; text-align: center;
    text-decoration: none; border-radius: 6px; font-weight: bold;
    transition: all 0.2s ease;
}
.btn-wa:hover { 
    background: #1ebc57; 
    transform: scale(1.02);
}

/* --- PAGINATION --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 4rem 0 2rem 0;
    padding: 2rem 0;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    color: var(--primary-blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    border-color: transparent;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-number {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pagination-number:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.pagination-number.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transform: scale(1.1);
}

.pagination-dots {
    color: var(--text-muted);
    font-weight: 600;
    padding: 0 8px;
    user-select: none;
}

@media (max-width: 768px) {
    .pagination {
        gap: 0.5rem;
        margin: 3rem 0 1rem 0;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .pagination-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* --- FOOTER --- */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
    color: var(--white);
    padding: 5rem 2rem 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.3;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
}

.company-info .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: normal;
}

.company-desc {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '▸';
    color: var(--accent-red);
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.footer-links a:hover::before {
    transform: translateX(3px) scale(1.2);
    filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.5));
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info i {
    color: var(--accent-red);
    margin-top: 3px;
    min-width: 18px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.contact-info li:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.5));
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset;
    transition: transform 0.3s ease;
    margin-top: 1.5rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.map-container:hover {
    transform: scale(1.02);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* --- FLOATING SOCIAL MEDIA BUTTONS --- */
.social-float-container {
    position: fixed;
    bottom: 120px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.social-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 1px 0 0 rgba(255,255,255,0.3) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 3px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(100px) scale(0.5);
    position: relative;
    overflow: hidden;
}

.social-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.social-float:hover::before {
    width: 200px;
    height: 200px;
}

.social-float:hover {
    transform: translateX(-8px) scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 2px 0 0 rgba(255,255,255,0.5) inset;
    border-color: rgba(255,255,255,0.6);
}

.social-float i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-float:hover i {
    transform: scale(1.2) rotate(-10deg);
}

.social-float.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
}

.social-float.tokopedia {
    background: linear-gradient(135deg, #42B549, #2E7D32);
}

.social-float.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4, #5851DB);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.social-float.tiktok {
    background: linear-gradient(135deg, #000000, #EE1D52, #69C9D0);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.social-float.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.social-float.tokopedia:hover {
    background: linear-gradient(135deg, #2E7D32, #42B549);
}

/* Pulse animation for WhatsApp */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: rgba(30, 58, 138, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4), 0 1px 0 0 rgba(255,255,255,0.2) inset;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: slideInUp 0.4s ease;
}

.back-to-top:hover {
    background: rgba(59, 130, 246, 0.95);
}

/* --- PRODUCT DETAIL MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(220, 38, 38, 0.9);
    transform: rotate(90deg) scale(1.1);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-image-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-image-section img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.modal-info-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1rem;
}

.modal-brand {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.modal-product-name {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    color: var(--primary-blue);
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.detail-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.detail-item strong {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item span {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.price-call {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
}

.modal-description {
    flex: 1;
    overflow-y: auto;
}

.modal-description h3 {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
}

.modal-description p {
    color: #475569;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.modal-description ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.modal-description li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    line-height: 1.6;
}

.modal-description li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 0.7rem;
}

.modal-cta-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.modal-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.modal-cta-button i {
    font-size: 1.3rem;
}

/* Modal Scrollbar */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* --- RESPONSIVE DESIGN --- */

.back-to-top i {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

/* Rotating animation on hover */
.back-to-top:hover i {
    transform: translateY(-3px);
}

@keyframes slideInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes rotateUp {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

@media (max-width: 768px) {
    .product-layout { grid-template-columns: 1fr; }
    .search-box-container { position: static; }
    .nav-container { flex-direction: column; gap: 1rem; }
    .hero { padding: 5rem 1.5rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    
    .container h2 { font-size: 2rem; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .social-float-container {
        bottom: 100px;
        right: 20px;
        gap: 12px;
    }
    
    .social-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    /* Modal Responsive */
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 85vh;
    }
    
    .modal-image-section {
        padding: 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .modal-image-section img {
        max-height: 250px;
    }
    
    .modal-info-section {
        padding: 2rem;
    }
    
    .modal-product-name {
        font-size: 1.5rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .back-to-top i {
        font-size: 1.4rem;
    }
    
    .feature-card {
        padding: 2.5rem 1.5rem;
    }
    
    .brand-partners {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    /* Featured Products Responsive */
    .featured-carousel-wrapper {
        padding: 0 60px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legalitas-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-carousel-wrapper {
        padding: 0 50px;
    }
}

/* === RESPONSIVE ENHANCEMENTS (ADDITIVE ONLY) === */
@media (max-width: 1024px) {
    .main-container, .container, .about-content, .legalitas-grid, .featured-grid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .modal-container {
        max-width: 98vw;
        padding: 0 !important;
    }
    .modal-content {
        grid-template-columns: 1fr !important;
    }
    .modal-image-section, .modal-info-section {
        padding: 1.2rem !important;
    }
}

@media (max-width: 768px) {
    header, nav, .footer, .footer-bottom {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .hero-content, .about-content, .featured-grid, .legalitas-grid {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }
    .featured-carousel-wrapper {
        padding: 0 10px !important;
    }
    .social-float-container {
        right: 10px !important;
        bottom: 80px !important;
    }
    .back-to-top {
        right: 10px !important;
        bottom: 10px !important;
        width: 44px !important;
        height: 44px !important;
    }
    .modal-container {
        max-width: 99vw !important;
        min-width: 0 !important;
        border-radius: 12px !important;
    }
    .modal-image-section img {
        max-height: 220px !important;
    }
}

@media (max-width: 600px) {
    h1, .hero-title {
        font-size: 1.5rem !important;
    }
    h2, .section-title {
        font-size: 1.1rem !important;
    }
    .modal-product-name {
        font-size: 1.1rem !important;
    }
    .modal-header {
        padding-bottom: 0.5rem !important;
    }
    .modal-info-section {
        padding: 0.7rem !important;
    }
    .modal-image-section {
        padding: 0.7rem !important;
    }
    .modal-description {
        font-size: 0.9rem !important;
    }
    .social-float {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.97rem !important;
    }
    .main-container, .container, .about-content, .legalitas-grid, .featured-grid {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }
    .modal-container {
        max-width: 100vw !important;
        min-width: 0 !important;
        border-radius: 8px !important;
        padding: 0 !important;
    }
    .modal-content {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }
    .modal-image-section, .modal-info-section {
        padding: 0.5rem !important;
    }
    .modal-image-section img {
        max-height: 120px !important;
    }
    .modal-header {
        padding-bottom: 0.2rem !important;
    }
    .modal-product-name {
        font-size: 0.95rem !important;
    }
    .social-float {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }
    .back-to-top {
        width: 32px !important;
        height: 32px !important;
        right: 4px !important;
        bottom: 4px !important;
    }
    .footer, .footer-bottom {
        font-size: 0.85rem !important;
        padding-left: 2px !important;
        padding-right: 2px !important;
    }
}