



:root {
  --primary-color: #2c5aa0;
  --secondary-color: #4a7c59;
  --accent-color: #f2c14e;
  --text-dark: #2c3e50;
  --text-light: #f8f9fa;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}


.button {
  border-radius: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s ease;
}

.button.is-primary {
  background: linear-gradient(135deg, var(--primary-color), #3a6bb0);
  color: white;
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.button.is-primary:hover {
  background: linear-gradient(135deg, #3a6bb0, var(--primary-color));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.button.is-secondary {
  background: linear-gradient(135deg, var(--secondary-color), #5a8c69);
  color: white;
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.button.is-secondary:hover {
  background: linear-gradient(135deg, #5a8c69, var(--secondary-color));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.button.is-accent {
  background: linear-gradient(135deg, var(--accent-color), #f5d76e);
  color: var(--text-dark);
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.3);
}

.button.is-accent:hover {
  background: linear-gradient(135deg, #f5d76e, var(--accent-color));
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}


.card {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-header {
  background: linear-gradient(135deg, var(--primary-color), #3a6bb0);
  color: white;
  border-radius: 12px 12px 0 0;
}


.section {
  padding: 4rem 0;
}

.section.is-light {
  background-color: white;
}

.section.is-dark {
  background-color: var(--text-dark);
  color: white;
}

.section.is-dark h4 {
  color:inherit;
}

.section.is-bg-primary {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}


.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(74, 124, 89, 0.8));
}


.service-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

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

.service-card-image {
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}


.testimonial-card {
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-color);
  font-family: 'Playfair Display', serif;
}


.team-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card-image {
  height: 250px;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact-form {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  background: white;
}


.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0;
}

.footer a {
  color: white;
  transition: color 0.3s ease;
}

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


.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  padding: 1rem 0;
}

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

.navbar-item {
  font-weight: 500;
  transition: color 0.3s ease;
}

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


.tag.is-service {
  background: linear-gradient(135deg, var(--primary-color), #3a6bb0);
  color: white;
  border-radius: 20px;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}


.progress-wrapper {
  margin-bottom: 1rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.progress {
  height: 8px;
  border-radius: 4px;
  background: #e9ecef;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
  transition: width 2s ease;
}


.price-display {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-period {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 400;
}


@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .button {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.service-card {
  transition-delay: 0.1s;
}

.fade-in.testimonial-card {
  transition-delay: 0.2s;
}

.fade-in.box {
  transition-delay: 0.1s;
}


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

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

.text-accent {
  color: var(--accent-color);
}

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

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

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


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 90, 160, 0.95);
  color: white;
  padding: 1rem 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.cookie-consent-banner h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.cookie-consent-banner p {
  margin-bottom: 1rem;
  color: #e9ecef;
}

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


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

.timeline::before {
   content: '';
   position: absolute;
   top: 0;
   bottom: 0;
   width: 4px;
   background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
   left: 50%;
   transform: translateX(-50%);
   border-radius: 2px;
}

.timeline-item {
   position: relative;
   width: 100%;
   margin-bottom: 3rem;
   display: flex;
   align-items: center;
}

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

.timeline-marker {
   position: relative;
   width: 80px;
   height: 80px;
   border-radius: 50%;
   background: white;
   border: 4px solid var(--primary-color);
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   z-index: 2;
   transition: all 0.3s ease;
}

.timeline-marker:hover {
   transform: scale(1.1);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-marker.is-primary {
   background: linear-gradient(135deg, var(--primary-color), #3a6bb0);
   color: white;
}

.timeline-marker.is-icon {
   font-size: 1.5rem;
}

.timeline-content {
   width: calc(50% - 60px);
   padding: 0 2rem;
   background: white;
   border-radius: 12px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

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

.timeline-content:hover {
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
   color: var(--primary-color);
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.timeline-content h3::before {
   content: '';
   width: 20px;
   height: 3px;
   background: linear-gradient(to right, var(--primary-color), var(--accent-color));
   border-radius: 2px;
}

.timeline-content .box {
   border: 1px solid #e9ecef;
   border-radius: 8px;
   margin-top: 1rem;
}

@media (max-width: 768px) {
   .timeline::before {
       left: 20px;
   }
   
   .timeline-item {
       flex-direction: row !important;
   }
   
   .timeline-marker {
       margin-left: -60px;
   }
   
   .timeline-content {
       width: calc(100% - 100px);
       padding: 1rem;
       margin-left: 80px;
   }
   
   .timeline-item:nth-child(odd) .timeline-content {
       margin-left: 80px;
   }
}

.timeline-item {
   opacity: 0;
   transform: translateX(-50px);
   transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item.visible {
   opacity: 1;
   transform: translateX(0);
}

.timeline-item:nth-child(even) {
   transform: translateX(50px);
}

.timeline-item:nth-child(even).visible {
   transform: translateX(0);
}

[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;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), #3a6bb0);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

.scroll-to-top:hover, .scroll-to-top:focus {
    background: linear-gradient(135deg, #3a6bb0, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
    scale: 1.1;
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

.scroll-to-top i {
    font-size: 1.2rem;
}

.scroll-to-top.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}