@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');



/* ===== СБРОС И БАЗОВЫЕ СТИЛИ ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'PT Sans', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #2b2d42;
	background-color: #f7f9fc;
	overflow-x: hidden;
}

/* ===== ЦВЕТОВЫЕ ПЕРЕМЕННЫЕ ===== */
:root {
	--rv-bg-primary: #f7f9fc;
	--rv-bg-white: #ffffff;
	--rv-accent-orange: #65a30d;
	--rv-accent-blue: #4d7c0f;
	--rv-accent-teal: #84cc16;
	--rv-text-primary: #2b2d42;
	--rv-text-light: #6c757d;
	--rv-shadow-light: 0 2px 10px rgba(29, 53, 87, 0.1);
	--rv-shadow-medium: 0 4px 20px rgba(29, 53, 87, 0.15);
	--rv-shadow-hover: 0 8px 30px rgba(255, 107, 53, 0.3);
	--rv-transition: all 0.3s ease;
}

/* ===== ТИПОГРАФИКА ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'PT Sans', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--rv-accent-blue);
}

h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

h2 {
	font-size: 2.8rem;
	margin-bottom: 2rem;
}

h3 {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
}

h4 {
	font-size: 1.8rem;
}

h5 {
	font-size: 1.4rem;
}

h6 {
	font-size: 1.2rem;
}

p {
	margin-bottom: 1.2rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

a {
	color: var(--rv-accent-orange);
	text-decoration: none;
	transition: var(--rv-transition);
}

a:hover {
	color: var(--rv-accent-blue);
	text-decoration: underline;
}

/* ===== УТИЛИТАРНЫЕ КЛАССЫ ===== */
.rv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.rv-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.rv-text-center {
	text-align: center;
}

.rv-text-light {
	color: var(--rv-text-light);
}

.rv-mb-1 {
	margin-bottom: 1rem;
}

.rv-mb-2 {
	margin-bottom: 2rem;
}

.rv-mb-3 {
	margin-bottom: 3rem;
}

.rv-mt-1 {
	margin-top: 1rem;
}

.rv-mt-2 {
	margin-top: 2rem;
}

.rv-mt-3 {
	margin-top: 3rem;
}

.rv-py-1 {
	padding: 1rem 0;
}

.rv-py-2 {
	padding: 2rem 0;
}

.rv-py-3 {
	padding: 3rem 0;
}

.rv-py-4 {
	padding: 4rem 0;
}

.rv-py-5 {
	padding: 5rem 0;
}

/* ===== КНОПКИ ===== */
.rv-btn {
	display: inline-block;
	padding: 14px 30px;
	font-family: 'PT Sans', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border-radius: 8px;
	transition: var(--rv-transition);
	cursor: pointer;
	border: 2px solid transparent;
	text-align: center;
	min-width: 160px;
}

.rv-btn-primary {
	background: var(--rv-accent-orange);
	color: white;
	box-shadow: var(--rv-shadow-light);
}

.rv-btn-primary:hover {
	background: #e55a2b;
	transform: translateY(-2px);
	box-shadow: var(--rv-shadow-hover);
	color: white;
	text-decoration: none;
}

.rv-btn-secondary {
	background: transparent;
	color: var(--rv-accent-blue);
	border: 2px solid var(--rv-accent-blue);
}

.rv-btn-secondary:hover {
	background: var(--rv-accent-blue);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--rv-shadow-medium);
	text-decoration: none;
}

.rv-btn-white {
	background: white;
	color: var(--rv-accent-blue);
	border: 2px solid white;
}

.rv-btn-white:hover {
	background: transparent;
	color: white;
	transform: translateY(-2px);
	text-decoration: none;
}

.rv-btn-large {
	padding: 18px 40px;
	font-size: 1.1rem;
	min-width: 200px;
}

/* ===== HEADER ===== */
.rv-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: var(--rv-transition);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rv-header.rv-scrolled {
	background: rgba(247, 249, 252, 0.95);
	backdrop-filter: blur(20px);
	box-shadow: var(--rv-shadow-light);
	border-bottom: 1px solid rgba(29, 53, 87, 0.1);
}

