.is-rv-primary {
  background-color: #1e3a8a !important;
  border-color: #1e3a8a !important;
}

.is-rv-accent {
  background-color: #f59e0b !important;
  border-color: #f59e0b !important;
}

.rv-text-primary {
  color: #1e3a8a !important;
}

.rv-text-accent {
  color: #f59e0b !important;
}

.hero-rv {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
  color: white;
  animation: heroGradient 15s ease-in-out infinite alternate;
}

.hero.is-fullheight .hero-body {
  padding-top: 1rem;
}
.hero.is-medium .hero-body {
  padding: 1rem 4.5rem;
}

/* Internal pages hero section - reduced height */
.internal-hero {
  min-height: 50vh;
  max-height: 60vh;
}

.internal-hero .rv-hero-content {
  padding: 2rem 0;
}

.internal-hero .rv-hero-title {
  font-size: 2.5rem;
}

.internal-hero .rv-hero-subtitle {
  font-size: 1.1rem;
}

.internal-hero .rv-hero-stats {
  display: none;
}

.internal-hero .rv-hero-buttons {
  justify-content: center;
}

.internal-hero .rv-hero-visual {
  display: none;
}

.internal-hero .hero-scroll-indicator {
  display: none;
}

/* Enhanced internal hero design */
.internal-hero .hero-background {
  opacity: 0.4;
  animation-duration: 25s;
}

.internal-hero .hero-video-overlay {
  opacity: 0.2;
  animation-duration: 12s;
}

.internal-hero .rv-hero-badge {
  margin-bottom: 1.5rem;
}

.internal-hero .rv-hero-card {
  background: rgba(255, 255, 255, 0.9);
  color: #1e3a8a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.internal-hero .rv-hero-card-title {
  color: #1e3a8a;
}

.internal-hero .rv-hero-features li {
  border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.internal-hero .rv-guarantee-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}

/* Breadcrumb style for internal pages */
.internal-hero .rv-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-out;
}

.rv-breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.rv-breadcrumb-item:hover {
  color: #fbbf24;
}

.rv-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}

/* Page-specific hero enhancements */
.page-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.internal-hero .rv-hero-pattern-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.1) 50%, rgba(245, 158, 11, 0.05) 100%);
  z-index: 2;
  animation: slidePattern 8s ease-in-out infinite;
}

@keyframes slidePattern {
  0%, 100% {
    transform: translateX(0px);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-20px);
    opacity: 0.6;
  }
}

@keyframes heroGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
  animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
  0%, 100% {
    transform: translateY(0px);
    background-position: 0% 0%;
  }
  50% {
    transform: translateY(-10px);
    background-position: 100% 100%;
  }
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at top left, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(245, 158, 11, 0.6);
  border-radius: 50%;
  animation: floatParticles 15s ease-in-out infinite;
  backdrop-filter: blur(1px);
}

@keyframes floatParticles {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

.rv-hero-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 1.5s ease-out;
}

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

.rv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
}

.rv-badge-icon {
  font-size: 1.25rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.rv-hero-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 1.2s ease-out;
  line-height: 1.1;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.rv-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  animation: slideInRight 1.4s ease-out;
}

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

.rv-hero-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 3rem 0;
  animation: fadeIn 1.8s ease-out;
}

.rv-stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.rv-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.rv-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rv-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.rv-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 2s ease-out;
}

.rv-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.rv-hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.rv-hero-btn:hover::before {
  left: 100%;
}

.rv-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.rv-btn-icon {
  font-size: 1.25rem;
  animation: rotateIcon 2s ease-in-out infinite;
}

