:root {
  --gradient-primary: linear-gradient(135deg, #f5ebe0 0%, #e3d5ca 50%, #d5bdaf 100%);
  --gradient-accent: linear-gradient(135deg, #b4a0e5 0%, #9d84d9 50%, #8668cc 100%);
  --gradient-button: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
  --color-dark-purple: #5a4a7d;
  --color-purple-magenta: #8b5a8c;
  --color-graphite: #3a3a3a;
  --color-light-bg: #faf8f6;
  --color-cream: #f5ebe0;
  --color-beige: #e3d5ca;
  --color-purple-light: #d4c5f9;
  --color-blue-soft: #a8c5e3;
  --color-white: #ffffff;
  --color-text: #3a3a3a;
  --color-text-light: #666666;
  --shadow-soft: 0 10px 30px rgba(90, 74, 125, 0.1);
  --shadow-medium: 0 15px 40px rgba(90, 74, 125, 0.15);
  --transition-smooth: all 0.3s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-light-bg);
  overflow-x: hidden;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-light .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-button);
  transition: var(--transition-smooth);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
  width: 100%;
}

.hero-section {
  min-height: 100vh;
  background: url("../images/hero-movement.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(180, 160, 229, 0.7) 0%, rgba(139, 90, 140, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.floating-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.bubble-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.bubble-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.btn-gradient {
  background: var(--gradient-button);
  border: none;
  color: var(--color-white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  display: inline-block;
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
  color: var(--color-white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-graphite);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3a3a3a 0%, #5a4a7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.section-text {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.rounded-image {
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
}

.gradient-card {
  background: linear-gradient(135deg, rgba(180, 160, 229, 0.2) 0%, rgba(168, 197, 227, 0.2) 100%);
  border: none;
  border-radius: 25px;
  padding: 2rem;
  transition: var(--transition-smooth);
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.gradient-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.gradient-card .card-title {
  color: var(--color-dark-purple);
  font-weight: 700;
  margin-bottom: 1rem;
}

.gradient-card .card-text {
  color: var(--color-text);
  line-height: 1.6;
}

.strength-card {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  background: var(--color-white);
}

.strength-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.strength-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.strength-content {
  padding: 1.5rem;
}

.strength-content h5 {
  color: var(--color-dark-purple);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.strength-content p {
  color: var(--color-text);
  line-height: 1.6;
}

.bubbles-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.insight-bubble {
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.insight-bubble:hover {
  transform: scale(1.05);
}

.insight-bubble p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.bubble-author {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.bubble-large {
  width: 300px;
  height: 300px;
}

.bubble-medium {
  width: 250px;
  height: 250px;
}

.bubble-medium-alt {
  width: 280px;
  height: 280px;
}

.bubble-small {
  width: 200px;
  height: 200px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--color-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-dark-purple);
}

.faq-bubbles-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
}

.faq-bubble {
  background: linear-gradient(135deg, rgba(180, 160, 229, 0.3) 0%, rgba(168, 197, 227, 0.3) 100%);
  border-radius: 50%;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.faq-bubble:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.faq-bubble h5 {
  color: var(--color-dark-purple);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-bubble p {
  color: var(--color-text);
  line-height: 1.5;
  font-size: 0.95rem;
}

.faq-bubble-1 {
  width: 280px;
  height: 280px;
}

.faq-bubble-2 {
  width: 260px;
  height: 260px;
}

.faq-bubble-3 {
  width: 240px;
  height: 240px;
}

.faq-bubble-4 {
  width: 270px;
  height: 270px;
}

.faq-bubble-5 {
  width: 250px;
  height: 250px;
}

.cta-section {
  background: var(--gradient-primary);
  padding: 5rem 0;
}

.footer-gradient {
  background: linear-gradient(135deg, #5a4a7d 0%, #8b5a8c 100%);
  color: var(--color-white);
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.footer-text {
  line-height: 1.8;
  opacity: 0.9;
}

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

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

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-copyright {
  opacity: 0.8;
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #3a3a3a 0%, #5a4a7d 100%);
  color: var(--color-white);
  padding: 1.5rem 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-link {
  color: var(--color-white);
  text-decoration: underline;
}

.btn-outline-light {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-dark-purple);
}

.page-hero {
  min-height: 50vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.page-hero-sm {
  min-height: 35vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-graphite);
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
}

.principle-card {
  background: var(--color-white);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  height: 100%;
}

.principle-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.principle-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.principle-title {
  color: var(--color-dark-purple);
  font-weight: 700;
  margin-bottom: 1rem;
}

.principle-text {
  color: var(--color-text);
  line-height: 1.7;
}

.concept-block {
  background: var(--color-white);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.concept-title {
  color: var(--color-dark-purple);
  font-weight: 700;
  margin-bottom: 1rem;
}

.concept-text {
  color: var(--color-text);
  line-height: 1.8;
}

.gradient-shape {
  width: 100%;
  height: 400px;
  background: var(--gradient-accent);
  border-radius: 50% 50% 0 0;
  box-shadow: var(--shadow-medium);
}

.shape-alt {
  border-radius: 0 0 50% 50%;
}

.quote-block {
  background: linear-gradient(135deg, rgba(180, 160, 229, 0.2) 0%, rgba(168, 197, 227, 0.2) 100%);
  border-left: 5px solid var(--color-dark-purple);
  padding: 2rem;
  border-radius: 15px;
}

.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author {
  font-weight: 600;
  color: var(--color-purple-magenta);
}

.integration-card {
  background: var(--color-white);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  height: 100%;
  text-align: center;
}

.integration-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.integration-card h5 {
  color: var(--color-dark-purple);
  font-weight: 700;
  margin-bottom: 1rem;
}

.integration-card p {
  color: var(--color-text);
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--color-white);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
}

.contact-info {
  background: var(--color-white);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact-label {
  color: var(--color-dark-purple);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-detail {
  color: var(--color-text);
  line-height: 1.8;
}

.map-placeholder {
  background: linear-gradient(135deg, rgba(180, 160, 229, 0.2) 0%, rgba(168, 197, 227, 0.2) 100%);
  border-radius: 15px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form .form-control {
  border: 2px solid var(--color-beige);
  border-radius: 15px;
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
  border-color: var(--color-dark-purple);
  box-shadow: 0 0 0 0.2rem rgba(90, 74, 125, 0.25);
}

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

.form-check-label {
  font-weight: 400;
}

.form-check-label a {
  color: var(--color-dark-purple);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.thank-you-section {
  min-height: 80vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.thank-you-content {
  background: var(--color-white);
  border-radius: 30px;
  padding: 4rem 3rem;
  box-shadow: var(--shadow-medium);
}

.thank-you-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.2rem;
  color: var(--color-text);
  line-height: 1.8;
}

.legal-content {
  background: var(--color-white);
}

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

.legal-section h2 {
  color: var(--color-dark-purple);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.legal-section h4 {
  color: var(--color-purple-magenta);
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.legal-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-section li {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--color-dark-purple);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .page-title {
    font-size: 2.2rem;
  }

  .bubble-large,
  .bubble-medium,
  .bubble-medium-alt,
  .bubble-small {
    width: 200px;
    height: 200px;
  }

  .faq-bubble-1,
  .faq-bubble-2,
  .faq-bubble-3,
  .faq-bubble-4,
  .faq-bubble-5 {
    width: 220px;
    height: 220px;
  }
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .floating-bubble {
    display: none;
  }

  .gradient-shape {
    height: 250px;
  }

  .thank-you-content {
    padding: 2rem 1.5rem;
  }

  .thank-you-title {
    font-size: 2rem;
  }
}
