@charset "UTF-8";
:root {
  --100: #fff;
  --accent: #00aff0;
}

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

body {
  background-color: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.navbar {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
}
.navbar.navbar-scrolled {
  padding: 0.5rem 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgb(0, 0, 0) 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.navbar .navbar-brand {
  z-index: 1051;
}
.navbar .navbar-brand .brand-text {
  background: linear-gradient(135deg, #ffffff 0%, #00aff0 50%, #ffffff 100%);
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
.navbar .navbar-brand .brand-text:hover {
  animation-duration: 1s;
  transform: scale(1.05);
}
.navbar .navbar-nav .nav-item {
  margin: 0 0.25rem;
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.navbar .navbar-nav .nav-item .nav-link .nav-text {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.navbar .navbar-nav .nav-item .nav-link .nav-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 175, 240, 0.1), transparent);
  transition: all 0.5s ease;
  z-index: 1;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #00aff0;
  background-color: rgba(0, 175, 240, 0.1);
  transform: translateY(-2px);
}
.navbar .navbar-nav .nav-item .nav-link:hover .nav-hover-effect {
  left: 100%;
}
.navbar .navbar-nav .nav-item .nav-link:hover .nav-text {
  text-shadow: 0 0 10px rgba(0, 175, 240, 0.5);
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #00aff0;
  background-color: rgba(0, 175, 240, 0.15);
}
.navbar .navbar-nav .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #00aff0;
  border-radius: 1px;
}
.navbar .navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar .navbar-actions .contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.navbar .navbar-actions .contact-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00aff0;
  transition: width 0.3s ease;
}
.navbar .navbar-actions .contact-link:hover {
  color: #00aff0;
}
.navbar .navbar-actions .contact-link:hover::after {
  width: 100%;
}
.navbar .phone-btn {
  background: linear-gradient(135deg, #00aff0 0%, #0088cc 100%);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 175, 240, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .phone-btn .phone-icon {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}
.navbar .phone-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
.navbar .phone-btn:hover {
  background: linear-gradient(135deg, #0088cc 0%, #00aff0 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 175, 240, 0.4);
}
.navbar .phone-btn:hover::before {
  left: 100%;
}
.navbar .phone-btn:hover .phone-icon {
  transform: rotate(15deg) scale(1.1);
}
.navbar .phone-btn:active {
  transform: translateY(-1px) scale(1.02);
}
.navbar .navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-custom {
  display: flex;
  flex-direction: column;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  cursor: pointer;
}
.navbar .navbar-toggler .navbar-toggler-custom .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-custom .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-custom .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-custom .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgb(0, 0, 0) 100%);
    border-radius: 15px;
    margin-top: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .navbar .navbar-nav .nav-item {
    margin: 0.25rem 0;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
  }
  .navbar .navbar-nav .nav-item .nav-link:hover {
    transform: none;
    background-color: rgba(0, 175, 240, 0.15);
  }
  .navbar .navbar-actions {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar .navbar-actions .contact-link {
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
  }
  .navbar .navbar-actions .phone-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  .navbar .navbar-actions .phone-btn:hover {
    transform: none;
  }
}
.faq-section {
  padding: 120px 0;
  background-color: #000;
}
.faq-section .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .faq-section .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 576px) {
  .faq-section .section-title {
    font-size: 2.2rem;
  }
}
.faq-section .section-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  margin-bottom: 5rem;
  line-height: 1.6;
}
.faq-section .section-subtitle .text-primary {
  color: #00aff0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.faq-section .section-subtitle .text-primary:hover {
  border-bottom-color: #00aff0;
}
@media (max-width: 768px) {
  .faq-section .section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 4rem;
  }
  .faq-section .section-subtitle br {
    display: none;
  }
}
@media (max-width: 576px) {
  .faq-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}
.faq-section .faq-accordion .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}
.faq-section .faq-accordion .accordion-item:last-child {
  border-bottom: none;
}
.faq-section .faq-accordion .accordion-item:first-child .accordion-button {
  border-top: none;
}
.faq-section .faq-accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 2rem 3rem 2rem 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  box-shadow: none;
  position: relative;
}
@media (max-width: 768px) {
  .faq-section .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 1.25rem;
    padding: 1.5rem 2.5rem 1.5rem 0;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 1.125rem;
    padding: 1.25rem 2rem 1.25rem 0;
  }
}
.faq-section .faq-accordion .accordion-item .accordion-header .accordion-button:hover {
  color: #00aff0;
  background-color: transparent;
  z-index: 2;
}
.faq-section .faq-accordion .accordion-item .accordion-header .accordion-button:focus {
  background-color: transparent;
  box-shadow: none;
  border-color: transparent;
}
.faq-section .faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #00aff0;
  background-color: transparent;
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-item .accordion-header .accordion-button::after {
  content: "+";
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .faq-section .faq-accordion .accordion-item .accordion-header .accordion-button::after {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }
}
.faq-section .faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "×";
  background-color: #00aff0;
  transform: rotate(0deg);
  color: #fff;
}
.faq-section .faq-accordion .accordion-item .accordion-collapse {
  border: none;
}
.faq-section .faq-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 0 2rem 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 768px) {
  .faq-section .faq-accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0 0 1.5rem 0;
  }
}
.faq-section .faq-accordion .accordion-item .accordion-collapse .accordion-body p {
  font-size: 1.125rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .faq-section .faq-accordion .accordion-item .accordion-collapse .accordion-body p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-accordion .accordion-item .accordion-collapse .accordion-body p {
    font-size: 0.9rem;
  }
}

