
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Unbounded:wght@400;700&display=swap');

:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-bg-block: rgba(255, 255, 255, 0.05);
  --color-border: #E3E3E3;

  --font-main: 'Inter', sans-serif;
  --font-heading: 'Unbounded', cursive;

  --container-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 25px 25px;
}


.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
}

h1 {
  font-size: 64px;
  line-height: 1.1;
}

h2 {
  font-size: 32px;
  line-height: 1.1;
}

h3 {
  font-size: 28px;
  line-height: 1;
}

h4 {
  font-size: 24px;
  line-height: 1.1;
}

section {
  padding: 40px 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 10px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn-light {
  background: var(--color-white) !important;
  color: var(--color-black) !important;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}





.site-header {
  padding: 50px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  background: black;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
}

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

.main-nav {
  display: none;
  align-items: center;
  gap: 50px;
}

@media (min-width: 1025px) {
  .main-nav {
    display: flex;
  }
}

.burger-menu-btn {
  display: none;
  position: relative;
  z-index: 1001;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.burger-menu-btn span,
.burger-menu-btn::before,
.burger-menu-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.burger-menu-btn::before {
  top: 10px;
}
.burger-menu-btn span {
  top: 20px;
}
.burger-menu-btn::after {
  top: 30px;
}


.main-nav ul {
  display: flex;
  gap: 50px;
}
@media (max-width: 1024px) {
  .hero-tag{
    width: 100%;
    padding: 12px 24px !important;
  }
  .burger-menu-btn {
    display: block;
  }
  .hero-section .container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text {
    align-items: center;
  }
}
.main-nav ul a {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.main-nav ul a:hover {
  color: var(--color-text-secondary);
}


.hero-section {
  padding: 160px 0 0 0;
  display: flex;
  align-items: center;
  position: relative;
  background: url("../img/patern.png");
  background-repeat: no-repeat;
  background-position: bottom;
  height: 100vh;
}

.hero-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  padding: 0 100px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero-text-content h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-text-content p {
  line-height: 1.5;
  max-width: 600px;
}

.hero-tag {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 32px;
  border: 1px solid var(--color-white);
  border-radius: 50px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
}

.hero-image {
  flex: 1;
  max-width: 600px;
  height: 600px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}





.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}

.mobile-nav a {
  font-size: 20px;
  color: var(--color-white);
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 1260px) {
  .site-header .container, .hero-section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .site-header {
    position: fixed;
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .burger-menu-btn {
    display: block;
  }
  .hero-section .container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .site-header .container, .hero-section .container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }
  h1 {
    font-size: 44px;
  }
  .hero-section {
    padding-top: 0px;
    position: relative;
    top: -30px;
  }
}


.audit-section {
  padding: 40px 0;
  min-height: 350px;
  display: flex;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.audit-section .container {
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 135px;
}

.audit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  max-width: 512px;
}

.audit-content p {
  line-height: 1.5;
  margin-bottom: 28px;
}

.audit-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audit-form input {
  width: 100%;
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 12px;
  height: 45px;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--color-white);
}

.audit-form input::placeholder {
  color: var(--color-white);
  opacity: 0.3;
}

.audit-form .btn {
  width: 100%;
  height: 48px;
  border-radius: 50px;
}

.audit-arrow {
  width: 217px;
  height: auto;
  object-fit: contain;
}


@media (max-width: 1024px) {
  .audit-arrow {
    display: none;
  }
  .audit-section .container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .audit-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.info-section {
  padding: 40px 0;
}

.info-section .container {
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.info-text {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-text-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}

h5 {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}

.info-text p {
  line-height: 1.5;
}

.info-image {
  flex: 1;
  max-width: 600px;
  height: 567px;
  position: relative;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}






@media (max-width: 1024px) {
  .info-section .container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .info-text {
    align-items: center;
  }
  .audit-section{
    margin-bottom: 0;
  }


}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 768px) {
  .info-section .container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 0;
    text-align: left;
  }
  .rocket{
    margin-bottom: 20px;
  }
  .info-image {
    height: auto;
  }
  .dmsTitle{
    text-align: left;
  }
  .footer-bottom{
    display: none;
  }
  .contact-form-wrapper{
    max-width: unset;
    width: 100%;
  }
}




.info-section-reverse .container {
  flex-direction: row-reverse;
}


.checkmark-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.checkmark-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.checkmark-list li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
  border-radius: 50%;
}



