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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
  color: #334155;
  background: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0F172A;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

.section {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

.section__subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #DC2626;
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  color: #1E3A8A;
}

.section__description {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.8;
  max-width: 600px;
}

.section__header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}

.section__description-center {
  font-size: 1.125rem;
  color: #64748B;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: #DC2626;
  color: white;
}
.btn--primary:hover {
  background: #B91C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.nav__item--dropdown {
  position: relative;
}
@media (min-width: 1025px) {
  .nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__item--dropdown:hover .nav__arrow {
    transform: rotate(180deg);
  }
}
.nav__arrow {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
@media (max-width: 1024px) {
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: none;
    background: #F8FAFC;
    border-radius: 0;
    margin-top: 0.5rem;
    padding: 1rem 0 1rem 1.5rem;
    display: none;
  }
  .nav__item--dropdown.active .nav__dropdown {
    display: block;
  }
}
.nav__dropdown li {
  list-style: none;
}
.nav__dropdown li:not(:last-child) {
  border-bottom: 1px solid #E2E8F0;
}
@media (max-width: 1024px) {
  .nav__dropdown li:not(:last-child) {
    border-bottom: none;
  }
}
.nav__dropdown-link {
  display: block;
  padding: 1rem 2rem;
  color: #334155;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav__dropdown-link:hover {
  background: #F8FAFC;
  color: #DC2626;
  padding-left: 2.5rem;
}
@media (max-width: 1024px) {
  .nav__dropdown-link:hover {
    background: transparent;
    padding-left: 2rem;
  }
}
@media (max-width: 1024px) {
  .nav__dropdown-link {
    padding: 0.5rem 2rem;
    font-size: 0.875rem;
  }
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo img {
  height: 75px;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .nav__list {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}
.nav_link {
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  position: relative;
  padding: 0.5rem 0;
}
.nav_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #DC2626;
  transition: all 0.3s ease;
}
.nav_link:hover, .nav_link.active {
  color: #DC2626;
}
.nav_link:hover::after, .nav_link.active::after {
  width: 100%;
}
.nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  background: #1E3A8A;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}
.nav__phone svg {
  flex-shrink: 0;
}
.nav__phone:hover {
  background: #172554;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
}
@media (max-width: 640px) {
  .nav__phone {
    padding: 1rem 1.5rem;
  }
  .nav__phone span {
    display: none;
  }
}
.nav__toggle, .nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #0F172A;
}
@media (max-width: 1024px) {
  .nav__toggle, .nav__close {
    display: block;
  }
}
@media (max-width: 1024px) {
  .nav__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    padding: 4rem 2rem;
    transition: all 0.3s ease;
    z-index: 100;
  }
  .nav__menu.show {
    left: 0;
  }
}
.nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1E3A8A;
}

.logo-subtext {
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 1px;
}

.hero {
  position: relative;
  padding-top: 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(15, 23, 42, 0.6) 100%);
}
@media (max-width: 768px) {
  .hero__overlay {
    background: rgba(15, 23, 42, 0.8);
  }
}
.hero__container {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .hero__container {
    padding: 4rem 0;
  }
}
.hero__content {
  max-width: 650px;
  animation: slideInLeft 0.8s ease-out;
}
@media (max-width: 768px) {
  .hero__content {
    max-width: 100%;
    text-align: center;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(220, 38, 38, 0.8);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
}
.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.hero__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hero__buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.services-cards {
  margin-top: 80px;
  position: relative;
  z-index: 10;
  padding-bottom: 6rem;
  background: #F8FAFC;
}
@media (max-width: 1024px) {
  .services-cards {
    margin-top: 0;
    padding-top: 4rem;
  }
}
.services-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .services-cards__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.service-card__number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(30, 58, 138, 0.05);
  font-family: "Barlow", sans-serif;
}
.service-card__icon {
  margin: 0 auto 2rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__title {
  font-size: 1.75rem;
  color: #1E3A8A;
  margin-bottom: 2rem;
  font-weight: 700;
}
.service-card__list {
  text-align: left;
}
.service-card__list li {
  font-size: 0.9375rem;
  color: #334155;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: #DC2626;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #B91C1C;
  border-bottom: 1px solid #B91C1C;
}
.service-card__link:hover {
  transform: translateX(5px);
}

.about {
  background: white;
}
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 550px;
}
@media (max-width: 1024px) {
  .about__image {
    height: 400px;
  }
}
.about__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease;
}
.about__img:hover {
  transform: scale(1.05);
}
.about__content .section__description {
  margin-bottom: 2.5rem;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #334155;
  font-weight: 500;
}
.about__feature svg {
  color: #DC2626;
  flex-shrink: 0;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .about__stats {
    grid-template-columns: 1fr;
  }
}
.about__stat {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #F8FAFC;
  border-radius: 12px;
  border-left: 4px solid #DC2626;
}
.about__stat-icon {
  flex-shrink: 0;
}
.about__stat-number {
  font-size: 2.5rem;
  color: #1E3A8A;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about__stat-label {
  font-size: 0.875rem;
  color: #64748B;
}
.about__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.about__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #334155;
}
.about__contact-item svg {
  color: #1E3A8A;
  flex-shrink: 0;
}

.testimonials {
  background: linear-gradient(135deg, #1E3A8A, #172554);
}
.testimonials .section__subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.testimonials .section__title {
  color: white;
}
.testimonials .section__description-center {
  color: rgba(255, 255, 255, 0.85);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.testimonial-card__stars {
  color: #FFC107;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.testimonial-card__text {
  font-size: 1rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-card__name {
  font-size: 1.125rem;
  color: #0F172A;
  margin-bottom: 0.25rem;
}
.testimonial-card__location {
  font-size: 0.875rem;
  color: #64748B;
}

.contact {
  background: white;
}
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .contact__container {
    grid-template-columns: 1fr;
  }
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact__detail strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #1E3A8A;
}
.contact__detail a {
  color: #334155;
}
.contact__detail a:hover {
  color: #DC2626;
}
.contact__form-container {
  background: #F8FAFC;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.contact__form h3 {
  font-size: 1.5rem;
  color: #1E3A8A;
  margin-bottom: 2rem;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: #1E3A8A;
}
.contact__form textarea {
  resize: vertical;
}

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

.footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}
.footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}
.footer__section h3,
.footer__section h4 {
  color: white;
  margin-bottom: 1.5rem;
}
.footer__section p {
  line-height: 1.7;
}
.footer__section ul li {
  margin-bottom: 1rem;
}
.footer__section ul li a:hover {
  color: #DC2626;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.footer__bottom a:hover {
  color: #DC2626;
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */