/* ==================================================
   CUSTOM FRUNCHY FONT
================================================== */

@font-face {
    font-family: "Frunchy";
    src: url("../fonts/Frunchy.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* ==================================================
   ROOT VARIABLES
================================================== */

:root {
    --ets-primary: #6c5e61;
    --ets-primary-dark: #190005;
    --ets-heading-light: #f9f7f6;
    --ets-button-light: #ffebe8;
    --ets-dot-dark: #39292c;
    --ets-white: #ffffff;
    --ets-font-frunchy: "Frunchy", cursive;
    --ets-font-script: "Pinyon Script", cursive;
    --ets-font-body: "Montserrat", sans-serif;
}


/* ==================================================
   GLOBAL RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background-color: var(--ets-white);
    color: #222222;
    font-family: var(--ets-font-body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ==================================================
   HEADER
================================================== */

.ets-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.ets-header-container {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding-right: 73px;
    padding-left: 73px;
}

.ets-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    gap: 24px;
}

.ets-header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ets-header-nav a {
    color: #6c5e61;
    font-family: var(--ets-font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.ets-header-nav a:hover,
.ets-header-nav a:focus-visible {
    color: #3a2c2d;
}

@media (max-width: 767.98px) {
    .ets-header-nav {
        display: none;
    }
}


/* ==================================================
   HEADER BRAND
================================================== */

.ets-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    height: 80px;
    text-decoration: none;
}

.ets-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-top: 0;
    flex-shrink: 0;
}

.ets-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transform-origin: center center;
    animation: etsLogoRoundDance 8s linear infinite;
    will-change: transform;
}

@keyframes etsLogoRotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes etsLogoRoundDance {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(90deg) scale(1.035);
    }

    50% {
        transform: rotate(180deg) scale(1);
    }

    75% {
        transform: rotate(270deg) scale(1.035);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes etsSectionSoftEntry {
    from {
        opacity: 0;
        transform: translateY(34px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ets-animate-section {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.ets-section-slide-left {
    transform: translateX(-30px) scale(0.985);
}

.ets-section-slide-right {
    transform: translateX(30px) scale(0.985);
}

.ets-section-slide-top {
    transform: translateY(-30px) scale(0.985);
}

.ets-section-slide-bottom {
    transform: translateY(30px) scale(0.985);
}

.ets-animate-section.ets-is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

.ets-animate-card {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease,
        border-color 0.4s ease,
        filter 0.45s ease;
    will-change: opacity, transform;
}

.ets-animate-card.ets-is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ets-brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    color: var(--ets-primary);
    line-height: 1;
}

.ets-brand-name {
    display: block;
    font-family: var(--ets-font-frunchy);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    white-space: nowrap;
}

.ets-brand-subtitle {
    display: block;
    margin-top: 0;
    font-family: var(--ets-font-frunchy);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 2.16px;
    white-space: nowrap;
}


/* ==================================================
   HEADER BUTTON
================================================== */

.ets-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 0.5px solid var(--ets-white);
    border-radius: 12px;
    background:
        radial-gradient(
            ellipse 98.48% 98.48% at 50% 50%,
            var(--ets-primary) 0%,
            var(--ets-primary-dark) 100%
        );
    color: var(--ets-button-light);
    box-shadow: 0 4px 14px rgba(25, 0, 5, 0.18);
    font-family: var(--ets-font-body);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.ets-button-text {
    font-family: var(--ets-font-body);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    white-space: nowrap;
}

.ets-header-button i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--ets-white);
    font-size: 21px;
    line-height: 1;
    transform: rotate(-12deg);
    transition: transform 0.3s ease;
}

.ets-header-button:hover {
    color: var(--ets-button-light);
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 8px 24px rgba(25, 0, 5, 0.28);
}

.ets-header-button:hover i {
    transform: translate(2px, -2px) rotate(-12deg);
}

.ets-header-button:focus-visible {
    outline: 3px solid rgba(108, 94, 97, 0.35);
    outline-offset: 3px;
}


/* ==================================================
   HERO SECTION
================================================== */

.ets-hero {
    position: relative;
    width: 100%;
    height: 664px;
    min-height: 664px;
    overflow: hidden;
    isolation: isolate;
    background-color: #3a2c2d;
}

.ets-hero-background {
    position: absolute;
    inset: 0;
    z-index: -4;
    background-image: url("../images/Hero-banner.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: scale(1.002);
     transform: scaleX(-1);
}

.ets-hero-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -3;
    width: 64%;
   background: linear-gradient(90deg, rgb(108 94 97 / 55%) 0%, rgb(108 94 97 / 58%) 40%, rgb(108 94 97 / 0%) 67%, rgba(108, 94, 97, 0) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(2px);
}

.ets-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(25, 0, 5, 0.07) 0%,
            rgba(25, 0, 5, 0) 55%
        );
}

.ets-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding-right: 86px;
    padding-left: 86px;
}