.footer {
  background-color: #111;
  padding: 60px 0 40px;
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 30px;
  }
}
.footer .footer-brand {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer .footer-brand {
    margin-bottom: 2.5rem;
  }
}
.footer .footer-brand .footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #00aff0;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .footer .footer-brand .footer-logo {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .footer .footer-brand .footer-logo {
    font-size: 1.5rem;
  }
}
.footer .footer-brand .footer-copyright {
  font-size: 1rem;
  color: #888;
  margin: 0;
}
@media (max-width: 576px) {
  .footer .footer-brand .footer-copyright {
    font-size: 0.9rem;
  }
}
.footer .footer-nav {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer .footer-nav {
    margin-bottom: 2.5rem;
  }
}
.footer .footer-nav .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer .footer-nav .footer-nav-list {
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .footer .footer-nav .footer-nav-list {
    gap: 1rem;
    flex-direction: column;
  }
}
.footer .footer-nav .footer-nav-list .footer-nav-item .footer-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 576px) {
  .footer .footer-nav .footer-nav-list .footer-nav-item .footer-nav-link {
    font-size: 0.9rem;
  }
}
.footer .footer-nav .footer-nav-list .footer-nav-item .footer-nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #00aff0;
  transition: width 0.3s ease;
}
.footer .footer-nav .footer-nav-list .footer-nav-item .footer-nav-link:hover {
  color: #00aff0;
}
.footer .footer-nav .footer-nav-list .footer-nav-item .footer-nav-link:hover::after {
  width: 100%;
}
.footer .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer .footer-social {
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .footer .footer-social {
    gap: 1rem;
  }
}
.footer .footer-social .social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .footer .footer-social .social-link {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 576px) {
  .footer .footer-social .social-link {
    width: 40px;
    height: 40px;
  }
}
.footer .footer-social .social-link i {
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .footer .footer-social .social-link i {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  .footer .footer-social .social-link i {
    font-size: 1rem;
  }
}
.footer .footer-social .social-link:hover {
  background-color: #00aff0;
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 175, 240, 0.3);
}
.footer .footer-social .social-link:hover i {
  transform: scale(1.1);
}
.footer .footer-social .social-link:nth-child(1):hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}
.footer .footer-social .social-link:nth-child(2):hover {
  background-color: #1877f2;
}
.footer .footer-social .social-link:nth-child(3):hover {
  background-color: #fe2c55;
}
.footer .footer-social .social-link:nth-child(4):hover {
  background-color: #000;
}

.services-hero {
  padding: 140px 0 80px;
  background-color: #000;
}
.services-hero .services-hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .services-hero .services-hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .services-hero .services-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
.services-hero .services-hero-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .services-hero .services-hero-subtitle {
    font-size: 1.125rem;
  }
  .services-hero .services-hero-subtitle br {
    display: none;
  }
}
@media (max-width: 576px) {
  .services-hero .services-hero-subtitle {
    font-size: 1rem;
  }
}

.pricing-section {
  padding: 80px 0 120px;
  background-color: #000;
}
.pricing-section .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .pricing-section .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 576px) {
  .pricing-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}
