/**
 * Rotate Digital Elementor Widgets Stylesheet
 */

:root {
	--rde-accent: #667a62;
	--rde-body: #57585b;
}

/* Layout: full width section + max-width container */
.rde-section {
	width: 100%;
}

.rde-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Banner */
.rde-banner-section {
	position: relative;
	overflow: hidden;
	background-color: #101010;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.rde-banner-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.rde-banner-section .rde-container {
	position: relative;
	z-index: 1;
	max-width: 1600px;
}

.rde-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	min-height: 600px;
	padding: 60px 0;
}

.rde-banner__content {
	flex: 0 1 calc(66.6667% - 20px);
	max-width: calc(66.6667% - 20px);
	color: #fff;
}

.rde-banner__upper-image {
	margin: 0 0 10px 0;
}

.rde-banner__upper-image img {
	display: block;
	height: 40px;
	width: auto;
}

.rde-banner__upper-title {
	margin: 0 0 15px 0;
	font-family: "Calibri-Regular",Sans-serif;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.rde-banner__points {
	display: flex;
	flex-wrap: wrap;
	margin: 4rem 0 2rem 0;
	padding: 0;
	list-style: none;
}

.rde-banner__points li {
	background: rgba(255, 255, 255, 0.95);
	padding: 10px 20px;
	border-radius: 50px;
	font-family: "Calibri-Regular",Sans-serif;
	font-size: 16px;
	color: #101010;
	margin: 0 2rem 2rem 0;
}

.rde-banner h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 70px!important;
	font-weight: 600;
	color: #fff;
	letter-spacing: 2px;
	margin: 0 0 30px 0;
	text-transform: uppercase;
}

.rde-banner__description {
	font-family: "Calibri-Regular",Sans-serif;
	margin: 0 0 30px 0;
	max-width: 500px;
	color: rgba(255, 255, 255, 0.9);
}

.rde-banner__description p:last-child {
	margin-bottom: 0;
}

.rde-banner__button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #667a62;
	color: #fff!important;
	padding: 12px 24px;
	border-radius: 4px;
	border: 2px solid #667a62;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
}

.rde-banner__form-wrapper {
	flex: 0 1 calc(33.3333% - 20px);
	max-width: calc(33.3333% - 20px);
	background: rgba(255, 255, 255, 0.97);
	border-radius: 8px;
	padding: 30px;
}

.rde-banner__form-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px 0;
	text-align: center;
	text-transform: uppercase;
	color: #57585B;
	letter-spacing: initial;
}

/* Badges */
.rde-badges-section {
	width: 100%;
	margin: 0 auto;
	background-color: var(--rde-accent);
	border-radius: 30px;
}

.rde-badges {
	padding: 60px;
	color: #fff;
}

.rde-badges__top {
	display: grid;
	grid-template-columns: minmax(280px, 380px) 1fr;
	grid-template-areas:
		"title text"
		"button text";
	column-gap: 40px;
	row-gap: 20px;
	align-items: start;
}

.rde-badges__title-wrap {
	grid-area: title;
}

.rde-badges h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 70px;
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 30px 0;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
}