/* ==================================================
   HERO CONTENT
================================================== */

.ets-hero-content {
    width: 603px;
    max-width: 100%;
    padding-top: 157px;
    color: var(--ets-heading-light);
}

.ets-hero-script {
    margin: 0 0 12px;
    color: var(--ets-heading-light);
    font-family: var(--ets-font-script);
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 1px 2px rgba(108, 94, 97, 1);
}

.ets-hero-title {
    margin: 0;
    color: var(--ets-heading-light);
    font-family: var(--ets-font-frunchy);
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(108, 94, 97, 1);
}

.ets-hero-title span {
    display: block;
}

.ets-hero-description {
    margin: 32px 0 0;
    color: var(--ets-heading-light);
    font-family: var(--ets-font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-shadow: 0 1px 2px rgba(25, 0, 5, 0.22);
}

.ets-hero-description span {
    display: block;
}


/* ==================================================
   HERO BUTTON
================================================== */

.ets-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    margin-top: 32px;
    padding: 10px 12px;
    border: 0.5px solid var(--ets-heading-light);
    border-radius: 12px;
    background:
        radial-gradient(
            ellipse 98.48% 98.48% at 50% 50%,
            var(--ets-primary) 0%,
            var(--ets-primary-dark) 100%
        );
    color: var(--ets-heading-light);
    box-shadow: 0 6px 16px rgba(25, 0, 5, 0.22);
    font-family: var(--ets-font-body);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.ets-hero-button span {
    color: var(--ets-heading-light);
    font-family: var(--ets-font-body);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    white-space: nowrap;
}

.ets-hero-button i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--ets-heading-light);
    font-size: 21px;
    line-height: 1;
    transform: rotate(-12deg);
    transition: transform 0.3s ease;
}

.ets-hero-button:hover {
    color: var(--ets-heading-light);
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 10px 28px rgba(25, 0, 5, 0.35);
}

.ets-hero-button:hover i {
    transform: translate(3px, -3px) rotate(-12deg);
}

.ets-hero-button:focus-visible {
    outline: 3px solid rgba(249, 247, 246, 0.45);
    outline-offset: 4px;
}


/* ==================================================
   HERO PAGINATION
================================================== */

.ets-hero-pagination {
    position: absolute;
    bottom: 36px;
    left: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    transform: translateX(-50%);
}