.pricing-section .section-subtitle {
  font-size: 1.125rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .pricing-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 4rem;
  }
  .pricing-section .section-subtitle br {
    display: none;
  }
}
@media (max-width: 576px) {
  .pricing-section .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 3rem;
  }
}
.pricing-section .pricing-cards {
  gap: 2rem 0;
}
@media (max-width: 768px) {
  .pricing-section .pricing-cards {
    gap: 1.5rem 0;
  }
}
.pricing-section .pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pricing-section .pricing-card:hover {
  border-color: rgba(0, 175, 240, 0.3);
  box-shadow: 0 10px 40px rgba(0, 175, 240, 0.1);
}
.pricing-section .pricing-card .pricing-card-content {
  padding: 2.5rem;
  flex: 1;
}
@media (max-width: 768px) {
  .pricing-section .pricing-card .pricing-card-content {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .pricing-section .pricing-card .pricing-card-content {
    padding: 1.5rem;
  }
}
.pricing-section .pricing-card .pricing-card-content .pricing-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .pricing-section .pricing-card .pricing-card-content .pricing-card-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 576px) {
  .pricing-section .pricing-card .pricing-card-content .pricing-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.pricing-section .pricing-card .pricing-card-content .pricing-card-description {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .pricing-section .pricing-card .pricing-card-content .pricing-card-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .pricing-section .pricing-card .pricing-card-content .pricing-card-description {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
}
.pricing-section .pricing-card .pricing-card-content .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-section .pricing-card .pricing-card-content .pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #d1d1d1;
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .pricing-section .pricing-card .pricing-card-content .pricing-features li {
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
  }
}
@media (max-width: 576px) {
  .pricing-section .pricing-card .pricing-card-content .pricing-features li {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
}
.pricing-section .pricing-card .pricing-card-content .pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00aff0;
  font-weight: bold;
  font-size: 1.2rem;
}
.pricing-section .pricing-card .pricing-card-content .pricing-features li:last-child {
  margin-bottom: 0;
}
.pricing-section .pricing-card .pricing-card-footer {
  padding: 1.5rem 2.5rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .pricing-section .pricing-card .pricing-card-footer {
    padding: 1.25rem 2rem 2rem;
  }
}
@media (max-width: 576px) {
  .pricing-section .pricing-card .pricing-card-footer {
    padding: 1rem 1.5rem 1.5rem;
  }
}
.pricing-section .pricing-card .pricing-card-footer .pricing-price {
  text-align: right;
}
.pricing-section .pricing-card .pricing-card-footer .pricing-price .price-label {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .pricing-section .pricing-card .pricing-card-footer .pricing-price .price-label {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  .pricing-section .pricing-card .pricing-card-footer .pricing-price .price-label {
    font-size: 1rem;
  }
}
.pricing-section .pricing-card .pricing-card-footer .pricing-price .price-value {
  font-size: 1.125rem;
  color: #00aff0;
  font-weight: 600;
}
@media (max-width: 768px) {
  .pricing-section .pricing-card .pricing-card-footer .pricing-price .price-value {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .pricing-section .pricing-card .pricing-card-footer .pricing-price .price-value {
    font-size: 0.9rem;
  }
}

.custom-requirements-section {
  padding: 120px 0;
  background-color: #111;
}
.custom-requirements-section .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .custom-requirements-section .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 576px) {
  .custom-requirements-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}
.custom-requirements-section .section-subtitle {
  font-size: 1.125rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .custom-requirements-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 576px) {
  .custom-requirements-section .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
}
.custom-requirements-section .cta-button-wrapper .custom-cta-button {
  background: linear-gradient(135deg, #00aff0 0%, #0088cc 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 175, 240, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .custom-requirements-section .cta-button-wrapper .custom-cta-button {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .custom-requirements-section .cta-button-wrapper .custom-cta-button {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 250px;
  }
}
.custom-requirements-section .cta-button-wrapper .custom-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
.custom-requirements-section .cta-button-wrapper .custom-cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 175, 240, 0.4), 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #0088cc 0%, #00aff0 100%);
}
.custom-requirements-section .cta-button-wrapper .custom-cta-button:hover::before {
  left: 100%;
}
.custom-requirements-section .cta-button-wrapper .custom-cta-button:active {
  transform: translateY(-2px) scale(1.02);
}

.consultation-form-section {
  padding: 140px 0 80px;
  background-color: #000;
  min-height: 100vh;
}
.consultation-form-section .form-header {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .consultation-form-section .form-header {
    margin-bottom: 3rem;
  }
}
.consultation-form-section .form-header .form-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #00aff0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .consultation-form-section .form-header .form-title {
    font-size: 2.8rem;
  }
  .consultation-form-section .form-header .form-title br {
    display: none;
  }
}
@media (max-width: 576px) {
  .consultation-form-section .form-header .form-title {
    font-size: 2.2rem;
  }
}
.consultation-form-section .multi-step-form {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .consultation-form-section .multi-step-form {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .consultation-form-section .multi-step-form {
    padding: 1.5rem;
  }
}
.consultation-form-section .form-progress {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .consultation-form-section .form-progress {
    margin-bottom: 2rem;
  }
}
.consultation-form-section .form-progress .progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .consultation-form-section .form-progress .progress-steps {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
}
.consultation-form-section .form-progress .progress-steps .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .consultation-form-section .form-progress .progress-steps .progress-step {
    flex: 1;
    min-width: 80px;
  }
}
@media (max-width: 576px) {
  .consultation-form-section .form-progress .progress-steps .progress-step .step-label {
    font-size: 0.75rem;
    text-align: center;
  }
}
.consultation-form-section .form-progress .progress-steps .progress-step.active, .consultation-form-section .form-progress .progress-steps .progress-step.completed {
  opacity: 1;
}
.consultation-form-section .form-progress .progress-steps .progress-step.active .step-number, .consultation-form-section .form-progress .progress-steps .progress-step.completed .step-number {
  background-color: #00aff0;
  color: #fff;
}
.consultation-form-section .form-progress .progress-steps .progress-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
@media (max-width: 576px) {
  .consultation-form-section .form-progress .progress-steps .progress-step .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}
