/* -------------------------------------------------------------
   PINNAS MOTO - PREMIUM DESIGN SYSTEM
   Theme: High-Tech Dark Mode with Chrome & Neon Green Accents
------------------------------------------------------------- */

/* Variables / Tokens */
:root {
    --bg-dark-deep: #070709;
    --bg-dark-card: rgba(18, 18, 22, 0.65);
    --bg-dark-input: rgba(10, 10, 12, 0.8);
    --neon-green: #00ff66;
    --neon-green-glow: rgba(0, 255, 102, 0.35);
    --neon-green-dim: #00b347;
    --silver-chrome: #e2e8f0;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-glass: rgba(255, 255, 255, 0.07);
    --border-neon: rgba(0, 255, 102, 0.15);
    --gold-star: #fbbf24;
    
    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Outfit', 'Inter', sans-serif;
    
    /* Animations */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark-deep);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    /* Carbon Grid Texture Overlay */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-deep);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 102, 0.2);
    border-radius: 4px;
    border: 2px solid var(--bg-dark-deep);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* Typography & Links */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    line-height: 1.2;
}

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

strong {
    color: var(--text-primary);
}

/* Utilities / Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-neon { color: var(--neon-green) !important; }
.glow-white { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }

/* Ambient Glow Blobs */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -2;
    opacity: 0.12;
    pointer-events: none;
    transition: var(--transition-slow);
}

.glow-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--neon-green) 0%, transparent 70%);
}

.glow-2 {
    top: 600px;
    left: -150px;
    background: radial-gradient(circle, #00d2ff 0%, transparent 70%);
    opacity: 0.08;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-neon {
    background-color: var(--neon-green);
    color: var(--bg-dark-deep);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
}

.btn-neon:hover {
    background-color: #05ff6b;
    box-shadow: 0 0 30px var(--neon-green-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-glass);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Headers / Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 7, 9, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    background: rgba(7, 7, 9, 0.95);
    border-bottom: 1px solid rgba(0, 255, 102, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--neon-green);
    background: var(--bg-dark-deep);
    box-shadow: 0 0 12px rgba(0, 255, 102, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    width: 105%;
    height: auto;
    object-fit: cover;
}

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

.brand-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--silver-chrome);
    letter-spacing: 1px;
}

.brand-subtitle {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--neon-green);
    letter-spacing: 4px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-green);
    transition: var(--transition-fast);
    box-shadow: 0 0 8px var(--neon-green);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: var(--neon-green);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--neon-green);
}

/* Mobile Drawer Nav */
.mobile-nav-drawer {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(7, 7, 9, 0.98);
    border-bottom: 1px solid var(--border-glass);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 99;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.mobile-nav-drawer.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mob-link {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.mob-link:hover {
    color: var(--neon-green);
    padding-left: 10px;
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.2);
    font-size: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--neon-green);
    margin-bottom: 24px;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--neon-green);
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--neon-green);
    animation: pulse 1.8s infinite;
    top: 0;
    left: 0;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 50%, var(--silver-chrome) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-text {
    background: linear-gradient(135deg, var(--neon-green) 40%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.1);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Visual / HUD Card */
.visual-card-wrapper {
    position: relative;
    width: 100%;
}

.visual-glow-background {
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.18) 0%, transparent 60%);
    top: -5%;
    left: -5%;
    z-index: -1;
    border-radius: 20px;
}

.visual-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: var(--transition-normal);
}

.visual-card:hover {
    border-color: rgba(0, 255, 102, 0.3);
    box-shadow: 0 35px 70px rgba(0, 255, 102, 0.08);
}

.card-header {
    background: rgba(20, 20, 25, 0.9);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots::before, .card-dots::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ef4444;
}

.card-dots::after {
    background-color: #eab308;
}

.card-dots-blue {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
    margin-left: 2px;
}

.card-title-bar {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Cockpit HUD styles */
.hud-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: rgba(10, 10, 12, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px;
}

.hud-item {
    display: flex;
    flex-direction: column;
}

.hud-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.hud-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.hud-value small {
    font-size: 0.9rem;
    color: var(--neon-green);
    margin-left: 2px;
}

.hud-sub {
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.rpm-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 8px 0;
    overflow: hidden;
}

.rpm-progress {
    width: 88%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green) 80%, #ef4444 100%);
    box-shadow: 0 0 10px var(--neon-green);
}

/* Storefront Live Feed Styles */
.live-feed-container {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.live-feed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition-normal);
}

.live-feed-container:hover .live-feed-img {
    transform: scale(1.06);
    opacity: 1;
}

.camera-status {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(7, 7, 9, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.rec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: blink-rec 1.2s infinite alternate;
}

.camera-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

@keyframes blink-rec {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

.promo-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 16px 20px;
}

.promo-icon {
    font-size: 1.8rem;
    color: var(--neon-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.3));
}

.promo-text h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.promo-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.instacard-preview {
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.insta-icon {
    font-size: 1.2rem;
    color: #e1306c;
}

.insta-stats {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.insta-stats strong {
    color: var(--text-primary);
}

/* Quick Stats Bar */
.quick-stats-bar {
    background: rgba(10, 10, 12, 0.9);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
}

.stat-label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--gold-star);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-glass);
}

/* Section Common Headers */
.section-header {
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-tagline {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-green);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 50%, var(--silver-chrome) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Filter Showcase Section */
.products-section {
    padding: 100px 0;
    position: relative;
}

.filter-tabs {
    display: inline-flex;
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid var(--border-glass);
    padding: 6px;
    border-radius: 12px;
    margin-top: 30px;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active {
    background-color: var(--neon-green);
    color: var(--bg-dark-deep);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
    min-height: 400px;
}

/* Product Cards */
.product-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 102, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 102, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 102, 0.05);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
}

