/* 
 * domain - Financial Audit Website
 * Main Stylesheet
 */

/* =========== Base Styles =========== */
:root {
  /* Color Palette */
  --primary-bg-start: #0A192F;
  --primary-bg-end: #00FFD1;
  --accent-magenta: #FF00B8;
  --accent-amber: #FFC400;
  --text-primary: #F8F9FA;
  --text-secondary: #B0BEC5;
  --bg-dark: #1C1C1E;
  --light-gray: #E9ECEF;
  
  /* Typography */
  --font-size-base: 16px;
  --line-height-base: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: 'Arial', sans-serif;
  line-height: var(--line-height-base);
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-bg-start), var(--primary-bg-end));
  background-attachment: fixed;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========== Typography =========== */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  margin-bottom: 2rem;
}

h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--accent-magenta), var(--accent-amber));
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  display: inline-block;
}

.section-header h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* =========== Layout =========== */
section {
  padding: 6rem 0;
  position: relative;
}

section:nth-child(even) {
  background-color: var(--bg-dark);
}

section:nth-child(odd):not(.hero-section) {
  background: linear-gradient(45deg, rgba(10, 25, 47, 0.9), rgba(0, 255, 209, 0.1));
}

.section-diagonal {
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: -50px;
  left: 0;
  transform: skewY(-3deg);
  z-index: 1;
  background-color: inherit;
}

/* =========== Header & Navigation =========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 25, 47, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-logo {
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-menu-toggle a {
  color: var(--text-primary);
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin: 0 1rem;
}

.main-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover, 
.main-nav .active a {
  color: var(--accent-amber);
}

.main-nav a:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-magenta), var(--accent-amber));
  transition: width 0.3s ease;
}

.main-nav a:hover:before, 
.main-nav .active a:before {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  color: var(--text-primary);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 184, 0.3);
  color: var(--text-primary) !important;
}

.nav-cta:before {
  display: none !important;
}

/* =========== Hero Section =========== */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(0, 255, 209, 0.3)), url('../img/XFQxhG.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-section .container {
  z-index: 2;
  max-width: 800px;
}

.hero-section h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-section .tagline {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 2.5rem;
  color: var(--accent-amber);
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  padding: 15px 30px;
  border-radius: 30px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 184, 0.3);
}

/* =========== About Section =========== */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.reveal-text p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.reveal-text p:nth-child(2) {
  animation-delay: 0.4s;
}

/* =========== Services Section =========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(28, 28, 30, 0.8);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--accent-magenta), var(--accent-amber));
  transition: height 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover:before {
  height: 10px;
}

.service-icon {
  width: 100%;
  height: 180px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.service-card h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-amber);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--accent-amber);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.service-link:after {
  content: '→';
  margin-left: 5px;
  transition: margin-left 0.3s;
}

.service-link:hover {
  color: var(--accent-magenta);
}

.service-link:hover:after {
  margin-left: 10px;
}

/* =========== Benefits Section =========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-block {
  background: rgba(10, 25, 47, 0.5);
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 209, 0.2);
  background: rgba(10, 25, 47, 0.8);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.benefit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-block h3 {
  margin-bottom: 1rem;
}

.benefit-block p {
  color: var(--text-secondary);
}

/* =========== Testimonials Section =========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(10, 25, 47, 0.5);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  border: 2px solid transparent;
  background-image: linear-gradient(rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.5)),
                   linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 0, 184, 0.2);
}

.testimonial-card:hover:before {
  color: rgba(255, 0, 184, 0.15);
}

.testimonial-card:hover .testimonial-author strong {
  color: var(--accent-magenta);
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255, 196, 0, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  text-align: right;
  border-top: 1px solid rgba(255, 196, 0, 0.2);
  padding-top: 1rem;
}

.testimonial-author strong {
  color: var(--accent-amber);
}

/* =========== Process Section =========== */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent-magenta), var(--accent-amber));
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.step-content {
  width: 45%;
  background: rgba(28, 28, 30, 0.8);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step:nth-child(odd) .step-content {
  margin-left: auto;
}

/* =========== Pricing Section =========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(28, 28, 30, 0.8);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.featured {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(0, 255, 209, 0.2));
  box-shadow: 0 15px 30px rgba(0, 255, 209, 0.3);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  background: linear-gradient(45deg, rgba(255, 0, 184, 0.8), rgba(255, 196, 0, 0.8));
  padding: 2rem;
  text-align: center;
}

.pricing-header h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-features {
  padding: 2rem;
}

.pricing-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li:before {
  content: '✓';
  color: var(--accent-amber);
  position: absolute;
  left: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  margin: 1rem 2rem 2rem;
  padding: 0.8rem;
  background: linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 184, 0.3);
}

/* =========== Form Section =========== */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(28, 28, 30, 0.8);
  border-radius: 10px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 8px 2px 8px 2px;
  background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
              linear-gradient(45deg, var(--accent-magenta), var(--accent-amber)) border-box;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.3);
}

select.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.3), 0 0 20px rgba(255, 0, 184, 0.4);
  border-color: var(--accent-amber);
}