.ets-pagination-dot {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 9999px;
    background: var(--ets-button-light);
    cursor: pointer;
    transition:
        width 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.ets-pagination-dot:hover {
    transform: scale(1.15);
}

.ets-pagination-dot.active {
    width: 24px;
    border-radius: 6px;
    background: var(--ets-dot-dark);
}


/* ==================================================
   TEMPORARY CONTACT SECTION
================================================== */

.ets-contact-placeholder {
    padding: 90px 20px;
    text-align: center;
    background: #f9f7f6;
}

.ets-contact-placeholder h2 {
    margin: 0 0 15px;
    color: var(--ets-primary);
    font-family: var(--ets-font-frunchy);
    font-size: 48px;
    font-weight: 400;
}

.ets-contact-placeholder p {
    max-width: 650px;
    margin: 0 auto;
    color: #615659;
    font-family: var(--ets-font-body);
    font-size: 17px;
    line-height: 28px;
}


/* ==================================================
   LARGE DESKTOP
================================================== */

@media (min-width: 1441px) {
    .ets-header-container,
    .ets-hero-container {
        max-width: 1600px;
    }

    .ets-hero-background {
        background-position: center 42%;
    }
}


/* ==================================================
   LAPTOP
================================================== */

@media (max-width: 1199.98px) {
    .ets-header-container {
        padding-right: 45px;
        padding-left: 45px;
    }

    .ets-logo-wrapper,
    .ets-logo {
        width: 86px;
        height: 86px;
    }

    .ets-brand-name {
        font-size: 28px;
        line-height: 28px;
    }

    .ets-brand-subtitle {
        font-size: 16px;
        line-height: 16px;
        letter-spacing: 1.9px;
    }

    .ets-hero-container {
        padding-right: 60px;
        padding-left: 60px;
    }

    .ets-hero-content {
        width: 570px;
    }

    .ets-hero-script {
        font-size: 54px;
    }

    .ets-hero-title {
        font-size: 68px;
        line-height: 64px;
    }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991.98px) {
    .ets-header-container {
        padding-right: 30px;
        padding-left: 30px;
    }

    .ets-logo-wrapper,
    .ets-logo {
        width: 75px;
        height: 75px;
    }

    .ets-brand-name {
        font-size: 25px;
        line-height: 25px;
    }

    .ets-brand-subtitle {
        font-size: 14px;
        line-height: 14px;
        letter-spacing: 1.7px;
    }

    .ets-header-button {
        min-height: 42px;
        padding: 9px 11px;
    }

    .ets-button-text {
        font-size: 14px;
        line-height: 14px;
    }

    .ets-header-button i {
        width: 21px;
        height: 21px;
        font-size: 19px;
    }

    .ets-hero {
        height: 620px;
        min-height: 620px;
    }

    .ets-hero-overlay {
        width: 85%;
        background:
            linear-gradient(
                90deg,
                rgba(108, 94, 97, 0.92) 0%,
                rgba(108, 94, 97, 0.80) 48%,
                rgba(108, 94, 97, 0.20) 85%,
                rgba(108, 94, 97, 0) 100%
            );
    }

    .ets-hero-container {
        padding-right: 45px;
        padding-left: 45px;
    }

    .ets-hero-content {
        width: 540px;
        padding-top: 135px;
    }

    .ets-hero-script {
        font-size: 50px;
    }

    .ets-hero-title {
        font-size: 62px;
        line-height: 59px;
    }

    .ets-hero-description {
        margin-top: 27px;
        font-size: 18px;
        line-height: 25px;
    }

    .ets-hero-button {
        margin-top: 27px;
    }
}


/* ==================================================
   MOBILE LANDSCAPE / SMALL TABLET
================================================== */

@media (max-width: 767.98px) {
    .ets-header {
        height: 72px;
    }

    .ets-header-container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .ets-header-inner {
        height: 72px;
    }

    .ets-brand {
        height: 72px;
    }

    .ets-logo-wrapper,
    .ets-logo {
        width: 62px;
        height: 62px;
    }

    .ets-brand-name {
        font-size: 20px;
        line-height: 20px;
    }

    .ets-brand-subtitle {
        font-size: 11px;
        line-height: 12px;
        letter-spacing: 1.45px;
    }

    .ets-header-button {
        gap: 7px;
        min-height: 38px;
        padding: 8px 10px;
        border-radius: 10px;
    }

    .ets-button-text {
        font-size: 12px;
        line-height: 12px;
    }

    .ets-header-button i {
        width: 19px;
        height: 19px;
        font-size: 17px;
    }

    .ets-hero {
        height: auto;
        min-height: 610px;
    }

    .ets-hero-background {
        background-position: 62% center;
    }

    .ets-hero-overlay {
        width: 100%;
        background:
            linear-gradient(
                90deg,
                rgba(108, 94, 97, 0.90) 0%,
                rgba(108, 94, 97, 0.72) 55%,
                rgba(108, 94, 97, 0.28) 100%
            );
    }

    .ets-hero-shade {
        background: rgba(25, 0, 5, 0.10);
    }

    .ets-hero-container {
        padding-right: 28px;
        padding-left: 28px;
    }

    .ets-hero-content {
        width: 100%;
        max-width: 500px;
        padding-top: 125px;
    }

    .ets-hero-script {
        margin-bottom: 12px;
        font-size: 46px;
    }

    .ets-hero-title {
        font-size: 54px;
        line-height: 52px;
    }

    .ets-hero-description {
        max-width: 470px;
        margin-top: 25px;
        font-size: 17px;
        line-height: 25px;
    }

    .ets-hero-pagination {
        bottom: 28px;
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575.98px) {
    .ets-header-container {
        padding-right: 12px;
        padding-left: 10px;
    }

    .ets-logo-wrapper,
    .ets-logo {
        width: 54px;
        height: 54px;
    }

    .ets-brand-name {
        font-size: 17px;
        line-height: 18px;
    }

    .ets-brand-subtitle {
        margin-top: 1px;
        font-size: 9px;
        line-height: 10px;
        letter-spacing: 1.15px;
    }

    .ets-header-button {
        gap: 5px;
        min-height: 36px;
        padding: 7px 8px;
        border-radius: 9px;
    }

    .ets-button-text {
        font-size: 10px;
        line-height: 11px;
    }

    .ets-header-button i {
        width: 17px;
        height: 17px;
        font-size: 15px;
    }

    .ets-hero {
        min-height: 590px;
    }

    .ets-hero-background {
        background-position: 64% center;
    }

    .ets-hero-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ets-hero-content {
        padding-top: 115px;
    }

    .ets-hero-script {
        margin-bottom: 10px;
        font-size: 40px;
        line-height: 0.95;
    }

    .ets-hero-title {
        font-size: 43px;
        line-height: 43px;
        letter-spacing: -0.25px;
    }

    .ets-hero-description {
        margin-top: 24px;
        font-size: 15px;
        line-height: 23px;
    }

    .ets-hero-description span {
        display: inline;
    }

    .ets-hero-button {
        min-height: 42px;
        margin-top: 25px;
        padding: 9px 11px;
    }

    .ets-hero-button span {
        font-size: 13px;
        line-height: 14px;
    }

    .ets-hero-button i {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }

    .ets-hero-pagination {
        bottom: 25px;
        gap: 9px;
    }

    .ets-pagination-dot {
        width: 10px;
        height: 10px;
    }

    .ets-pagination-dot.active {
        width: 21px;
    }

    .ets-contact-placeholder {
        padding: 70px 20px;
    }

    .ets-contact-placeholder h2 {
        font-size: 38px;
    }

    .ets-contact-placeholder p {
        font-size: 15px;
        line-height: 25px;
    }
}


/* ==================================================
   EXTRA SMALL MOBILE
================================================== */

@media (max-width: 390px) {
    .ets-logo-wrapper,
    .ets-logo {
        width: 48px;
        height: 48px;
    }

    .ets-brand-name {
        font-size: 15px;
        line-height: 16px;
    }

    .ets-brand-subtitle {
        font-size: 8px;
        line-height: 9px;
        letter-spacing: 0.9px;
    }

    .ets-button-text {
        font-size: 9px;
    }

    .ets-header-button {
        padding: 7px;
    }

    .ets-header-button i {
        width: 15px;
        font-size: 14px;
    }

    .ets-hero-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .ets-hero-script {
        font-size: 37px;
    }

    .ets-hero-title {
        font-size: 38px;
        line-height: 39px;
    }

    .ets-hero-description {
        font-size: 14px;
        line-height: 22px;
    }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ets-logo,
    .footer-logo,
    .footer-decoration img {
        animation: none;
    }

    .ets-header-button,
    .ets-header-button i,
    .ets-hero-button,
    .ets-hero-button i,
    .ets-pagination-dot {
        transition: none;
    }
}

/* ==================================================
   ABOUT SECTION
================================================== */

.ets-about-section {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
    background: #000000;
}


/* ==================================================
   BACKGROUND
================================================== */

.ets-about-background {
    position: absolute;
    inset: -10px;
    z-index: -3;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    object-fit: cover;
    object-position: center;
    filter: blur(5px);
    transform: scale(1.02);
}

.ets-about-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    /* background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.72) 48%,
            rgba(0, 0, 0, 0.62) 100%
        ); */
}


/* ==================================================
   MAIN CONTAINER
================================================== */

.ets-about-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    min-height: 680px;
    margin: 0 auto;
    padding: 55px 80px;
}