.product-card[data-cat="pecas"] .card-badge {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.product-card[data-cat="acessorios"] .card-badge {
    background: rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.2);
    color: #38bdf8;
}

.product-card[data-cat="vestuarios"] .card-badge {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.product-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.product-card:hover .product-icon-wrap {
    background: rgba(0, 255, 102, 0.08);
    border-color: rgba(0, 255, 102, 0.3);
    color: var(--neon-green);
    filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.2));
}

.product-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-meta {
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-val {
    font-size: 0.85rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--neon-green);
}

.price-val.consult {
    color: var(--text-primary);
}

.card-action-btn {
    font-size: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-action-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.product-card:hover .card-action-btn {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
}

.product-card:hover .card-action-btn i {
    transform: translateX(4px);
}

.catalog-cta {
    margin-top: 48px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Quoting Tool Section */
.quote-section {
    padding: 100px 0;
    background-image: radial-gradient(circle at 100% 50%, rgba(0, 255, 102, 0.03) 0%, transparent 60%);
    position: relative;
}

.quote-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px;
}

.benefit-icon {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 255, 102, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 255, 102, 0.15);
}

.benefit-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.quote-form-container {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
}

.quote-form-container::before {
    content: '';
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 16px;
    top: -1px;
    left: -1px;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.3) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.08) 100%);
    z-index: -1;
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.input-wrapper textarea + .input-icon {
    top: 24px;
}

.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%;
    background-color: var(--bg-dark-input);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 14px 16px 14px 44px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

.quote-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
    background-color: rgba(7, 7, 9, 0.95);
}

.form-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: rgba(7, 7, 9, 0.4);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.google-maps-rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
}

.rating-val {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.review-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-fast);
}

.review-card:hover {
    border-color: rgba(255,255,255,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bg-dark-deep);
}

.avatar-letter.letter-a { background-color: #22c55e; }
.avatar-letter.letter-c { background-color: #3b82f6; }
.avatar-letter.letter-f { background-color: #ec4899; }

.reviewer-info h4 {
    font-size: 0.95rem;
}

.reviewer-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.google-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: 4px;
    color: var(--gold-star);
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.highlight-emoji {
    filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.4));
}

.google-action {
    margin-top: 40px;
}

/* Contact / Location Section */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
    margin-bottom: 40px;
}

.address-item {
    display: flex;
    gap: 20px;
}

.address-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 255, 102, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.05);
}

.address-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.address-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.routing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
}

.map-glow {
    position: absolute;
    width: 104%;
    height: 104%;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.12) 0%, transparent 60%);
    top: -2%;
    left: -2%;
    z-index: -1;
    border-radius: 16px;
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    overflow: hidden;
    /* Custom map styling to match dark theme PERFECTLY! */
    filter: invert(90%) hue-rotate(180deg) contrast(110%) grayscale(40%);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    transition: var(--transition-normal);
}

.map-wrapper:hover .map-container {
    border-color: rgba(0, 255, 102, 0.25);
    filter: invert(90%) hue-rotate(180deg) contrast(110%) grayscale(10%);
}

/* Footer styles */
.main-footer {
    background: rgba(5, 5, 7, 0.98);
    border-top: 1px solid var(--border-glass);
    padding-top: 80px;
    font-size: 0.85rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--neon-green);
    background: var(--bg-dark-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 105%;
    height: auto;
    object-fit: cover;
}

.footer-brand h3 {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    background: rgba(0, 255, 102, 0.05);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.9rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--neon-green);
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--neon-green);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 30px 0;
    color: var(--text-muted);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.back-to-top {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.back-to-top:hover {
    background-color: var(--neon-green);
    color: var(--bg-dark-deep);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

/* Floating Actions */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 90;
    transition: var(--transition-fast);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-family: var(--font-display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: badge-bounce 3s infinite;
}

@keyframes badge-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Media Queries (Responsiveness) */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .quote-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .quote-form-container {
        padding: 24px;
    }
}

/* ========================================================
   IMMERSIVE UX & VITRINE ANIMATIONS
   ======================================================== */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    display: block;
    margin-bottom: 20px;
    animation: pulseGlow 1.5s infinite alternate;
}
.loading-bar {
    width: 200px;
    height: 2px;
    background: var(--border-glass);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.loading-bar .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    transition: width 0.4s ease;
}

@keyframes pulseGlow {
    from { text-shadow: 0 0 5px var(--neon-green); }
    to { text-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green); }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.fade-in.active {
    opacity: 1;
}
.reveal.slide-up {
    transform: translateY(60px);
}
.reveal.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal.zoom-in {
    transform: scale(0.9);
}
.reveal.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Vitrine Parallax Section */
.vitrine-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    margin: 60px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%; /* Taller for parallax scroll effect */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    will-change: transform;
}
.vitrine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 7, 0.9), rgba(5, 5, 7, 0.6), rgba(5, 5, 7, 0.9));
    z-index: -1;
    backdrop-filter: blur(2px);
}
.vitrine-content {
    z-index: 1;
    max-width: 800px;
}
.vitrine-content .section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* 3D Tilt Utility */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    will-change: transform;
    transition: transform 0.1s ease-out;
}
.tilt-card-inner {
    transform: translateZ(30px); /* Lifts content off the card */
}

/* Update Product Card to fit Images */
.product-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.product-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    background: var(--surface-light);
}
.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image-container img {
    transform: scale(1.1);
}