/* Add animation to make the dropdown more noticeable */
@keyframes borderPulse {
  0% { box-shadow: 0 0 15px rgba(255, 0, 184, 0.25); }
  50% { box-shadow: 0 0 15px rgba(255, 196, 0, 0.4); }
  100% { box-shadow: 0 0 15px rgba(255, 0, 184, 0.25); }
}

.select-wrapper .form-control {
  animation: borderPulse 2s infinite;
}

.form-control::placeholder {
  color: var(--text-secondary);
}

select.form-control {
  appearance: none;
  color: var(--text-primary);
  border: 3px solid transparent;
  background-color: var(--bg-dark);
  background-image: 
    linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
    linear-gradient(45deg, var(--accent-magenta), var(--accent-amber)) border-box,
    linear-gradient(45deg, transparent 50%, var(--accent-amber) 50%),
    linear-gradient(135deg, var(--accent-amber) 50%, transparent 50%);
  background-position: 
    0 0,
    0 0,
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 
    100% 100%,
    100% 100%,
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
  box-shadow: 0 0 15px rgba(255, 0, 184, 0.25);
  position: relative;
  z-index: 1;
}

select.form-control option {
  color: var(--text-primary);
  background-color: var(--primary-bg-start);
}

/* Add highlight effect around the select dropdown */
select.form-control::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 8px 2px 8px 2px;
  background: linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  z-index: -1;
  opacity: 0.5;
}

/* Add special label for the dropdown */
.select-wrapper {
  position: relative;
}

.select-wrapper::before {
  content: 'Auswählen ▼';
  position: absolute;
  top: -25px;
  right: 10px;
  font-size: 0.8rem;
  color: var(--accent-amber);
  font-weight: bold;
  pointer-events: none;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: var(--bg-dark);
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg-dark), var(--bg-dark)),
                   linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 4px;
  margin-right: 10px;
}

.checkbox-label input:checked ~ .checkmark:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--accent-amber);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.9rem;
}

.checkbox-text a {
  color: var(--accent-amber);
  text-decoration: none;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  color: var(--text-primary);
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 184, 0.3);
}

/* =========== Footer =========== */
.site-footer {
  background-color: var(--primary-bg-start);
  padding: 4rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.text-logo-footer {
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-magenta), var(--accent-amber));
}

.footer-links, .contact-info {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-amber);
}

.contact-info li {
  display: flex;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.contact-info .icon {
  margin-right: 10px;
  color: var(--accent-amber);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(176, 190, 197, 0.2);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* =========== Policy Pages =========== */
.policy-section {
  padding: 8rem 0 4rem;
}

.policy-frame {
  background: rgba(28, 28, 30, 0.8);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background-image: linear-gradient(rgba(28, 28, 30, 0.8), rgba(28, 28, 30, 0.8)),
                   linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.policy-frame h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.policy-content {
  line-height: 1.8;
}

.policy-content h2 {
  margin-top: 2rem;
  color: var(--accent-amber);
}

.policy-content p, .policy-content li {
  color: var(--text-secondary);
}

.policy-content a {
  color: var(--accent-amber);
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-date {
  margin-top: 2rem;
  text-align: right;
  font-style: italic;
  color: var(--text-secondary);
}

/* =========== Thank You Page =========== */
.thankyou-section {
  height: calc(100vh - 80px);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.thankyou-content {
  max-width: 600px;
  background: rgba(28, 28, 30, 0.8);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 2.5rem;
  margin: 0 auto;
  background-image: linear-gradient(rgba(28, 28, 30, 0.8), rgba(28, 28, 30, 0.8)),
                   linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(45deg, var(--accent-magenta), var(--accent-amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-mark {
  font-size: 50px;
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* =========== Services Detail Page =========== */
.page-header {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(0, 255, 209, 0.3)), url('../img/PMjbfW.jpg');
  background-size: cover;
  background-position: center;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
}

.page-header:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.service-detail-section {
  padding: 4rem 0;
}

.service-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.service-detail.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-content {
  flex: 1;
  min-width: 300px;
}

.service-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-amber);
}

.service-content ul {
  margin: 1rem 0 2rem 1.2rem;
  color: var(--text-secondary);
}

.service-content ul li {
  margin-bottom: 0.5rem;
}

/* =========== Cookie Consent =========== */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(45deg, var(--primary-bg-start), rgba(0, 255, 209, 0.8));
  color: var(--text-primary);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-content a {
  color: var(--accent-amber);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-button {
  background: var(--accent-magenta);
  color: var(--text-primary);
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s, transform 0.3s;
}

.cookie-button:hover {
  background: var(--accent-amber);
  transform: translateY(-3px);
}

/* =========== Animations =========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========== Responsive Styles =========== */
@media (max-width: 992px) {
  .process-timeline:before {
    left: 20px;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    left: 20px;
    transform: none;
  }
  
  .step-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }
  
  .service-detail, .service-detail.reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--primary-bg-start);
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  
  .main-nav.menu-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav li {
    margin: 0.8rem 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .tagline {
    font-size: 1.2rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .service-card, .benefit-block {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