.ets-about-layout {
    display: grid;
    grid-template-columns: 520px 684px;
    align-items: center;
    gap: 76px;
    width: 100%;
}


/* ==================================================
   LEFT CONTENT
================================================== */

.ets-about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 520px;
}


/* About label */

.ets-about-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    color: #949494;
    font-family: "Montserrat", sans-serif;
}

.ets-about-label span:first-child {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20.8px;
    letter-spacing: 0;
}

.ets-about-label-line {
    display: block;
    width: 36px;
    height: 1px;
    background: #949494;
}


/* Frunchy heading */

.ets-about-heading {
    width: 465px;
    max-width: 100%;
    margin: 0;
    color: #ffffff;
    font-family: "Frunchy", cursive;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
}


/* Pinyon Script heading */

.ets-about-script {
    width: 509px;
    max-width: 100%;
    margin-top: 24px;
    color: #ffffff;
    font-family: "Pinyon Script", cursive;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}


/* Description */

.ets-about-description {
    width: 100%;
    margin-top: 24px;
    color: #ffebe8;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20.8px;
}

.ets-about-description p {
    margin: 0 0 20px;
    color: #ffebe8;
    font: inherit;
}

.ets-about-description p:last-child {
    margin-bottom: 0;
}


/* ==================================================
   RIGHT FEATURE GRID
================================================== */

.ets-about-features {
    display: grid;
    grid-template-columns: repeat(3, 220px);
    grid-auto-rows: 260px;
    gap: 12px;
    width: 684px;
}


/* ==================================================
   FEATURE CARD
================================================== */

.ets-about-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 220px;
    height: 260px;
    padding: 35px 10px 24px;
    overflow: hidden;
    border: 0.84px solid #ffebe8;
    border-radius: 10.07px;
    background: #6c5e61;
    box-shadow:
        0 2px 4px rgba(108, 94, 97, 0.05),
        inset 0 4px 4px rgba(0, 0, 0, 0.25);
    isolation: isolate;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease,
        border-color 0.4s ease;
}

.ets-about-card::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(
            145deg,
            rgba(255, 235, 232, 0.18) 0%,
            rgba(255, 235, 232, 0) 46%
        );
    transition: opacity 0.45s ease;
}

.ets-about-card > * {
    position: relative;
    z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
    .ets-about-card:hover {
        border-color: rgba(255, 246, 244, 0.95);
        transform: translateY(-10px) scale(1.01);
        box-shadow:
            0 26px 50px rgba(25, 0, 5, 0.32),
            0 0 26px rgba(255, 235, 232, 0.14),
            inset 0 4px 4px rgba(0, 0, 0, 0.25);
        filter: saturate(1.08) brightness(1.03);
    }

    .ets-about-card:hover::before {
        opacity: 1;
    }

    .ets-destination-card:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow:
            0 26px 50px rgba(25, 0, 5, 0.32),
            0 0 26px rgba(255, 235, 232, 0.14);
        filter: saturate(1.06) brightness(1.02);
    }

    .ets-destination-card:hover::before {
        opacity: 1;
    }

    .ets-destination-card:hover .ets-destination-image {
        transform: scale(1.06);
    }
}