.rde-badges__button {
	grid-area: button;
	justify-self: start;
	display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    color: #667a62 !important;
    padding: 12px 24px;
    border-radius: 4px;
    border: 2px solid #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rde-badges__text {
	grid-area: text;
	font-family: "Calibri-Regular",Sans-serif;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.rde-badges__text p {
	margin: 0 0 15px 0;
}

.rde-badges__text p:last-child {
	margin-bottom: 0;
}

.rde-badges__list {
	width: 80%;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	list-style: none;
	width: 100%;
	margin: 40px auto 0 auto;
	padding: 20px 40px;
	background-color: #fff;
	border-radius: 50px;
}

.rde-badges__item {
	flex: 1 1 0;
	margin: 0;
	min-width: 0;
}

.rde-badges__item img {
	display: block;
	width: 100%;
	height: auto;
}

/* Text With Image */
.rde-text-with-image {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 60px;
}

.rde-text-with-image__content {
	flex: 1 1 420px;
	color: #fff;
}

.rde-text-with-image__points {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 0 0 25px 0;
	padding: 0;
	list-style: none;
}

.rde-text-with-image__points li {
	background: var(--rde-accent);
	padding: 10px 20px;
	border-radius: 50px;
	font-family: "Calibri-Regular",Sans-serif;
	font-size: 16px;
	color: #fff;
	margin: 0 2rem 2rem 0;
}

.rde-text-with-image h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.rde-text-with-image__text {
	font-family: "Calibri-Regular",Sans-serif;
	color: #57585B;
}

.rde-text-with-image__text p {
	margin: 0 0 15px 0;
}

.rde-text-with-image__text p:last-child {
	margin-bottom: 0;
}

.rde-text-with-image__image {
	flex: 1 1 420px;
}

.rde-text-with-image__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Our Services */
.rde-our-services__header {
	margin: 0 0 40px 0;
	color: #fff;
}

.rde-our-services h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 42px;
	line-height: 1.15;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.rde-our-services__intro {
	font-family: "Calibri-Regular",Sans-serif;
	color: var(--rde-body);
}

.rde-our-services__intro p {
	margin: 0 0 10px 0;
}

.rde-our-services__intro p:last-child {
	margin-bottom: 0;
}

.rde-our-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.rde-our-services__item {
	background-color: var(--rde-accent);
	border-radius: 24px;
	padding: 30px;
}

.rde-our-services__icon img {
	display: block;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	object-fit: contain;
}

.rde-our-services__item-title {
	font-family: 'Bebas Neue', sans-serif;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
}

.rde-our-services__item-title a {
	color: inherit;
	text-decoration: none;
}

.rde-our-services__item-title a:hover {
	text-decoration: underline;
}

.rde-our-services__item-content {
	font-family: "Calibri-Regular",Sans-serif;
	color: rgba(255, 255, 255, 0.9);
}

.rde-our-services__item-content p {
	margin: 0 0 10px 0;
}

.rde-our-services__item-content p:last-child {
	margin-bottom: 0;
}

/* Why Choose Us */
.rde-why-choose-us {
	background-color: var(--rde-accent);
	border-radius: 30px;
	padding: 60px;
	color: #fff;
}

.rde-why-choose-us h2 {
	font-family: 'Bebas Neue', sans-serif;
	margin: 0 0 15px 0;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
}

.rde-why-choose-us__intro {
	font-family: "Calibri-Regular",Sans-serif;
	margin: 0 0 40px 0;
	color: rgba(255, 255, 255, 0.85);
}

.rde-why-choose-us__intro p {
	margin: 0 0 10px 0;
}

.rde-why-choose-us__intro p:last-child {
	margin-bottom: 0;
}

.rde-why-choose-us__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 45px;
	column-gap: 60px;
	margin-top: 40px;
}

.rde-why-choose-us__number {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 70px!important;
	line-height: 1;
	margin: 0 0 -3rem 0;
	color: rgba(255, 255, 255, 0.3);
}

.rde-why-choose-us__item-title {
	font-family: 'Bebas Neue', sans-serif;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
}

.rde-why-choose-us__item-content {
	font-family: "Calibri-Regular",Sans-serif;
	color: rgba(255, 255, 255, 0.9);
}

.rde-why-choose-us__item-content p {
	margin: 0 0 10px 0;
}

.rde-why-choose-us__item-content p:last-child {
	margin-bottom: 0;
}

/* Service Areas */
.rde-service-areas__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	color: #fff;
}

.rde-service-areas h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 32px;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.rde-service-areas__intro {
	flex: 0 1 40%;
	font-family: "Calibri-Regular",Sans-serif;
	color: var(--rde-body);
}

.rde-service-areas__intro p {
	margin: 0 0 10px 0;
}

.rde-service-areas__intro p:last-child {
	margin-bottom: 0;
}

.rde-service-areas__map {
	margin: 40px 0;
}

.rde-service-areas__map iframe {
	display: block;
	width: 100%;
	height: 450px;
	border: 0;
}

.rde-service-areas__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 40px;
	row-gap: 35px;
}

.rde-service-areas__item-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0 0 10px 0;
	color: var(--rde-body);
}

