* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  color: white;
  scroll-behavior: smooth;
}

body {
  background-color: #0f0f0f;
  font-family: "Arimo", sans-serif;
  color: white;
 line-height: 1.6;
 margin: 0;
}

.arimo-regular {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.iosevka-charon-mono-regular {
  font-family: "Iosevka Charon Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

p,
button,
li {
  font-family: "Arimo", sans-serif;
}

a {
  font-family: "Arimo", sans-serif;
  text-decoration: none;
}

.hero-text h1,
.services-header h2,
.why-container h2,
.contact-container h2,
.brand {
  font-family: "Arimo", sans-serif;
  letter-spacing: 0.3px;
}

section {
  padding: 90px 20px;
}

.services,
.why-us,
.contact-section {
  padding-left: 20px;
  padding-right: 20px;
}

.services-header,
.why-container,
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1c1c1c;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}

.brand {
  color: white;
  text-decoration: none;
  font-family: "Arimo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  display: block;
  color: white;
  text-decoration: none;
  font-family: "Arimo", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  background: rgba(214, 40, 40, 0.16);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  border-radius: 2px;
  background: white;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .navbar {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #1c1c1c;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    border-radius: 0;
    padding: 14px 20px;
  }
}

/* HERO SEC */

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 72px 20px 56px;
  background: linear-gradient(135deg, #0f0f0f, #161616, #221616);
}

.hero-text {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding: 0;
  animation: fadeUp 1s ease;
}

.hero-text h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 10ch;
}

.hero-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.25;
  margin-bottom: 18px;
  max-width: 18ch;
  color: #e7e7e7;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #bfbfbf;
  max-width: 620px;
  margin-bottom: 8px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-highlights span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d9d9d9;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 56px 16px 48px;
  }

  .hero-text h1 {
    max-width: none;
  }

  .hero-text h2 {
    max-width: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .call-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }
}

.call-btn {
  background: #D62828; /* brighter red for emphasis */
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(214, 40, 40, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 40, 40, 0);
  }
}

.call-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
}

.secondary-btn {
  border: 2px solid #D62828;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.secondary-btn:hover {
  background: #D62828;
  transform: translateY(-2px);
}

/* SERVICES SEC */

.services {
  padding: 80px 20px;
  background: #121212;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #1c1c1c;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid #8B0000;
  min-height: 190px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  border-left-color: #d62828;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  color: #cfcfcf;
  font-size: 0.98rem;
}

.services-header h2 {
  margin-bottom: 10px;
}

.services-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #cfcfcf;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* WHY US SEC */

.why-us {
  padding: 80px 20px;
  background: #1a1a1a;
  color: white;
}

.why-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #222222;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #8B0000;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.why-container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 30px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.why-list li {
  font-size: 1.1rem;
  color: #d6d6d6;
  background: #1c1c1c;
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 3px solid #D62828;
  text-align: left;
  position: relative;
  padding-left: 48px;
}

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #D62828;
  font-weight: bold;
}

@media (max-width: 768px) {
  .why-us {
    padding: 60px 16px;
  }

  .why-container {
    padding: 28px 20px;
  }

  .why-container h2 {
    margin-bottom: 20px;
  }

  .why-list li {
    font-size: 1rem;
    padding: 14px 16px 14px 42px;
  }

  .why-list li::before {
    left: 14px;
  }
}

/* CONTACT SEC */

.contact-section {
  background: #121212;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #1b1b1b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 40px 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: center;
}

.contact-info p {
  margin-bottom: 10px;
  color: #d1d1d1;
}

.contact-info a {
  color: white;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .contact-actions {
    align-items: stretch;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .call-btn,
  .secondary-btn {
    text-align: center;
    width: 100%;
  }
}

/* FADE-IN ELEMENTS */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* staggers */

.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.6s; }

.why-list .fade-in-item:nth-child(1) { transition-delay: 0.1s; }
.why-list .fade-in-item:nth-child(2) { transition-delay: 0.2s; }
.why-list .fade-in-item:nth-child(3) { transition-delay: 0.3s; }
.why-list .fade-in-item:nth-child(4) { transition-delay: 0.4s; }

/* MISC */

#services,
#why-us,
#contact {
  scroll-margin-top: 90px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #D62828;
  outline-offset: 3px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}