:root {
    --bg-primary: #0c0c0c;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-light: #f8f5f1;
    --accent-gold: #c9a96e;
    --accent-gold-light: #dfc9a3;
    --accent-coral: #d4846a;
    --text-white: #ffffff;
    --text-light: #b0b0b0;
    --text-muted: #999999;
    --text-dark: #1a1a1a;
    --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #f0dbb4 50%, #c9a96e 100%);
    --gradient-dark: linear-gradient(180deg, #0c0c0c 0%, #1a1a1a 100%);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 60px rgba(201, 169, 110, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg-primary); color: var(--text-white); line-height: 1.7; overflow-x: hidden; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 10px; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 50px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* Header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 25px 0; transition: all 0.4s ease; }
header.scrolled { background: rgba(12, 12, 12, 0.95); backdrop-filter: blur(20px); padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { text-decoration: none; display: flex; align-items: center; gap: 15px; }
.logo-mark { width: 45px; height: 45px; border: 1px solid var(--accent-gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--accent-gold); transition: all 0.3s ease; }
.logo:hover .logo-mark { background: var(--accent-gold); color: var(--bg-primary); }
.logo-text { display: flex; flex-direction: column; }
.logo-text h1, .logo-text .logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 500; color: var(--text-white); letter-spacing: 2px; }
.logo-text span { font-size: 0.65rem; color: var(--accent-gold); letter-spacing: 3px; text-transform: uppercase; }

nav { display: flex; gap: 45px; }
nav a { font-size: 0.85rem; font-weight: 400; color: var(--text-light); text-decoration: none; letter-spacing: 1px; position: relative; padding: 8px 0; transition: color 0.3s ease; }
nav a::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--accent-gold); transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease; }
nav a:hover, nav a.active { color: var(--text-white); }
nav a:hover::before, nav a.active::before { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 30px; }
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 15px 30px; font-size: 0.8rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { background: var(--accent-gold); color: var(--bg-primary); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-outline { background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: var(--text-white); }
.btn-outline:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.btn-dark { background: var(--bg-primary); color: var(--text-white); }
.btn-dark:hover { background: var(--accent-gold); color: var(--bg-primary); }

.menu-toggle { display: none; width: 30px; height: 20px; position: relative; cursor: pointer; z-index: 1001; }
.menu-toggle span { position: absolute; left: 0; width: 100%; height: 1px; background: var(--text-white); transition: all 0.3s ease; }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--bg-primary); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) saturate(1.2); animation: heroKenBurns 25s ease-in-out infinite alternate; }
.hero-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,12,0.85) 0%, rgba(12,12,12,0.55) 40%, rgba(12,12,12,0.75) 100%); z-index: 1; }
@keyframes heroKenBurns { 0% { transform: scale(1) translate(0,0); } 100% { transform: scale(1.08) translate(-1%,-1%); } }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 90%, rgba(201,169,110,0.08) 0%, transparent 50%); z-index: 3; pointer-events: none; }

/* Hero Centered Layout */
.hero-centered {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 160px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Trade Tags above heading */
.hero-trade-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

/* Trade Category Chips */
.trade-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-light);
    transition: all 0.3s ease;
}
.trade-chip i {
    color: var(--accent-gold);
    font-size: 0.75rem;
}
.trade-chip:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.08);
    color: var(--text-white);
}

.hero h2 { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 400; line-height: 1.12; color: var(--text-white); margin-bottom: 30px; text-align: center; }
.hero h2 em { font-style: italic; color: var(--accent-gold); }
.hero-desc { font-size: 1.1rem; color: var(--text-light); line-height: 1.9; margin-bottom: 40px; max-width: 620px; text-align: center; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 60px; justify-content: center; margin-top: 10px; }
.hero-stat { position: relative; padding-left: 20px; }
.hero-stat::before { content: ''; position: absolute; left: 0; top: 5px; bottom: 5px; width: 1px; background: var(--accent-gold); }
.hero-stat h3 { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 400; color: var(--text-white); line-height: 1; }
.hero-stat span { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }


