/* Main styles for domain.com */
:root {
  --primary-bg: #101820;
  --accent-yellow: #ffb400;
  --accent-orange: #f85a3e;
  --secondary: #ededed;
  --text-light: #ffffff;
  --text-gray: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-light);
  line-height: 1.6;
}

section[id] {
  scroll-margin-top: 40px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

a {
  color: var(--accent-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-orange);
}

/* Header Styles */
header {
  background-color: var(--primary-bg);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-yellow);
  letter-spacing: 1px;
}

/* Burger Menu */
#menu-toggle {
  display: none;
}

.menu-button-container {
  display: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: var(--accent-yellow);
  position: absolute;
  height: 4px;
  width: 30px;
  border-radius: 2px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-yellow);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 24, 32, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-yellow);
  color: var(--primary-bg);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.cta-button:hover {
  background-color: var(--accent-orange);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--accent-yellow);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--accent-orange);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* About Section */
.about {
  background-color: rgba(237, 237, 237, 0.05);
}

.about-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Advantages Section */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.advantage-card {
  background-color: rgba(237, 237, 237, 0.05);
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-yellow);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-left-color: var(--accent-orange);
}

.advantage-card h3 {
  color: var(--accent-yellow);
  margin-bottom: 15px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: rgba(237, 237, 237, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 25px;
}

.service-card h3 {
  color: var(--accent-yellow);
  margin-bottom: 15px;
}

.service-card-content .cta-button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 14px;
}

/* Testimonials */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial {
  background-color: rgba(237, 237, 237, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 50px;
  color: var(--accent-yellow);
  opacity: 0.3;
  position: absolute;
  line-height: 0;
}

.testimonial-text::before {
  top: 15px;
  left: -15px;
}

.testimonial-text::after {
  bottom: -5px;
  right: -15px;
}

.testimonial-author {
  font-weight: bold;
  color: var(--accent-yellow);
}

/* Form Section */
.order-form-section {
  background-color: rgba(237, 237, 237, 0.05);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(16, 24, 32, 0.8);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 180, 0, 0.3);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
  font-weight: 500;
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 4px;
  border: 2px solid rgba(237, 237, 237, 0.1);
  background-color: rgba(237, 237, 237, 0.05);
  color: var(--text-light);
  font-size: 16px;
  transition: all 0.3s ease;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6'%3E%3Cpath d='M0 0l6 6 6-6z' fill='%23FFB400'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 40px;
}

select option {
  background-color: var(--primary-bg);
  color: var(--text-light);
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
  outline: none;
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 2px rgba(255, 180, 0, 0.2);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 6px;
}

.form-check label {
  font-size: 14px;
  line-height: 1.5;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.submit-button {
  background-color: var(--accent-yellow);
  color: var(--primary-bg);
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: var(--accent-orange);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.form-error {
  color: var(--accent-orange);
  font-size: 14px;
  margin-top: 5px;
}

/* Certificates Section */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.certificate {
  background-color: rgba(237, 237, 237, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.certificate img {
  width: 100%;
  height: auto;
  display: block;
}

.certificate:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: rgba(237, 237, 237, 0.05);
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  border-left: 4px solid var(--accent-yellow);
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-light);
  padding-right: 30px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent-yellow);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(237, 237, 237, 0.02);
  transition: max-height 0.5s ease;
}

.faq-answer-content {
  padding: 20px;
  border-left: 4px solid var(--accent-orange);
}

/* Checkbox hack for FAQ */
.faq-toggle {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-toggle:checked + .faq-question {
  background-color: rgba(237, 237, 237, 0.1);
}

.faq-toggle:checked + .faq-question::after {
  content: "−";
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--accent-yellow);
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-orange);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-yellow);
}

.contact-info {
  color: var(--text-gray);
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  font-size: 14px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: var(--primary-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  border: 1px solid var(--accent-yellow);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-popup p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-accept {
  flex: 1;
  background-color: var(--accent-yellow);
  color: var(--primary-bg);
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept:hover {
  background-color: var(--accent-orange);
  color: var(--text-light);
}

.cookie-policy-link {
  font-size: 14px;
  color: var(--accent-yellow);
  display: inline-block;
  margin-top: 10px;
}

/* Policy Pages */
.policy-container {
  max-width: 900px;
  margin: 40px auto;
  background-color: rgba(237, 237, 237, 0.05);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 180, 0, 0.2);
}

.policy-container h1 {
  font-size: 1.8rem;
  color: var(--accent-yellow);
  margin-bottom: 30px;
  text-align: center;
}

.policy-container h2 {
  font-size: 24px;
  color: var(--accent-yellow);
  margin: 30px 0 15px;
}

.policy-container p,
.policy-container ul,
.policy-container ol {
  margin-bottom: 20px;
}

.policy-container ul,
.policy-container ol {
  padding-left: 30px;
}

.policy-container li {
  margin-bottom: 10px;
}

/* Thank You Page */
.thank-you-container {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  background-color: rgba(237, 237, 237, 0.05);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--accent-yellow);
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content h1 {
  font-size: 36px;
  color: var(--accent-yellow);
  margin-bottom: 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .menu-button-container {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--primary-bg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #menu-toggle:checked ~ nav {
    max-height: 300px;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .hero {
    height: 70vh;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .section-title {
    font-size: 24px;
  }

  .about-content {
    flex-direction: column;
  }

  .form-container {
    padding: 20px;
  }

  .policy-container {
    padding: 20px;
  }
}
