/* =====================
   RESET & BASE STYLES
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, #1a0005, #000);
  color: #ffffff;
  line-height: 1.6;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 64px;
  background: linear-gradient(to right, #000, #1a0005);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo-text strong {
  font-weight: 800;
  color: #e50914;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ffffff;
}

/* =====================
   BUTTONS
===================== */
.btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-red {
  background: #e50914;
  color: #ffffff;
}

.btn-red:hover {
  background: #ff1c1c;
}

.btn-outline {
  border: 1px solid #444;
  color: #ffffff;
}

.btn-outline:hover {
  border-color: #e50914;
  color: #e50914;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  text-align: center;
  padding: 140px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.subtitle {
  color: #e50914;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #e50914;
}

.description {
  color: #aaa;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* =====================
   SERVICES SECTION
===================== */
.services {
  padding: 100px 64px;
  background-color: #111;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #e50914;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 400px));
  gap: 40px;
  justify-content: center;
  align-items: start;
}

.service-item {
  background: #222;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  background: #333;
}

.service-item h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #e50914;
}

.service-info {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, max-height 0.4s ease, transform 0.4s ease;
  font-size: 14px;
  color: #ccc;
}

.service-item:hover .service-info {
  opacity: 1;
  max-height: 200px;
  transform: translateY(0);
}

.service-icon {
  width: 60px;
  height: 60px;
  filter: brightness(80%) invert(60%);
  transition: 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px #b20000; /* red frame on hover */
}

/* =====================
   ABOUT SECTION
===================== */
.about-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 64px;
  background-color: #0d0d0d;
  color: #fff;
}

.about-left {
  flex: 1 1 500px;
  max-width: 700px;
  text-align: left; /* left-align text */
}

.about-right {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: left;
}

.section-label {
  color: #e50914;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-headline {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.highlight-red {
  color: #e50914;
}

.about-left p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.about-highlights div {
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.about-highlights strong {
  font-size: 28px;
  color: #e50914;
}

.about-subheading {
  font-size: 20px;
  margin-bottom: 20px;
  color: #e50914;
}

.about-list {
  list-style: none;
  padding: 0;
  font-size: 15px;
  color: #ddd;
}

.about-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e50914;
  font-weight: bold;
}

/* =====================
   CONTACT SECTION
===================== */
.contact {
  background-color: #0d0d0d;
  padding: 100px 64px;
  color: #fff;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact h2 {
  color: #e50914;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  border: none;
  border-radius: 6px;
  background-color: #222;
  color: #fff;
  font-size: 15px;
}

.contact-form select {
  appearance: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  padding: 14px 28px;
  font-size: 15px;
}

.contact-alt {
  margin-top: 40px;
  font-size: 15px;
  color: #ccc;
}

.contact-alt a {
  color: #e50914;
  text-decoration: none;
  font-weight: 600;
}

.email-icon {
  margin-right: 8px;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 64px;
}

.legal-links a {
  color: #A0A7B3; 
  text-decoration: underline;
  font-size: 14px;
  margin-right: 6px;
}

.legal-links a:hover {
  color: #e50914;
}

.footer-right {
  font-size: 14px;
  color: #A0A7B3;
}

/* =====================
   LEGAL / PRIVACY PAGES
===================== */
.legal-page {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.legal-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
}

.legal-block {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
}

.legal-title {
  font-size: 36px;
  color: #A0A7B3;
  margin-bottom: 10px;
}

.legal-subheading {
  font-size: 20px;
  color: #e50914;
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: left;
}

.legal-list {
  list-style-type: disc;
  color: #A0A7B3;
  padding-left: 20px;
  text-align: left;
  margin-bottom: 40px;
}

.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
}

.privacy-policy h2,
.privacy-policy h3 {
  margin-top: 1.5rem;
  font-weight: 600;
}

.privacy-policy ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.privacy-policy li {
  margin-bottom: 0.5rem;
}

.left-align {
  text-align: left;
  color: #A0A7B3;
}

.back-button {
  display: inline-block;
  margin-top: 20px;
}

/* =====================
   PROCESS SECTION
===================== */
.process {
  padding: 140px 64px;
  background: #111;
  text-align: center;
}

.process h2 {
  font-size: 32px;
  color: #e50914;
  margin-bottom: 20px;
}

.process-intro {
  max-width: 700px;
  margin: 0 auto 100px;
  color: #aaa;
  font-size: 16px;
  text-align: center; /* justify process intro */
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px;
  position: relative;
}

.process-step {
  flex: 1;
  background: linear-gradient(145deg, #1a1a1a, #242424);
  padding: 70px 30px 40px 30px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  background: #2b2b2b;
}

.process-number {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 100px;
  font-weight: 900;
  color: #8b0000;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

.process-step h3,
.process-step p {
  position: relative;
  z-index: 2;
}

.process-step h3 {
  color: #e50914;
  margin-bottom: 18px;
  font-size: 20px;
}

.process-step p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  text-align: center; /* justified description text */
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #e50914, #7a0000);
}

.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: -48px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #e50914;
}

.process-cta {
  text-align: center;
  margin-top: 60px;
}

.process-cta .btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
}

/* =====================
   MOBILE RESPONSIVENESS
===================== */
@media (max-width: 992px) {
  .hero h1 { font-size: 40px; }
  .description { font-size: 16px; }
  .hero-buttons { flex-direction: column; }

  .process-steps {
    flex-direction: column;
    gap: 80px;
  }

  .process-step:not(:last-child)::after {
    top: auto;
    bottom: -40px;
    left: 50%;
    right: auto;
    width: 2px;
    height: 40px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #e50914, #7a0000);
  }

  .process-step:not(:last-child)::before {
    top: auto;
    bottom: -48px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #e50914;
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links { gap: 16px; }

  .about-split { flex-direction: column; padding: 60px 24px; }
  .about-left, .about-right { max-width: 100%; }
  .about-highlights { justify-content: center; }

  .service-list { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .service-icon { width: 48px; height: 48px; }
  .process-step { padding: 40px 20px; }
  .process-number { font-size: 60px; right: 15px; top: 10px; }
}