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

body {
  font-family: "Ubuntu", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background-color 0.3s ease;
  animation: fadeIn 0.8s ease-out;
}

.header.scrolled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 26, 0.65);
  backdrop-filter: blur(5px);
  z-index: -1;
}

.header .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-weight: 400;
  margin-right: 1.5px;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  font-weight: 700;
  margin-right: 0;
}

.nav a::after {
  content: attr(data-text);
  display: block;
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
}

.nav a:hover,
.nav a.active {
  font-weight: 700;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 26, 0.95);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 4px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-content a {
  display: block;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 28px;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger span:nth-child(3) {
    bottom: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
  }

  .nav.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(5px);
    padding: 100px 20px 40px;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
  }

  .dropdown-content {
    position: static;
    display: block !important;
    background: none;
    box-shadow: none;
    padding: 10px 0 10px 20px;
    min-width: auto;
    animation: none !important;
  }

  .dropdown-content a {
    padding: 8px 0;
    font-size: 16px;
  }

  .dropdown-content a:hover {
    background: none;
    padding-left: 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero h1 .highlight {
    font-size: 2.5rem;
  }

  .hero h1 .main-text {
    display: block;
  }

  .hero p {
    font-size: 1.2rem;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../assets/background.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 0;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 400;
  color: #ffffff;
  font-family: "Ubuntu", sans-serif;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero h1 .highlight {
  display: block;
  font-size: 72px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
}

.hero h1 .main-text {
  display: inline;
}

.hero p {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
  font-family: "Open Sans", sans-serif;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ffffff;
  border-radius: 100px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-button:hover {
  background: #ffffff;
  color: #0a0a1a;
  transform: none;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero h1 .highlight {
    font-size: 2.5rem;
  }

  .hero h1 .main-text {
    display: block;
  }

  .hero p {
    font-size: 1.2rem;
  }
}

.years-service {
  padding: 80px 0;
  text-align: center;
  background-color: #ffffff;
  color: #000000;
}

.years-service h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 24px;
}

.years-service p {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  color: #333333;
}

.years-service .highlight {
  font-weight: 700;
}

.features {
  background-color: #2d1540;
  padding: 100px 0;
  color: #ffffff;
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.features-header .text-muted {
  color: #b7aec2;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.features-header .highlight {
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 32px 0;
}

.features-grid h2 {
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 60px;
  position: relative;
}

.features-grid h2:after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ffffff;
  margin: 20px auto 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
}

.feature-item img {
  width: 256px;
  height: 256px;
  margin-bottom: 24px;
}

.feature-item h3 {
  font-family: "Ubuntu", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-header {
    padding: 0 20px;
  }
}

.approach {
  padding: 100px 0;
  background-color: #ffffff;
  color: #2d1540;
}

.approach-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.text-content {
  flex: 1;
}

.approach h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #2d1540;
}

.approach p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #666666;
}

.approach .highlight {
  color: #2d1540;
  font-weight: 700;
}

.tablet-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.tablet-image img {
  max-width: 100%;
  height: auto;
  transform: perspective(1000px) rotateY(-15deg);
  border-radius: 20px;
}

@media (max-width: 992px) {
  .approach-content {
    flex-direction: column;
    gap: 60px;
  }

  .text-content {
    text-align: center;
  }

  .tablet-image img {
    transform: none;
    max-width: 80%;
  }
}

.footer {
  background-color: #2d1540;
  padding: 0;
  height: 180px;
  display: flex;
  align-items: center;
}

.footer-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 100px;
  height: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 112px;
  height: auto;
  display: block;
}

.footer-info {
  text-align: left;
  color: #b7aec2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-info p {
  margin: 2px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.footer-info .copyright {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .footer {
    height: auto;
    padding: 40px 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-info {
    text-align: center;
  }

  .footer-logo img {
    width: 112px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 21, 64, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

.modal h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  color: #2d1540;
  margin-bottom: 20px;
}

.modal p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #2d1540;
  margin-bottom: 30px;
}

.modal-button {
  display: inline-block;
  background: #2d1540;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.modal-button:hover {
  background: #3d2255;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #2d1540;
  top: 50%;
  left: 50%;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-overlay.active {
  display: flex;
}