/* Marquee */
.marquee { background: var(--bg-secondary); padding: 30px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); overflow: hidden; position: relative; }
.marquee::before, .marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-secondary), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-secondary), transparent); }
.marquee-track { display: flex; animation: marqueeScroll 40s linear infinite; }
.marquee-content { display: flex; gap: 60px; padding: 0 30px; flex-shrink: 0; }
.marquee-item { display: flex; align-items: center; gap: 15px; white-space: nowrap; }
.marquee-item i { color: var(--accent-gold); font-size: 0.9rem; }
.marquee-item span { font-size: 0.9rem; font-weight: 500; color: var(--text-light); letter-spacing: 1px; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Section shared */
.section-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 25px; display: inline-flex; align-items: center; gap: 15px; }
.section-tag::before { content: ''; width: 40px; height: 1px; background: var(--accent-gold); }
.section-title { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 400; color: var(--text-white); line-height: 1.2; margin-bottom: 30px; }
.section-title em { font-style: italic; color: var(--accent-gold); }

/* About */
.about { padding: 150px 0; background: linear-gradient(rgba(10, 10, 15, 0.55), rgba(10, 10, 15, 0.65)), url('../images/shipping-port.webp') center/cover no-repeat; position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrapper { position: relative; overflow: hidden; }
.about-img-wrapper::before { content: ''; position: absolute; inset: -1px; border: 1px solid var(--accent-gold); transform: translate(20px, 20px); z-index: -1; }
.about-img { width: 100%; height: 550px; object-fit: cover; }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(12, 12, 12, 0.8) 100%); }
.about-badge { position: absolute; top: 10px; left: -50px; background: var(--accent-gold); color: var(--bg-primary); padding: 14px 18px; text-align: center; z-index: 5; }
.about-badge h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; line-height: 1; }
.about-badge span { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; }
.about-secondary { position: absolute; bottom: -40px; right: -40px; width: 220px; height: 280px; overflow: hidden; border: 8px solid var(--bg-primary); box-shadow: var(--shadow-lg); }
.about-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content { padding-left: 30px; }
.about-content p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 25px; line-height: 1.9; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.about-feature { display: flex; gap: 20px; }
.about-feature-icon { width: 55px; height: 55px; background: var(--bg-secondary); border: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--accent-gold); flex-shrink: 0; transition: all 0.3s ease; }
.about-feature:hover .about-feature-icon { background: var(--accent-gold); color: var(--bg-primary); }
.about-feature h4 { font-size: 1rem; font-weight: 600; margin-bottom: 5px; }
.about-feature span { font-size: 0.85rem; color: var(--text-muted); }

/* Products */
.products { padding: 150px 0; background: linear-gradient(rgba(10, 10, 15, 0.6), rgba(10, 10, 15, 0.7)), url('../images/bg-products.webp') center/cover no-repeat; position: relative; overflow: hidden; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; }
.products-header-text { max-width: 500px; }
.products-header p { font-size: 1.05rem; color: var(--text-light); margin-top: 20px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.product-card { background: var(--bg-tertiary); border: 1px solid rgba(255, 255, 255, 0.03); border-bottom: 3px solid transparent; overflow: hidden; transition: all 0.3s ease; }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(201, 169, 110, 0.2); border-bottom-color: var(--accent-gold); }

/* Pattern cards for products without images */
.product-image--pattern { height: 220px; background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(201,169,110,0.06) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image--pattern::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(201,169,110,0.1) 0%, transparent 50%); }
.product-image--pattern::after { content: ''; position: absolute; top: 20px; right: 20px; width: 60px; height: 60px; border: 1px solid rgba(201,169,110,0.15); transform: rotate(45deg); }
.product-image--pattern i { font-size: 2.5rem; color: var(--accent-gold); opacity: 0.5; z-index: 2; transition: all 0.3s ease; }
.product-card:hover .product-image--pattern i { opacity: 1; transform: scale(1.1); }
.products-grid + .products-grid { margin-top: 30px; }
.product-image { position: relative; height: 280px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-tag { position: absolute; top: 20px; left: 20px; background: var(--accent-gold); color: var(--bg-primary); padding: 8px 15px; font-size: 0.65rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.product-content { padding: 30px; }
.product-content h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 500; margin-bottom: 10px; transition: color 0.3s ease; }
.product-card:hover .product-content h3 { color: var(--accent-gold); }
.product-content p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.product-link { display: inline-flex; align-items: center; gap: 10px; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-gold); text-decoration: none; transition: gap 0.3s ease; }
.product-link:hover { gap: 15px; }

