@font-face {
  font-family: "PPSupplyMono";
  src: url("https://assets.codepen.io/7558/PPSupplyMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  src: url("https://fonts.cdnfonts.com/css/pp-neue-montreal") format("woff2");
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
}

@font-face {
  font-family: "CustomFont";
  src: url("../../fonts/LT_55850.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fafafa;
  font-family: "PP Neue Montreal", sans-serif;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  text-transform: uppercase;
  font-size: 12px;
  color: #1a1a1a;
}

.container {
  width: 100%;
  padding: 2rem;
  padding-bottom: 0;
  position: relative;
  min-height: 100vh;
}

.header {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  font-size: 24px;
  color: #1a1a1a;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  position: relative;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  z-index: 1;
  font-size: 12px;
  opacity: 1;
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #1a1a1a;
  z-index: -1;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #fafafa;
  mix-blend-mode: difference;
  opacity: 1;
}

/* Services Section */
.services-section {
  margin-top: 1rem;
  margin-bottom: 12rem;
}

.services-intro {
  margin-bottom: 8rem;
  max-width: 800px;
}

.services-main-title {
  font-size: 300px;
  font-weight: normal;
  line-height: 0.9;
  margin-bottom: 3rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: normal;
  font-family: "CustomFont", sans-serif;
}

.services-intro-text {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-weight: bold;
  text-transform: uppercase;
}

.services-link {
  font-size: 24px;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  color: #1a1a1a;
  display: inline-block;
}

.services-link:hover {
  color: #fafafa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.service-item {
  grid-column: span 4;
  padding: 3rem 2rem;
  border: 1px solid #1a1a1a;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  background: #fafafa;
}

.service-item-premium {
  background: #1a1a1a;
  color: #fafafa;
}

.service-content {
  flex-grow: 1;
}

.package-type {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: inherit;
}

.package-name {
  font-size: 64px;
  font-weight: normal;
  margin-bottom: 2rem;
  line-height: 0.9;
  letter-spacing: normal;
  color: inherit;
  font-family: "CustomFont", sans-serif;
}

.package-name-premium {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.package-features li {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 0.4rem;
  color: inherit;
  text-transform: none;
  font-weight: 500;
}

.package-features li::before {
  content: "– ";
}

.package-price {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 2rem;
  color: inherit;
}

.service-item-premium .package-price {
  color: #fafafa;
}

.package-button {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: 2px solid #1a1a1a;
  font-family: "PP Neue Montreal", sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.package-button:hover {
  background: #1a1a1a;
  color: #fafafa;
}

.package-button-premium {
  background: #fafafa;
  color: #1a1a1a;
  border-color: #fafafa;
}

.package-button-premium:hover {
  background: transparent;
  color: #fafafa;
  border-color: #fafafa;
}

/* CTA Section */
.cta-section {
  position: relative;
  margin-top: 12rem;
  margin-left: -2rem;
  margin-right: -2rem;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4rem 8rem;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.cta-section-title {
  position: absolute;
  top: 4rem;
  left: 4rem;
  z-index: 3;
  font-size: 120px;
  font-weight: normal;
  line-height: 0.9;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: normal;
  font-family: "CustomFont", sans-serif;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  color: #ffffff;
}

.cta-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 2.5rem;
  font-family: "PP Neue Montreal", sans-serif;
}

.cta-description {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 3rem;
  font-weight: 600;
  max-width: 650px;
}

.cta-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-link {
  font-size: 28px;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.cta-link:hover {
  opacity: 0.7;
}

.cta-link::after {
  display: none;
}

/* Contact Footer */
.contact-footer {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -2rem;
  margin-right: -2rem;
  padding: 3rem 4rem 8rem 4rem;
  background: #1a1a1a;
  color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.footer-name {
  font-size: 16px;
  font-weight: bold;
  color: #fafafa;
}

.footer-role {
  font-size: 14px;
  color: #888;
}

.footer-right {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.footer-contact {
  font-size: 16px;
  font-weight: normal;
  color: #fafafa;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-contact:hover {
  opacity: 0.7;
}

.footer-contact::after {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .services-main-title {
    font-size: 64px;
  }

  .services-intro-text {
    font-size: 16px;
  }

  .services-link {
    font-size: 18px;
  }

  .service-item {
    grid-column: span 12;
    min-height: auto;
    padding: 2.5rem 1.5rem;
  }

  .package-type {
    font-size: 14px;
  }

  .package-name {
    font-size: 48px;
  }

  .package-price {
    font-size: 36px;
  }

  .package-features li {
    font-size: 16px;
    line-height: 1.7;
  }

  .package-button {
    font-size: 12px;
    padding: 1.2rem;
  }

  .cta-section {
    height: auto;
    min-height: 70vh;
    padding: 2rem;
    justify-content: center;
  }

  .cta-section-title {
    position: relative;
    top: auto;
    left: auto;
    font-size: 48px;
    margin-bottom: 2rem;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-description {
    font-size: 14px;
  }

  .cta-links {
    gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-link {
    font-size: 18px;
  }

  .contact-footer {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
    align-items: flex-start;
  }

  .footer-left {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .footer-right {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-contact {
    font-size: 14px;
  }
}

