/* 
 * Main styles for domain website
 * Colors:
 * - Background: #0e0e1a
 * - Accent 1: #f50057 (neon pink)
 * - Accent 2: #00e676 (lime green)
 * - Text: #ffffff
 * - Secondary text: #bdbdbd
 */

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0e0e1a;
  color: #ffffff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

section[id] {
  scroll-margin-top: 40px;
}

a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

a:hover {
  color: #f50057;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #f50057, #00e676);
  color: #ffffff;
  text-transform: uppercase;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 0, 87, 0.4);
  color: #ffffff;
}

section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 20px;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(14, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 0, 87, 0.3);
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 10px #f50057, 0 0 20px #f50057, 0 0 30px #f50057;
  animation: neon 1.5s infinite alternate;
}

@keyframes neon {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #f50057, 0 0 20px #f50057;
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #f50057,
      0 0 40px #f50057;
  }
}

/* Burger menu */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #f50057;
  height: 2px;
  width: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
}

.nav-toggle-label span::before {
  top: -8px;
}

.nav-toggle-label span::after {
  bottom: -8px;
}

.main-nav {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin-left: 30px;
}

.main-nav li a {
  font-weight: 500;
  position: relative;
}

.main-nav li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f50057, #00e676);
  transition: width 0.3s ease;
}

.main-nav li a:hover::after {
  width: 100%;
}

/* Hero section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 14, 26, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #bdbdbd;
}

/* About section */
#about {
  background-color: rgba(245, 0, 87, 0.05);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(245, 0, 87, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services section */
#services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(245, 0, 87, 0.3);
}

.service-image {
  height: 180px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  color: #f50057;
  margin-bottom: 15px;
}

/* Steps section */
#steps {
  background-color: rgba(0, 230, 118, 0.05);
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f50057, #00e676);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 10px;
}

/* Benefits section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #00e676;
}

/* Testimonials section */
#testimonials {
  background-color: rgba(245, 0, 87, 0.05);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 80px;
  opacity: 0.1;
  color: #f50057;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: bold;
  color: #00e676;
}

/* Form section */
#contact {
  position: relative;
}

.contact-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(245, 0, 87, 0.3);
  box-shadow: 0 10px 30px rgba(245, 0, 87, 0.2);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f50057' 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;
  padding-right: 40px;
}

option {
  background-color: #0e0e1a;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #f50057;
  width: 18px;
  height: 18px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

/* FAQ section */
#faq {
  background-color: rgba(0, 230, 118, 0.05);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  position: relative;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  display: block;
  width: 100%;
  text-align: left;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #f50057;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-checkbox {
  display: none;
}

.faq-checkbox:checked + .faq-question::after {
  content: "−";
}

.faq-checkbox:checked + .faq-question + .faq-answer {
  max-height: 1000px;
  padding: 20px;
}

/* Footer section */
footer {
  background-color: #0a0a14;
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col h3 {
  color: #f50057;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #f50057, #00e676);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col p {
  color: #bdbdbd;
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bdbdbd;
  font-size: 14px;
}

/* Cookie consent popup */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: rgba(14, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 0, 87, 0.3);
  box-shadow: 0 10px 30px rgba(245, 0, 87, 0.2);
  border-radius: 10px;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.cookie-consent p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(45deg, #f50057, #00e676);
  color: white;
  border: none;
  margin-left: 10px;
}

.cookie-decline {
  background: transparent;
  border: 1px solid #bdbdbd;
  color: #bdbdbd;
}

/* Thank you page */
.thank-you-container {
  margin: 8rem auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f50057;
  flex-direction: column;
  text-align: center;
  padding: 30px;
  max-width: 600px;
  border-radius: 15px;
}

.thank-you-container h1 {
  color: #f50057;
  margin-bottom: 20px;
}

/* Policy pages */
.policy-container {
  max-width: 900px;
  margin: 120px auto 50px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(245, 0, 87, 0.3);
  word-break: break-word;
  overflow-wrap: break-word;
}

.policy-container h1 {
  color: #f50057;
  border-bottom: 2px solid #00e676;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.policy-container h2 {
  color: #00e676;
  margin-top: 40px;
}

.policy-container p {
  margin-bottom: 20px;
}

.policy-container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-container ul li {
  margin-bottom: 10px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: block;
    position: relative;
    z-index: 2;
  }

  .main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    background: rgba(14, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: height 0.3s ease;
  }

  .nav-toggle:checked ~ .main-nav {
    height: 100vh;
    padding-top: 80px;
  }

  .main-nav li {
    margin: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .main-nav li a {
    display: block;
    padding: 15px;
    font-size: 1.2rem;
  }

  .nav-toggle:checked ~ .main-nav li {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .contact-container {
    padding: 20px;
  }
}