.rv-header-content {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	padding: 1rem 0;
	gap: 2rem;
}

.rv-logo {
	font-family: 'PT Sans', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--rv-accent-blue);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.rv-logo:hover {
	color: var(--rv-accent-orange);
	text-decoration: none;
}

.rv-logo i {
	font-size: 1.8rem;
	color: var(--rv-accent-orange);
}

.rv-nav {
	justify-self: center;
}

.rv-nav-list {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	margin: 0;
	padding: 0;
}

.rv-nav-link {
	font-family: 'PT Sans', sans-serif;
	font-weight: 500;
	color: var(--rv-accent-blue);
	text-decoration: none;
	padding: 0.5rem 0;
	position: relative;
	transition: var(--rv-transition);
}

.rv-nav-link:hover {
	color: var(--rv-accent-orange);
	text-decoration: none;
}

.rv-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--rv-accent-orange);
	transition: var(--rv-transition);
}

.rv-nav-link:hover::after,
.rv-nav-link.rv-active::after {
	width: 100%;
}

.rv-header-cta {
	justify-self: end;
}

.rv-mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--rv-accent-blue);
	cursor: pointer;
	padding: 0.5rem;
}

/* ===== MOBILE MENU ===== */
.rv-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(247, 249, 252, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	padding: 6rem 2rem 2rem;
	opacity: 0;
	transform: translateY(-100%);
	display: flex;
	flex-direction: column;

	justify-content: center;
	align-items: center;
	transition: var(--rv-transition);
}

.rv-mobile-menu.rv-active {
	opacity: 1;
	transform: translateY(0);
}

.rv-mobile-nav-list {
	list-style: none;
	text-align: center;
	margin-bottom: 3rem;
}

.rv-mobile-nav-list li {
	margin-bottom: 2rem;
}

.rv-mobile-nav-link {
	font-family: 'PT Sans', sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	color: var(--rv-accent-blue);
	text-decoration: none;
	transition: var(--rv-transition);
}

.rv-mobile-nav-link:hover {
	color: var(--rv-accent-orange);
	text-decoration: none;
}

.rv-mobile-cta {
	text-align: center;
}

/* ===== HERO SECTION ===== */
.rv-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--rv-bg-primary) 0%, #e8f4f8 100%);
	overflow: hidden;
}

.rv-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('static/img/rv-hero.webp') center/cover;
	opacity: 0.3;
	background-attachment: fixed;
	z-index: 1;
}

.rv-hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4rem;
}

.rv-hero-text {
	animation: rv-fade-in-left 1s ease-out;
}

.rv-hero-title {
	font-size: 4rem;
	font-weight: 700;
	color: var(--rv-accent-blue);
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.rv-hero-subtitle {
	font-size: 1.3rem;
	color: var(--rv-text-light);
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.rv-hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.rv-hero-image {
	height: 100%;
	position: relative;
	animation: rv-fade-in-right 1s ease-out;
}

.rv-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

/* ===== SECTION STYLES ===== */
.rv-section {
	padding: 5rem 0;
	position: relative;
}

.rv-section-white {
	background: var(--rv-bg-white);
}

.rv-section-light {
	background: var(--rv-bg-primary);
}

.rv-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.rv-section-title {
	font-size: 2.8rem;
	color: var(--rv-accent-blue);
	margin-bottom: 1rem;
}

.rv-section-subtitle {
	font-size: 1.2rem;
	color: var(--rv-text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* ===== CARDS ===== */
.rv-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.rv-card {
	background: var(--rv-bg-white);
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: var(--rv-shadow-light);
	transition: var(--rv-transition);
	position: relative;
	overflow: hidden;
}

.rv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--rv-accent-orange),
		var(--rv-accent-teal)
	);
	transform: scaleX(0);
	transition: var(--rv-transition);
}

.rv-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--rv-shadow-medium);
}

.rv-card:hover::before {
	transform: scaleX(1);
}

.rv-card-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(
		135deg,
		var(--rv-accent-orange),
		var(--rv-accent-teal)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: white;
	font-size: 1.8rem;
}

.rv-card-title {
	font-size: 1.5rem;
	color: var(--rv-accent-blue);
	margin-bottom: 1rem;
}