.rde-service-areas__item-content {
	font-family: "Calibri-Regular",Sans-serif;
	color: var(--rde-body);
}

.rde-service-areas__item-content p {
	margin: 0 0 10px 0;
}

.rde-service-areas__item-content p:last-child {
	margin-bottom: 0;
}

/* How It Works */
.rde-how-it-works {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 60px;
}

.rde-how-it-works__content {
	flex: 1 1 380px;
	color: #fff;
}

.rde-how-it-works h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 32px;
	margin: 0 0 30px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.rde-how-it-works__points {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 0 0 30px 0;
}

.rde-how-it-works__number {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 70px!important;
    margin: 0 0 -4rem 0;
	color: rgba(102, 122, 98, 0.3);
}

.rde-how-it-works__point-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 20px;
	margin: 0 0 8px 0;
	text-transform: uppercase;
	color: var(--rde-body);
	letter-spacing: 2px;
}

.rde-how-it-works__point-content {
	font-family: "Calibri-Regular",Sans-serif;
	color: var(--rde-body);
}

.rde-how-it-works__point-content p {
	margin: 0 0 10px 0;
}

.rde-how-it-works__point-content p:last-child {
	margin-bottom: 0;
}

.rde-how-it-works__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #667a62;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 4px;
    border: 2px solid #667a62;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rde-how-it-works__button:hover {
	background-color: transparent;
	color: var(--rde-accent);
	transform: translateX(5px);
}

.rde-how-it-works__images {
	flex: 1 1 380px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rde-how-it-works__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px!important;
}

/* Testimonials */
.rde-testimonials {
	background-color: var(--rde-accent);
	border-radius: 30px;
	padding: 60px;
}

.rde-testimonials h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 34px;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
}

.rde-testimonials__intro {
	font-family: "Calibri-Regular",Sans-serif;
	color: rgba(255, 255, 255, 0.85);
}

.rde-testimonials__intro p {
	margin: 0 0 10px 0;
}

.rde-testimonials__intro p:last-child {
	margin-bottom: 0;
}

.rde-testimonials__reviews {
	margin-top: 30px;
}

/* Blog */
.rde-blog {
	background-color: var(--rde-accent);
	border-radius: 30px;
	padding: 50px;
	color: #fff;
}

.rde-blog__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 30px 0;
}

.rde-blog h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 32px;
	margin: 0;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
}

.rde-blog__nav {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.rde-blog__nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.rde-blog__nav-btn:hover {
	background-color: #fff;
	color: var(--rde-accent);
	border-color: #fff;
}

.rde-blog__nav-btn svg {
	width: 18px;
	height: 18px;
}

.rde-blog__slider {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.rde-blog__slider::-webkit-scrollbar {
	display: none;
}

.rde-blog__track {
	display: flex;
	gap: 24px;
}

.rde-blog__slide {
	display: flex;
	flex-direction: column;
	flex: 0 0 260px;
	scroll-snap-align: start;
}

.rde-blog__image {
	display: block;
	margin: 0 0 20px 0;
	border-radius: 12px;
	overflow: hidden;
}

.rde-blog__image img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.rde-blog__slide-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	color: #fff!important;
}

.rde-blog__slide-title a {
	font-size: 24px!important;
	color: #fff!important;
	letter-spacing: 2px;
}

.rde-blog__slide-title a:hover {
	text-decoration: underline;
}

.rde-blog__excerpt {
	font-family: "Calibri-Regular",Sans-serif;
	margin: 0 0 15px 0;
	color: rgba(255, 255, 255, 0.85);
}

.rde-blog__readmore {
	display: inline-block;
	align-self: flex-start;
	margin-top: auto;
	font-family: "Calibri-Regular",Sans-serif;
	font-weight: 700;
	color: #fff!important;
}

.rde-blog__readmore:hover {
	color: rgba(255, 255, 255, 0.8);
}

.rde-blog__empty {
	font-family: "Calibri-Regular",Sans-serif;
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}

/* FAQ */
.rde-faq {
	color: #fff;
}

.rde-faq h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 38px;
	margin: 0 0 15px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.rde-faq__intro {
	font-family: "Calibri-Regular",Sans-serif;
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 30px 0;
	color: rgba(255, 255, 255, 0.85);
}

.rde-faq__intro p {
	margin: 0 0 10px 0;
}

.rde-faq__intro p:last-child {
	margin-bottom: 0;
}

.rde-faq__list {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.rde-faq__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 20px 0;
}

.rde-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	cursor: pointer;
	list-style: none;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 24px;
	color: var(--rde-body);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.rde-faq__question::-webkit-details-marker {
	display: none;
}

.rde-faq__icon {
	position: relative;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: var(--rde-accent);
}

.rde-faq__icon::before {
	content: '+';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Calibri-Regular",Sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.rde-faq__item[open] .rde-faq__icon::before {
	content: '\2212';
}

.rde-faq__answer {
	margin-top: 15px;
	font-family: "Calibri-Regular",Sans-serif;
	color: var(--rde-body);
}

.rde-faq__answer p {
	margin: 0 0 10px 0;
}

.rde-faq__answer p:last-child {
	margin-bottom: 0;
}

/* Checklist */
.rde-checklist {
	color: #fff;
}

.rde-checklist h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 32px;
	margin: 0 0 15px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.rde-checklist__intro {
	font-family: "Calibri-Regular",Sans-serif;
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 25px 0;
	color: rgba(255, 255, 255, 0.85);
}

.rde-checklist__intro p {
	margin: 0 0 10px 0;
}

.rde-checklist__intro p:last-child {
	margin-bottom: 0;
}

.rde-checklist__list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rde-checklist__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: var(--rde-accent);
	padding: 10px 18px;
	border-radius: 50px;
	font-family: "Calibri-Regular",Sans-serif;
	color: #fff;
	margin: 0;
}