.consultation-form-section .form-progress .progress-steps .progress-step .step-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-weight: 500;
}
@media (max-width: 576px) {
  .consultation-form-section .form-progress .progress-steps .progress-step .step-label {
    font-size: 0.75rem;
  }
}
.consultation-form-section .form-progress .progress-bar {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.consultation-form-section .form-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00aff0 0%, #0088cc 100%);
  border-radius: 2px;
  width: 20%;
  transition: width 0.4s ease;
}
.consultation-form-section .form-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.consultation-form-section .form-step.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.consultation-form-section .form-step .step-content {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .consultation-form-section .form-step .step-content {
    margin-bottom: 2rem;
  }
}
.consultation-form-section .form-step .step-content .step-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .consultation-form-section .form-step .step-content .step-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .consultation-form-section .form-step .step-content .step-title {
    font-size: 1.5rem;
  }
}
.consultation-form-section .form-step .step-content .step-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .consultation-form-section .form-step .step-content .step-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .consultation-form-section .form-step .step-content .step-description {
    font-size: 0.9rem;
  }
}
.consultation-form-section .form-step .form-group {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .consultation-form-section .form-step .form-group {
    margin-bottom: 1.5rem;
  }
}
.consultation-form-section .form-step .form-group label {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .consultation-form-section .form-step .form-group label {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .consultation-form-section .form-step .form-group label {
    font-size: 0.9rem;
  }
}
.consultation-form-section .form-step .form-group .form-control {
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  width: 100%;
}
@media (max-width: 576px) {
  .consultation-form-section .form-step .form-group .form-control {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
}
.consultation-form-section .form-step .form-group .form-control:focus {
  outline: none;
  border-color: #00aff0;
  box-shadow: 0 0 0 3px rgba(0, 175, 240, 0.1);
  background-color: rgb(255, 255, 255);
}
.consultation-form-section .form-step .form-group .form-control::-moz-placeholder {
  color: #999;
}
.consultation-form-section .form-step .form-group .form-control::placeholder {
  color: #999;
}
.consultation-form-section .form-step .form-group .form-control.is-invalid {
  border-color: #dc3545;
}
.consultation-form-section .form-step .form-group .form-control.is-valid {
  border-color: #28a745;
}
.consultation-form-section .form-step .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
@media (max-width: 576px) {
  .consultation-form-section .form-step .form-group textarea.form-control {
    min-height: 100px;
  }
}
.consultation-form-section .form-step .form-group select.form-control {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}
.consultation-form-section .form-step .form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 576px) {
  .consultation-form-section .form-step .form-navigation {
    flex-direction: column;
    gap: 1rem;
  }
}
.consultation-form-section .form-step .form-navigation .btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 576px) {
  .consultation-form-section .form-step .form-navigation .btn {
    width: 100%;
    max-width: 200px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
.consultation-form-section .form-step .form-navigation .btn.btn-primary {
  background: linear-gradient(135deg, #00aff0 0%, #0088cc 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 175, 240, 0.3);
}
.consultation-form-section .form-step .form-navigation .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 175, 240, 0.4);
  background: linear-gradient(135deg, #0088cc 0%, #00aff0 100%);
}
.consultation-form-section .form-step .form-navigation .btn.btn-secondary {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.consultation-form-section .form-step .form-navigation .btn.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.consultation-form-section .form-step .form-navigation .btn.btn-submit {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}
.consultation-form-section .form-step .form-navigation .btn.btn-submit:hover {
  background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}
.consultation-form-section .error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}
.consultation-form-section .error-message.show {
  display: block;
}
.consultation-form-section .success-message {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  color: #28a745;
  text-align: center;
  display: none;
}
.consultation-form-section .success-message.show {
  display: block;
}

.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero .about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/about-hero.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.about-hero .about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}
.about-hero .container {
  position: relative;
  z-index: 3;
}
.about-hero .about-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}
.about-hero .about-hero-content .about-hero-title {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.about-hero .about-hero-content .about-hero-title .text-primary {
  color: #00aff0;
}
@media (max-width: 768px) {
  .about-hero .about-hero-content .about-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 576px) {
  .about-hero .about-hero-content .about-hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
}
.about-hero .about-hero-content .about-hero-motto {
  font-size: 1.75rem;
  color: #00aff0;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.about-hero .about-hero-content .about-hero-motto em {
  font-style: italic;
}
@media (max-width: 768px) {
  .about-hero .about-hero-content .about-hero-motto {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .about-hero .about-hero-content .about-hero-motto {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.about-hero .about-hero-content .about-hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .about-hero .about-hero-content .about-hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}
@media (max-width: 576px) {
  .about-hero .about-hero-content .about-hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.core-values-section {
  padding: 120px 0;
  background-color: #000;
}
.core-values-section .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5rem;
  letter-spacing: -0.02em;
}
.core-values-section .section-title .text-primary {
  color: #00aff0;
}
@media (max-width: 768px) {
  .core-values-section .section-title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 576px) {
  .core-values-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
}
.core-values-section .values-grid {
  gap: 3rem 0;
}
@media (max-width: 768px) {
  .core-values-section .values-grid {
    gap: 2rem 0;
  }
}
.core-values-section .value-card {
  text-align: center;
  padding: 3rem 2rem;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .core-values-section .value-card {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .core-values-section .value-card {
    padding: 2rem 1rem;
  }
}
.core-values-section .value-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(0, 175, 240, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(0, 175, 240, 0.2);
  box-shadow: 0 10px 40px rgba(0, 175, 240, 0.1);
}
.core-values-section .value-card .value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(0, 175, 240, 0.1) 0%, rgba(0, 175, 240, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .core-values-section .value-card .value-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
  }
}
@media (max-width: 576px) {
  .core-values-section .value-card .value-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }
}
.core-values-section .value-card .value-icon i {
  font-size: 2rem;
  color: #00aff0;
}
@media (max-width: 768px) {
  .core-values-section .value-card .value-icon i {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .core-values-section .value-card .value-icon i {
    font-size: 1.5rem;
  }
}
.core-values-section .value-card .value-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .core-values-section .value-card .value-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 576px) {
  .core-values-section .value-card .value-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.core-values-section .value-card .value-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .core-values-section .value-card .value-description {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .core-values-section .value-card .value-description {
    font-size: 0.9rem;
  }
}
.core-values-section .value-card:hover .value-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(0, 175, 240, 0.2) 0%, rgba(0, 175, 240, 0.1) 100%);
}

.lifestyle-gallery-section {
  padding: 80px 0;
  background-color: #000;
}
.lifestyle-gallery-section .gallery-grid {
  display: flex;
  gap: 1rem;
  height: 600px;
}
@media (max-width: 768px) {
  .lifestyle-gallery-section .gallery-grid {
    flex-direction: column;
    height: auto;
    gap: 1rem;
  }
}
.lifestyle-gallery-section .gallery-grid .gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.lifestyle-gallery-section .gallery-grid .gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.lifestyle-gallery-section .gallery-grid .gallery-item .gallery-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.lifestyle-gallery-section .gallery-grid .gallery-item:hover .gallery-image {
  transform: scale(1.05);
}
.lifestyle-gallery-section .gallery-grid .large-item {
  flex: 2;
}
@media (max-width: 768px) {
  .lifestyle-gallery-section .gallery-grid .large-item {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .lifestyle-gallery-section .gallery-grid .large-item {
    height: 300px;
  }
}
.lifestyle-gallery-section .gallery-grid .gallery-small-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .lifestyle-gallery-section .gallery-grid .gallery-small-container {
    flex-direction: row;
  }
}
@media (max-width: 576px) {
  .lifestyle-gallery-section .gallery-grid .gallery-small-container {
    flex-direction: column;
  }
}
.lifestyle-gallery-section .gallery-grid .gallery-small-container .small-item {
  flex: 1;
}
@media (max-width: 768px) and (min-width: 577px) {
  .lifestyle-gallery-section .gallery-grid .gallery-small-container .small-item {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .lifestyle-gallery-section .gallery-grid .gallery-small-container .small-item {
    height: 200px;
  }
}

@media (max-width: 991px) {
  .core-values-section .values-grid .value-card {
    margin-bottom: 2rem;
  }
}
.contact-section {
  padding: 140px 0 80px;
  background-color: #000;
  min-height: 100vh;
}
.contact-section .contact-header {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .contact-section .contact-header {
    margin-bottom: 4rem;
  }
}
.contact-section .contact-header .contact-title {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .contact-section .contact-header .contact-title {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-header .contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
.contact-section .contact-header .contact-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-section .contact-header .contact-subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-header .contact-subtitle {
    font-size: 1rem;
  }
}
.contact-section .contact-content {
  align-items: flex-start;
}
.contact-section .contact-info .contact-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-info-title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-info .contact-info-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}
.contact-section .contact-info .contact-info-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-info-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-info .contact-info-description {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
}
.contact-section .contact-info .contact-methods {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-methods {
    margin-bottom: 2.5rem;
  }
}
.contact-section .contact-info .contact-methods .contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-methods .contact-method {
    margin-bottom: 2rem;
  }
}
.contact-section .contact-info .contact-methods .contact-method:last-child {
  margin-bottom: 0;
}
.contact-section .contact-info .contact-methods .contact-method .contact-method-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, #00aff0 0%, #0088cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-methods .contact-method .contact-method-icon {
    width: 50px;
    height: 50px;
    margin-right: 1.25rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-info .contact-methods .contact-method .contact-method-icon {
    width: 45px;
    height: 45px;
    margin-right: 1rem;
  }
}
.contact-section .contact-info .contact-methods .contact-method .contact-method-icon i {
  font-size: 1.5rem;
  color: #fff;
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-methods .contact-method .contact-method-icon i {
    font-size: 1.25rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-info .contact-methods .contact-method .contact-method-icon i {
    font-size: 1.125rem;
  }
}
.contact-section .contact-info .contact-methods .contact-method .contact-method-content {
  flex: 1;
}
.contact-section .contact-info .contact-methods .contact-method .contact-method-content .contact-method-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-methods .contact-method .contact-method-content .contact-method-title {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-info .contact-methods .contact-method .contact-method-content .contact-method-title {
    font-size: 1rem;
  }
}
.contact-section .contact-info .contact-methods .contact-method .contact-method-content .contact-method-text {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-methods .contact-method .contact-method-content .contact-method-text {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-info .contact-methods .contact-method .contact-method-content .contact-method-text {
    font-size: 0.9rem;
  }
}
.contact-section .contact-info .contact-methods .contact-method .contact-method-content .contact-method-text a {
  color: #00aff0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-section .contact-info .contact-methods .contact-method .contact-method-content .contact-method-text a:hover {
  color: #3ecbff;
}
.contact-section .contact-info .contact-methods .contact-method .contact-method-content .contact-method-note {
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 576px) {
  .contact-section .contact-info .contact-methods .contact-method .contact-method-content .contact-method-note {
    font-size: 0.8rem;
  }
}
.contact-section .contact-info .contact-social .contact-social-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-social .contact-social-title {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-info .contact-social .contact-social-title {
    font-size: 1rem;
  }
}
.contact-section .contact-info .contact-social .contact-social-links {
  display: flex;
  gap: 1rem;
}
.contact-section .contact-info .contact-social .contact-social-links .contact-social-link {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-social .contact-social-links .contact-social-link {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-info .contact-social .contact-social-links .contact-social-link {
    width: 40px;
    height: 40px;
  }
}
.contact-section .contact-info .contact-social .contact-social-links .contact-social-link i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .contact-section .contact-info .contact-social .contact-social-links .contact-social-link i {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-info .contact-social .contact-social-links .contact-social-link i {
    font-size: 1rem;
  }
}
.contact-section .contact-info .contact-social .contact-social-links .contact-social-link:hover {
  background-color: #00aff0;
  color: #fff;
  transform: translateY(-3px);
  border-color: #00aff0;
  box-shadow: 0 5px 15px rgba(0, 175, 240, 0.3);
}
.contact-section .contact-info .contact-social .contact-social-links .contact-social-link:hover i {
  transform: scale(1.1);
}
.contact-section .contact-form-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .contact-section .contact-form-container {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-form-container {
    padding: 1.5rem;
  }
}
.contact-section .contact-form-container .contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact-section .contact-form-container .contact-form-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-form-container .contact-form-title {
    font-size: 1.5rem;
  }
}
.contact-section .contact-form-container .contact-form-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-section .contact-form-container .contact-form-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-form-container .contact-form-description {
    font-size: 0.9rem;
  }
}
.contact-section .contact-form-container .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-section .contact-form-container .contact-form .form-group.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-section .contact-form-container .contact-form .form-group.form-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  margin-top: 0.125rem;
  accent-color: #00aff0;
  flex-shrink: 0;
}
.contact-section .contact-form-container .contact-form .form-group.form-checkbox label {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 0;
}
.contact-section .contact-form-container .contact-form .form-group.form-checkbox label a {
  color: #00aff0;
  text-decoration: none;
}
.contact-section .contact-form-container .contact-form .form-group.form-checkbox label a:hover {
  text-decoration: underline;
}
.contact-section .contact-form-container .contact-form .form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .contact-section .contact-form-container .contact-form .form-group label {
    font-size: 0.9rem;
  }
}
.contact-section .contact-form-container .contact-form .form-group .form-control {
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  width: 100%;
}
@media (max-width: 576px) {
  .contact-section .contact-form-container .contact-form .form-group .form-control {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }
}
.contact-section .contact-form-container .contact-form .form-group .form-control:focus {
  outline: none;
  border-color: #00aff0;
  box-shadow: 0 0 0 3px rgba(0, 175, 240, 0.1);
  background-color: rgb(255, 255, 255);
}
.contact-section .contact-form-container .contact-form .form-group .form-control::-moz-placeholder {
  color: #999;
}
.contact-section .contact-form-container .contact-form .form-group .form-control::placeholder {
  color: #999;
}
.contact-section .contact-form-container .contact-form .form-group .form-control.is-invalid {
  border-color: #dc3545;
}
.contact-section .contact-form-container .contact-form .form-group .form-control.is-valid {
  border-color: #28a745;
}
.contact-section .contact-form-container .contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
@media (max-width: 576px) {
  .contact-section .contact-form-container .contact-form .form-group textarea.form-control {
    min-height: 100px;
  }
}
.contact-section .contact-form-container .contact-form .form-group select.form-control {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}
.contact-section .contact-form-container .contact-form .btn-submit {
  background: linear-gradient(135deg, #00aff0 0%, #0088cc 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 175, 240, 0.3);
  width: 100%;
  max-width: 300px;
}
@media (max-width: 576px) {
  .contact-section .contact-form-container .contact-form .btn-submit {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    max-width: 100%;
  }
}
.contact-section .contact-form-container .contact-form .btn-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #0088cc 0%, #00aff0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 175, 240, 0.4);
}
.contact-section .contact-form-container .contact-form .btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.contact-section .contact-form-container .contact-message {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}
.contact-section .contact-form-container .contact-message i {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact-section .contact-form-container .contact-message h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-section .contact-form-container .contact-message p {
  font-size: 1rem;
  margin: 0;
}
.contact-section .contact-form-container .contact-message.contact-success {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
  color: #28a745;
}
.contact-section .contact-form-container .contact-message.contact-error {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
}
.contact-section .error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}
.contact-section .error-message.show {
  display: block;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #000;
  padding: 120px 0 60px;
}
.hero-section .hero-content {
  padding-right: 2rem;
}
.hero-section .hero-content .hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 1200px) {
  .hero-section .hero-content .hero-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-title {
    font-size: 2.2rem;
  }
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  margin-bottom: 3rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 90%;
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
}
.hero-section .hero-content .hero-buttons {
  display: flex;
  gap: 1rem;
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.hero-section .hero-content .hero-buttons .btn {
  padding: 0.875rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.hero-section .hero-content .hero-buttons .btn.btn-primary {
  background-color: #00aff0;
  color: #fff;
}
.hero-section .hero-content .hero-buttons .btn.btn-primary:hover {
  background-color: #0099d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 175, 240, 0.3);
}
.hero-section .hero-content .hero-buttons .btn.btn-outline-secondary {
  border: 2px solid #666;
  color: #fff;
  background-color: transparent;
}
.hero-section .hero-content .hero-buttons .btn.btn-outline-secondary:hover {
  background-color: #666;
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-buttons .btn {
    padding: 0.75rem 2rem;
    width: 100%;
    text-align: center;
  }
}
.hero-section .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 175, 240, 0.1));
}