/* Why Choose */
.why-choose { padding: 150px 0; background: linear-gradient(rgba(10, 10, 15, 0.6), rgba(10, 10, 15, 0.7)), url('../images/bg-whychoose.webp') center/cover no-repeat; color: var(--text-white); }
.why-choose-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.why-choose-content .section-tag { color: var(--accent-gold); }
.why-choose-content .section-tag::before { background: var(--accent-gold); }
.why-choose-content .section-title { color: var(--text-white); }
.why-choose-content > p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 40px; }
.why-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.why-card { background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); padding: 40px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease; }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); background: rgba(255, 255, 255, 0.12); }
.why-card-icon { width: 65px; height: 65px; background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent-gold); margin-bottom: 25px; transition: all 0.3s ease; }
.why-card:hover .why-card-icon { background: var(--gradient-gold); color: var(--bg-primary); }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--text-white); margin-bottom: 12px; }
.why-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* Services */
.services { padding: 150px 0; background: linear-gradient(rgba(10, 10, 15, 0.6), rgba(10, 10, 15, 0.7)), url('../images/bg-services.webp') center/cover no-repeat; }
.services-header { text-align: center; max-width: 600px; margin: 0 auto 70px; }
.services-header p { font-size: 1.05rem; color: var(--text-light); margin-top: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--bg-secondary); border: 1px solid rgba(255, 255, 255, 0.03); padding: 50px 40px; text-align: center; transition: all 0.3s ease; }
.service-card:hover { background: var(--bg-tertiary); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon { width: 90px; height: 90px; background: var(--bg-tertiary); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--accent-gold); margin: 0 auto 30px; transition: all 0.3s ease; }
.service-card:hover .service-icon { background: var(--gradient-gold); color: var(--bg-primary); border-color: transparent; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 500; margin-bottom: 15px; }
.service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* Process */
.process { padding: 150px 0; background: linear-gradient(rgba(10, 10, 15, 0.6), rgba(10, 10, 15, 0.7)), url('../images/bg-process.webp') center/cover no-repeat; }
.process-header { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.process-header p { font-size: 1.05rem; color: var(--text-light); margin-top: 20px; }
.process-track { display: flex; justify-content: space-between; max-width: 1000px; margin: 0 auto; }
.process-step { text-align: center; flex: 1; }
.process-number { width: 100px; height: 100px; background: var(--bg-primary); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-muted); margin: 0 auto 30px; transition: all 0.3s ease; }
.process-step:hover .process-number { background: var(--accent-gold); color: var(--bg-primary); border-color: var(--accent-gold); }
.process-step h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); max-width: 180px; margin: 0 auto; }

/* CTA */
.cta { padding: 120px 0; background: var(--gradient-gold); }
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta h2 { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 500; color: var(--bg-primary); margin-bottom: 20px; }
.cta p { font-size: 1.15rem; color: rgba(0, 0, 0, 0.7); margin-bottom: 40px; }

/* Contact */
.contact { padding: 150px 0; background: var(--bg-primary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 50px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; gap: 25px; padding: 30px; background: var(--bg-secondary); border: 1px solid rgba(255, 255, 255, 0.03); transition: all 0.3s ease; text-decoration: none; color: inherit; }
.contact-card:hover { background: var(--bg-tertiary); border-color: rgba(201, 169, 110, 0.2); transform: translateX(10px); }
.contact-card-icon { width: 60px; height: 60px; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--bg-primary); flex-shrink: 0; }
.contact-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 500; margin-bottom: 8px; }
.contact-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.contact-form-wrapper { background: var(--bg-secondary); border: 1px solid rgba(255, 255, 255, 0.03); padding: 50px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 500; margin-bottom: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 18px 20px; background: var(--bg-primary); border: 1px solid rgba(255, 255, 255, 0.08); color: var(--text-white); font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: all 0.3s ease; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent-gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; background-size: 18px; }
.contact-form .btn { width: 100%; justify-content: center; padding: 20px; }