@media (max-width: 1024px) {
  .info-section-reverse .container {

    flex-direction: column-reverse;
  }
}


.services-section {
  padding: 40px 0;
}

.services-section .container {
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.services-section .section-title {
  margin: 0;
}

.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-bg-block);
  padding: 40px 20px;
  min-height: 392px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  transition: background-color 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.card-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-white);
  opacity: 0.5;
}
.card-corner.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.card-corner.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.card-corner.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.card-corner.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

.lottie-container {
  width: 68px;
  height: 68px;
  margin-bottom: 12px;
}

.service-card h4 {
  color: var(--color-white);
}

.service-card p {
  line-height: 1.5;
  color: var(--color-text-secondary);
  max-width: 315px;
}

.service-card ul {
  list-style: none;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-top: auto;
  padding-top: 12px;
}

.services-footer {
  width: 100%;
  background: var(--color-bg-block);
  padding: 24px 34px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-icons {
  display: flex;
  gap: 24px;
}
.footer-icons img {
  width: 68px;
  height: 68px;
}
.footer-text {
  flex-grow: 1;
}
.footer-text h4 {
  margin-bottom: 4px;
}
.footer-text p {
  color: var(--color-text-secondary);
}

.carousel-pagination {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.carousel-pagination .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid var(--color-white);
  background-color: transparent;
  padding: 0;
  transition: background-color 0.3s ease;
}
.carousel-pagination .dot.active {
  background-color: var(--color-white);
}




@media (max-width: 1260px) {
  .services-section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 420px;
  }

  .services-grid .service-card, .services-footer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;

    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    padding-top: 20px;
    justify-content: center;

    transform: translateX(100%);
  }

  .services-footer {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .services-grid .service-card.active, .services-footer.active {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
  }

  .carousel-pagination {
    display: flex;
  }
}

@media (max-width: 480px) {
  .services-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer-icons {
    gap: 12px;
  }
  .footer-icons img {
    width: 48px;
    height: 48px;
  }
}
.footer-icons .lottie-container {
  width: 68px;
  height: 68px;
}

.faq-section {
  padding: 40px 0;
}

.faq-section .container {
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.faq-section .section-title {
  margin: 0;
}

.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 2px solid var(--color-white);
}
.faq-item:first-of-type {
  border-top: 2px solid var(--color-white);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 24px;
  line-height: 1.1;
  flex-grow: 1;
}

.faq-toggle {
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 4px;
  background-color: var(--color-white);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}

.faq-toggle::after {
  transform: translate(-50%, -50%);
}
.faq-toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-toggle::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.faq-item.open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.faq-item.open .faq-toggle::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-bottom 0.4s ease-out;
}

.faq-answer p {
  line-height: 1.5;
  color: var(--color-text-secondary);
  padding-right: 64px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}




@media (max-width: 1260px) {
  .faq-section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .faq-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .faq-question h4 {
    font-size: 20px;
  }
  .faq-answer p {
    padding-right: 44px;
  }
  .hero-image{
    height: unset;
  }
  .hero-image img{
    height: 150px;
  }
}


.feedback-section {
  padding: 40px 0;
}

.feedback-section .container {
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.feedback-section .section-title {
  margin: 0;
}

.feedback-carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.feedback-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.feedback-card {
  flex: 0 0 50%;
  padding: 0 22px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.feedback-text {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  padding-top: 10px;
  padding-bottom: 20px;
  flex-grow: 1;
}

.feedback-text::before,
.feedback-text::after {
  content: '“';
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1;
  color: var(--color-white);
  position: absolute;
}

.feedback-text::before {
  top: 0;
  left: 0;
  transform: translateX(-120%);
}
.feedback-text::after {
  bottom: 0;
  right: 0;
  transform: translateX(120%) rotate(180deg);
}

.feedback-card cite {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: right;
  padding-right: 40px;
}


.feedback-pagination {
  display: flex;
  flex-wrap: wrap;
}




@media (max-width: 1260px) {
  .feedback-section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .feedback-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .feedback-card {
    flex: 0 0 100%;
    padding: 0 10px;
  }
  .feedback-text::before, .feedback-text::after {
    display: none;
  }
  .feedback-card cite {
    padding-right: 0;
    text-align: center;
  }
}


.contact-section {
  padding: 40px 0;
  background-color: var(--color-black);
}

.contact-section .container {
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.contact-form-wrapper {
  flex: 1;
  max-width: 600px;
}

.contact-title {
  margin-bottom: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--color-white);
}

.form-group input, .form-group select {
  height: 45px;
}

.form-group textarea {
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-white);
  opacity: 0.3;
}

.custom-select {
  position: relative;
}

.select-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 12px;
  height: 45px;
  cursor: pointer;
}