@media (max-width: 991px) {
  .hero-section .hero-content {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 0;
  }
}
.stats-section {
  padding: 120px 0;
  background-color: #000;
  position: relative;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(0, 175, 240, 0.03) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(0, 175, 240, 0.02) 0%, transparent 50%);
  z-index: 1;
}
.stats-section .container {
  position: relative;
  z-index: 2;
}
.stats-section .section-subtitle {
  display: inline-block;
  color: #00aff0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}
.stats-section .section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00aff0, transparent);
}
.stats-section .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .stats-section .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .stats-section .section-title {
    font-size: 2rem;
  }
}
.stats-section .section-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 4rem;
}
@media (max-width: 768px) {
  .stats-section .section-description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  .stats-section .section-description br {
    display: none;
  }
}
.stats-section .stats-cards-container {
  margin-top: 4rem;
}
.stats-section .stats-card {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats-section .stats-card .stats-number {
  font-size: 4rem;
  font-weight: 900;
  color: #00aff0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .stats-section .stats-card .stats-number {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .stats-section .stats-card .stats-number {
    font-size: 2.5rem;
  }
}
.stats-section .stats-card .stats-number .counter {
  display: inline-block;
}
.stats-section .stats-card .stats-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .stats-section .stats-card .stats-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 576px) {
  .stats-section .stats-card .stats-title {
    font-size: 1.125rem;
  }
  .stats-section .stats-card .stats-title br {
    display: none;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.why-choose-us-section {
  padding: 120px 0;
  background-color: #000;
  position: relative;
}
.why-choose-us-section .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5rem;
  letter-spacing: -0.02em;
}
.why-choose-us-section .section-title .text-primary {
  color: #00aff0;
}
@media (max-width: 768px) {
  .why-choose-us-section .section-title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 576px) {
  .why-choose-us-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
}
.why-choose-us-section .services-grid {
  gap: 3rem 0;
}
@media (max-width: 768px) {
  .why-choose-us-section .services-grid {
    gap: 2rem 0;
  }
}
.why-choose-us-section .service-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}
@media (max-width: 768px) {
  .why-choose-us-section .service-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .why-choose-us-section .service-card {
    padding: 1.5rem;
    gap: 1rem;
  }
}
.why-choose-us-section .service-card .service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00aff0 0%, #0088cc 100%);
  border-radius: 16px;
}
@media (max-width: 768px) {
  .why-choose-us-section .service-card .service-icon {
    width: 50px;
    height: 50px;
  }
}
.why-choose-us-section .service-card .service-icon i {
  font-size: 28px;
  color: #fff;
}
@media (max-width: 768px) {
  .why-choose-us-section .service-card .service-icon i {
    font-size: 24px;
  }
}
.why-choose-us-section .service-card .service-content {
  flex: 1;
}
.why-choose-us-section .service-card .service-content .service-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .why-choose-us-section .service-card .service-content .service-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .why-choose-us-section .service-card .service-content .service-title {
    font-size: 1.25rem;
  }
}
.why-choose-us-section .service-card .service-content .service-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .why-choose-us-section .service-card .service-content .service-description {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .why-choose-us-section .service-card .service-content .service-description {
    font-size: 0.9rem;
  }
}