.rv-card-text {
	color: var(--rv-text-light);
	line-height: 1.6;
}

.rv-card-text strong {
	word-wrap: break-word;
}

.rv-team-info p {
	word-wrap: break-word;
}
/* ===== NEWS CAROUSEL ===== */
.rv-news-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: var(--rv-bg-white);
	box-shadow: var(--rv-shadow-light);
}

.rv-carousel-container {
	display: flex;
	transition: transform 0.5s ease;
}

.rv-news-slide {
	min-width: 100%;
	padding: 3rem;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	align-items: center;
}

.rv-news-image {
	width: 100%;
	height: 250px;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: var(--rv-shadow-light);
}

.rv-news-content h3 {
	color: var(--rv-accent-blue);
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

.rv-news-date {
	color: var(--rv-accent-orange);
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.rv-news-text {
	color: var(--rv-text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.rv-carousel-controls {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	gap: 1rem;
}

.rv-carousel-btn {
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: var(--rv-accent-orange);
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	transition: var(--rv-transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.rv-carousel-btn:hover {
	background: var(--rv-accent-blue);
	transform: scale(1.1);
}

.rv-carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.rv-carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: var(--rv-transition);
}

.rv-carousel-dot.active {
	background: var(--rv-accent-orange);
}

/* ===== TESTIMONIALS ===== */
.rv-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.rv-testimonial {
	background: var(--rv-bg-white);
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: var(--rv-shadow-light);
	transition: var(--rv-transition);
	position: relative;
}

.rv-testimonial::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: var(--rv-accent-teal);
	font-family: 'PT Sans', sans-serif;
	line-height: 1;
}

.rv-testimonial:hover {
	transform: translateY(-3px);
	box-shadow: var(--rv-shadow-medium);
}

.rv-testimonial-text {
	font-style: italic;
	margin-bottom: 2rem;
	color: var(--rv-text-primary);
	line-height: 1.7;
}

.rv-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.rv-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--rv-accent-teal);
}

.rv-testimonial-info h4 {
	margin-bottom: 0.3rem;
	font-size: 1.1rem;
	color: var(--rv-accent-blue);
}

.rv-testimonial-role {
	color: var(--rv-text-light);
	font-size: 0.9rem;
}

/* ===== TEAM ===== */
.rv-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.rv-team-member {
	background: var(--rv-bg-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--rv-shadow-light);
	transition: var(--rv-transition);
	text-align: center;
}

.rv-team-member:hover {
	transform: translateY(-5px);
	box-shadow: var(--rv-shadow-medium);
}

.rv-team-image {
	width: 100%;
	height: 280px;
	object-fit: cover;
	background: linear-gradient(
		135deg,
		var(--rv-accent-teal),
		var(--rv-accent-orange)
	);
}

.rv-team-info {
	padding: 2rem;
}

.rv-team-name {
	font-size: 1.4rem;
	color: var(--rv-accent-blue);
	margin-bottom: 0.5rem;
}

.rv-team-role {
	color: var(--rv-accent-orange);
	font-weight: 600;
	margin-bottom: 1rem;
}

.rv-team-description {
	color: var(--rv-text-light);
	line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.rv-contact-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.rv-form {
	background: var(--rv-bg-white);
	padding: 3rem;
	height: 100%;
	border-radius: 16px;
	box-shadow: var(--rv-shadow-light);
}

.rv-form-group {
	margin-bottom: 2rem;
}

.rv-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--rv-accent-blue);
}

.rv-form-input {
	width: 100%;
	padding: 1rem;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	transition: var(--rv-transition);
	font-family: 'PT Sans', sans-serif;
}

.rv-form-input:focus {
	outline: none;
	border-color: var(--rv-accent-orange);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.rv-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.rv-form-select {
	width: 100%;
	padding: 1rem;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	transition: var(--rv-transition);
	font-family: 'PT Sans', sans-serif;
	background: white;
}

.rv-form-select:focus {
	outline: none;
	border-color: var(--rv-accent-orange);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.rv-form-error {
	color: #dc3545;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.rv-form-error.rv-show {
	display: block;
}

.rv-form-input.rv-error {
	border-color: #dc3545;
}

/* ===== MAP ===== */
.rv-map-container {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--rv-shadow-light);
	height: 100%;
	background: var(--rv-accent-teal);

	color: white;
	font-size: 1.2rem;
}

.rv-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.rv-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.rv-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.rv-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ===== CONTACT INFO ===== */
.rv-contact-info {
	background: var(--rv-bg-white);
	padding: 3rem;
	border-radius: 16px;
	box-shadow: var(--rv-shadow-light);
}

.rv-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e9ecef;
}

.rv-contact-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.rv-contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--rv-accent-orange),
		var(--rv-accent-teal)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.rv-contact-text h4 {
	margin-bottom: 0.3rem;
	color: var(--rv-accent-blue);
}

