/* ========================================
   VINISHA ENTERPRISE - Premium Leather Website
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #8B4513;
    --color-primary-dark: #5D2E0C;
    --color-primary-light: #A0522D;
    --color-secondary: #D2691E;
    --color-accent: #C9A961;
    --color-accent-light: #E5D4A1;
    --color-bg: #0F0F0F;
    --color-bg-secondary: #1A1A1A;
    --color-bg-tertiary: #252525;
    --color-text: #F5F5F5;
    --color-text-muted: #A0A0A0;
    --color-text-secondary: #C0C0C0;
    --color-border: #333333;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --section-padding: 120px 0;
    --container-width: 1200px;
    --border-radius: 4px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    --z-nav: 1000;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   PREMIUM SEXY PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
                var(--color-bg);
}

.preloader-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.preloader-particles::before,
.preloader-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.preloader-particles::before {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    animation: particleFloat 8s ease-in-out infinite;
}

.preloader-particles::after {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.15) 0%, transparent 70%);
    animation: particleFloat 8s ease-in-out infinite reverse;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.1); }
}

.preloader.hidden {
    animation: preloaderExit 1s var(--ease-out-expo) forwards;
}

@keyframes preloaderExit {
    0% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
    40% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
    100% {
        clip-path: inset(0 0 100% 0);
        opacity: 1;
    }
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.preloader-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: preloaderFadeIn 1s var(--ease-out-expo) 0.3s forwards;
}

@keyframes preloaderFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.preloader-logo-container {
    position: relative;
    margin-bottom: 25px;
}

.preloader-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 169, 97, 0.4) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.3; }
}

.preloader-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(201, 169, 97, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.preloader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.preloader-company {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite;
}

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

.preloader-sub {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 12px;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out-expo) 0.8s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Loader Animation */
.preloader-loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    opacity: 0;
    animation: fadeIn 0.6s var(--ease-out-expo) 0.5s forwards;
}

.preloader-loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: loaderSpin 2s linear infinite;
}

.preloader-loader-ring:nth-child(1) {
    border-top-color: var(--color-accent);
    animation-duration: 2s;
}

.preloader-loader-ring:nth-child(2) {
    border-right-color: var(--color-secondary);
    animation-duration: 1.5s;
    animation-direction: reverse;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}

.preloader-loader-ring:nth-child(3) {
    border-bottom-color: var(--color-accent);
    animation-duration: 1s;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

.preloader-loader-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: centerPulse 1s ease-in-out infinite;
}

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

@keyframes centerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.5; }
}

/* Loading Text Animation */
.preloader-loading-text {
    display: flex;
    gap: 6px;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.6s var(--ease-out-expo) 0.7s forwards;
}

.preloader-loading-text span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    animation: loadingText 1.5s ease-in-out infinite;
}

.preloader-loading-text span:nth-child(1) { animation-delay: 0s; }
.preloader-loading-text span:nth-child(2) { animation-delay: 0.1s; }
.preloader-loading-text span:nth-child(3) { animation-delay: 0.2s; }
.preloader-loading-text span:nth-child(4) { animation-delay: 0.3s; }
.preloader-loading-text span:nth-child(5) { animation-delay: 0.4s; }
.preloader-loading-text span:nth-child(6) { animation-delay: 0.5s; }
.preloader-loading-text span:nth-child(7) { animation-delay: 0.6s; }

@keyframes loadingText {
    0%, 100% { color: var(--color-text-muted); transform: translateY(0); }
    50% { color: var(--color-accent); transform: translateY(-5px); }
}

/* Scroll Indicator */
.preloader-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeIn 0.6s var(--ease-out-expo) 1.2s forwards;
}

.preloader-scroll-indicator span {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.preloader-scroll-line {
    width: 1px;
    height: 60px;
    background: var(--color-border);
    position: relative;
    overflow: hidden;
}

.preloader-scroll-dot {
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    position: absolute;
    left: -1.5px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: 0; opacity: 1; }
    80% { top: 80%; opacity: 0.3; }
    100% { top: 100%; opacity: 0; }
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    padding: 24px 0;
    transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s var(--ease-out-expo);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--color-accent); }
.nav-links a:hover::after { width: 100%; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(139, 69, 19, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(201, 169, 97, 0.12) 0%, transparent 40%),
                var(--color-bg);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(201, 169, 97, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 28px;
    padding: 10px 24px;
    border: 1px solid rgba(201, 169, 97, 0.25);
    background: rgba(201, 169, 97, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 14vw, 160px);
    font-weight: 400;
    line-height: 0.92;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.hero-title span {
    display: block;
    color: var(--color-accent);
    opacity: 0;
    transform: translateY(40px);
}

.hero-title .title-line:nth-child(1) { animation: heroFadeUp 0.8s var(--ease-out-expo) 0.5s forwards; }
.hero-title .title-line:nth-child(2) { animation: heroFadeUp 0.8s var(--ease-out-expo) 0.7s forwards; }

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

.hero-desc {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out-expo) 1.1s forwards;
}

.hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out-expo) 1.3s forwards;
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text);
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.45);
}

.btn-primary:hover svg { transform: translateX(5px); }

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease-out-expo) 1.5s forwards;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 70px;
    background: var(--color-border);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 50%;
    position: absolute;
    left: -1px;
    animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hero-accent-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201, 169, 97, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.1; }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s var(--ease-out-expo);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.scroll-reveal.delay-4 { transition-delay: 0.4s; }

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    padding: var(--section-padding);
    background: var(--color-bg-secondary);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 36px 26px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 97, 0.35);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

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