.rde-checklist__icon {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
	.rde-banner {
		flex-direction: column;
		justify-content: flex-start;
		min-height: auto;
		padding: 40px 0;
	}

	.rde-banner__content,
	.rde-banner__form-wrapper {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
	}

	.rde-banner h2 {
		font-size: 35px!important;
	}

	.rde-banner__description {
		font-size: 16px;
	}

	.rde-badges-section {
		border-radius: 20px;
	}

	.rde-badges {
		padding: 30px;
	}

	.rde-badges h2 {
		font-size: 30px;
	}

	.rde-badges__top {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"text"
			"button";
		gap: 25px;
	}

	.rde-badges__list {
		gap: 15px;
		padding: 15px 20px;
	}

	.rde-text-with-image {
		gap: 30px;
	}

	.rde-text-with-image h2 {
		font-size: 30px;
	}

	.rde-our-services h2 {
		font-size: 30px;
	}

	.rde-our-services__grid {
		grid-template-columns: 1fr;
	}

	.rde-our-services__item {
		padding: 24px;
	}

	.rde-why-choose-us {
		padding: 30px;
		border-radius: 20px;
	}

	.rde-why-choose-us h2 {
		font-size: 28px;
	}

	.rde-why-choose-us__grid {
		grid-template-columns: 1fr;
		row-gap: 30px;
	}

	.rde-why-choose-us__number {
		font-size: 36px;
	}

	.rde-service-areas h2 {
		font-size: 26px;
	}

	.rde-service-areas__map iframe {
		height: 300px;
	}

	.rde-service-areas__grid {
		grid-template-columns: 1fr;
		row-gap: 25px;
	}

	.rde-how-it-works {
		gap: 30px;
	}

	.rde-how-it-works h2 {
		font-size: 26px;
	}

	.rde-testimonials {
		padding: 30px;
		border-radius: 20px;
	}

	.rde-testimonials h2 {
		font-size: 26px;
	}

	.rde-blog {
		padding: 30px;
		border-radius: 20px;
	}

	.rde-blog h2 {
		font-size: 26px;
	}

	.rde-blog__slide {
		flex: 0 0 220px;
	}

	.rde-blog__track {
		gap: 16px;
	}

	.rde-faq h2 {
		font-size: 28px;
	}

	.rde-checklist h2 {
		font-size: 26px;
	}

	.rde-checklist__item {
		padding: 8px 14px;
	}
}
