@import "https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css";

:root {
  --rv-primary: #2c5282;
  --rv-primary-light: #4a90e2;
  --rv-primary-dark: #1a365d;
  --rv-secondary: #d69e2e;
  --rv-secondary-light: #f6e05e;
  --rv-accent: #38a169;
  --rv-danger: #e53e3e;
  --rv-dark: #2d3748;
  --rv-light: #f7fafc;
  --rv-gray: #718096;
  --rv-border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--rv-dark);
  background-color: #ffffff;
}

strong, p {
  color: inherit;
}

.title.is-1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--rv-primary);
}

.title.is-2 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--rv-primary-dark);
}

.title.is-3 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--rv-primary);
}

.subtitle {
  color: var(--rv-gray);
  font-weight: 400;
}


.btn-primary {
  background: linear-gradient(135deg, var(--rv-primary) 0%, var(--rv-primary-light) 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
  min-width: 160px;
  margin: 0 0.5rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rv-primary-dark) 0%, var(--rv-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 82, 130, 0.4);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--rv-secondary) 0%, var(--rv-secondary-light) 100%);
  color: var(--rv-dark);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 12px rgba(214, 158, 46, 0.3);
  min-width: 160px;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--rv-secondary-light) 0%, var(--rv-secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
  color: var(--rv-dark);
}

.btn-outline {
  background: transparent;
  color: var(--rv-primary);
  border: 2px solid var(--rv-primary);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 160px;
}

.btn-outline:hover {
  background: var(--rv-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}


.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rv-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand .navbar-item {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rv-primary) !important;
}

.navbar-menu {
  font-weight: 600;
}

.navbar-item {
  color: var(--rv-dark) !important;
  transition: color 0.3s ease;
}

.navbar-item:hover {
  color: var(--rv-primary) !important;
  background: transparent !important;
}

.navbar-item.is-active {
  color: var(--rv-primary) !important;
  font-weight: 700;
}


.hero {
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.9) 0%, rgba(74, 144, 226, 0.8) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 100vh;
  position: relative;
}

.hero .title {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .box .title {
  color: var(--rv-gray);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero section button styles - improved visibility */
.hero .btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  min-width: 180px;
  margin: 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .btn-primary:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  color: white;
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.95);
  color: var(--rv-primary);
  border: 3px solid white;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 180px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero .btn-outline:hover {
  background: white;
  color: var(--rv-primary-dark);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}


.card {
  border: 1px solid var(--rv-border);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--rv-primary-light);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rv-primary-dark);
  margin-bottom: 0.5rem;
}

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


.pricing-card {
  background: white;
  border: 2px solid var(--rv-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.pricing-card:hover {
  border-color: var(--rv-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 82, 130, 0.15);
}

.pricing-card.featured {
  border-color: var(--rv-secondary);
  background: linear-gradient(135deg, #fef5e7 0%, #fdf2e9 100%);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--rv-primary);
  margin: 1rem 0;
}

.price-period {
  font-size: 1rem;
  color: var(--rv-gray);
  font-weight: 400;
}


.section {
  padding: 5rem 0;
}

.section.is-light {
  background-color: var(--rv-light);
}

.section.has-pattern {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  position: relative;
}

.section.has-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" width="60" height="60"><g fill="none" stroke="rgba(44,82,130,0.05)" stroke-width="1"><path d="M36 34v-4m-2-2h4m5-5l-5 5m-2 2l5 5m9-13h-4m-2 2h4m5-5l5 5m-2 2l-5 5"/></g></svg>');
  opacity: 0.5;
  pointer-events: none;
}


.field {
  margin-bottom: 1.5rem;
}

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

.input, .textarea {
  border: 2px solid var(--rv-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.input:focus, .textarea:focus {
  border-color: var(--rv-primary);
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
  outline: none;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}


.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--rv-secondary);
  height: 100%;
}

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

.testimonial-author {
  font-weight: 700;
  color: var(--rv-primary);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--rv-gray);
  font-size: 0.9rem;
}


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

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--rv-secondary-light);
}

.footer h4 {
  color: var(--rv-light);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--rv-dark) 0%, #1a202c 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-banner .banner-text {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 100px;
}

.cookie-btn.accept {
  background: var(--rv-accent);
  color: white;
}

.cookie-btn.accept:hover {
  background: #2f855a;
  transform: translateY(-1px);
}

.cookie-btn.decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}


.text-rv-primary { color: var(--rv-primary); }
.text-rv-secondary { color: var(--rv-secondary); }
.text-rv-accent { color: var(--rv-accent); }
.text-rv-gray { color: var(--rv-gray); }
.text-rv-dark { color: var(--rv-dark); }
.text-white { color: white; }

.bg-rv-primary { background-color: var(--rv-primary); }
.bg-rv-secondary { background-color: var(--rv-secondary); }
.bg-rv-accent { background-color: var(--rv-accent); }
.bg-rv-light { background-color: var(--rv-light); }
.bg-white { background-color: white; }


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


@media screen and (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  
  .title.is-1 {
    font-size: 2.5rem;
  }
  
  .title.is-2 {
    font-size: 2rem;
  }
  
  .title.is-3 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  .cookie-consent-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    min-width: auto;
  }
}

@media screen and (max-width: 480px) {
  .title.is-1 {
    font-size: 2rem;
  }
  
  .btn-primary, .btn-secondary, .btn-outline {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


a:focus, button:focus, .input:focus, .textarea:focus {
  outline: 2px solid var(--rv-primary);
  outline-offset: 2px;
}


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