@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Core Design System & Tokens --- */
:root {
    /* Color Palette */
    --bg-main: #0B0C10;
    --bg-darker: #050608;
    --bg-card: rgba(20, 24, 33, 0.6);
    --bg-card-hover: rgba(28, 34, 46, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 60, 0, 0.3);
    
    --accent-red: #FF3C00;
    --accent-red-glow: rgba(255, 60, 0, 0.4);
    --accent-blue: #00E5FF;
    --accent-blue-glow: rgba(0, 229, 255, 0.4);
    
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* System Properties */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadow */
    --shadow-neon: 0 0 20px rgba(255, 60, 0, 0.15);
    --shadow-blue: 0 0 20px rgba(0, 229, 255, 0.15);
}

/* --- Resets & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
}

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

.section-padding {
    padding: 100px 0;
}

.text-gradient-red {
    background: linear-gradient(135deg, #FF6B00 0%, #FF003C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #00E5FF 0%, #0088FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Header / Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 16, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(5, 6, 8, 0.9);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-red);
    animation: pulse-red 2s infinite;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
    transition: var(--transition-smooth);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF5500 0%, #FF003C 100%);
    color: white;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 60, 0, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.btn-accent {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.btn-accent:hover {
    background: rgba(0, 229, 255, 0.2);
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 12, 16, 0.4) 0%, rgba(11, 12, 16, 0.95) 80%);
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10B981;
    animation: pulse-green 1.5s infinite;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

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

/* --- Section Styling --- */
.section-title-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 38px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    margin-top: 16px;
}

/* --- Cards & Grid --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(210deg, rgba(255, 60, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-neon);
    background: var(--bg-card-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 60, 0, 0.1);
    border: 1px solid rgba(255, 60, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.glass-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 15px;
    position: relative;
    z-index: 2;
}

/* --- Features Grid (Good Work Qualities) --- */
.qualities-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-darker) 100%);
    position: relative;
}

.quality-card {
    padding: 30px;
}

.quality-card .card-icon {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--accent-blue);
}

.quality-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--shadow-blue);
}

/* --- Location & Interactive Map --- */
.location-section {
    position: relative;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.location-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.location-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.states-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.state-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
}

.state-marker {
    width: 12px;
    height: 12px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-red);
}

.state-item h4 {
    font-size: 16px;
    font-weight: 600;
}

.state-item span {
    margin-left: auto;
    font-size: 13px;
    color: var(--accent-blue);
    background: rgba(0, 229, 255, 0.1);
    padding: 2px 8px;
    border-radius: 100px;
}

/* Interactive Search in Location */
.search-box {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: var(--border-radius-sm);
    max-width: 450px;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 16px;
    width: 100%;
    color: var(--text-primary);
    font-size: 14px;
}

.search-box button {
    padding: 10px 20px;
}

.map-visual {
    height: 450px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    background: radial-gradient(circle at center, #1b202c, #07090d);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
}

.map-overlay-pulse {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 60, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: map-ping 4s infinite linear;
}

.map-pin-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-red);
    cursor: pointer;
}

.map-pin-point::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--accent-red);
    border-radius: 50%;
    animation: pulse-ring 2s infinite ease-out;
}

.map-pin-label {
    position: absolute;
    background: rgba(5, 6, 8, 0.9);
    border: 1px solid rgba(255, 60, 0, 0.3);
    padding: 8px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transform: translateY(-40px);
    box-shadow: var(--shadow-neon);
    pointer-events: none;
}

/* --- Product Preview / Showcase --- */
.product-preview-section {
    background: var(--bg-darker);
}

.preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.preview-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-neon);
    aspect-ratio: 1;
    background: radial-gradient(circle, #232938 0%, #0c0f17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.preview-image-wrapper:hover .preview-image {
    transform: scale(1.05) rotate(2deg);
}

/* Interactive Hotspots */
.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--accent-red);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    box-shadow: 0 0 10px var(--accent-red);
    z-index: 10;
    transition: var(--transition-smooth);
}

.hotspot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
    animation: pulse-ring 1.5s infinite;
}