/* Card icon */

.ets-about-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    color: #ffebe8;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ets-about-card-icon i {
    color: #ffebe8;
    font-size: 42px;
    line-height: 1;
}

.ets-about-wide-icon i {
    font-size: 45px;
}


/* Card title */

.ets-about-card h3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 42px;
    margin: 24px 0 0;
    color: #ffffff;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20.8px;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ets-about-card h3 span {
    display: block;
}


/* Card description */

.ets-about-card p {
    width: 100%;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18.2px;
}

.ets-about-card:hover .ets-about-card-icon {
    transform: translateY(-4px) scale(1.05);
}

.ets-about-card:hover h3 {
    transform: translateY(-3px);
}


/* ==================================================
   RESPONSIVE — LAPTOP
================================================== */

@media (max-width: 1399.98px) {

    .ets-about-container {
        max-width: 1200px;
        padding-right: 35px;
        padding-left: 35px;
    }

    .ets-about-layout {
        grid-template-columns: minmax(420px, 1fr) 640px;
        gap: 40px;
    }

    .ets-about-content {
        width: 100%;
    }

    .ets-about-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 640px;
    }

    .ets-about-card {
        width: 100%;
    }

    .ets-about-heading {
        font-size: 54px;
        line-height: 55px;
    }

    .ets-about-script {
        font-size: 58px;
    }

    .ets-about-description {
        font-size: 15px;
        line-height: 20px;
    }
}


/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 1199.98px) {

    .ets-about-section,
    .ets-about-container {
        min-height: auto;
    }

    .ets-about-container {
        padding: 70px 45px;
    }

    .ets-about-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ets-about-content {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .ets-about-heading {
        width: 100%;
    }

    .ets-about-script {
        width: 100%;
    }

    .ets-about-description {
        text-align: left;
    }

    .ets-about-features {
        grid-template-columns: repeat(3, minmax(0, 220px));
        justify-content: center;
        width: 100%;
    }

    .ets-about-card {
        width: 100%;
    }
}


/* ==================================================
   RESPONSIVE — SMALL TABLET
================================================== */

@media (max-width: 767.98px) {

    .ets-about-container {
        padding: 65px 25px;
    }

    .ets-about-heading {
        font-size: 48px;
        line-height: 49px;
    }

    .ets-about-script {
        margin-top: 16px;
        font-size: 53px;
        line-height: 1;
        white-space: normal;
    }

    .ets-about-description {
        margin-top: 25px;
        font-size: 15px;
        line-height: 22px;
    }

    .ets-about-features {
        grid-template-columns: repeat(2, minmax(0, 220px));
        grid-auto-rows: 260px;
        gap: 14px;
    }
}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 575.98px) {

    .ets-about-container {
        padding: 55px 18px;
    }

    .ets-about-layout {
        gap: 42px;
    }

    .ets-about-label {
        margin-bottom: 18px;
    }

    .ets-about-label span:first-child {
        font-size: 14px;
        line-height: 18px;
    }

    .ets-about-label-line {
        width: 30px;
    }

    .ets-about-heading {
        font-size: 40px;
        line-height: 42px;
    }

    .ets-about-script {
        margin-top: 14px;
        font-size: 46px;
        line-height: 0.95;
    }

    .ets-about-description {
        margin-top: 22px;
        font-size: 14px;
        line-height: 21px;
    }

    .ets-about-description p {
        margin-bottom: 17px;
    }

    .ets-about-features {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        width: 100%;
        max-width: 395px;
        gap: 15px;
    }

    .ets-about-card {
        width: 100%;
        height: 250px;
        padding: 30px 24px 22px;
    }

    .ets-about-card h3 {
        margin-top: 20px;
    }

    .ets-about-card p {
        max-width: 230px;
        margin-top: 20px;
    }
}


/* ==================================================
   EXTRA SMALL MOBILE
================================================== */

@media (max-width: 390px) {

    .ets-about-container {
        padding-right: 14px;
        padding-left: 14px;
    }

    .ets-about-heading {
        font-size: 35px;
        line-height: 38px;
    }

    .ets-about-script {
        font-size: 41px;
    }

    .ets-about-description {
        font-size: 13px;
        line-height: 20px;
    }
}

/* ==================================================
   DESTINATIONS SECTION
================================================== */

.ets-destinations-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 70px 20px;
    background: #f9f7f6;
}

.ets-destinations-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1236px;
    margin: 0 auto;
}


/* ==================================================
   SECTION HEADING
================================================== */

