* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #C2A46D;
    --background-color: #E8E2D4;
    --text-color: #2A2A2E;
}

.flex {
    display: flex;
    flex-direction: column;
}

.flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none;
}

html, body {
    position: relative;
    direction: rtl;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(
        180deg,
        #E8E2D4 0%,
        #E8D9AE 35%,
        #E8E2D4 70%,
        #F2E8C9 100%
    );
}

.icons {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

section {
    position: relative;
    text-align: center;
    padding: 35px 30px;
    width: 100%;
    height: auto;
    overflow: visible;
}

.desktop-break {
    display: none;
}

.heading {
    position: relative;
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(90deg, #C6A75E 0%, #DAC082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 9.07px #C6A75E;
}

.subtitle {
    font-size: clamp(1.1rem, 3vw, 1.75rem);
    font-weight: 900;
    color: var(--text-color);
}

.hero-section {
    gap: 50px;
    padding: 55px 0;
    background-image: url('./assets/images/hero-bg-image.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section .text-group {
    gap: 15px;
    z-index: 1;
}

.hero-section .text-group p {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
}

.hero-section .cover-image {
    width: auto;
    height: 38vh;
    z-index: 1;
}

.info-section {
    gap: 50px;
}

.info-section .info {
    padding: 0 25px;
    gap: 30px;
}

.info-section .info h2,
.info-section .info h3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    color: var(--text-color);
}

.video-section {
    gap: 38px;
}

.video-section iframe {
    width: 100%;
    max-width: 1100px;
    will-change: transform;
    z-index: 1;
}

.video-section .group {
    gap: 20px;
    padding-bottom: 30px;
}

.video-section .group h2 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 800;
    color: var(--text-color);
}

.video-section .group button {
    width: 180px;
    height: 44px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    background-color: var(--primary-color);
    box-shadow: 0 0 5px 1px var(--primary-color);
    z-index: 1;
    transition: .5s;
}

.video-section .group button:hover {
    transform: scale(1.05);
}

.video-section .group button:disabled {
    cursor: not-allowed;
    background-color: rgba(194, 164, 109, .5);
}

.video-section iframe {
    width: 100%;
    height: 155px;
    z-index: 2;
}

.video-section .video-group {
    gap: 20px;
}

.video-section .video-group h2 {
    text-align: center;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 800;
    color: var(--text-color);
}

.reviews-section {
    position: relative;
    gap: 30px;
    padding: 30px 0;
}

.reviews-section .reviews-wrapper {
    position: relative;
}

.reviews-section .reviews-wrapper .reviews {
    position: relative;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    scroll-padding-inline: calc(50% - 110px);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    z-index: 1;
}

.reviews-section .reviews-wrapper .reviews::-webkit-scrollbar {
    display: none;
}

.reviews-section .reviews-wrapper .reviews .review {
    position: relative;
    flex-shrink: 0;
    width: 220px;
    height: 180px;
    cursor: pointer;
    border-radius: 33px 33px 0 0;
    background-image: var(--bg-url);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 5px 14px var(--primary-color);
    scroll-snap-align: center;
    overflow: visible;
}

.reviews-section .reviews-wrapper .reviews .review .name {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 40px;
    border-radius: 0 0 33px 33px;
    font-weight: 600;
    color: var(--text-color);
    background-color: #ffffff;
    pointer-events: none;
}

.reviews-section .reviews-wrapper .reviews .review .link {
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    height: 30px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, .30);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.reviews-section .reviews-wrapper .arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.reviews-section .reviews-wrapper .arrows div {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    border-radius: 999px;
    background-color: #ffffffcc;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    pointer-events: all;
}

.reviews-section .reviews-wrapper #right-arrow {
    right: 10px;
}

.reviews-section .reviews-wrapper #left-arrow {
    left: 10px;
}

.proofs-section {
    gap: 40px;
    padding-bottom: 50px;
    overflow: hidden;
}

.proofs-section .carousel {
    position: relative;
    flex-direction: row-reverse;
    align-self: center;
    gap: 20px;
    padding: 20px;
    width: 90%;
    mask-image: linear-gradient(
		to right,
		transparent,
		black 10%,
		black 90%,
		transparent
	);
    overflow: hidden;
    z-index: 1;
}

.proofs-section .carousel .group {
	flex-direction: row;
	gap: 20px;
	flex-shrink: 0;
	animation: scroll 30s linear infinite;
	will-change: transform;
}

.proofs-section .carousel img {
	flex: 0 0 auto;
	height: 180px;
	width: auto;
}

@keyframes scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.proofs-section .info {
    gap: 30px;
}

.proofs-section .info h2 {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-color);
}

.proofs-section .info a {
    width: 190px;
    height: 46px;
    cursor: pointer;
    border: none;
    border-radius: 18px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    background-color: var(--primary-color);
    box-shadow: 1px 1px 9.2px 5px rgba(198, 167, 94, 25%);
    transition: .5s;
}

.proofs-section .info a:hover {
    transform: scale(1.05);
}

footer {
    position: relative;
    justify-content: space-between !important;
    padding: 20px 20px;
    background-color: #ffffff;
}

footer p {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-color);
}