.product-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.4s var(--ease-out-expo);
}

.product-card:hover .product-icon { transform: scale(1.1) rotate(5deg); }

.product-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--color-accent);
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.product-card:hover h3 { color: var(--color-accent); }

.product-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 22px;
    flex-grow: 1;
}

.product-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.5px;
    margin-top: auto;
}

.product-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out-expo);
}

.product-card:hover .product-link svg { transform: translateX(6px); }

.product-card.highlight {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(139, 69, 19, 0.08));
    border-color: rgba(201, 169, 97, 0.3);
}

.product-card.sale {
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.08), rgba(139, 69, 19, 0.08));
    border-color: rgba(210, 105, 30, 0.3);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--section-padding);
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 26px; }

.about-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.85;
    margin-bottom: 22px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-out-expo);
}

.feature:hover {
    border-color: var(--color-accent);
    transform: translateX(8px);
}

.feature-icon {
    color: var(--color-accent);
    font-size: 14px;
    transition: transform 0.3s;
}

.feature:hover .feature-icon { transform: scale(1.3) rotate(15deg); }

.feature span:last-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.about-visual {
    display: flex;
    flex-direction: column;      /* ✅ stacks card + caption vertically */
    align-items: center;         /* ✅ keeps everything centered */
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.visual-accent {
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent, rgba(201, 169, 97, 0.12), transparent, rgba(201, 169, 97, 0.12), transparent);
    animation: rotate 25s linear infinite;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.visual-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.visual-year {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.visual-number {
    display: block;
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}

.visual-tag {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-top: 14px;
}
.visual-description {
    text-align: center;
    font-size: 14px;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-text-muted);
    margin-top: 14px;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;        /* ✅ caption also reacts on hover */
}

/* ✅ Smooth scale on the card box */
.visual-card {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.5s ease;
}

.visual-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(201, 169, 97, 0.5);      /* gold border glow */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(201, 169, 97, 0.15);
}

/* ✅ Image zooms in and warms up */
.visual-image {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                filter 0.6s ease;
    filter: grayscale(20%);
}

.visual-card:hover .visual-image {
    transform: scale(1.07);
    filter: grayscale(0%) brightness(1.05);     /* full color + slight brighten */
}

/* ✅ Caption turns gold on hover */
.about-visual:hover .visual-description {
    color: var(--color-accent);
}

/* ========================================
   WORKERS SECTION
   ======================================== */
.workers {
    padding: var(--section-padding);
    background: var(--color-bg-secondary);
    position: relative;
}

.workers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.workers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.worker-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.5s var(--ease-out-expo);
}

.worker-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 97, 0.35);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.worker-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.worker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
    filter: grayscale(25%);
}

.worker-card:hover .worker-image img {
    transform: scale(1.12);
    filter: grayscale(0%);
}

.worker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, transparent 60%);
    pointer-events: none;
}

.worker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px;
    z-index: 1;
}

.worker-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
    transition: color 0.3s;
}

.worker-card:hover .worker-info h3 { color: var(--color-accent); }

.worker-info p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    padding: 90px 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 28px 22px;
    border: 1px solid var(--color-border);
    transition: all 0.5s var(--ease-out-expo);
    cursor: default;
}

.stat-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.stat-item:hover .stat-number {
    color: var(--color-text);
    text-shadow: 0 0 25px rgba(201, 169, 97, 0.5);
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--section-padding);
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    padding: 36px 26px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
}

.contact-card:hover {
    border-color: rgba(201, 169, 97, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.contact-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    transition: all 0.4s var(--ease-out-expo);
}

.contact-card:hover .contact-icon {
    background: rgba(201, 169, 97, 0.2);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-accent);
    transition: all 0.3s;
}

.contact-card:hover .contact-icon svg { stroke: var(--color-secondary); }

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 14px;
}

.contact-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.85;
}

.contact-card a { color: var(--color-text-secondary); }
.contact-card a:hover { color: var(--color-accent); }

.contact-card.cta-card {
    background: linear-gradient(145deg, rgba(139, 69, 19, 0.2), rgba(201, 169, 97, 0.1));
    border-color: rgba(201, 169, 97, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card.cta-card h3 { font-size: 26px; }
.contact-card.cta-card p { margin-bottom: 22px; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 70px 0 35px;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
}

.footer-brand-text { display: flex; flex-direction: column; }

.footer-brand-text h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.footer-brand-text p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 22px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 14px; }

.footer-links a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(6px);
}

.footer-contact p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.footer-contact a:hover { color: var(--color-accent); }

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p { font-size: 13px; color: var(--color-text-muted); }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    :root { --section-padding: 90px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .about-visual { order: -1; }
    .visual-card { max-width: 320px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .workers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-secondary);
        flex-direction: column;
        justify-content: center;
        gap: 36px;
        padding: 24px;
        transition: right 0.5s var(--ease-out-expo);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 20px; }
    .nav-logo { justify-content: center; }

    .hero-title { font-size: clamp(44px, 16vw, 90px); }
    .hero-subtitle { font-size: 14px; letter-spacing: 5px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; justify-content: center; }

    .products-grid,
    .about-features,
    .workers-grid,
    .stats-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo { margin: 0 auto 18px; }
    .footer-brand-text { align-items: center; text-align: center; }
    .footer-links, .footer-contact { text-align: center; }
}

@media (max-width: 480px) {
    .hero { padding: 110px 20px 70px; }
    .hero-title { font-size: 52px; }
    .section-title { font-size: 34px; }
    .stat-number { font-size: 38px; }
    .visual-number { font-size: 44px; }
    .preloader-company { font-size: 28px; }
}