.ets-destinations-heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.ets-destinations-heading {
    width: 316px;
    margin: 0;
    color: #6c5e61;
    text-align: center;
    font-family: "Frunchy", cursive;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ets-destinations-heading-line {
    display: block;
    width: 110px;
    height: 1px;
    flex-shrink: 0;
    background: #6c5e61;
}


/* ==================================================
   DESTINATION GRID
================================================== */

.ets-destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    gap: 12px;
    width: 100%;
}


/* ==================================================
   DESTINATION CARD
================================================== */

.ets-destination-card {
    position: relative;
    display: block;
    width: 300px;
    height: 460px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #6c5e61;
    text-decoration: none;
    isolation: isolate;
    transform: translateZ(0);
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease;
}

.ets-destination-card::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(
            180deg,
            rgba(25, 0, 5, 0.08) 0%,
            rgba(108, 94, 97, 0.22) 100%
        );
    transition: opacity 0.55s ease;
}

.ets-destination-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.ets-destination-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 28px 60px rgba(57, 41, 44, 0.26),
        0 0 0 1px rgba(255, 235, 232, 0.24);
    filter: saturate(1.06) brightness(1.04);
}

.ets-destination-card:hover::before {
    opacity: 1;
}

.ets-destination-card:hover .ets-destination-image {
    transform: scale(1.1);
}


/* ==================================================
   DESTINATION NAME
================================================== */

.ets-destination-name {
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    min-height: 72px;
    padding: 12px 10px 3px;
    overflow: hidden;
    background: rgba(108, 94, 97, 0.5);
    color: #ffffff;
    text-align: center;
    font-family: "Pinyon Script", cursive;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ets-destination-card:hover .ets-destination-name {
    transform: translateY(-3px);
}


/* ==================================================
   BOTTOM GRADIENT
================================================== */

.ets-destination-gradient {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 150px;
    pointer-events: none;
    background:
        linear-gradient(
            0deg,
            #6c5e61 16%,
            rgba(210, 183, 189, 0) 100%
        );
}


/* ==================================================
   EXPLORE LINK
================================================== */

.ets-destination-link {
    position: absolute;
    right: 10px;
    bottom: 14px;
    left: 10px;
    z-index: 4;
    color: #ffffff;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ets-destination-card:hover .ets-destination-link {
    transform: translateY(-4px);
}

.ets-destination-card:focus-visible {
    outline: 3px solid #6c5e61;
    outline-offset: 4px;
}


/* ==================================================
   SMALL DESKTOP / LAPTOP
================================================== */

@media (max-width: 1279.98px) {

    .ets-destinations-container {
        max-width: 924px;
    }

    .ets-destinations-grid {
        grid-template-columns: repeat(3, 300px);
        justify-content: center;
    }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991.98px) {

    .ets-destinations-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .ets-destinations-container {
        max-width: 612px;
    }

    .ets-destinations-grid {
        grid-template-columns: repeat(2, 300px);
    }

    .ets-destinations-heading {
        width: auto;
        font-size: 54px;
        line-height: 56px;
    }

    .ets-destinations-heading-line {
        width: 90px;
    }
}


/* ==================================================
   SMALL TABLET
================================================== */

@media (max-width: 767.98px) {

    .ets-destinations-section {
        padding: 55px 18px;
    }

    .ets-destinations-heading-row {
        gap: 16px;
    }

    .ets-destinations-heading {
        font-size: 46px;
        line-height: 48px;
    }

    .ets-destinations-heading-line {
        width: 60px;
    }

    .ets-destinations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        width: 100%;
        max-width: 650px;
    }

    .ets-destination-card {
        width: 100%;
        height: 430px;
    }

    .ets-destination-name {
        font-size: 50px;
        line-height: 52px;
    }

    .ets-destination-link {
        font-size: 17px;
        line-height: 23px;
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575.98px) {

    .ets-destinations-section {
        padding: 50px 15px;
    }

    .ets-destinations-container {
        gap: 28px;
    }

    .ets-destinations-heading-row {
        gap: 10px;
    }

    .ets-destinations-heading {
        font-size: 39px;
        line-height: 42px;
    }

    .ets-destinations-heading-line {
        width: 35px;
    }

    .ets-destinations-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        max-width: 360px;
        gap: 18px;
    }

    .ets-destination-card {
        width: 100%;
        max-width: 330px;
        height: 460px;
    }

    .ets-destination-name {
        min-height: 70px;
        font-size: 54px;
        line-height: 56px;
    }

    .ets-destination-link {
        bottom: 15px;
        font-size: 18px;
        line-height: 24px;
    }
}


/* ==================================================
   EXTRA SMALL MOBILE
================================================== */

