/* Global Styles */
:root {
  --dark-graphite: #1f1f2e;
  --lime: #d0f500;
  --mint: #4ddbb0;
  --pastel-lavender: #bfa2ff;
  --white: #ffffff;
  --light-gray: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

section[id] {
  scroll-margin-top: 40px;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background-color: var(--dark-graphite);
  color: var(--light-gray);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--mint);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--lime);
}

.btn {
  display: inline-block;
  background-color: var(--lime);
  color: var(--dark-graphite);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--mint);
  transform: translateY(-3px);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--lime);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(31, 31, 46, 0.9);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.logo:hover {
  color: var(--lime);
}

.nav-checkbox {
  display: none;
}

.nav-toggle {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--lime);
}

.nav-item label {
  cursor: pointer;
  display: block;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(31, 31, 46, 0.7), rgba(31, 31, 46, 0.7)),
    url("./img/mIa0j.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero .btn {
  animation: fadeInUp 1s ease 0.6s both;
}

/* About Section */
.about {
  padding: 100px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-text {
  flex: 1;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: rgba(31, 31, 46, 0.95);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--mint);
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: var(--mint);
}

/* Advantages Section */
.advantages {
  padding: 100px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.advantage-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
}

.advantage-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.advantage-card h3 {
  margin-bottom: 15px;
  color: var(--lime);
}

/* Projects Section */
.projects {
  padding: 100px 0;
  background-color: rgba(31, 31, 46, 0.95);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(31, 31, 46, 0.9);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay h3 {
  color: var(--mint);
  margin-bottom: 10px;
}

/* Form Section */
.contact {
  padding: 100px 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 5px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--mint);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check input {
  margin-right: 10px;
  margin-top: 6px;
}

.form-check label {
  font-size: 0.9rem;
}

.form-check a {
  text-decoration: underline;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234ddbb0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  padding-right: 40px;
}

select.form-control option {
  background-color: var(--dark-graphite);
  color: var(--white);
  padding: 10px;
}

.error-text {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: rgba(31, 31, 46, 0.95);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content:before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.2;
  color: var(--mint);
}

.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-info p {
  font-size: 0.9rem;
  color: var(--mint);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 0.7rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  position: relative;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.faq-checkbox {
  display: none;
}

.faq-label {
  display: block;
  position: relative;
  padding-right: 40px;
  font-weight: 600;
  cursor: pointer;
}

.faq-label:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--mint);
  transition: transform 0.3s ease;
}

.faq-checkbox:checked ~ .faq-label:after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 1000px;
  padding: 20px;
}

/* Footer */
footer {
  background-color: rgba(25, 25, 38, 0.95);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--mint);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--light-gray);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--lime);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: var(--dark-graphite);
  border: 1px solid var(--mint);
  padding: 20px;
  border-radius: 10px;
  z-index: 1001;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-consent p {
  margin-bottom: 15px;
}

.cookie-consent .btn {
  width: 100%;
}

/* Policy Pages */
.policy-container {
  max-width: 800px;
  margin: 120px auto 60px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-container h1 {
  margin-bottom: 30px;
  text-align: center;
}

.policy-container h2 {
  margin: 30px 0 15px;
  color: var(--mint);
}

.policy-container p {
  margin-bottom: 20px;
}

.policy-container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-container ul li {
  margin-bottom: 10px;
}

/* Thank You Page */
.thank-you {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-container {
  max-width: 600px;
  margin: 7rem auto 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.thank-you h1 {
  margin-bottom: 20px;
  color: var(--lime);
}

.thank-you p {
  margin-bottom: 30px;
}

/* Animation Keyframes */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media screen and (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--white);
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--dark-graphite);
    flex-direction: column;
    align-items: center;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-checkbox:checked ~ .nav-menu {
    padding: 1rem;
    max-height: 300px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-item {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .form-container {
    padding: 20px;
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: 95%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .policy-container,
  .form-container,
  .thank-you-container {
    padding: 20px;
  }
}
div {
  word-break: break-word;
  overflow-wrap: break-word;
}
