/* === GLOBAL STYLES === */
:root {
  --bg-primary: #161B22;
  --accent: #FF7F11;
  --text: #E5E5E5;
  --heading: #FFFFFF;
  --button: #00C9A7;
  --container-bg: rgba(255, 255, 255, 0.05);
  --shadow: rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 60px;
  background: var(--accent);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--button);
}

section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--button);
  color: var(--bg-primary);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--button);
  color: var(--button);
}

.btn-outline:hover {
  background-color: var(--button);
  color: var(--bg-primary);
}

/* === HEADER === */
header {
  background-color: var(--bg-primary);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 2px 10px var(--shadow);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
}

.logo span {
  color: var(--accent);
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav ul li {
  margin-left: 20px;
  margin-bottom: 5px;
}

nav ul li a {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  cursor: pointer;
}

.burger-menu a {
  color: var(--text);
  font-size: 1.5rem;
  display: block;
}

/* === HERO SECTION === */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: linear-gradient(to right, rgba(22, 27, 34, 0.9), rgba(22, 27, 34, 0.7)), url('../img/ls7PCM.jpg');
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* === ABOUT SECTION === */
.about {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--shadow);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

/* === ADVANTAGES SECTION === */
.advantages {
  background-color: rgba(255, 255, 255, 0.02);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.advantage-item {
  background-color: var(--container-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.advantage-icon {
  font-size: 2.5rem;
  color: var(--button);
  margin-bottom: 20px;
}

.advantage-item h3 {
  margin-bottom: 15px;
}

/* === SERVICES SECTION === */
.services {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background-color: var(--container-bg);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--accent);
  transition: height 0.5s ease;
}

.service-item:hover::before {
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.service-item h3 {
  margin-bottom: 20px;
}

.service-item p {
  margin-bottom: 25px;
}

/* === HOW WE WORK SECTION === */
.how-we-work {
  background-color: rgba(255, 255, 255, 0.02);
}

.steps {
  display: flex;
  margin-top: 50px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  z-index: 1;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--button);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-primary);
}

.step h3 {
  margin-bottom: 15px;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-item {
  background-color: var(--container-bg);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-position {
  font-size: 0.9rem;
  opacity: 0.8;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

/* === FAQ SECTION === */
.faq {
  background-color: rgba(255, 255, 255, 0.02);
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background-color: var(--container-bg);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-active .faq-question::after {
  content: '-';
}

.faq-active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* FAQ Question form styling */
.faq-question-form {
  width: 100%;
  margin: 0;
  padding: 0;
}

button.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  outline: none;
}

/* === CONTACT FORM SECTION === */
.contact {
  position: relative;
  background-image: linear-gradient(to right, rgba(22, 27, 34, 0.9), rgba(22, 27, 34, 0.7)), url('../img/m8xEuc.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 30px var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--text);
  font-size: 1rem;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

select.form-control {
  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='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  padding-right: 40px;
}

select.form-control option {
  background-color: var(--bg-primary);
  color: var(--text);
  padding: 15px;
  font-size: 1rem;
}

select.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 127, 17, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"]:checked::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--button);
  font-size: 14px;
}

.checkbox-group label {
  cursor: pointer;
}

/* === FOOTER === */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-contact li {
  margin-bottom: 15px;
  list-style: none;
}

.footer-links h4 {
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent);
}

/* === POLICY PAGES === */
.policy-page {
  padding-top: 150px;
}

.policy-container {
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px var(--shadow);
}

.policy-container h2 {
  color: var(--bg-primary);
  text-align: left;
}

.policy-container h2::after {
  left: 0;
  transform: none;
  background: var(--accent);
}

.policy-container p {
  margin-bottom: 20px;
}

.policy-container ul, .policy-container ol {
  margin: 0 0 20px 20px;
}

.policy-container li {
  margin-bottom: 10px;
}

/* === COOKIE POPUP === */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--bg-primary);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  z-index: 9999;
  box-shadow: 0 10px 30px var(--shadow);
  display: none;
}

.cookie-popup.show {
  display: block;
  animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-popup h3 {
  margin-bottom: 15px;
}

.cookie-popup p {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* === THANK YOU PAGE === */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
}

.thank-you-container {
  max-width: 700px;
  background-color: var(--container-bg);
  border-radius: 15px;
  padding: 60px;
  box-shadow: 0 15px 30px var(--shadow);
}

.thank-you h1 {
  margin-bottom: 30px;
}

.thank-you p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.check-icon {
  font-size: 5rem;
  color: var(--button);
  margin-bottom: 30px;
  display: inline-block;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .advantages-grid,
  .services-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps {
    flex-direction: column;
  }
  
  .steps::before {
    width: 2px;
    height: 100%;
    left: 30px;
    top: 0;
  }
  
  .step {
    text-align: left;
    padding-left: 70px;
    margin-bottom: 40px;
  }
  
  .step-number {
    position: absolute;
    left: 0;
    margin: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  /* Hide navigation menu in mobile */
  nav {
    display: none;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  body {
    position: relative;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .advantages-grid,
  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .hero {
    text-align: center;
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    display: block;
    width: 100%;
  }
  
  .policy-container {
    padding: 30px 20px;
  }
  
  .thank-you-container {
    padding: 40px 20px;
  }
} 