@media (max-width: 390px) {

    .ets-destinations-section {
        padding-right: 12px;
        padding-left: 12px;
    }

    .ets-destinations-heading {
        font-size: 34px;
        line-height: 38px;
    }

    .ets-destinations-heading-line {
        width: 26px;
    }

    .ets-destination-card {
        max-width: 300px;
        height: 440px;
    }

    .ets-destination-name {
        font-size: 50px;
        line-height: 52px;
    }

    .ets-destination-gradient {
        height: 145px;
    }

    .ets-destination-link {
        font-size: 17px;
    }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    .ets-destination-card,
    .ets-destination-card::before,
    .ets-destination-image,
    .ets-destination-name,
    .ets-destination-link,
    .ets-about-card,
    .ets-about-card::before,
    .ets-about-card-icon,
    .ets-about-card h3,
    .location-item,
    .location-image,
    .location-image img,
    .location-item h3,
    .ets-animate-section,
    .ets-animate-card {
        transition: none;
    }

    .ets-destination-card:hover,
    .ets-about-card:hover,
    .location-item:hover {
        transform: none;
    }

    .ets-destination-card:hover::before {
        opacity: 0;
    }

    .ets-destination-card:hover .ets-destination-image,
    .ets-destination-card:hover .ets-destination-name,
    .ets-destination-card:hover .ets-destination-link,
    .ets-about-card:hover .ets-about-card-icon,
    .ets-about-card:hover h3,
    .location-item:hover .location-image img,
    .location-item:hover h3 {
        transform: none;
    }

    .ets-about-card:hover::before {
        opacity: 0;
    }
}




/* =========================================
   LOCATIONS SECTION
========================================= */

.locations-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    padding: 48px 40px 70px;
    overflow: hidden;
    background-color: #74676a;
    isolation: isolate;
    background-image: url("../images/We-are-Located-In.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}



/* Overlay */
.locations-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(89, 77, 80, 0.20);
}

/* Main Container */
.locations-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   HEADING
========================================= */

.locations-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 38px;
}

.locations-heading span {
    width: 110px;
    height: 1px;
    background: rgba(255, 255, 255, 0.85);
}

.locations-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Frunchy", cursive;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1;
    white-space: nowrap;
}

/* =========================================
   LOCATION GRID
========================================= */

.locations-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}

/* Individual Location */
.location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 190px;
    text-align: center;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
    will-change: transform;
}

/* Circular Image */
.location-image {
    position: relative;
    width: 112px;
    height: 112px;
    margin-bottom: 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.65);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.40),
        inset 0 0 0 3px rgba(255, 255, 255, 0.10);
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease;
}

.location-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image Hover */
.location-item:hover .location-image img {
    transform: scale(1.1);
}

.location-item:hover {
    transform: translateY(-10px) scale(1.01);
    filter: saturate(1.05) brightness(1.03);
}

.location-item:hover .location-image {
    box-shadow:
        0 20px 38px rgba(25, 0, 5, 0.32),
        inset 0 0 0 3px rgba(255, 255, 255, 0.16);
}

/* Location Name */
.location-item h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-item:hover h3 {
    transform: translateY(-3px);
}

/* =========================================
   VERTICAL DIVIDER
========================================= */

.location-divider {
    width: 1px;
    height: 195px;
    background: rgba(255, 255, 255, 0.55);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .locations-section {
        padding: 45px 25px 55px;
    }

    .locations-section::before {
        background-size: 110% auto;
    }

    .locations-section {
        background-size: 110% auto;
    }

    .locations-heading {
        gap: 20px;
    }

    .locations-heading h2 {
        font-size: 34px;
        letter-spacing: 2px;
    }

    .locations-heading span {
        width: 70px;
    }

    .location-image {
        width: 95px;
        height: 95px;
        margin-bottom: 20px;
    }

    .location-item h3 {
        font-size: 16px;
    }

    .location-divider {
        height: 170px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .locations-section {
        padding: 40px 20px 45px;
    }

    .locations-section::before {
        background-size: 180% auto;
        background-position: center center;
    }

    .locations-section {
        background-size: 180% auto;
        background-position: center center;
    }

    .locations-heading {
        gap: 12px;
        margin-bottom: 35px;
    }

    .locations-heading span {
        width: 35px;
    }

    .locations-heading h2 {
        font-size: 23px;
        letter-spacing: 1.5px;
    }

    .locations-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    }

    .location-item {
        min-height: 160px;
    }

    .location-image {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }

    .location-item h3 {
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    .location-divider {
        display: none;
    }

    .location-item:nth-child(1),
    .location-item:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.45);
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .locations-section {
        padding: 35px 15px 40px;
    }

    .locations-heading h2 {
        font-size: 20px;
    }

    .locations-heading span {
        width: 25px;
    }

    .location-image {
        width: 78px;
        height: 78px;
    }

    .location-item h3 {
        font-size: 12px;
    }
}












/* =========================================================
   ELYSIUM TRAVEL SOLUTIONS FOOTER
========================================================= */

.elysium-footer {
    position: relative;
    width: 100%;
    min-height: 353px;
    background: #F9F7F6;
    overflow: hidden;
    color: #6C5E61;
    font-family: "Montserrat", sans-serif;
}


/* =========================================================
   DECORATIVE RIGHT IMAGE
========================================================= */