.rv-contact-text p {
	margin-bottom: 0;
	color: var(--rv-text-light);
}

/* ===== FOOTER ===== */
.rv-footer {
	background: var(--rv-accent-blue);
	color: white;
	padding: 4rem 0 2rem;
}

.rv-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.rv-footer-section h3 {
	color: white;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.rv-footer-logo {
	font-family: 'PT Sans', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: white;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.rv-footer-logo i {
	color: var(--rv-accent-orange);
}

.rv-footer-description {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

.rv-footer-menu {
	list-style: none;
}

.rv-footer-menu li {
	margin-bottom: 0.8rem;
}

.rv-footer-menu a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: var(--rv-transition);
}

.rv-footer-menu a:hover {
	color: var(--rv-accent-orange);
	text-decoration: none;
}

.rv-footer-contact p {
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.8);
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.rv-footer-contact i {
	color: var(--rv-accent-orange);
	width: 16px;
}

.rv-social-links {
	display: flex;
	gap: 1rem;
}

.rv-social-link {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: var(--rv-transition);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.rv-social-link:hover {
	background: var(--rv-accent-orange);
	transform: translateY(-3px);
	text-decoration: none;
	color: white;
}

.rv-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

/* ===== COOKIE POPUP ===== */
.rv-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--rv-accent-blue);
	color: white;
	padding: 2rem;
	z-index: 9999;
	transform: translateY(100%);
	transition: var(--rv-transition);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.rv-cookie-popup.rv-show {
	transform: translateY(0);
}

.rv-cookie-content {
	display: flex;
	align-items: center;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.rv-cookie-text {
	flex: 1;
	margin-bottom: 0;
}

.rv-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.rv-cookie-accept {
	background: var(--rv-accent-orange);
	color: white;
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: var(--rv-transition);
}

.rv-cookie-accept:hover {
	background: #e55a2b;
}

.rv-cookie-policy {
	color: var(--rv-accent-teal);
	text-decoration: underline;
}

.rv-cookie-policy:hover {
	color: white;
}

/* ===== ANIMATIONS ===== */
@keyframes rv-fade-in-left {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes rv-fade-in-right {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes rv-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.rv-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: var(--rv-transition);
}

.rv-fade-in.rv-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== NEWS PAGE STYLES ===== */
.rv-news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.rv-news-card {
	background: var(--rv-bg-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--rv-shadow-light);
	transition: var(--rv-transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.rv-news-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--rv-shadow-medium);
}

.rv-news-card-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	background: linear-gradient(
		135deg,
		var(--rv-accent-teal),
		var(--rv-accent-orange)
	);
}

.rv-news-card-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.rv-news-card-content a {
	margin-top: auto;
}

.rv-news-card-date {
	color: var(--rv-accent-orange);
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.8rem;
	display: block;
}

.rv-news-card-title {
	font-size: 1.4rem;
	color: var(--rv-accent-blue);
	margin-bottom: 1rem;
	line-height: 1.3;
}

.rv-news-card-excerpt {
	color: var(--rv-text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.rv-news-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--rv-accent-orange);
	font-weight: 600;
	text-decoration: none;
	transition: var(--rv-transition);
}

.rv-news-card-link:hover {
	color: var(--rv-accent-blue);
	text-decoration: none;
}

/* ===== ABOUT PAGE STYLES ===== */
.rv-about-hero {
	background: linear-gradient(135deg, var(--rv-bg-primary) 0%, #e8f4f8 100%);
	padding: 8rem 0 5rem;
	text-align: center;
}

.rv-about-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}

.rv-about-hero p {
	font-size: 1.3rem;
	color: var(--rv-text-light);
	max-width: 600px;
	margin: 0 auto;
}

.rv-about-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

.rv-about-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--rv-text-primary);
}

.rv-about-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: var(--rv-shadow-medium);
	background: linear-gradient(
		135deg,
		var(--rv-accent-teal),
		var(--rv-accent-orange)
	);
}

