@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800;900&family=JetBrains+Mono:wght@700&display=swap');

:root {
  /* Colors */
  --primary: #E11D48;
  --primary-hover: #b80035;
  --secondary: #000000;
  --surface: #FFFFFF;
  --neutral: #F4F4F5;
  --text-main: #1a1c1d;
  --text-inverse: #ffffff;
  --border-color: #000000;

  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  
  --transition-speed: 0.2s;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--neutral);
}

body {
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--neutral);
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--secondary);
  line-height: 1.1;
  text-transform: uppercase;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

.label-caps {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #000000;
  border-bottom: 3px solid var(--primary);
  transition: all var(--transition-speed) ease;
}

.top-bar {
  background: #0d0d0e;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 0.5rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
  transition: all var(--transition-speed) ease;
  overflow: hidden;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar-info span i {
  color: var(--primary);
  margin-right: 5px;
}

.top-bar-links {
  display: flex;
  gap: 1.5rem;
}

.top-bar-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.top-bar-links a:hover {
  color: var(--primary);
}

.top-bar-links a i {
  margin-right: 5px;
}

header.scrolled .top-bar {
  height: 0;
  padding: 0 5%;
  opacity: 0;
  border-bottom: none;
}

.header-inner {
  padding: 0 5%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: height var(--transition-speed) ease;
}

header.scrolled .header-inner {
  height: 58px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-inverse);
}

.logo-container img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(225,29,72,0.5));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--primary);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

nav ul li a {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0 1.25rem;
  height: 70px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-speed) ease, background var(--transition-speed) ease;
}

header.scrolled nav ul li a {
  height: 58px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: transparent;
  transition: background-color var(--transition-speed) ease;
}

nav ul li a:hover {
  color: #ffffff;
  background: rgba(225,29,72,0.08);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  background-color: var(--primary);
}

nav ul li a.active {
  color: #ffffff;
  background: rgba(225,29,72,0.12);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-inverse);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001; /* Above the overlay */
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 60px 5%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.85) 50%, rgba(225,29,72,0.3) 100%), url('https://images.unsplash.com/photo-1614162692292-7ac56d7f7f1e?w=1920&q=90') center/cover no-repeat;
  border-bottom: 2px solid var(--border-color);
}

.hero-content {
  max-width: 800px;
  background: var(--surface);
  border: 2px solid var(--border-color);
  padding: 3rem;
  box-shadow: 8px 8px 0px var(--border-color);
  animation: slideUp 0.5s ease forwards;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-main);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--border-color);
  border-radius: 0;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  letter-spacing: -0.02em;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-inverse);
  border-bottom-width: 4px;
}

.btn-primary:hover {
  background-color: var(--secondary);
  color: var(--text-inverse);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-inverse);
  border-bottom-width: 4px;
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--text-inverse);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--secondary);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.btn-tertiary:hover {
  background-color: var(--border-color);
  color: var(--text-inverse);
}

/* Sections */
section {
  padding: var(--spacing-lg) 5%;
}

.section-title {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
  border-bottom: 4px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

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

/* Cards (Services) */
.card {
  background: var(--surface);
  border: 2px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 0;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 6px 6px 0px var(--border-color);
}

.card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px var(--primary);
}

.card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  font-weight: 500;
}

/* Product Cards */
.product-card {
  background: var(--surface);
  border: 2px solid var(--border-color);
  border-radius: 0;
  transition: all 0.2s ease;
  box-shadow: 4px 4px 0px var(--border-color);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--primary);
}

.product-img-wrapper {
  background-color: var(--neutral);
  border-bottom: 2px solid var(--border-color);
  padding: 1rem;
  text-align: center;
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-weight: 500;
}

.product-price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  border-top: 2px solid var(--border-color);
  padding-top: 1rem;
  display: block;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--border-color);
  background: var(--surface);
  box-shadow: 6px 6px 0px var(--border-color);
}

.accordion {
  background-color: var(--surface);
  color: var(--secondary);
  cursor: pointer;
  padding: 1.5rem;
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--border-color);
  text-align: left;
  outline: none;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  transition: background-color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

.faq-container .accordion:last-of-type {
  border-bottom: none;
}

.accordion.active, .accordion:hover {
  background-color: var(--primary);
  color: var(--text-inverse);
}

.panel {
  padding: 0 1.5rem;
  background-color: var(--neutral);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-bottom: 2px solid var(--border-color);
}

.faq-container .accordion:last-of-type.active + .panel {
  border-bottom: none;
}

.panel.show {
  padding: 1.5rem;
}

.panel p {
  font-weight: 500;
}

/* General Layout Elements */
.img-fluid {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--border-color);
  box-shadow: 6px 6px 0px var(--border-color);
}

.map-container {
  width: 100%;
  height: 400px;
  border: 2px solid var(--border-color);
  box-shadow: 6px 6px 0px var(--border-color);
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: var(--text-inverse);
  padding: var(--spacing-lg) 5% 2rem;
  border-top: 4px solid var(--primary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
  color: var(--text-inverse);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-col p, .footer-col a {
  color: var(--neutral);
  text-decoration: none;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--text-inverse);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  border-radius: 0;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--text-inverse);
  box-shadow: 4px 4px 0px var(--border-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Badges */
.badge {
  background-color: var(--secondary);
  color: var(--text-inverse);
  padding: 4px 8px;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Inputs & Forms */
input, textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  background: var(--surface);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  border-color: var(--primary);
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

/* Mobile Overlay Menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--primary);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.3s ease;
}

.mobile-overlay.active {
  left: 0;
}

.mobile-overlay ul {
  list-style: none;
  text-align: center;
}

.mobile-overlay ul li {
  margin-bottom: 2rem;
}

.mobile-overlay ul li a {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 3rem;
  color: var(--secondary);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-overlay ul li a:hover {
  color: var(--text-inverse);
}

/* Media Queries */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.5rem; }
  .grid-2 { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .hero-content { padding: 2rem; margin: 0 1rem; }
}

@media (max-width: 768px) {
  nav { display: none; } /* Hide desktop nav */
  .mobile-menu-btn { display: block; }
  .btn { display: block; width: 100%; text-align: center; margin-bottom: 1rem; }
  .btn-secondary { margin-left: 0; }
  section { padding: var(--spacing-md) 1rem; }
  .section-title { font-size: 2rem; }
}