/* Page Header (for inner pages) */
.page-header { padding: 180px 0 100px; background: var(--gradient-dark); position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: rgba(201, 169, 110, 0.03); clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%); }
.page-header .container { position: relative; z-index: 2; }
.page-header .section-tag { margin-bottom: 20px; }
.page-header h1, .page-header h2 { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 400; line-height: 1.1; margin-bottom: 20px; }
.page-header h1 em, .page-header h2 em { font-style: italic; color: var(--accent-gold); }
.page-header p { font-size: 1.15rem; color: var(--text-light); max-width: 600px; line-height: 1.9; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; font-size: 0.85rem; }
.breadcrumb a { color: var(--accent-gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }

/* About Page Extras */
.about-full { padding: 120px 0; background: var(--bg-primary); }
.about-mission { padding: 120px 0; background: var(--bg-secondary); }
.about-mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.mission-card { padding: 50px 40px; background: var(--bg-tertiary); border: 1px solid rgba(255, 255, 255, 0.03); text-align: center; transition: all 0.3s ease; }
.mission-card:hover { transform: translateY(-8px); border-color: rgba(201, 169, 110, 0.2); }
.mission-card-icon { width: 80px; height: 80px; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--bg-primary); margin: 0 auto 25px; }
.mission-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; margin-bottom: 15px; }
.mission-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

.timeline { padding: 120px 0; background: var(--bg-primary); }
.timeline-items { max-width: 800px; margin: 60px auto 0; position: relative; }
.timeline-items::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(201, 169, 110, 0.3); transform: translateX(-50%); }
.timeline-item { display: flex; align-items: center; margin-bottom: 60px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-dot { width: 20px; height: 20px; background: var(--accent-gold); border-radius: 50%; position: absolute; left: 50%; transform: translateX(-50%); z-index: 2; }
.timeline-content { width: 45%; padding: 30px; background: var(--bg-secondary); border: 1px solid rgba(255, 255, 255, 0.05); }
.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; margin-left: 5%; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; margin-right: 5%; }
.timeline-content h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--accent-gold); margin-bottom: 8px; }
.timeline-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* Products Page Extras */
.product-detail { padding: 80px 0; background: var(--bg-primary); }
.product-detail-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.product-detail-card:last-child { border-bottom: none; }
.product-detail-card:nth-child(even) { direction: rtl; }
.product-detail-card:nth-child(even) > * { direction: ltr; }
.product-detail-img { height: 400px; overflow: hidden; position: relative; }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-detail-img:hover img { transform: scale(1.05); }
.product-detail-info h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; margin-bottom: 20px; }
.product-detail-info p { font-size: 1.05rem; color: var(--text-light); line-height: 1.9; margin-bottom: 25px; }
.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
.product-spec { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--bg-secondary); border: 1px solid rgba(255, 255, 255, 0.05); }
.product-spec i { color: var(--accent-gold); font-size: 0.9rem; }
.product-spec span { font-size: 0.9rem; color: var(--text-light); }
.product-price-hint { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(201, 169, 110, 0.1); border: 1px solid rgba(201, 169, 110, 0.3); border-radius: 6px; color: var(--accent-gold); font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; }
.product-price-hint i { font-size: 0.85rem; }

