


@import url('https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css');


:root {
  --primary-blue: #1e3a8a;
  --primary-blue-light: #3b82f6;
  --primary-blue-dark: #1e40af;
  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;
  --neutral-gray: #6b7280;
  --neutral-gray-light: #d1d5db;
  --neutral-gray-dark: #374151;
  --text-dark: #111827;
  --text-light: #f9fafb;
  --background-light: #ffffff;
  --background-gray: #f3f4f6;
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}

strong {
  color: inherit
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}


.button {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  padding: 0.75rem 1.5rem;
  min-height: auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.button.is-primary {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

.button.is-primary:hover {
  background-color: var(--primary-blue-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.button.is-secondary {
  background-color: var(--accent-gold);
  color: var(--text-light);
}

.button.is-secondary:hover {
  background-color: var(--accent-gold-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.button.is-outline {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.button.is-outline:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
  transform: translateY(-2px);
}


.section {
  padding: 4rem 2rem;
}

.section.is-medium {
  padding: 6rem 2rem;
}

.section.is-large {
  padding: 8rem 2rem;
}


.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(30, 58, 138, 0.4) 100%);
  z-index: 1;
}

.hero .hero-body {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.hero.is-compact .hero-body {
  min-height: 40vh;
  max-height: 50vh;
  padding: 2rem 2rem;
}

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

.hero h1, .hero h2, .hero .has-text-white {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 0.8s ease-out;
}

.hero .buttons {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero .button {
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .button.is-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

.hero .button.is-primary:hover {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, #1e40af 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
}

.hero .button.is-outline {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero .button.is-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}


.card {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-content {
  padding: 1.5rem;
}


.navbar {
  background-color: var(--background-light) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-brand .navbar-item {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.navbar-burger {
  color: var(--primary-blue);
}

.navbar-menu {
  background-color: var(--background-light);
}

.navbar-item {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-item:hover {
  color: var(--primary-blue);
}


.input, .textarea {
  border-radius: 8px;
  border: 2px solid var(--neutral-gray-light);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input:focus, .textarea:focus, .input.is-focused, .textarea.is-focused {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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


.testimonial-card {
  background: linear-gradient(135deg, var(--background-light) 0%, var(--background-gray) 100%);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  border-left: 4px solid var(--primary-blue);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-blue-light);
  opacity: 0.3;
  font-family: serif;
}


.service-card {
  background: var(--background-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--neutral-gray-light);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary-blue-light);
  transform: translateY(-4px);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}


.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  object-fit: cover;
  border: 4px solid var(--background-light);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--neutral-gray-light);
  z-index: 1;
}

.process-step:last-child::before {
  display: none;
}

.process-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: var(--text-light);
  font-size: 1.5rem;
}


.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1f2937 100%);
  color: var(--text-light);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-blue-light) 50%, var(--accent-gold) 100%);
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer h3, .footer h4 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h3::after, .footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-gold);
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer .footer-link {
  color: var(--neutral-gray-light);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer .footer-link:hover {
  color: var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
}

.footer hr {
  border-color: rgba(59, 130, 246, 0.3);
  opacity: 0.5;
  margin: 3rem 0;
}

.footer p {
  color: var(--neutral-gray-light);
  line-height: 1.6;
}

.footer .field.is-grouped-right {
  margin-top: 1rem;
}

.footer .column:first-child p {
  animation: fadeInLeft 0.6s ease-out;
}

.footer .column:last-child {
  animation: fadeInRight 0.6s ease-out 0.1s both;
}


.cookie-consent-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  padding: 1.5rem 2rem;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  transition: bottom 0.5s ease-out;
  animation: slideInUp 0.6s ease-out;
}

.cookie-consent-banner.is-visible {
  bottom: 0;
}

.cookie-consent-banner p {
  margin: 0;
  flex: 1;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

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

.cookie-consent-banner .button {
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.cookie-consent-banner .button.is-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #f97316 100%);
  color: var(--text-light);
  border: none;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.cookie-consent-banner .button.is-primary:hover {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
}

.cookie-consent-banner .button.is-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-consent-banner .button.is-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-body {
    padding: 2rem 1rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .navbar-brand {
    margin-right: 0;
  }
  
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
}


.is-animated {
  animation: fadeInUp 0.6s ease-out;
}

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

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


.has-text-gold {
  color: var(--accent-gold) !important;
}

.has-text-blue {
  color: var(--primary-blue) !important;
}

.has-bg-blue {
  background-color: var(--primary-blue) !important;
  color: var(--text-light) !important;
}

.has-bg-blue h2, .has-bg-blue h3 {
  color: var(--text-light);
}

.has-bg-blue .button.is-secondary {
  background-color: var(--accent-gold);
  color: var(--text-light) !important;
  border: none;
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.has-bg-blue .button.is-secondary:hover {
  background-color: #d97706;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.has-bg-blue .button.is-outline {
  background-color: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light) !important;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.2);
}

.has-bg-blue .button.is-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.has-bg-gray {
  background-color: var(--background-gray) !important;
}

.is-spaced-section {
  margin-bottom: 4rem;
}

.home-page .hero-main {
  position: relative;
  overflow: hidden;
  background-blend-mode: overlay;
}

.home-page .hero-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(30, 58, 138, 0.5) 50%,
    rgba(245, 158, 11, 0.3) 100%);
  z-index: 1;
  animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(30, 58, 138, 0.5) 50%,
      rgba(245, 158, 11, 0.3) 100%);
  }
  50% {
    background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.3) 0%,
      rgba(30, 58, 138, 0.5) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  }
}

.home-page .hero-content {
  position: relative;
  z-index: 2;
  animation: heroContentFadeIn 1.2s ease-out;
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.home-page .hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  }
  to {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.3);
  }
}

.home-page .hero-subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: subtitleFadeIn 1.4s ease-out;
}

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

.home-page .hero-buttons {
  gap: 1.5rem !important;
  animation: buttonsFadeIn 1.6s ease-out;
}

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

.home-page .hero-btn-primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
  border: none;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-page .hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.home-page .hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e3a8a 100%);
}

.home-page .hero-btn-primary:hover::before {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.home-page .hero-btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-page .hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  backdrop-filter: blur(10px);
}

.home-page .hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  animation: scrollButtonBounce 2s ease-in-out infinite;
}

@keyframes scrollButtonBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.home-page .hero-scroll-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.home-page .hero-scroll-btn i {
  animation: scrollIconFloat 2s ease-in-out infinite;
}

@keyframes scrollIconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.home-page .hero-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(2px 2px at 80% 70%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
    radial-gradient(1px 1px at 40% 10%, rgba(30, 58, 138, 0.2) 0%, transparent 50%);
  animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

@media (max-width: 768px) {
  .home-page .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
  }
  
  .home-page .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .home-page .hero-buttons {
    flex-direction: column;
    gap: 1rem !important;
  }
  
  .home-page .hero-btn-primary,
  .home-page .hero-btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .home-page .hero-scroll-btn {
    width: 50px;
    height: 50px;
  }
  
  .home-page .hero-scroll-btn i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .home-page .hero-title {
    font-size: 2.3rem;
  }
  
  .home-page .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .home-page .hero-buttons .button {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }
}