.testimonials-section {
  padding: 120px 0;
  background-color: #000;
  position: relative;
}
.testimonials-section .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.testimonials-section .section-title .text-primary {
  color: #00aff0;
}
@media (max-width: 768px) {
  .testimonials-section .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 576px) {
  .testimonials-section .section-title {
    font-size: 2.2rem;
  }
}
.testimonials-section .section-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .testimonials-section .section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 576px) {
  .testimonials-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}
.testimonials-section .testimonials-grid {
  gap: 2rem 0;
}
@media (max-width: 768px) {
  .testimonials-section .testimonials-grid {
    gap: 1.5rem 0;
  }
}
.testimonials-section .testimonial-card {
  background: linear-gradient(135deg, #00aff0 0%, #0088cc 100%);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 175, 240, 0.2);
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .testimonials-section .testimonial-card {
    padding: 1.5rem;
  }
}
.testimonials-section .testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}
.testimonials-section .testimonial-card .testimonial-stars {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}
.testimonials-section .testimonial-card .testimonial-stars i {
  color: #1a1a1a;
  font-size: 1.125rem;
  margin-right: 0.25rem;
}
@media (max-width: 576px) {
  .testimonials-section .testimonial-card .testimonial-stars i {
    font-size: 1rem;
  }
}
.testimonials-section .testimonial-card .testimonial-quote {
  position: relative;
  z-index: 2;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card .testimonial-quote {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .testimonials-section .testimonial-card .testimonial-quote {
    font-size: 0.9rem;
  }
}
.testimonials-section .testimonial-card .testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(26, 26, 26, 0.2);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: serif;
  line-height: 1;
}
.testimonials-section .testimonial-card .testimonial-author {
  position: relative;
  z-index: 2;
}
.testimonials-section .testimonial-card .testimonial-author .author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}
@media (max-width: 576px) {
  .testimonials-section .testimonial-card .testimonial-author .author-name {
    font-size: 1.125rem;
  }
}
.testimonials-section .testimonial-card .testimonial-author .author-title {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.8);
  margin: 0;
}
@media (max-width: 576px) {
  .testimonials-section .testimonial-card .testimonial-author .author-title {
    font-size: 0.9rem;
  }
}