/* Services Page Extras */
.service-detail { padding: 120px 0; }
.service-detail:nth-child(odd) { background: var(--bg-primary); }
.service-detail:nth-child(even) { background: var(--bg-secondary); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-detail:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail-grid > * { direction: ltr; }
.service-detail-icon { width: 120px; height: 120px; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--bg-primary); margin-bottom: 30px; }
.service-detail-content h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; margin-bottom: 20px; }
.service-detail-content p { font-size: 1.05rem; color: var(--text-light); line-height: 1.9; margin-bottom: 20px; }
.service-detail-list { list-style: none; margin-top: 25px; }
.service-detail-list li { display: flex; align-items: center; gap: 15px; padding: 12px 0; font-size: 1rem; color: var(--text-light); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.service-detail-list li i { color: var(--accent-gold); font-size: 0.9rem; width: 20px; }
.service-visual { display: flex; align-items: center; justify-content: center; }
.service-visual-box { width: 100%; max-width: 450px; aspect-ratio: 1; background: var(--bg-tertiary); border: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; }
.service-visual-box i { font-size: 6rem; color: rgba(201, 169, 110, 0.15); }

/* Contact Page Extras */
.contact-map { width: 100%; height: 400px; border: none; filter: grayscale(0.5) brightness(0.8); }

/* Footer */
footer { background: #0a0a0a; padding-top: 80px; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.footer-brand .logo { margin-bottom: 25px; }
.footer-brand > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 25px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 45px; height: 45px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all 0.3s ease; text-decoration: none; }
.footer-social a:hover { background: var(--accent-gold); border-color: var(--accent-gold); color: var(--bg-primary); }
.footer-links h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; margin-bottom: 25px; color: var(--text-white); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent-gold); }
.footer-contact h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; margin-bottom: 25px; color: var(--text-white); }
.footer-contact-item { display: flex; gap: 15px; margin-bottom: 15px; font-size: 0.95rem; color: var(--text-muted); }
.footer-contact-item i { color: var(--accent-gold); width: 18px; }
.footer-registration { margin-top: 25px; padding: 20px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); }
.footer-registration p { font-size: 0.85rem; margin-bottom: 8px; color: var(--text-muted); }
.footer-registration p:last-child { margin-bottom: 0; }
.footer-registration strong { color: var(--accent-gold); }
/* Footer Certification Bar */
.footer-cert-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}
.footer-cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 1px;
}
.footer-cert-item i {
    font-size: 0.9rem;
}

.footer-bottom { padding: 25px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 30px; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--accent-gold); }

.back-to-top { position: fixed; bottom: 40px; right: 40px; width: 50px; height: 50px; background: var(--accent-gold); display: flex; align-items: center; justify-content: center; color: var(--bg-primary); font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1000; border: none; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); }

/* Skip to content */
.skip-to-content { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); background: var(--accent-gold); color: var(--bg-primary); padding: 12px 24px; font-size: 0.85rem; font-weight: 600; z-index: 10000; text-decoration: none; transition: top 0.3s ease; }
.skip-to-content:focus { top: 10px; }

/* Focus states */
*:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 3px; }
button:focus-visible, .btn:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 3px; }

/* Floating WhatsApp Button */
.whatsapp-float { position: fixed; bottom: 40px; left: 40px; z-index: 999; display: flex; align-items: center; gap: 12px; text-decoration: none; }
.whatsapp-float-btn { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.7rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: all 0.3s ease; animation: whatsappPulse 2s ease infinite; }
.whatsapp-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
.whatsapp-float-label { background: white; color: #333; padding: 8px 16px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; box-shadow: 0 2px 12px rgba(0,0,0,0.15); opacity: 0; transform: translateX(-10px); transition: all 0.3s ease; white-space: nowrap; }
.whatsapp-float:hover .whatsapp-float-label { opacity: 1; transform: translateX(0); }
.whatsapp-float.hidden { opacity: 0; pointer-events: none; }
@keyframes whatsappPulse { 0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); } 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); } }

/* Scroll Progress Bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gradient-gold); z-index: 10001; transition: width 0.1s linear; width: 0%; }

/* Preloader */
.preloader { position: fixed; inset: 0; background: var(--bg-primary); z-index: 99999; display: flex; align-items: center; justify-content: center; flex-direction: column; transition: opacity 0.6s ease, visibility 0.6s ease; }
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-logo { width: 80px; height: 80px; border: 2px solid var(--accent-gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--accent-gold); animation: preloaderPulse 1.5s ease infinite; }
.preloader-bar { width: 120px; height: 2px; background: rgba(255,255,255,0.1); margin-top: 30px; overflow: hidden; position: relative; }
.preloader-bar::after { content: ''; position: absolute; left: -40%; width: 40%; height: 100%; background: var(--accent-gold); animation: preloaderSlide 1s ease infinite; }
@keyframes preloaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes preloaderSlide { 0% { left: -40%; } 100% { left: 100%; } }

