/* Main styles for domain website */
:root {
  --bg-color: #0e0e10;
  --main-color: #f7c948;
  --accent-color: #18f0e8;
  --heading-color: #ededed;
  --text-color: #bfbfbf;
  --border-color: #2c2c2c;
}

* {
  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", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4 {
  color: var(--heading-color);
  margin-bottom: 25px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 15px;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--main-color), var(--accent-color));
  color: var(--bg-color);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bg-color);
}

/* Header styles */
header {
  background-color: var(--bg-color);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 700;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--main-color);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .menu-toggle:checked ~ .nav-menu {
    right: 0;
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: var(--bg-color);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-color);
  }

  .nav-menu li {
    margin: 15px 0;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--heading-color);
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--main-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 16, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.hero-content h1 {
  margin-bottom: 20px;
  color: var(--heading-color);
}

.hero-content p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

/* About Section */
.about {
  background-color: rgba(44, 44, 44, 0.3);
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Benefits Section */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.benefit-item {
  background-color: rgba(44, 44, 44, 0.3);
  padding: 30px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--main-color);
}

.benefit-item h3 {
  color: var(--main-color);
}

/* Services Section */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background-color: rgba(44, 44, 44, 0.3);
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--main-color);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  color: var(--main-color);
}

/* Process Section */
.process {
  background-color: rgba(44, 44, 44, 0.3);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: center;
}

.step-number {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--main-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--bg-color);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--main-color);
}

/* Testimonials Section */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.testimonial {
  background-color: rgba(44, 44, 44, 0.3);
  padding: 30px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
}

.testimonial-text {
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--main-color);
  position: absolute;
}

.testimonial-text::before {
  top: -10px;
  left: 0;
}

.testimonial-text::after {
  bottom: -20px;
  right: 0;
}

.testimonial-author {
  margin-top: 20px;
  text-align: right;
  font-weight: bold;
  color: var(--heading-color);
}

/* Form Section */
.form-section {
  background-color: rgba(44, 44, 44, 0.3);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(14, 14, 16, 0.8);
  padding: 30px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.form-control {
  width: 100%;
  padding: 12px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  color: var(--text-color);
  transition: border 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--main-color);
}

.form-control::placeholder {
  color: #666;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23F7C948' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

select.form-control option {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group a {
  text-decoration: underline;
}

.form-error {
  color: #e74c3c;
  margin-top: 5px;
}

.form-success {
  color: #2ecc71;
  text-align: center;
  padding: 20px;
}

/* FAQ Section */
.faq-container {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: block;
  background-color: rgba(44, 44, 44, 0.3);
  padding: 15px 20px;
  position: relative;
  cursor: pointer;
  font-weight: bold;
  color: var(--heading-color);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--main-color);
}

.faq-checkbox {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(14, 14, 16, 0.8);
  padding: 0 20px;
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-checkbox:checked ~ .faq-question::after {
  content: "−";
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  color: var(--main-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info span {
  margin-right: 10px;
  color: var(--main-color);
}

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: var(--bg-color);
  padding: 20px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  z-index: 1001;
  display: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-popup p {
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--main-color), var(--accent-color));
  color: var(--bg-color);
}

.cookie-decline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: #865151;
}

/* Policy Pages */
.policy-page {
  min-height: 100vh;
  padding: 120px 0 50px;
}

.policy-container {
  max-width: 800px;

  word-break: break-word;
  overflow-wrap: break-word;
  margin: 0 auto;
  background-color: rgba(14, 14, 16, 0.8);
  padding: 30px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
}

.policy-logo {
  text-align: center;
  margin-bottom: 30px;
}

.policy-content h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.policy-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
}

/* Thank You Page */
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-you-container {
  max-width: 600px;
  background-color: rgba(14, 14, 16, 0.8);
  padding: 40px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  text-align: center;
  margin: 0 auto;
}

.thank-you-icon {
  color: var(--main-color);
  font-size: 4rem;
  margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .step {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}
