@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
}

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

ul {
  list-style: none;
}

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

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

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

.highlight {
  color: #FF6B35;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: #FF6B35;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: rgb(255, 69.6336633663, 2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid #FF6B35;
}
.btn-outline:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #FFFFFF;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}
.header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo img {
  height: 40px;
}
.header .nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .nav-links .nav-link {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.header .nav-links .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B35;
  transition: all 0.3s ease;
}
.header .nav-links .nav-link:hover {
  color: #FF6B35;
}
.header .nav-links .nav-link:hover::after {
  width: 100%;
}
.header .nav-links .nav-link.active {
  color: #FF6B35;
}
.header .nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.header .login-menu-wrapper {
  position: relative;
}
.header .login-menu-wrapper .login-btn {
  z-index: 1001;
}
.header .login-menu-wrapper .login-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  border: 1.5px solid #FF6B35;
  border-radius: 8px;
  min-width: 180px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1002;
}
.header .login-menu-wrapper .login-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item {
  display: block;
  padding: 12px 18px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:last-child {
  border-bottom: none;
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:hover {
  background: rgba(45, 111, 255, 0.1);
  color: #FF6B35;
  padding-left: 22px;
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:first-child {
  border-radius: 6px 6px 0 0;
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:last-child {
  border-radius: 0 0 6px 6px;
}
.header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1003;
}
.header .mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.header .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 991px) {
  .header .mobile-menu-toggle {
    display: flex;
  }
  .header .nav-actions {
    margin-left: auto;
    margin-right: 15px;
  }
  .header .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1002;
  }
  .header .nav-links.active {
    right: 0;
  }
  .header .nav-links .nav-link {
    font-size: 18px;
  }
}

.header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.footer {
  background: #000000;
  color: #FFFFFF;
  padding: 40px 0 20px;
}
.footer .container {
  position: relative;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer .footer-brand .footer-logo {
  display: inline-block;
}
.footer .footer-brand .footer-logo img {
  width: auto;
}
.footer .footer-content-wrapper {
  display: flex;
  gap: 140px;
}
.footer .footer-links-group {
  display: flex;
  gap: 100px;
}
.footer .footer-col h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #FFFFFF;
}
.footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer .footer-col ul li a {
  font-size: 15px;
  color: #999999;
  transition: all 0.3s ease;
}
.footer .footer-col ul li a:hover {
  color: #FF6B35;
}
.footer .footer-col.contact-col ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer .footer-col.contact-col ul li img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-col.contact-col ul li a {
  color: #999999;
  font-size: 15px;
}
.footer .footer-col.contact-col ul li a:hover {
  color: #FF6B35;
}
.footer .footer-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 160px;
}
.footer .footer-actions .btn {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer .footer-actions .btn.btn-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.footer .footer-actions .btn.btn-login:hover {
  border-color: #FF6B35;
  color: #FF6B35;
}
.footer .footer-actions .btn.btn-touch {
  background: #FF6B35;
  border: 1px solid #FF6B35;
  color: #FFFFFF;
}
.footer .footer-actions .btn.btn-touch:hover {
  background: rgb(255, 69.6336633663, 2);
  border-color: rgb(255, 69.6336633663, 2);
}
.footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  margin-bottom: 20px;
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-bottom p {
  font-size: 14px;
  color: #666666;
}
.footer .footer-bottom .footer-policy-links {
  display: flex;
  gap: 40px;
}
.footer .footer-bottom .footer-policy-links a {
  font-size: 14px;
  color: #666666;
  transition: all 0.3s ease;
}
.footer .footer-bottom .footer-policy-links a:hover {
  color: #FF6B35;
}
@media (max-width: 992px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .footer .footer-content-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 40px;
  }
  .footer .footer-links-group {
    width: 100%;
    justify-content: space-between;
    gap: 40px;
  }
  .footer .footer-actions {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  .footer .footer-actions .btn {
    width: 48%;
  }
}
@media (max-width: 700px) {
  .footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .footer .footer-links-group {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  .footer .footer-col ul {
    align-items: center;
    gap: 10px;
  }
  .footer .footer-col.contact-col ul li {
    justify-content: center;
  }
  .footer .footer-actions {
    flex-direction: column;
  }
  .footer .footer-actions .btn {
    width: 100%;
  }
  .footer .footer-bottom .footer-policy-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

.hero {
  position: relative;
  height: 100vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
}
.hero.about-hero, .hero.contact-hero {
  min-height: auto;
  height: 600px;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .hero-background img,
.hero .hero-background .hero-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-background .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.hero .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.5) 100%);
}
.hero .container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-content {
  text-align: center;
  padding-top: 80px;
}
.hero .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 40px;
  line-height: 1.2;
  font-size: 50px;
  font-weight: 900;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
}
.hero .hero-title .highlight {
  color: #FF6B35;
}
.hero .hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero .hero-cta {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 30px;
}
.hero .hero-cta .arrow {
  margin-left: 8px;
}
.hero .btn-outline-light {
  background: transparent;
  color: #FF6B35;
  border: 1.5px solid #FF6B35;
}
.hero .btn-outline-light:hover {
  background: rgba(255, 107, 53, 0.1);
}
.hero .hero-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero .learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #FFFFFF;
  color: #FF6B35;
  padding: 15px 60px;
  border-radius: 40px 40px 0 0;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .hero {
    height: 70vh;
  }
}
@media (max-width: 480px) {
  .hero .hero-title {
    font-size: 26px;
  }
}
.contact-section {
  padding: 5rem 0;
}
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .contact-section .container {
    grid-template-columns: 1fr;
  }
  .contact-section .container .contact-form-wrapper {
    padding: 35px;
  }
}