.rv-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 4rem 0;
}

.rv-stat {
	text-align: center;
	padding: 2rem;
	background: var(--rv-bg-white);
	border-radius: 16px;
	box-shadow: var(--rv-shadow-light);
	transition: var(--rv-transition);
}

.rv-stat:hover {
	transform: translateY(-3px);
	box-shadow: var(--rv-shadow-medium);
}

.rv-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--rv-accent-orange);
	display: block;
	margin-bottom: 0.5rem;
}

.rv-stat-label {
	color: var(--rv-accent-blue);
	font-weight: 600;
	font-size: 1.1rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.rv-contact-hero {
	background: linear-gradient(135deg, var(--rv-bg-primary) 0%, #e8f4f8 100%);
	padding: 8rem 0 5rem;
	text-align: center;
}

.rv-contact-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}

.rv-contact-hero p {
	font-size: 1.3rem;
	color: var(--rv-text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
	.rv-hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}

	.rv-hero-title {
		font-size: 3.2rem;
	}

	.rv-contact-section {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.rv-footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.rv-about-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.rv-hero {
		min-height: 140vh;
	}

	.rv-hero-buttons {
		justify-content: center;
	}

	.rv-nav-list {
		gap: 1.5rem;
	}
}

@media (max-width: 900px) {
	.rv-nav,
	.rv-header-cta {
		display: none;
	}

	.rv-mobile-menu-toggle {
		display: block;
	}

	.rv-header-content {
		display: flex;
		justify-content: space-between;

		align-items: center;
	}
}

@media (max-width: 768px) {
	.rv-hero-title {
		font-size: 2.8rem;
	}

	.rv-hero-buttons {
		justify-content: center;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2.2rem;
	}

	.rv-section {
		padding: 3rem 0;
	}

	.rv-cards-grid {
		grid-template-columns: 1fr;
	}

	.rv-news-slide {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rv-footer-content {
		grid-template-columns: 1fr;
	}

	.rv-cookie-content {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}

	.rv-about-hero h1,
	.rv-contact-hero h1 {
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {
	.rv-container {
		padding: 0 15px;
	}

	.rv-hero-title {
		font-size: 2.2rem;
	}

	.rv-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.rv-btn {
		width: 100%;
		max-width: 280px;
	}

	.rv-card {
		padding: 2rem;
	}

	.rv-form {
		padding: 2rem;
	}

	.rv-news-grid {
		grid-template-columns: 1fr;
	}

	.rv-news-card-content {
		padding: 1.5rem;
	}

	.rv-carousel-controls {
		display: none;
	}

	.rv-contact-section {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.rv-contact-info {
		padding: 2rem;
	}

	.rv-contact-item {
		flex-direction: column;
	}

	.rv-section-title {
		font-size: 1.5rem;
	}

	.rv-logo {
		font-size: 1.2rem;
	}
}

.rv-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 20px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Typography */
.rv-legal-title {
	color: #1d3557;
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}

.rv-legal-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b35, #a8dadc);
	margin: 15px auto;
	border-radius: 2px;
}

.rv-legal-subtitle {
	color: #1d3557;
	font-size: 1.8rem;
	font-weight: 600;
	margin: 40px 0 20px 0;
	border-left: 4px solid #ff6b35;
	padding-left: 20px;
}

.rv-legal-section-title {
	color: #1d3557;
	font-size: 1.4rem;
	font-weight: 600;
	margin: 30px 0 15px 0;
	position: relative;
}

.rv-legal-section-title::before {
	content: '▶';
	color: #ff6b35;
	margin-right: 10px;
}

/* Content Styles */
.rv-legal-content {
	font-size: 16px;
	line-height: 1.7;
	color: #2b2d42;
	margin-bottom: 20px;
}

.rv-legal-paragraph {
	margin-bottom: 20px;
	text-align: justify;
}

.rv-legal-list {
	margin: 20px 0;
	padding-left: 0;
	list-style: none;
}

.rv-legal-list-item {
	margin-bottom: 12px;
	padding-left: 30px;
	position: relative;
}

.rv-legal-list-item::before {
	content: '•';
	color: #ff6b35;
	font-weight: bold;
	font-size: 1.2rem;
	position: absolute;
	left: 10px;
}

.rv-legal-numbered-list {
	counter-reset: rv-counter;
	margin: 20px 0;
	padding-left: 0;
	list-style: none;
}

.rv-legal-numbered-item {
	counter-increment: rv-counter;
	margin-bottom: 25px;
	padding: 20px;
	background-color: #f7f9fc;
	border-radius: 8px;
	border-left: 4px solid #a8dadc;
	position: relative;
}

.rv-legal-numbered-item::before {
	content: counter(rv-counter);
	position: absolute;
	left: -15px;
	top: 20px;
	background-color: #ff6b35;
	color: white;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
}

/* Contact and Company Info */
.rv-legal-company-info {
	background: linear-gradient(135deg, #1d3557, #a8dadc);
	color: white;
	padding: 30px;
	border-radius: 12px;
	margin: 40px 0;
	text-align: center;
}

.rv-legal-company-name {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.rv-legal-company-details {
	font-size: 16px;
	line-height: 1.8;
}

.rv-legal-contact-highlight {
	background-color: rgba(255, 255, 255, 0.15);
	padding: 15px;
	border-radius: 8px;
	margin: 15px 0;
	display: inline-block;
}

/* Highlight Boxes */
.rv-legal-highlight-box {
	background: linear-gradient(135deg, #ff6b35, #a8dadc);
	color: white;
	padding: 25px;
	border-radius: 12px;
	margin: 25px 0;
}

.rv-legal-warning-box {
	background-color: #fff3cd;
	border: 2px solid #ff6b35;
	color: #856404;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

.rv-legal-info-box {
	background-color: #d1ecf1;
	border: 2px solid #a8dadc;
	color: #0c5460;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

/* Links */
.rv-legal-link {
	color: #ff6b35;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.rv-legal-link:hover {
	color: #1d3557;
	text-decoration: underline;
}

/* Tables */
.rv-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rv-legal-table-header {
	background-color: #1d3557;
	color: white;
}

.rv-legal-table-cell {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #e9ecef;
}

.rv-legal-table-row:nth-child(even) {
	background-color: #f7f9fc;
}

/* Footer Section */
.rv-legal-footer-section {
	background-color: #f7f9fc;
	padding: 30px;
	border-radius: 12px;
	margin-top: 40px;
	text-align: center;
	border: 2px solid #a8dadc;
}

.rv-legal-update-date {
	font-style: italic;
	color: #6c757d;
	font-size: 14px;
	margin-top: 30px;
	text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
	.rv-legal-container {
		border-radius: 8px;
	}

	.rv-legal-title {
		font-size: 2rem;
	}

	.rv-legal-subtitle {
		font-size: 1.5rem;
	}

	.rv-legal-section-title {
		font-size: 1.2rem;
	}

	.rv-legal-content {
		font-size: 15px;
	}

	.rv-legal-numbered-item {
		padding: 15px;
	}

	.rv-legal-company-info {
		padding: 20px;
	}

	.rv-legal-company-name {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.rv-legal-title {
		font-size: 1.3rem;
	}

	.rv-legal-subtitle {
		font-size: 1.3rem;
		padding-left: 15px;
	}

	.rv-legal-numbered-item::before {
		left: -10px;
		width: 25px;
		height: 25px;
		font-size: 12px;
	}

	.rv-legal-company-info {
		padding: 15px;
	}

	.rv-legal-table-cell {
		padding: 10px;
		font-size: 14px;
	}
}