.what-you-get-section {
  padding: 120px 0;
  background-color: #000;
}
.what-you-get-section .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .what-you-get-section .section-title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 576px) {
  .what-you-get-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
}
.what-you-get-section .benefits-grid {
  gap: 3rem 0;
}
@media (max-width: 768px) {
  .what-you-get-section .benefits-grid {
    gap: 2rem 0;
  }
}
.what-you-get-section .benefit-card {
  text-align: center;
  padding: 3rem 2rem;
  height: 100%;
}
@media (max-width: 768px) {
  .what-you-get-section .benefit-card {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .what-you-get-section .benefit-card {
    padding: 2rem 1rem;
  }
}
.what-you-get-section .benefit-card .benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .what-you-get-section .benefit-card .benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
  }
}
@media (max-width: 576px) {
  .what-you-get-section .benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }
}
.what-you-get-section .benefit-card .benefit-icon i {
  font-size: 2rem;
  color: #000;
}
@media (max-width: 768px) {
  .what-you-get-section .benefit-card .benefit-icon i {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .what-you-get-section .benefit-card .benefit-icon i {
    font-size: 1.5rem;
  }
}
.what-you-get-section .benefit-card .benefit-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .what-you-get-section .benefit-card .benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 576px) {
  .what-you-get-section .benefit-card .benefit-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.what-you-get-section .benefit-card .benefit-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .what-you-get-section .benefit-card .benefit-description {
    font-size: 1rem;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .what-you-get-section .benefit-card .benefit-description {
    font-size: 0.9rem;
  }
}

.cta-section {
  position: relative;
  padding: 120px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 100px 0;
    min-height: 400px;
  }
}
@media (max-width: 576px) {
  .cta-section {
    padding: 80px 0;
    min-height: 350px;
  }
}
.cta-section .cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/onlyfans.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.cta-section .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}
.cta-section .container {
  position: relative;
  z-index: 3;
}
.cta-section .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.cta-section .cta-content .cta-title {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .cta-section .cta-content .cta-title {
    font-size: 3rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 576px) {
  .cta-section .cta-content .cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
.cta-section .cta-content .cta-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .cta-section .cta-content .cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 576px) {
  .cta-section .cta-content .cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}
.cta-section .cta-content .cta-button-wrapper .cta-button {
  background: linear-gradient(135deg, #00aff0 0%, #0088cc 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 175, 240, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-section .cta-content .cta-button-wrapper .cta-button {
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  .cta-section .cta-content .cta-button-wrapper .cta-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
  }
}
.cta-section .cta-content .cta-button-wrapper .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
.cta-section .cta-content .cta-button-wrapper .cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 175, 240, 0.4), 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #0088cc 0%, #00aff0 100%);
}
.cta-section .cta-content .cta-button-wrapper .cta-button:hover::before {
  left: 100%;
}
.cta-section .cta-content .cta-button-wrapper .cta-button:active {
  transform: translateY(-2px) scale(1.02);
}/*# sourceMappingURL=styles.css.map */