@keyframes rotateIcon {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.rv-button-accent {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rv-button-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.rv-button-accent:hover::before {
  left: 100%;
}

.rv-button-accent:hover {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.rv-hero-visual {
  position: relative;
  z-index: 3;
  animation: fadeInRight 1.5s ease-out;
}

.rv-hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: cardFloat 3s ease-in-out infinite;
}

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

.rv-hero-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.rv-hero-features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.rv-hero-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.rv-hero-features li:hover {
  transform: translateX(10px);
  color: #fbbf24;
}

.rv-feature-icon {
  font-size: 1.25rem;
}

.rv-hero-guarantee {
  text-align: center;
}

.rv-guarantee-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

.rv-hero-floating {
  position: absolute;
  font-size: 2rem;
  opacity: 0.8;
  animation: floatingElements 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.rv-floating-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.rv-floating-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.rv-floating-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes floatingElements {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  animation: bounceScroll 2s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-scroll-indicator:hover {
  transform: translateX(-50%) scale(1.05);
}

.hero-scroll-indicator:hover .rv-scroll-text {
  color: #fbbf24;
}

.hero-scroll-indicator:hover .rv-scroll-arrow {
  color: #fbbf24;
}

.rv-scroll-text {
  display: block;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.rv-scroll-arrow {
  display: block;
  font-size: 1.5rem;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes bounceScroll {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(8px);
  }
}

.section-rv-light {
  background-color: #f8fafc;
}

.section-rv-dark {
  background-color: #1e3a8a;
  color: white;
}

.section-rv-dark h2, .section-rv-dark p, .section-rv-dark h3 {
  color: inherit;
}

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

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

.rv-service-card {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.rv-service-card:hover {
  border-color: #f59e0b;
  transform: translateY(-2px);
}

.rv-button-primary {
  background-color: #f59e0b;
  border-color: #f59e0b;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.rv-button-primary:hover {
  background-color: #d97706;
  border-color: #d97706;
  color: white;
}

.rv-button-secondary {
  background-color: transparent;
  border: 2px solid #f59e0b;
  color: #f59e0b;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.rv-button-secondary:hover {
  background-color: #f59e0b;
  color: white;
}

.rv-testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #f59e0b;
}

.rv-team-member {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rv-price-tag {
  background: #f59e0b;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.rv-section-title {
  color: #1e3a8a;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.rv-section-subtitle {
  color: #6b7280;
  font-size: 1.125rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.navbar-rv {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-rv .navbar-brand .navbar-item {
  font-weight: 700;
  color: #1e3a8a;
  font-size: 1.5rem;
}

.navbar-rv .navbar-item {
  color: #374151;
  font-weight: 500;
}

.navbar-rv .navbar-item:hover {
  color: #f59e0b;
}

.navbar-rv .navbar-item.is-active {
  color: #f59e0b;
  font-weight: 600;
}

.mobile-menu-rv {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rv-contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rv-form-input {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.rv-form-input:focus {
  border-color: #f59e0b;
  outline: none;
}

.rv-form-textarea {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem;
  min-height: 120px;
  transition: border-color 0.3s ease;
}

.rv-form-textarea:focus {
  border-color: #f59e0b;
  outline: none;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  max-width: 400px;
  z-index: 1000;
}

.cookie-consent-banner h4 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cookie-consent-banner p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

.rv-cookie-accept {
  background-color: #f59e0b;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rv-cookie-accept:hover {
  background-color: #d97706;
}

.rv-cookie-decline {
  background-color: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rv-cookie-decline:hover {
  background-color: #f3f4f6;
}

.rv-hero-overlay {
  background: rgba(30, 58, 138, 0.7);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 16px;
}

.rv-faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.rv-faq-question {
  background: none;
  border: none;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: #1e3a8a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rv-faq-question:hover {
  color: #f59e0b;
}

.rv-faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #6b7280;
  line-height: 1.6;
}

.rv-faq-toggle {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.rv-faq-toggle.open {
  transform: rotate(180deg);
}

.rv-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.rv-gallery-item:hover {
  transform: scale(1.05);
}

.rv-footer {
  background-color: #1e3a8a;
  color: white;
  padding: 3rem 0 1rem 0;
}

.rv-footer h4 {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.rv-footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rv-footer a:hover {
  color: #f59e0b;
}

.rv-footer strong {
  color: inherit;
}

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

@media (max-width: 768px) {
  .rv-section-title {
    font-size: 2rem;
  }
  
  .rv-hero-overlay {
    padding: 2rem 1rem;
  }
  
  .cookie-consent-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .rv-contact-form {
    padding: 1.5rem;
  }
}

/* Micro-interactions for hero section */
.rv-hero-content:hover .rv-hero-title {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

.rv-hero-content:hover .rv-hero-subtitle {
  transform: translateX(-5px);
  transition: transform 0.3s ease;
}

.rv-hero-card:hover .rv-hero-card-title {
  color: #f59e0b;
  transition: color 0.3s ease;
}

.rv-hero-features li:nth-child(odd):hover {
  animation: slideInFromLeft 0.5s ease-out;
}

.rv-hero-features li:nth-child(even):hover {
  animation: slideInFromRight 0.5s ease-out;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}