footer p a {
    color: var(--text-color);
}

.video-container {
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, 100%);
    gap: 20px;
    width: 80%;
    height: 60%;
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--text-color);
    background: #ffffff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: .5s;
    z-index: 2;
}

.video-container #close-video-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.video-container #review-video {
    width: 70%;
    height: 70%;
}

.whatsapp-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.3rem;
    color: #ffffff;
    background-color: var(--primary-color);
    box-shadow: 0 0 5px 1px var(--primary-color);
    transition: .5s;
    z-index: 99999999;
}

.whatsapp-link:hover {
    transform: scale(1.05);
}

/* ---------------------- */
/* Background Icons */
/* ---------------------- */
.bg-icon {
    position: absolute;
    width: auto;
    pointer-events: none;
}

.icons .glow {
	position: absolute;
	width: 360px;
	height: 360px;
	border-radius: 50%;
    filter: blur(25px);
	background: radial-gradient(
        circle,
		rgba(194,164,109,0.8) 0%,
		rgba(194,164,109,0.45) 25%,
		rgba(194,164,109,0.18) 45%,
		rgba(194,164,109,0.08) 60%,
		transparent 75%
    );
    opacity: .9;
    pointer-events: none;
}

.icons .earth-1 {
    top: 947px;
    left: -225px;
    height: 45vh;
    opacity: .11;
    pointer-events: none;
}

.earth-2 {
    bottom: -28px;
    right: -138px;
    height: 23vh;
    opacity: .11;
    pointer-events: none;
    z-index: 0;
}

.icons .passport-stamp-1 {
    top: 500px;
    right: -34px;
    transform: rotate(340deg);
    height: 21vh;
    pointer-events: none;
}

.path-1 {
    display: none;
    position: absolute;
    top: 146px;
    right: -15px;
    width: 100%;
    opacity: .18;
    z-index: 0;
    pointer-events: none;
}

.path-2 {
    display: none;
    position: absolute;
    bottom: 146px;
    right: -15px;
    opacity: .18;
    z-index: 0;
    width: 100%;
    pointer-events: none;
}

.passport-stamp-2 {
    bottom: -86px;
    left: -112px;
    height: 25vh;
    opacity: .18;
    z-index: 0;
    pointer-events: none;
}

.passport-stamp-3 {
    display: none;
}

.icons .hot-ballon-1 {
    position: absolute;
    top: 1694px;
    left: 0;
    height: 9%;
    z-index: 0;
    pointer-events: none;
}

@media (min-width: 1024px) {
    section {
        text-align: right;
        padding: 70px 130px;
    }

    .desktop-break {
        display: block;
    }
    
    .hero-section {
        flex-direction: row;
        gap: 270px;
        padding: 50px 100px;
    }

    .hero-section .cover-image {
        height: 100%;
    }

    .info-section {
        gap: 60px;
    }

    .info-section .info {
        gap: 70px;
        padding: 0;
    }

    .info-section .info h2,
    .info-section .info h3 {
        text-align: center;
        width: 492px;
    }

    .info-section .info h3 {
        align-self: flex-end;
    }

    .video-section {
        gap: 85px;
    }

    .video-section .group button {
        width: 230px;
        height: 60px;
        font-size: 1.2rem;
    }

    .video-section iframe {
        width: 900px;
        height: 500px;
    }

    .proofs-section .info a {
        width: 230px;
        height: 60px;
        font-size: 1.2rem;
    }

    .reviews-section {
        padding: 110px;
    }
    
    .reviews-section .reviews-wrapper .reviews {
        display: grid;
        grid-template-rows: repeat(2, 200px);
        grid-auto-columns: 260px;
        grid-auto-flow: column;
        gap: 60px;
        margin: 0 auto;
        padding-bottom: 25px;
        width: 75%;
        cursor: grab;
        overflow-x: auto;
    }

    .reviews-section .reviews-wrapper .reviews .review {
        width: 100%;
        height: 100%;
        scroll-snap-align: start;
    }

    .reviews-section .reviews-wrapper .arrows #right-arrow {
        right: -60px;
    }

    .reviews-section .reviews-wrapper .arrows #left-arrow {
        left: -60px;
    }

    footer {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 20px 90px;
    }

    footer p {
        font-size: 1rem;
    }

    .video-container {
        width: 45%;
    }
    
    /* ---------------------- */
    /* Background Icons */
    /* ---------------------- */
    .icons .earth-1 {
        left: -530px;
        height: 100vh;
    }

    .earth-2 {
        bottom: -20px;
        right: -76px;
        height: 31%;
    }

    .icons .passport-stamp-1 {
        right: -76px;
        height: 28vh;
    }

    .path-1 {
        display: block;
    }

    .path-2 {
        display: block;
    }

    .passport-stamp-2 {
        bottom: -86px;
        left: -130px;
        height: 32vh;
        opacity: 0.18;
        z-index: 0;
    }

    .passport-stamp-3 {
        display: block;
        bottom: 390px;
        right: -1px;
        height: 23vh;
        z-index: 0;
        pointer-events: none;
    }

    .icons .hot-ballon-1 {
        top: 2863px;
        height: max-content;
    }
}