.select-selected span {
  color: rgba(255, 255, 255, 0.3);
}

.select-selected.selected-value span {
  color: var(--color-white);
}

.select-arrow {
  width: 16px;
  height: 8px;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 0.3s ease;
}


.custom-select.select-active .select-arrow {
  transform: rotate(180deg);
}

.select-items {
  position: absolute;
  background-color: var(--color-black);
  border: 1px solid var(--color-border);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 0 0 8px 8px;
  margin-top: -6px;
  border-top: none;
  padding: 8px 0;
}

.select-items div {
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  line-height: 1.5;
}

.select-items div span {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.select-items div:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.select-hide {
  display: none;
}
.contact-form .btn {
  align-self: flex-start;
}

.contact-image {
  flex: 1;
  max-width: 600px;
  height: 600px;
  position: relative;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



@media (max-width: 1024px) {
  .contact-section .container {
    flex-direction: column;
    align-items: center;
  }
  .contact-image {
    order: -1;
    height: auto;
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .contact-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.site-footer {
  padding: 40px 0 0 0;
}

.site-footer .container {
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.lang-switcher-wrapper {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 100;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--color-white);
  border-radius: 32px;
  background-color: transparent;
  color: var(--color-white);
  cursor: pointer;
  backdrop-filter: blur(8px);

}

.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-text {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
}

.lang-arrow {
  width: 12px;
  height: 7px;
  background-color: var(--color-white);
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}

.footer-content {
  width: 100%;
  background-color: #0D0D0D;
  border-radius: 40px 40px 0 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo img {
  width: 137px;
  height: auto;
}

.footer-nav {
  display: flex;
  gap: 220px;
}

.nav-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav a {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  transition: opacity 0.3s;
}
.footer-nav a:hover {
  opacity: 0.8;
}

.footer-bottom {
  opacity: 0.2;
  font-weight: 300;
}




@media (max-width: 1260px) {
  .site-footer .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero-text-content{
    align-items: center;
  }
}

@media (max-width: 768px) {
  .site-footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-content{
    padding: 40px 40px 110px;
  }
  .lang-switcher{
    padding: 12px;
  }

  .footer-main {
    flex-direction: column;
  }
  .footer-nav {
    gap: 30px;
  }
  .hero-section{
    background: none;
  }
  .hero-text-content h1{
    font-size: 32px;
    text-align: left;
  }
  .hero-text-content p{
    text-align: left;
  }
  .hero-section .btn{
    width: 100%;
  }
  .logo img{
    width: 80px;
  }
  .hero-text{
    gap: 13px;
  }
  .site-header{
    padding: 12px 0;
    background: black;
  }
}
@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
}





body.mobile-menu-open .burger-menu-btn::before {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

body.mobile-menu-open .burger-menu-btn span {
  transform: translateX(-50%) scaleX(0);
}

body.mobile-menu-open .burger-menu-btn::after {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}


.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px;
background: #141414;

  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;

  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
  z-index: 999;
}
.mobile-menu-open header{
  background: #141414;
  transition: 0.5s;
}



body.mobile-menu-open .mobile-menu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}


.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.mobile-nav a {
  font-size: 20px;
  color: var(--color-white);
  padding: 10px;
}
/* --- Terms and Conditions Page Styles --- */
.terms-section {
  padding: 180px 0 80px 0;
}

.terms-section .container {
  padding-left: 20px;
  padding-right: 20px;
}

.terms-section h1 {
  font-size: 44px;
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 8px;
}

.terms-section .terms-effective-date {
  font-size: 16px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 40px;
}

.terms-section h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.terms-section p, .terms-section li {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.terms-section p {
  margin-bottom: 1em;
}

.terms-section ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 24px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-section strong {
  font-weight: 700;
  color: var(--color-white);
}

.terms-section .terms-copyright {
  margin-top: 40px;
  opacity: 0.5;
}