/* Stats Counter */
.stats-section { padding: 100px 0; background: var(--bg-secondary); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item { padding: 30px 20px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 400; color: var(--accent-gold); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.stat-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

/* Testimonials */
.testimonials { padding: 150px 0; background: linear-gradient(rgba(10, 10, 15, 0.65), rgba(10, 10, 15, 0.75)), url('../images/bg-testimonials.webp') center/cover no-repeat; position: relative; overflow: hidden; }
.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 70px; }
.testimonials-header p { font-size: 1.05rem; color: var(--text-light); margin-top: 20px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: var(--bg-secondary); border: 1px solid rgba(255,255,255,0.03); padding: 50px 40px; position: relative; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-8px); border-color: rgba(201, 169, 110, 0.2); box-shadow: var(--shadow-lg); }
.testimonial-card::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--accent-gold); opacity: 0.2; position: absolute; top: 15px; left: 30px; line-height: 1; }
.testimonial-text { font-size: 1rem; color: var(--text-light); line-height: 1.9; margin-bottom: 30px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar { width: 50px; height: 50px; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--bg-primary); font-weight: 600; }
.testimonial-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 3px; }
.testimonial-info span { font-size: 0.8rem; color: var(--accent-gold); }

/* Certifications */
.certifications { padding: 80px 0; background: var(--bg-secondary); border-top: 1px solid rgba(255,255,255,0.05); }
.cert-grid { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; }
.cert-item { display: flex; align-items: center; gap: 15px; opacity: 0.6; transition: opacity 0.3s ease; }
.cert-item:hover { opacity: 1; }
.cert-icon { width: 60px; height: 60px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--accent-gold); }
.cert-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.cert-text span { font-size: 0.75rem; color: var(--text-muted); }

/* FAQ Accordion */
.faq { padding: 120px 0; background: var(--bg-secondary); }
.faq-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.faq-header p { font-size: 1.05rem; color: var(--text-light); margin-top: 20px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 25px 0; background: none; border: none; cursor: pointer; text-align: left; color: var(--text-white); font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 500; transition: color 0.3s ease; }
.faq-question:hover { color: var(--accent-gold); }
.faq-question i { color: var(--accent-gold); font-size: 0.8rem; transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer p { padding: 0 0 25px; font-size: 0.95rem; color: var(--text-light); line-height: 1.9; }
.faq-item.active .faq-answer { max-height: 300px; }

/* Salt Grade Comparison Table */
.comparison-table-wrapper { overflow-x: auto; margin-top: 60px; }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--bg-secondary); border: 1px solid rgba(255,255,255,0.05); }
.comparison-table thead { background: var(--bg-tertiary); }
.comparison-table th { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 500; padding: 20px 25px; text-align: left; color: var(--accent-gold); border-bottom: 1px solid rgba(255,255,255,0.08); }
.comparison-table td { padding: 18px 25px; font-size: 0.9rem; color: var(--text-light); border-bottom: 1px solid rgba(255,255,255,0.03); }
.comparison-table tbody tr:hover { background: rgba(201, 169, 110, 0.03); }
.comparison-table tbody tr:hover td { color: var(--text-white); }

/* Button hover fill animation */
.btn { position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; transition: left 0.3s ease; z-index: -1; }
.btn-primary::before { background: rgba(0,0,0,0.1); }
.btn-outline::before { background: var(--accent-gold); }
.btn-outline:hover { color: var(--bg-primary); border-color: var(--accent-gold); }
.btn-outline:hover::before { left: 0; }

/* Hero reveal handled by GSAP */

/* Hero parallax subtle gradient */
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 60%); pointer-events: none; animation: heroGlow 8s ease-in-out infinite alternate; }
@keyframes heroGlow { 0% { opacity: 0.5; } 100% { opacity: 1; } }

/* Nav underline slide */
nav a::before { transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

/* Form focus glow */
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1); }

/* ================================================
   PHASE 2 — World-Class Enhancements
   ================================================ */

/* GPU acceleration hints */
.cursor-dot, .cursor-ring { will-change: left, top; }
.hero-image img { will-change: transform; }
#page-transition { will-change: transform; }
.float-card { will-change: transform; }

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(201, 169, 110, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}
.cursor-ring.cursor-hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent-gold);
    background: rgba(201, 169, 110, 0.08);
}
.cursor-dot.cursor-hover {
    width: 4px;
    height: 4px;
    background: var(--text-white);
}

