/* ==========================================================================
   VL STEEL - BRUSHED STEEL & LIQUID CHROME THEME
   ========================================================================== */

:root {
    --bg-dark: #0b0d10;
    --bg-card: #14171d;
    --bg-card-hover: #1a1e26;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    
    /* Metallic Palette */
    --chrome-light: #ffffff;
    --chrome-mid: #cbd5e1;
    --chrome-dark: #64748b;
    --accent-blue: #38bdf8;
    --whatsapp-color: #25d366;
    
    --border-metal: rgba(255, 255, 255, 0.12);
    --metal-gradient: linear-gradient(135deg, #f8fafc 0%, #94a3b8 50%, #475569 100%);
    --liquid-metal: linear-gradient(90deg, #94a3b8, #ffffff, #cbd5e1, #64748b, #ffffff);
    --brushed-steel: linear-gradient(180deg, #1e242d 0%, #12151b 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Metallic Text & Effects */
.chrome-text {
    background: var(--metal-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.liquid-metal-text {
    background: var(--liquid-metal);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* TOP BAR */
.top-bar {
    background: #050608;
    border-bottom: 1px solid var(--border-metal);
    font-size: 0.85rem;
    padding: 8px 0;
    color: var(--text-muted);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-contacts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-contacts a:hover {
    color: var(--chrome-light);
}

.top-contacts i, .top-socials i {
    color: var(--accent-blue);
    margin-right: 5px;
}

.top-socials a {
    margin-left: 12px;
    font-size: 1rem;
}

/* NAVBAR */
.main-header {
    background: rgba(11, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-metal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--chrome-light);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--metal-gradient);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    padding: 100px 0 80px 0;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-metal);
}

.hero-content {
    max-width: 800px;
}

.badge-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.metallic-badge {
    background: var(--brushed-steel);
    border: 1px solid var(--border-metal);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--chrome-mid);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-chrome {
    background: var(--metal-gradient);
    color: #0d0f12;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-chrome:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--chrome-mid);
    color: var(--chrome-light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1eb854;
}

/* TRUST BANNER */
.trust-banner {
    background: #080a0c;
    border-bottom: 1px solid var(--border-metal);
    padding: 40px 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.trust-card {
    background: var(--brushed-steel);
    border: 1px solid var(--border-metal);
    padding: 25px;
    border-radius: 6px;
    text-align: center;
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.trust-card h3 {
    font-size: 1.3rem;
    color: var(--chrome-light);
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* GENERAL SECTIONS & GRIDS */
.section-padding {
    padding: 80px 0;
}

.dark-bg {
    background-color: #0e1115;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.align-center {
    align-items: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--chrome-mid);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin: 20px 0 30px 0;
}

.feature-list li {
    margin-bottom: 10px;
    color: var(--text-main);
}

.feature-list i {
    color: var(--accent-blue);
    margin-right: 8px;
}

.brushed-border-img {
    width: 100%;
    border-radius: 6px;
    border: 2px solid var(--chrome-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* PRODUCT CARDS */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-metal);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--chrome-dark);
}

.card-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-metal);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--chrome-light);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.card-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* CONTACT & MAP SECTION */
.contact-details-box {
    background: var(--brushed-steel);
    border: 1px solid var(--border-metal);
    padding: 30px;
    border-radius: 6px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-top: 3px;
}

.info-item h4 {
    font-size: 1rem;
    color: var(--chrome-light);
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.map-container {
    border: 1px solid var(--border-metal);
    border-radius: 6px;
    overflow: hidden;
}

/* BLACK FOOTER */
.black-footer {
    background: #000000;
    border-top: 1px solid var(--border-metal);
    padding: 50px 0;
    font-size: 0.85rem;
    color: #7f8c8d;
}

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

.footer-col h4 {
    color: var(--chrome-mid);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-col a {
    color: var(--chrome-light);
    text-decoration: underline;
}

.hosting-credit {
    margin-top: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0b0d10;
        border-bottom: 1px solid var(--border-metal);
        padding: 20px 0;
    }
    .nav-menu.open {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .top-bar-container {
        justify-content: center;
        text-align: center;
    }
}