.contact-info .sub-title {
  color: #FF6B35;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 1px;
}
.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1.5rem;
}
.contact-info .description {
  color: #666666;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.contact-info .info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact-info .info-list .info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.contact-info .info-list .info-item .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info .info-list .info-item .icon-wrapper img {
  width: 24px;
  height: auto;
}
.contact-info .info-list .info-item .item-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.25rem;
}
.contact-info .info-list .info-item .item-details p,
.contact-info .info-list .info-item .item-details a {
  color: #666666;
  text-decoration: none;
  font-size: 0.95rem;
}
.contact-info .social-links {
  display: flex;
  gap: 1rem;
}
.contact-info .social-links a {
  width: 40px;
  height: 40px;
}
.contact-info .social-links a img {
  width: 100%;
  height: 100%;
}
.contact-info .social-links a:hover {
  opacity: 0.8;
}

.contact-form-wrapper {
  background-color: #F8F9FA;
  padding: 50px;
  border-radius: 10px;
  height: -moz-fit-content;
  height: fit-content;
}
.contact-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-wrapper form .form-group input, .contact-form-wrapper form .form-group select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 5px;
  background-color: white;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form-wrapper form .form-group input:focus, .contact-form-wrapper form .form-group select:focus {
  outline: none;
  border-color: #FF6B35;
}
.contact-form-wrapper form .form-group input::-moz-placeholder, .contact-form-wrapper form .form-group select::-moz-placeholder {
  color: #000;
}
.contact-form-wrapper form .form-group input::placeholder, .contact-form-wrapper form .form-group select::placeholder {
  color: #000;
}
.contact-form-wrapper form .btn-submit {
  background-color: #FF6B35;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.contact-form-wrapper form .btn-submit:hover {
  background-color: rgb(255, 69.6336633663, 2);
  transform: translateY(-2px);
}
.contact-form-wrapper form .btn-submit::after {
  content: "↗";
  font-weight: bold;
}

.faq-section {
  padding: 5rem 0;
  background-color: #fff;
}
.faq-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 3rem;
}
.faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-section .faq-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}
.faq-section .faq-item:last-child {
  border-bottom: none;
}
.faq-section .faq-item .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
}
.faq-section .faq-item .faq-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  padding-right: 2rem;
}
.faq-section .faq-item .faq-header .faq-icon {
  transition: transform 0.3s ease;
  color: #666;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
}
.faq-section .faq-item .faq-header .faq-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-section .faq-item .faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: none;
}
.faq-section .faq-item .faq-body p {
  padding-top: 0.5rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  min-height: 0;
}
.faq-section .faq-item.active .faq-header .faq-icon {
  transform: rotate(180deg);
}
.faq-section .faq-item.active .faq-body {
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.3s ease-out;
}

.map-section {
  padding-bottom: 5rem;
  background-color: #fff;
}
.map-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.map-section .map-container {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.map-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}/*# sourceMappingURL=contact.css.map */