.footer-decoration {
    position: absolute;
    right: -117px;
    top: 54px;
    width: 24%;
    height: 520px;
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}

.footer-decoration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    animation: etsLogoRoundDance 12s linear infinite;
    will-change: transform;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 27px 80px 70px;
}


/* =========================================================
   LEFT BRAND
========================================================= */

.footer-brand {
    margin-bottom: 22px;
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.footer-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    transform-origin: center center;
    animation: etsLogoRoundDance 8s linear infinite;
    will-change: transform;
}

.ets-logo {
    animation: etsLogoRoundDance 8s linear infinite;
}

.ets-logo-wrapper:hover .ets-logo,
.footer-logo:hover {
    transform: scale(1.04);
}

.footer-brand-name {
    text-align: center;
    color: #6C5E61;
    font-family: "Frunchy", cursive;
}

.brand-title {
    font-size: 44px;
    font-weight: 400;
    line-height: 44px;
    white-space: nowrap;
}

.brand-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2.88px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.footer-description {
    max-width: 398px;
    margin: 0 0 18px;
    color: #949494;
    font-size: 16px;
    font-weight: 500;
    line-height: 20.8px;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #6C5E61;

    color: #ffffff;
    font-size: 13px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: #51474A;
    color: #ffffff;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    position: relative;
    min-height: 200px;
}

.footer-column h3 {
    margin: 0 0 12px;

    color: #6C5E61;
    font-family: "Frunchy", cursive;
    font-size: 32px;
    font-weight: 400;

    line-height: 32px;
    text-transform: uppercase;
}


/* =========================================================
   DESTINATIONS
========================================================= */

.footer-destination {
    padding-left: 24px;
    border-left: 1px solid rgba(108, 94, 97, 0.30);
}

.footer-destination ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-destination ul li {
    margin: 0;
    padding: 0;
}

.footer-destination ul li a {
    display: inline-block;

    color: #6C5E61;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.footer-destination ul li a:hover {
    transform: translateX(5px);
    opacity: 0.65;
}


/* =========================================================
   CONTACT US
========================================================= */

.footer-contact {
    padding-left: 25px;
    border-left: 1px solid rgba(108, 94, 97, 0.30);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #6C5E61;
    font-size: 20px;
}

.contact-item a {
    color: #6C5E61;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;

    text-decoration: none;

    word-break: break-word;

    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.6;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #6C5E61;
    z-index: 5;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .footer-main {
        padding: 40px 45px 80px;
    }

    .footer-brand-name {
        text-align: left;
    }

    .brand-title {
        font-size: 38px;
        line-height: 38px;
    }

    .brand-subtitle {
        font-size: 21px;
        line-height: 21px;
        letter-spacing: 2px;
    }

    .footer-logo {
        width: 85px;
        height: 85px;
    }

    .footer-destination,
    .footer-contact {
        padding-left: 20px;
    }

    .footer-decoration {
        right: -250px;
        opacity: 0.10;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .elysium-footer {
        min-height: auto;
    }

    .footer-main {
        padding: 45px 25px 80px;
    }


    /* Brand */

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-logo-wrap {
        gap: 10px;
    }

    .footer-logo {
        width: 75px;
        height: 75px;
    }

    .brand-title {
        font-size: 30px;
        line-height: 30px;
        white-space: normal;
    }

    .brand-subtitle {
        font-size: 17px;
        line-height: 18px;
        letter-spacing: 1.8px;
    }


    /* Description */

    .footer-description {
        max-width: 100%;
        font-size: 14px;
        line-height: 22px;
    }


    /* Social */

    .footer-social {
        margin-bottom: 10px;
    }


    /* Columns */

    .footer-column {
        min-height: auto;
    }

    .footer-destination,
    .footer-contact {
        padding-left: 0;
        border-left: none;
    }

    .footer-destination {
        padding-top: 25px;
        border-top: 1px solid rgba(108, 94, 97, 0.25);
    }

    .footer-contact {
        padding-top: 25px;
        border-top: 1px solid rgba(108, 94, 97, 0.25);
    }

    .footer-column h3 {
        font-size: 28px;
        line-height: 30px;
    }

    .footer-destination ul li a {
        font-size: 14px;
        line-height: 29px;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 18px;
    }

    .contact-item a {
        font-size: 14px;
        line-height: 25px;
    }


    /* Decoration */

    .footer-decoration {
        right: -280px;
        top: 120px;
        opacity: 0.06;
    }


    /* Bottom */

    .footer-bottom {
        position: relative;
        height: auto;
        min-height: 45px;
        padding: 8px 15px;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .footer-main {
        padding: 35px 20px 65px;
    }

    .footer-logo {
        width: 65px;
        height: 65px;
    }

    .brand-title {
        font-size: 25px;
        line-height: 27px;
    }

    .brand-subtitle {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1.4px;
    }

    .footer-description {
        font-size: 13px;
        line-height: 21px;
    }

    .footer-column h3 {
        font-size: 25px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

}