.hotspot-tooltip {
    position: absolute;
    background: rgba(5, 6, 8, 0.95);
    border: 1px solid rgba(255, 60, 0, 0.3);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    width: 200px;
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 11;
    pointer-events: none;
    box-shadow: var(--shadow-neon);
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hotspot-tooltip h4 {
    color: var(--accent-red);
    margin-bottom: 4px;
    font-size: 14px;
}

.preview-details h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.preview-details p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.preview-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.preview-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.preview-specs li i {
    color: var(--accent-blue);
    font-size: 18px;
}

/* --- Product Detail Layout (products.html) --- */
.product-showcase-section {
    padding-top: 140px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    aspect-ratio: 1.1;
    background: radial-gradient(circle, #232938 0%, #0c0f17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-image-container img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.thumb {
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.thumb:hover, .thumb.active {
    border-color: var(--accent-red);
    background: rgba(255, 60, 0, 0.05);
}

.thumb img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.product-info-panel h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.brand-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 60, 0, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(255, 60, 0, 0.2);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.price-display {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-display span {
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 400;
}

.quick-bullets {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.quick-bullets ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-bullets li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-bullets li i {
    color: var(--accent-red);
}

/* Tabs System for Long Form Content */
.detail-tabs-section {
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    padding-top: 60px;
}

.tab-headers {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.tab-header {
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 16px 0;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.tab-header:hover, .tab-header.active {
    color: var(--text-primary);
}

.tab-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-red);
    transition: var(--transition-smooth);
}

.tab-header.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.long-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.long-content h3 {
    font-size: 24px;
    margin: 36px 0 16px 0;
}

.long-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.long-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.long-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 16px 20px;
    font-size: 15px;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    width: 30%;
    background: rgba(255, 255, 255, 0.01);
}

.specs-table td:last-child {
    color: var(--text-secondary);
}

/* --- Shop & Quota Configurator (shop.html) --- */
.shop-section {
    padding-top: 140px;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.product-card-image {
    aspect-ratio: 1.2;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background: radial-gradient(circle, #232938 0%, #0c0f17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #00E5FF, #0088FF);
    color: #050608;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-tag.lte {
    background: linear-gradient(135deg, #FF6B00, #FF003C);
    color: white;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.product-card .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

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

.product-card-actions {
    display: flex;
    gap: 12px;
}

.product-card-actions button {
    flex: 1;
}

/* Configurator Layout */
.configurator-title-wrapper {
    margin-bottom: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.configurator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.configurator-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
}

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

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

.form-control {
    width: 100%;
    background: rgba(5, 6, 8, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-red);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 60, 0, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    user-select: none;
    transition: var(--transition-smooth);
    margin-bottom: 24px;
}

.checkbox-card:hover, .checkbox-card.checked {
    border-color: var(--accent-blue);
    background: rgba(0, 229, 255, 0.03);
}

.checkbox-card input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.checkbox-card input[type="checkbox"]:checked {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.checkbox-card input[type="checkbox"]:checked::before {
    content: '✓';
    color: #050608;
    font-size: 13px;
    font-weight: 900;
}

.checkbox-card-content h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.checkbox-card-content p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Real-time Invoice Card */
.invoice-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.invoice-preview-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.invoice-preview-card h3 span {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 100px;
    color: var(--text-muted);
}

.invoice-items {
    margin-bottom: 24px;
}

.invoice-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.invoice-item-row.main {
    color: var(--text-primary);
    font-weight: 600;
}

.invoice-total-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
    font-size: 18px;
    font-weight: 700;
}

.invoice-total-row .total-price {
    color: var(--accent-red);
}

.invoice-preview-card .btn-primary {
    width: 100%;
    margin-top: 20px;
}

.invoice-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.invoice-modal {
    background: #11141A;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .invoice-modal {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
}

/* Printable/Clean Invoice Design */
.printable-invoice {
    background: #0E1015;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    margin-bottom: 24px;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.invoice-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
}

.invoice-meta {
    text-align: right;
    font-size: 13px;
    color: var(--text-secondary);
}

.invoice-meta h2 {
    font-size: 16px;
    color: var(--accent-red);
    margin-bottom: 4px;
}

.invoice-billing-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.invoice-billing-details h4 {
    color: var(--text-primary);
    margin-bottom: 6px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 24px;
}

.invoice-table th {
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-primary);
}

.invoice-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.invoice-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 13px;
    color: var(--text-secondary);
}

.invoice-summary-row {
    display: flex;
    justify-content: space-between;
    width: 200px;
    padding: 6px 0;
}

.invoice-summary-row.total {
    border-top: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-red);
    padding-top: 10px;
}

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

.modal-actions button {
    flex: 1;
}

/* --- About & Reviews (about.html) --- */
.about-section {
    padding-top: 140px;
}

.about-story {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-story-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-image {
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-neon);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials / Reviews grid */
.reviews-section {
    background: var(--bg-darker);
}

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

.review-card {
    padding: 30px;
}

.review-stars {
    color: #FBBF24;
    font-size: 16px;
    margin-bottom: 16px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.review-user-info h4 {
    font-size: 14px;
}

.review-user-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- Contact Section (contact.html) --- */
.contact-section {
    padding-top: 140px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 60, 0, 0.1);
    border: 1px solid rgba(255, 60, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 20px;
}

.contact-info-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
    color: var(--text-secondary);
    font-size: 14px;
}

.social-links-wrapper h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
}

.social-link:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
}

/* --- Footer --- */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

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

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0E1015;
    border-left: 4px solid var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius-sm);
    padding: 16px 24px;
    color: var(--text-primary);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-notification.success {
    border-left-color: #10B981;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 60, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 60, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 60, 0, 0);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes map-ping {
    0% {
        transform: scale(0.8);
        opacity: 0.1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

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

/* --- Responsive Styling --- */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .configurator-grid {
        grid-template-columns: 1fr;
    }
    .location-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .grid-3, .grid-2, .catalog-grid {
        grid-template-columns: 1fr;
    }
    .navbar {
        height: 70px;
    }
    .nav-links {
        display: none; /* Mobile menu toggled via JS */
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0B0C10;
        border-bottom: 1px solid var(--border-color);
        padding: 30px 24px;
        gap: 20px;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .nav-cta {
        display: none; /* CTA in mobile menu */
    }
    .hero {
        text-align: center;
        justify-content: center;
    }
    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions button, .hero-actions a {
        width: 100%;
    }
    .preview-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