/* Page Transition Overlay */
#page-transition {
    position: fixed;
    inset: 0;
    background: var(--accent-gold);
    z-index: 100000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    pointer-events: none;
}
#page-transition.active {
    transform: scaleX(1);
}

/* Nav Backdrop */
#nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Shimmer Text on em tags in section titles */
.section-title em, .hero h2 em {
    background: linear-gradient(90deg, var(--accent-gold) 0%, #f0dbb4 40%, var(--accent-gold) 60%, #f0dbb4 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s ease-in-out infinite;
}
@keyframes shimmerText {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Process Line */
.process-track {
    position: relative;
}
.process-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(201, 169, 110, 0.3);
    transform-origin: left;
    z-index: 0;
}

/* Lightbox */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}
#lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
#lightbox.active .lightbox-img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.lightbox-close:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
}

/* Sticky Mobile CTA Bar */
#mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 12px 20px;
    gap: 12px;
    transition: transform 0.3s ease;
}
#mobile-cta-bar.hidden {
    transform: translateY(100%);
}
#mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
}
#mobile-cta-bar .cta-call {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
}
#mobile-cta-bar .cta-whatsapp {
    background: #25D366;
    color: white;
}

/* World Map Section */
.world-map-section {
    padding: 120px 0;
    background: linear-gradient(rgba(10, 10, 15, 0.7), rgba(10, 10, 15, 0.8)), url('../images/bg-globe.webp') center/cover no-repeat;
    overflow: hidden;
}
.world-map-section .section-tag,
.world-map-section .section-title {
    text-align: center;
}
.world-map-section > .container > .section-tag,
.world-map-section > .container > .section-title,
.world-map-section > .container > p {
    text-align: center;
}
.world-map-section > .container > p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
}
.world-map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.world-map-container svg {
    width: 100%;
    height: auto;
}
.map-dot {
    fill: var(--accent-gold);
    filter: drop-shadow(0 0 6px rgba(201, 169, 110, 0.6));
}
.map-dot-pulse {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 1;
    opacity: 0;
    animation: mapPulse 2s ease-in-out infinite;
}
@keyframes mapPulse {
    0% { r: 4; opacity: 0.6; }
    100% { r: 18; opacity: 0; }
}
.map-line {
    stroke: rgba(201, 169, 110, 0.3);
    stroke-width: 1;
    stroke-dasharray: 4 4;
    fill: none;
}
.map-label {
    fill: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    text-anchor: middle;
}

/* Client Logo Bar */
.client-logos {
    padding: 60px 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}
.client-logos-header {
    text-align: center;
    margin-bottom: 40px;
}
.client-logos-header span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.logo-marquee {
    display: flex;
    animation: logoScroll 30s linear infinite;
}
.logo-marquee-track {
    display: flex;
    gap: 80px;
    padding: 0 40px;
    flex-shrink: 0;
    align-items: center;
}
.client-logo-item {
    width: 120px;
    height: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    padding: 0 15px;
    white-space: nowrap;
}
.client-logo-item:hover {
    opacity: 1;
    border-color: rgba(201, 169, 110, 0.2);
}
@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonial Stars & Meta */
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}
.testimonial-stars i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}
.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.testimonial-flag {
    font-size: 1.1rem;
}
.testimonial-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Form Floating Labels */
.form-group {
    position: relative;
}
.form-group.focused label,
.form-group.filled label {
    color: var(--accent-gold);
    font-size: 0.65rem;
}
.form-group.valid input,
.form-group.valid textarea {
    border-color: #4ade80;
}
.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #ef4444;
}
.form-group.valid::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    color: #4ade80;
    font-size: 0.85rem;
}
.form-group.invalid::after {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    color: #ef4444;
    font-size: 0.85rem;
}

