:root {
  --primary: #0066ff;
  --secondary: #00ccff;
  --accent: #ff6b35;
  --dark: #0a0a1a;
  --light: #f8f9fa;
  --text-light: #ffffff;
  --text-dark: #212529;
  --text-muted-dark: #b0b3b8;
  --overlay-dark: rgba(10,10,26,0.7);
  --overlay-primary: rgba(0,102,255,0.8);
  --shadow: 0 10px 40px rgba(0,0,0,0.15);
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
}
a { color: var(--secondary); text-decoration: none; }
a:hover { color: var(--primary); }
.btn-primary { background: var(--primary); border: none; border-radius: 0; padding: 12px 30px; font-weight: 600; transition: all 0.3s; }
.btn-primary:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-light { border-radius: 0; padding: 12px 30px; font-weight: 600; transition: all 0.3s; }
.btn-outline-light:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
header { background: rgba(10,10,26,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.navbar-brand { font-weight: 700; font-size: 1.8rem; letter-spacing: -1px; }
.navbar-dark .navbar-nav .nav-link { color: rgba(255,255,255,0.9); font-weight: 500; padding: 10px 15px; transition: color 0.3s; }
.navbar-dark .navbar-nav .nav-link:hover { color: var(--secondary); }
.hero-slider .carousel-item { height: 90vh; background-size: cover; background-position: center; position: relative; }
.hero-slider .carousel-item::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--overlay-dark) 30%, transparent 70%); }
.hero-slider .carousel-caption { bottom: 20%; z-index: 10; text-align: left; max-width: 600px; }
.hero-slider .carousel-caption h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-slider .carousel-caption p { font-size: 1.25rem; opacity: 0.9; }
.carousel-indicators button { width: 12px; height: 12px; border-radius: 50%; background: var(--text-light); border: 2px solid transparent; transition: all 0.3s; }
.carousel-indicators button.active { width: 40px; border-radius: 10px; background: var(--primary); }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; position: relative; display: inline-block; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin-top: 10px; }
.section-subtitle { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; }
.bg-dark-section { background: var(--dark); }
.bg-light-section { background: #111128; }
.feature-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 40px 30px; transition: all 0.4s; backdrop-filter: blur(5px); text-align: center; }
.feature-box:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,102,255,0.2); }
.feature-box i { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; }
.feature-box:hover i { color: #fff; }
.feature-box h5 { font-weight: 600; margin-bottom: 15px; }
.feature-box p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.card-product { background: #0d0d24; border: 1px solid rgba(255,255,255,0.08); border-radius: 0; overflow: hidden; transition: all 0.4s; }
.card-product:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.3); border-color: var(--primary); }
.card-product .card-img-top { height: 250px; object-fit: cover; }
.card-product .card-body { padding: 25px; }
.card-product .card-title { font-weight: 700; color: var(--text-light); }
.card-product .card-text { color: #c8c8d0; font-size: 0.95rem; }
.card-product .btn-outline-light { color: var(--text-light); border-color: rgba(255,255,255,0.5); }
.card-product .btn-outline-light:hover { color: #fff; background: var(--primary); border-color: var(--primary); }
.price-tag { font-size: 1.5rem; font-weight: 700; color: var(--secondary); }
.testimonial-card { background: rgba(255,255,255,0.05); padding: 40px; border-left: 4px solid var(--primary); position: relative; }
.testimonial-card::before { content: '\201C'; font-size: 6rem; position: absolute; top: -10px; left: 20px; color: var(--primary); opacity: 0.3; font-family: serif; }
.testimonial-card p { font-style: italic; font-size: 1.05rem; }
.client-logo { height: 40px; filter: brightness(0) invert(1); opacity: 0.5; transition: opacity 0.3s; }
.client-logo:hover { opacity: 1; }
.contact-form .form-control { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 0; padding: 15px 20px; color: #fff; }
.contact-form .form-control:focus { background: rgba(255,255,255,0.12); border-color: var(--primary); box-shadow: none; }
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.map-container { filter: grayscale(0.7) invert(0.9); height: 400px; border: 1px solid rgba(255,255,255,0.1); }
.map-container iframe { width: 100%; height: 100%; border: 0; }
footer { background: #050515; border-top: 1px solid rgba(255,255,255,0.05); }
footer h5 { font-weight: 700; margin-bottom: 20px; color: var(--secondary); }
footer a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
footer a:hover { color: var(--primary); text-decoration: none; }
.social-icon { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; font-size: 1.2rem; }
.social-icon:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10,10,26,0.98); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; z-index: 9999; transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .btn { margin-left: 15px; }
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { height: 300px; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, var(--overlay-dark)); padding: 20px; color: #fff; opacity: 0; transition: opacity 0.4s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.process-step { position: relative; padding-left: 60px; margin-bottom: 30px; }
.process-step .number { position: absolute; left: 0; top: 0; width: 40px; height: 40px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; }
.process-step h6 { font-weight: 600; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 20px; margin-bottom: 10px; }
.faq-item .question { font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-item .question i { transition: transform 0.3s; }
.faq-item .question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-item .answer { padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 15px; color: rgba(255,255,255,0.7); }
.parallax-section { background-attachment: fixed; background-size: cover; background-position: center; position: relative; }
.parallax-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay-dark); }
.parallax-section > .container { position: relative; z-index: 1; }

/* Fix contrast: text-muted on dark backgrounds */
.bg-dark-section .text-muted,
.bg-light-section .text-muted,
footer .text-muted,
.text-muted-on-dark {
  color: var(--text-muted-dark) !important;
}

/* Fix header overlap on mobile */
body {
  padding-top: 56px;
}
.hero-slider .carousel-item {
  min-height: calc(90vh - 56px);
}
@media (max-width: 768px) {
  .hero-slider .carousel-item { height: 70vh; }
  .hero-slider .carousel-caption h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 360px) {
  body {
    padding-top: 56px;
  }
  section.position-relative.overflow-hidden {
    padding-top: 56px;
  }
}
