/* FILE: css/style.css */

:root {
  /* Dark theme with charcoal-grey and ruby accents */
  --bg-primary: #1a1a1d;
  --bg-secondary: #2b2b2e;
  --bg-dark-section: #242426;
  --text-primary: #e8e8e8;
  --text-secondary: #b8b8b8;
  --accent-ruby: #c41e3a;
  --accent-ruby-light: #e63950;
  --accent-ruby-dark: #9a1729;
  --border-color: #3a3a3d;
  --card-bg: #2b2b2e;
  --overlay: rgba(26, 26, 29, 0.95);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #c41e3a 0%, #9a1729 100%);
  --gradient-subtle: linear-gradient(180deg, #1a1a1d 0%, #242426 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);

  /* Transitions */
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

a {
  color: var(--accent-ruby-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-ruby);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
.header {
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-name {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-ruby-light);
}

.navbar-toggler {
  border-color: var(--accent-ruby);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(228, 57, 80, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.dropdown-item {
  color: var(--text-primary);
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: var(--accent-ruby-dark);
  color: var(--text-primary);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-ruby-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--accent-ruby);
  color: var(--accent-ruby);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent-ruby);
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--accent-ruby);
  color: var(--accent-ruby);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--accent-ruby);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: var(--gradient-subtle);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(196, 30, 58, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

/* Problems Section */
.problems {
  background-color: var(--bg-secondary);
}

.problem-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-ruby);
}

.problem-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}

.problem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.problem-card p {
  color: var(--text-secondary);
  margin: 0;
}

/* Who It's For Section */
.who-its-for {
  background-color: var(--bg-primary);
}

.who-its-for img {
  box-shadow: var(--shadow-lg);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: start;
  gap: 1rem;
  font-size: 1.125rem;
}

.feature-list i {
  color: var(--accent-ruby);
  margin-top: 0.25rem;
  font-size: 1.25rem;
}

/* Our Approach Section */
.our-approach {
  background-color: var(--bg-dark-section);
}

.approach-block {
  margin-bottom: 4rem;
}

.approach-block:last-child {
  margin-bottom: 0;
}

.approach-number {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.approach-block h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.approach-list {
  list-style: none;
  padding-left: 0;
}

.approach-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.approach-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-ruby);
  font-weight: bold;
}

.approach-block img {
  box-shadow: var(--shadow-lg);
}

.differentiator {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  border: 1px solid var(--border-color);
}

.differentiator h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.differentiator i {
  color: var(--accent-ruby);
  font-size: 1.5rem;
}

/* Services Section */
.services {
  background-color: var(--bg-secondary);
}

.service-card {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 8px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-ruby);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-features i {
  color: var(--accent-ruby);
}

/* Process Section - Timeline */
.process {
  background-color: var(--bg-primary);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-ruby);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  z-index: 1;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  flex: 1;
  max-width: 400px;
  border: 1px solid var(--border-color);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Results Section */
.results {
  background-color: var(--bg-dark-section);
}

.result-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-ruby);
}

.result-card i {
  font-size: 3rem;
  color: var(--accent-ruby);
  margin-bottom: 1rem;
}

.result-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Form Section */
.contact-form-section {
  background-color: var(--bg-secondary);
}

.contact-form-wrapper {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-label {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem;
  border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
  background-color: var(--bg-secondary);
  border-color: var(--accent-ruby);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

.form-check-input {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}

.form-check-input:checked {
  background-color: var(--accent-ruby);
  border-color: var(--accent-ruby);
}

.form-check-label {
  color: var(--text-secondary);
}

.form-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* FAQ Section */
.faq {
  background-color: var(--bg-primary);
}

.accordion {
  --bs-accordion-bg: var(--card-bg);
  --bs-accordion-border-color: var(--border-color);
  --bs-accordion-color: var(--text-primary);
  --bs-accordion-active-bg: var(--bg-secondary);
  --bs-accordion-active-color: var(--text-primary);
  --bs-accordion-btn-focus-border-color: var(--accent-ruby);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

.accordion-button {
  background-color: var(--card-bg);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.125rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  box-shadow: none;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background-color: var(--card-bg);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.final-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer h5 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
}

.footer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-ruby-light);
  padding-left: 5px;
}

.footer-contacts {
  list-style: none;
  padding: 0;
}

.footer-contacts li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contacts i {
  color: var(--accent-ruby);
  width: 20px;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Service Pages */
.service-hero {
  background: var(--gradient-subtle);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-section {
  padding: 4rem 0;
}

.bg-dark-section {
  background-color: var(--bg-dark-section);
}

.info-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--accent-ruby);
  transform: translateY(-3px);
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-card i {
  color: var(--accent-ruby);
}

.problem-list {
  list-style: none;
  padding-left: 0;
}

.problem-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
}

.problem-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-ruby);
  font-size: 1.5rem;
  line-height: 1;
}

.delivery-steps {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.result-item {
  text-align: center;
  padding: 1.5rem;
}

.result-item i {
  font-size: 3rem;
  color: var(--accent-ruby);
  margin-bottom: 1rem;
}

.result-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.analysis-area {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.analysis-area:hover {
  border-color: var(--accent-ruby);
  transform: translateY(-3px);
}

.analysis-area h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.analysis-area i {
  color: var(--accent-ruby);
}

.service-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0;
}

.service-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact Page */
.page-hero {
  background: var(--gradient-subtle);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-page {
  padding: 5rem 0;
}

.contact-info {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: fit-content;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-note {
  background-color: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-ruby);
  margin-top: 2rem;
}

.contact-note h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.contact-note p {
  color: var(--text-secondary);
  margin: 0;
}

/* Thank You Page */
.thank-you-section {
  padding: 6rem 0;
  text-align: center;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-icon i {
  font-size: 4rem;
  color: white;
}

.thank-you-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.thank-you-content {
  margin-top: 3rem;
}

.next-step {
  text-align: center;
}

.next-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
}

.next-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Legal Pages */
.legal-page {
  padding: 5rem 0;
}

.legal-page h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.legal-page h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-page h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.legal-page p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.legal-page strong {
  color: var(--text-primary);
}

.legal-page .table {
  --bs-table-bg: var(--card-bg);
  --bs-table-color: var(--text-primary);
  --bs-table-border-color: var(--border-color);
}

.legal-page .table thead {
  background-color: var(--bg-secondary);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-secondary);
  border-top: 2px solid var(--accent-ruby);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  color: var(--text-secondary);
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--bg-secondary);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
}

.cookie-option {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-option h3 {
  font-size: 1.25rem;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: var(--bg-primary);
  border-radius: 26px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle.active {
  background-color: var(--accent-ruby);
}

.cookie-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle.active .cookie-toggle-slider {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"].aos-animate {
  animation: fadeInUp 0.6s ease forwards;
}

[data-aos="fade-right"].aos-animate {
  animation: fadeInUp 0.6s ease forwards;
}

[data-aos="fade-left"].aos-animate {
  animation: fadeInUp 0.6s ease forwards;
}

[data-aos="zoom-in"].aos-animate {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-marker {
    left: 30px;
    transform: translateX(0);
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 80px;
  }

  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .approach-block {
    margin-bottom: 3rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-buttons .btn {
    width: 100%;
  }
}
