:root {
  --color-charcoal: #1a2332;
  --color-bluish-charcoal: #1e2836;
  --color-dark-blue: #141d2b;
  --color-copper: #d87e4a;
  --color-copper-light: #e69464;
  --color-copper-dark: #c16f3f;
  --color-white: #ffffff;
  --color-light-gray: #e5e7eb;
  --color-medium-gray: #9ca3af;
  --color-dark-gray: #374151;
  --color-text: #f3f4f6;
  --color-text-muted: #d1d5db;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-dark-blue);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

a {
  color: var(--color-copper);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-copper-light);
}

/* Navigation */
.navbar {
  background-color: rgba(26, 35, 50, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-copper) !important;
}

/* Buttons */
.btn-copper {
  background-color: var(--color-copper);
  color: var(--color-white);
  border: 2px solid var(--color-copper);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-copper:hover {
  background-color: var(--color-copper-dark);
  border-color: var(--color-copper-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 126, 74, 0.3);
}

.btn-outline-copper {
  background-color: transparent;
  color: var(--color-copper);
  border: 2px solid var(--color-copper);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-outline-copper:hover {
  background-color: var(--color-copper);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-bluish-charcoal) 100%);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

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

.hero-image {
  border: 3px solid var(--color-copper);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.hero-image:hover {
  transform: scale(1.02);
}

/* Section Styling */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-copper);
}

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

.audience-section,
.problems-section,
.services-section,
.process-section,
.results-section,
.faq-section,
.contact-section,
.cta-section {
  background-color: var(--color-bluish-charcoal);
}

.audience-section:nth-child(even),
.problems-section:nth-child(even),
.services-section:nth-child(even),
.process-section:nth-child(even),
.results-section:nth-child(even),
.faq-section:nth-child(even),
.contact-section:nth-child(even) {
  background-color: var(--color-charcoal);
}

/* Audience Cards */
.audience-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 126, 74, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.audience-card:hover {
  background-color: rgba(216, 126, 74, 0.1);
  border-color: var(--color-copper);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(216, 126, 74, 0.2);
}

.audience-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.audience-card .icon-wrapper i {
  font-size: 2rem;
  color: var(--color-white);
}

.audience-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.audience-card p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Problem Items */
.problem-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid var(--color-copper);
  transition: var(--transition);
}

.problem-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.problem-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon i {
  font-size: 1.5rem;
  color: var(--color-white);
}

.problem-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.problem-content p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Service Cards */
.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 126, 74, 0.2);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}

.service-card:hover {
  background-color: rgba(216, 126, 74, 0.1);
  border-color: var(--color-copper);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(216, 126, 74, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--color-white);
}

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

.service-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--color-copper);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  gap: 0.75rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

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

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

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

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

.timeline-marker {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  box-shadow: 0 5px 20px rgba(216, 126, 74, 0.4);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  flex: 1;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(216, 126, 74, 0.2);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: calc(50% + 50px);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + 50px);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-copper);
}

.timeline-content p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

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

/* Result Items */
.result-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: var(--transition);
}

.result-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.result-icon {
  flex-shrink: 0;
}

.result-icon i {
  font-size: 1.5rem;
  color: var(--color-copper);
}

.result-text h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.result-text p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* FAQ Accordion */
.accordion {
  --bs-accordion-bg: rgba(255, 255, 255, 0.05);
  --bs-accordion-border-color: rgba(216, 126, 74, 0.2);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: rgba(216, 126, 74, 0.1);
  --bs-accordion-btn-color: var(--color-text);
  --bs-accordion-active-color: var(--color-white);
}

.accordion-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 126, 74, 0.2);
  margin-bottom: 1rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.25rem 1.5rem;
  color: var(--color-text);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(216, 126, 74, 0.1);
  color: var(--color-white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-copper);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d87e4a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Contact Form */
.contact-card,
.contact-form-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 126, 74, 0.2);
  border-radius: 12px;
  padding: 3rem;
}

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

.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 126, 74, 0.2);
  color: var(--color-text);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-copper);
  box-shadow: 0 0 0 0.2rem rgba(216, 126, 74, 0.25);
  color: var(--color-white);
}

.form-control::placeholder {
  color: var(--color-medium-gray);
}

.form-check-input {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(216, 126, 74, 0.2);
}

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

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

/* Footer */
.footer {
  background-color: var(--color-charcoal);
  border-top: 1px solid rgba(216, 126, 74, 0.2);
}

.footer-title {
  color: var(--color-copper);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(216, 126, 74, 0.1);
  border: 1px solid rgba(216, 126, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-copper);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--color-copper);
  color: var(--color-white);
  transform: translateY(-3px);
}

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

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

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

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

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

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

.footer-contact i {
  color: var(--color-copper);
}

.footer-divider {
  border-color: rgba(216, 126, 74, 0.2);
  margin: 2rem 0;
}

.footer-copyright {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  border-top: 2px solid var(--color-copper);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  color: var(--color-text);
}

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

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-bluish-charcoal) 100%);
  padding: 150px 0 80px;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-item {
  color: var(--color-text-muted);
}

.breadcrumb-item.active {
  color: var(--color-copper);
}

.breadcrumb-item a {
  color: var(--color-text);
}

/* Contact Page */
.contact-content {
  background-color: var(--color-bluish-charcoal);
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid var(--color-copper);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon i {
  font-size: 1.25rem;
  color: var(--color-white);
}

.contact-info-item h5 {
  margin-bottom: 0.5rem;
  color: var(--color-copper);
}

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

.contact-reasons {
  list-style: none;
  padding: 0;
}

.contact-reasons li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.contact-reasons i {
  color: var(--color-copper);
  flex-shrink: 0;
}

/* Service Page */
.service-overview {
  background-color: var(--color-bluish-charcoal);
}

.service-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-feature i {
  font-size: 1.5rem;
  color: var(--color-copper);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.service-feature h5 {
  margin-bottom: 0.5rem;
}

.service-feature p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.service-process {
  background-color: var(--color-charcoal);
}

.process-step {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 126, 74, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.process-step:hover {
  background-color: rgba(216, 126, 74, 0.1);
  border-color: var(--color-copper);
  transform: translateY(-5px);
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 auto 1.5rem;
}

.process-step h4 {
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.service-benefits {
  background-color: var(--color-bluish-charcoal);
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 126, 74, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.benefit-card:hover {
  background-color: rgba(216, 126, 74, 0.1);
  border-color: var(--color-copper);
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 3rem;
  color: var(--color-copper);
  margin-bottom: 1rem;
}

.benefit-card h4 {
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.service-cta {
  background-color: var(--color-charcoal);
}

/* Legal Pages */
.legal-content {
  background-color: var(--color-bluish-charcoal);
}

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

.legal-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-copper);
}

.legal-section h4 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section p,
.legal-section li {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-bluish-charcoal) 100%);
  padding: 150px 0;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-copper);
  margin-bottom: 2rem;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-info {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 126, 74, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.thank-you-steps {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.thank-you-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

.thank-you-steps i {
  color: var(--color-copper);
  font-size: 1.5rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thank-you-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(216, 126, 74, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
  .timeline::before {
    left: 30px;
  }

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

  .timeline-marker {
    left: 30px;
    transform: none;
  }

  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
