/* 
   domain - Financial Audit Website
   Main Stylesheet
*/

/* ===== GLOBAL STYLES ===== */
:root {
  --main-bg: #1c1c1e;
  --accent-green: #00ffb2;
  --accent-purple: #b07fff;
  --text-white: #ffffff;
  --text-gray: #c3c3c3;
  --transition: all 0.3s ease;
  --border-radius: 15px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--main-bg);
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
}

section[id] {
  scroll-margin-top: 40px;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-purple);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.section-padding {
  padding: 5rem 0;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  color: var(--text-white);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-purple)
  );
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--text-white);
}

/* Glass effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(28, 28, 30, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-white);
}

.logo span {
  color: var(--accent-green);
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--text-white);
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-purple)
  );
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Mobile menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--text-white);
  transition: var(--transition);
}

#mobile-menu-toggle {
  display: none;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* ===== ABOUT SECTION ===== */
.about {
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-purple)
  );
}

.about-text p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== SERVICES SECTION ===== */
.services {
  position: relative;
  overflow: hidden;
}

.services-title {
  text-align: center;
  margin-bottom: 3rem;
}

.services-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-title p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  padding: 0;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card h3,
.service-card p,
.service-card .btn {
  padding: 0 2rem;
}

.service-card h3 {
  margin-top: 1.5rem;
}

.service-card .btn {
  margin-bottom: 2rem;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 178, 0.1),
    rgba(176, 127, 255, 0.1)
  );
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-green);
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
  position: relative;
}

.advantages-title {
  text-align: center;
  margin-bottom: 3rem;
}

.advantages-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.advantages-title p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-item {
  text-align: center;
  padding: 0;
  border-radius: var(--border-radius);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.advantage-item h3,
.advantage-item p {
  padding: 0 2rem;
}

.advantage-item h3 {
  margin-top: 1.5rem;
}

.advantage-item p {
  margin-bottom: 2rem;
}

/* Card Image Styles */
.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.service-card:hover .card-image img,
.advantage-item:hover .card-image img {
  transform: scale(1.05);
}

.advantage-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.advantage-item p {
  color: var(--text-gray);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  position: relative;
}

.testimonials-title {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.testimonials-title p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  position: relative;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author-info p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* ===== STAGES SECTION ===== */
.stages {
  position: relative;
}

.stages-title {
  text-align: center;
  margin-bottom: 3rem;
}

.stages-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stages-title p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.stage-card {
  padding: 0;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.stage-card h3,
.stage-card p {
  padding: 0 2rem;
}

.stage-card h3 {
  margin-top: 1.5rem;
}

.stage-card p {
  margin-bottom: 2rem;
}

.stage-number {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-purple)
  );
  font-weight: bold;
  z-index: 2;
}

.stage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-green);
}

.stage-card p {
  color: var(--text-gray);
}

/* ===== FORM SECTION ===== */
.contact {
  position: relative;
}

.contact-title {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-title p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--border-radius);
  position: relative;
}
option {
  background-color: #323234;
}
@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 10px rgba(0, 255, 178, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input {
  margin-top: 5px;
}

.form-checkbox label {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.form-checkbox label a {
  text-decoration: underline;
}

.form-submit {
  text-align: center;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem 0 1.5rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 2rem;
}

.footer-info h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-green);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--text-gray);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--accent-green);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* ===== LEGAL PAGES ===== */
.legal-container {
  max-width: 900px;
  margin: 8rem auto 5rem;
  padding: 3rem;
  border-radius: var(--border-radius);
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 15px;
  position: relative;
}

.legal-container h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-purple)
  );
}

.legal-container h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--accent-green);
}

.legal-container p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
  color: var(--text-gray);
  margin: 1rem 0 1rem 2rem;
}

.legal-container li {
  margin-bottom: 0.5rem;
}

/* ===== DANKE-SEITE ===== */
.danke-container {
  max-width: 600px;
  margin: 8rem auto 5rem;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.danke-container h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-green);
}

.danke-container p {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* ===== FAQ SECTION ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  display: block;
  position: relative;
  padding: 1rem;
  padding-right: 2.5rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-toggle {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  color: var(--text-gray);
  transition: var(--transition);
}

.faq-toggle:checked ~ .faq-question {
  background: rgba(0, 255, 178, 0.1);
}

.faq-toggle:checked ~ .faq-question::after {
  content: "-";
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding: 1rem;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  padding: 1.5rem;
  background: rgba(28, 28, 30, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-popup.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.cookie-popup h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.cookie-popup p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
  text-align: center;
}

.cookie-accept {
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-purple)
  );
  color: var(--text-white);
  border: none;
}

.cookie-reject {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-gray);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  /* Mobile menu */
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  nav ul li {
    margin: 0;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 1rem;
  }

  .hamburger {
    display: block;
    order: 2;
  }

  #mobile-menu-toggle:checked ~ nav ul {
    display: flex;
  }

  #mobile-menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #mobile-menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }

  /* Hero */
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Sections */
  .section-padding {
    padding: 3rem 0;
  }

  /* Form */
  .contact-form {
    padding: 2rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .btn {
    padding: 10px 20px;
  }

  .service-card,
  .advantage-item,
  .testimonial-card,
  .stage-card {
    padding: 1.5rem;
  }

  .legal-container,
  .danke-container {
    padding: 1.5rem;
    margin: 6rem auto 3rem;
  }
}
