/* Base styles and variables */
:root {
  --color-dark: #0f1116;
  --color-dark-2: #1f2025;
  --color-orange: #fc4a1a;
  --color-gold: #f7b733;
  --color-text: #e0e0e0;
  --color-white: #ffffff;
  --font-main: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --shadow-neon-orange: 0 0 10px rgba(252, 74, 26, 0.5);
  --shadow-neon-gold: 0 0 15px rgba(247, 183, 51, 0.6);
  --container-width: 1200px;
  --section-padding: 80px 0;
  --section-padding-mobile: 60px 0;
  --border-radius: 8px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

option {
    background-color: #2f3034;
}

section[id] {
  scroll-margin-top: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-dark);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  word-break: break-word;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-gold));
  left: 20%;
  bottom: -15px;
  border-radius: 2px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  width: auto;
  max-width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  color: var(--color-white);
  box-shadow: var(--shadow-neon-orange);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon-gold);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(15, 17, 22, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  z-index: 101;
  max-width: 180px;
  width: 100%;
  height: auto;
}

.logo svg {
  width: 100%;
  height: auto;
}

.nav-container {
  position: relative;
}

/* CSS-only burger menu implementation */
.nav-toggle {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  height: 24px;
  width: 30px;
  position: relative;
  z-index: 101;
}

.nav-toggle-label span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-text);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.nav-toggle-label span:nth-child(1) {
  top: 0px;
}

.nav-toggle-label span:nth-child(2) {
  top: 10px;
}

.nav-toggle-label span:nth-child(3) {
  top: 20px;
}

.nav {
  transition: var(--transition);
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
}

.nav__item {
  margin: 0 15px;
}

.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  display: block;
}

.nav__link:hover, .nav__link.active {
  color: var(--color-gold);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-gold));
  transition: var(--transition);
}

.nav__link:hover::after, .nav__link.active::after {
  width: 100%;
}

.header__btn {
  margin-left: 15px;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 17, 22, 0.7);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero__title {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--color-white);
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Sections styles */
.section {
  padding: var(--section-padding);
  width: 100%;
  overflow: hidden;
}

.section--gradient {
  background: linear-gradient(135deg, var(--color-dark), var(--color-dark-2));
}

.section--alt {
  background-color: rgba(31, 32, 37, 0.5);
}

/* About Section */
.about__inner {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about__content {
  flex: 1;
  min-width: 300px;
}

.about__image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 300px;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
}

.about__feature-icon {
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.about__feature-text {
  font-size: 1rem;
}

/* Services Section */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-neon-orange);
}

.service-card__icon {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__title {
  margin-bottom: 15px;
}

/* Advantages Section */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.advantage-card__icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.advantage-card__title {
  margin-bottom: 15px;
}

/* Process Section */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.process-step__number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.process-step__title {
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials__slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 20px 0;
}

.testimonial__content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.testimonial__content::before,
.testimonial__content::after {
  content: '"';
  font-size: 4rem;
  position: absolute;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonial__content::before {
  top: -20px;
  left: -10px;
}

.testimonial__content::after {
  bottom: -40px;
  right: -10px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial__author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  margin-bottom: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial__author-name {
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 5px;
}

.testimonial__author-title {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* FAQ Section - CSS-only accordion */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq__question {
  position: relative;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
  transition: var(--transition);
}

/* CSS-only FAQ accordion implementation */
.faq__question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: var(--transition);
}

/* Use hidden checkbox for toggling FAQ */
.faq__toggle {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq__item label {
  display: block;
  position: relative;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
  transition: var(--transition);
}

.faq__item label::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq__answer {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
}

.faq__toggle:checked ~ .faq__answer {
  max-height: 500px;
  padding: 0 20px 20px;
  transition: max-height 0.35s ease-in, padding 0.35s ease-in;
}

.faq__toggle:checked ~ label::after {
  content: '−';
}

/* Contact Form Section */
.contact {
  position: relative;
}

.contact__inner {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact__info {
  flex: 1;
  min-width: 280px;
}

.contact__info-item {
  margin-bottom: 30px;
}

.contact__info-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-gold);
}

.contact__form {
  flex: 2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 280px;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 15px;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 4px;
}

.form-check-label {
  font-size: 0.9rem;
  flex: 1;
}

.form-check-label a {
  color: var(--color-gold);
}

/* Policy content */
.policy-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content h1 {
  text-align: center;
  margin-bottom: 30px;
}

.policy-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.policy-content h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.policy-content p, .policy-content ul {
  margin-bottom: 15px;
}

.policy-content ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* Thank you page */
.thanks-box {
  width: 100%;
  max-width: 600px;
  margin: 100px auto;
  padding: 40px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  background-color: rgba(15, 17, 22, 0.95);
  padding-top: 80px;
  width: 100%;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__column {
  margin-bottom: 20px;
}

.footer__logo {
  display: block;
  margin-bottom: 20px;
}

.footer__description {
  margin-bottom: 20px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer__title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__address {
  font-style: normal;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer__address p {
  margin-bottom: 10px;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(15, 17, 22, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  z-index: 999;
  transition: bottom 0.5s ease;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-popup__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-popup__content h3 {
  margin-bottom: 10px;
}

.cookie-popup__content p {
  margin: 0 20px 10px 0;
  flex: 1;
}

.cookie-popup__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  .hero__title {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }
  
  .hero__title {
    font-size: 3rem;
  }
  
  .about__inner, 
  .contact__inner {
    flex-direction: column;
  }
  
  .about__content,
  .about__image,
  .contact__info,
  .contact__form {
    width: 100%;
  }

  .cookie-popup__content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-popup__buttons {
    margin-top: 15px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.3rem;
  }

  .section {
    padding: var(--section-padding-mobile);
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  /* Mobile menu styles have been moved to the consolidated media query section */

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
  }

  .section-title h2::after {
    width: 80%;
    left: 10%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }
  
  .service-card, 
  .advantage-card, 
  .process-step {
    padding: 20px;
  }
  
  .testimonial {
    padding: 20px;
  }
  
  .faq__question,
  .faq__item.active .faq__answer {
    padding: 15px;
  }
  
  .policy-content,
  .contact__form {
    padding: 25px 15px;
  }
  
  .thanks-box {
    padding: 25px 15px;
    margin: 60px auto;
  }
  
  .hero {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }
  
  .hero__title {
    font-size: 1.8rem;
  }
  
  .hero__subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .logo {
    max-width: 150px;
  }
}

@media (max-width: 320px) {
  h1 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .process-step__number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Visibility helper classes */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  
  .desktop-only {
    display: none;
  }
  
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: var(--color-dark);
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
  }
  
  .nav__section-title {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
  }
  
  .nav__section-desc {
    color: var(--color-text);
    margin-bottom: 25px;
    font-size: 0.9rem;
  }
  
  .nav__list {
    flex-direction: column;
    width: 100%;
    margin-top: 70px;
    padding: 20px;
    text-align: center;
  }
  
  .nav__item {
    margin: 15px 0;
    width: 100%;
  }
  
  .nav__link {
    font-size: 1.2rem;
    padding: 10px 0;
    display: block;
  }
  
  .header__btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  
  /* Toggle navigation when checkbox is checked */
  .nav-toggle:checked ~ .nav {
    transform: translateX(0);
  }
  
  /* Close button for mobile menu */
 
  
  /* Burger animation */
  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
  }
  
  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
  }
  
  /* Styling for service items in mobile menu */
  .nav__service-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .nav__service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .nav__service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__buttons .btn {
    width: 100%;
    max-width: 250px;
  }
} 