/* Button loading state */
.btn.loading {
    position: relative;
    color: transparent !important;
}
.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--bg-primary);
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
}
@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* Export Logistics Section */
.export-section {
    padding: 150px 0;
    background: var(--bg-primary);
    overflow: hidden;
}
.export-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.export-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}
.export-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.export-image:hover img {
    transform: scale(1.04);
}
.export-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 12, 12, 0.7) 100%);
    pointer-events: none;
}
.export-image::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid var(--accent-gold);
    transform: translate(15px, 15px);
    z-index: -1;
}
.export-image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(201, 169, 110, 0.9);
    color: var(--bg-primary);
    padding: 14px 22px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}
.export-image-badge i {
    font-size: 1.1rem;
}
.export-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 35px;
}
.export-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.export-stat {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 22px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}
.export-stat:hover {
    border-color: rgba(201, 169, 110, 0.15);
    transform: translateX(8px);
}
.export-stat i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--bg-primary);
}
.export-stat strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.export-stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 404 Page */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}
.error-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 20px;
}
.error-page h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}
.error-page p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h2 { font-size: 4rem; }
    .section-title { font-size: 2.8rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .page-header h1, .page-header h2 { font-size: 3.2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .hero h2 { font-size: 3.5rem; }
    .hero-centered { padding: 140px 0 80px; }
    .about-grid, .contact-grid, .why-choose-grid { grid-template-columns: 1fr; gap: 60px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
    .process-track { flex-wrap: wrap; gap: 40px; }
    .process-step { flex: 0 0 50%; }
    .product-detail-card { grid-template-columns: 1fr; }
    .product-detail-card:nth-child(even) { direction: ltr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
    .about-mission-grid { grid-template-columns: 1fr; }
    .export-grid { grid-template-columns: 1fr; gap: 50px; }
    .timeline-items::before { left: 30px; }
    .timeline-dot { left: 30px; }
    .timeline-content { width: 80%; margin-left: 70px !important; margin-right: 0 !important; }
    .timeline-item:nth-child(odd) { flex-direction: row; }
}
@media (max-width: 768px) {
    /* Slide-in mobile menu */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
    }
    nav.active {
        right: 0;
    }
    nav a {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }
    nav.active a { opacity: 1; transform: translateX(0); }
    nav.active a:nth-child(1) { transition-delay: 0.1s; }
    nav.active a:nth-child(2) { transition-delay: 0.15s; }
    nav.active a:nth-child(3) { transition-delay: 0.2s; }
    nav.active a:nth-child(4) { transition-delay: 0.25s; }
    nav.active a:nth-child(5) { transition-delay: 0.3s; }
    .menu-toggle { display: block; }
    .header-actions .btn { display: none; }

    /* Mobile CTA bar */
    #mobile-cta-bar { display: flex; }
    .whatsapp-float { bottom: 75px; left: 25px; }
    .back-to-top { bottom: 75px; right: 25px; }

    /* Hide custom cursor on touch */
    .cursor-dot, .cursor-ring { display: none !important; }

    .hero { min-height: 100vh; }
    .hero-centered { padding: 120px 0 60px; }
    .hero h2 { font-size: 2.5rem; }
    .footer-cert-bar { gap: 15px; flex-direction: column; align-items: center; }
    .hero-stats { flex-wrap: wrap; gap: 30px; }
    .hero-buttons { flex-direction: column; }
    .section-title { font-size: 2.2rem; }
    .products-grid, .services-grid, .why-cards { grid-template-columns: 1fr; }
    .process-step { flex: 0 0 100%; }
    .process-line { display: none; }
    .about-features, .form-row, .product-specs { grid-template-columns: 1fr; }
    .products-header { flex-direction: column; gap: 20px; align-items: flex-start; }
    .about-secondary { display: none; }
    .about-badge { position: static; margin-bottom: 20px; display: inline-block; }
    .footer-main { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .contact-form-wrapper { padding: 30px 20px; }
    .cta h2 { font-size: 2.2rem; }
    .page-header { padding: 140px 0 60px; }
    .page-header h1, .page-header h2 { font-size: 2.5rem; }
    .product-detail-info h3, .service-detail-content h3 { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-number { font-size: 2.5rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cert-grid { gap: 30px; }
    .whatsapp-float-label { display: none; }
    .world-map-container { padding: 0 20px; }
    .export-grid { grid-template-columns: 1fr; gap: 40px; }
    .export-image { height: 300px; }
    .export-section { padding: 80px 0; }
}