/* ===== ROOT CSS VARIABLES ===== */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;

    --text-color: #000000;
    --text-light: #666666;
    --bg-color: #ffffff;
    --border-color: #e0e0e0;

    --font-family: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;

    --border-radius: 0.375rem;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* ===== HEADINGS ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'DM Sans', sans-serif;
}

.fs-1 {
    font-size: 2.5rem;
}

.fs-2 {
    font-size: 2rem;
}

.fs-3 {
    font-size: 1.75rem;
}

.fs-4 {
    font-size: 1.5rem;
}

.fs-5 {
    font-size: 1.25rem;
}

.fs-6 {
    font-size: 1rem;
}

/* ===== PARAGRAPH ===== */
p {
    margin-bottom: 1rem;
    line-height: var(--line-height-base);
}

/* ===== LINKS ===== */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #0056b3;
}

/* ===== LISTS ===== */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    list-style: none;
}

/* ===== TEXTAREA ===== */
textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== CODE ===== */
code,
pre {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

code {
    padding: 0.2rem 0.4rem;
    color: #d63384;
}

pre {
    padding: 1rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

pre code {
    padding: 0;
    color: inherit;
    background-color: transparent;
}

input:focus {
    outline: none;
    box-shadow: none;
}

/* ===== HR ===== */
hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

em,
i {
    font-style: italic;
}

/* commone */
.badge-success {
    background: #21ac21;
    color: #fff;
}

.badge {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    padding: 6px 8px;
    border-radius: 3px;
}

/* Button */

.btn {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    padding: 16px 26px;
    line-height: 1;
}

.btn-main {
    background: #c8102e;
    color: #fff;
    border-color: #c8102e;
}

.btn-main:hover, .btn-main:active {
    background: #94071e;
    color: #fff;
    border-color: #94071e;
}

.btn-sm {
    padding: 12px 26px;
}

/* Button Outline Start */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    box-sizing: border-box;
    overflow: hidden;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}
.btn-outline:hover {
    background-color: #c8102e;
    border-color: #c8102e;
}
.btn__text-wrapper {
    position: relative;
    height: 1.2em;
    overflow: hidden;
}
.btn__text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #c8102e;
    line-height: 1.2em;
    white-space: nowrap;
    transition:
        transform 0.4s cubic-bezier(0.76, 0, 0.24, 1),
        color 0.3s ease;
}
.btn__text--hover {
    position: absolute;
    top: 100%;
    left: 0;
    color: #ffffff;
}
.btn-outline:hover .btn__text--default {
    transform: translateY(-100%);
    color: #ffffff;
}
.btn-outline:hover .btn__text--hover {
    transform: translateY(-100%);
}
.btn__icon-wrapper {
    position: relative;
    width: 18px;
    height: 13px;
    overflow: hidden;
}
.btn__icon {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.btn__icon--default {
    color: #c8102e;
    left: 0;
}
.btn__icon--hover {
    left: -200%;
}
.btn-outline:hover .btn__icon--default {
    transform: translateX(200%);
}
.btn-outline:hover .btn__icon--hover {
    color: #fff;
    transform: translateX(200%);
}
/* Button Outline End */

/* container */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1274px;
    }
}

/* swiper-navigations */
.sw-navs {
}

.sw-navs button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    border: none;
    color: #fff;
    z-index: 10;
}

.sw-navs button:last-child {
    left: auto;
    right: -60px;
}

.sw-navs button:hover {
    background-color: #d4af37;
}

.swiper-pagination {
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #000000;
    border: 1px solid #000000;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: transparent;
    opacity: 1;
}

/* Header Secion */

.header--section {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 111;
}

.header__top {
    background: #cda729;
    padding: 9px 0px;
}

.header__top-content {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header__top-content p {
    margin-bottom: 0;
}

.header__logo {
    position: absolute;
    left: 15px;
    top: 0;
}

.header__logo img {
    max-width: 200px;
}

.header__nav-main nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__nav-main nav ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.header__nav-main nav ul li a.active {
    font-weight: bold;
}

.header__nav-main nav ul li a::after {
    width: 0%;
    height: 2px;
    content: '';
    background-color: #c8102e;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    position: absolute;
}

.header__nav-main nav ul li a:hover:after {
    width: 100%;
}

.header__nav-main nav ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.header__nav-main {
    gap: 40px;
}

.heaedr__nav {
    background: #000;
    padding: 33px 0px;
    border-bottom: 1px solid #ffffff2e;
}

.header__bottomNav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header__bottomNav-wrapper nav ul {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header__bottomNav {
    padding: 8px 0px;
    border-bottom: 1px solid #fff1;
}

.header__bottomNav-wrapper ul li a {
    font-size: 15px;
    gap: 8px;
    color: #fff;
    display: inline-flex;
    align-items: center;
}
.header__bottomNav-wrapper nav ul li a:hover {
    color: #c8102e;
}

.nav__icon-wrapper {
    position: relative;
    width: 26px;
    height: 26px;
    overflow: hidden;
}
.nav__icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav__icon--default {
    top: 50%;
    transform: translate(-50%, -50%);
}
.nav__icon--hover {
    top: 150%;
    transform: translate(-50%, -50%);
}
.header__bottomNav-wrapper ul li a:hover .nav__icon--default {
    transform: translate(-50%, calc(-50% - 26px));
}
.header__bottomNav-wrapper ul li a:hover .nav__icon--hover {
    transform: translate(-50%, calc(-50% - 26px));
}

/* Hero Section */
.hero--section {
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.hero__content {
    max-width: 926px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.hero__content h1 {
    font-size: 80px !important;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero__content p {
    font-size: 22px;
    color: #fff;
    margin-bottom: 40px;
}

.hero--section::after {
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(
        180.06deg,
        #000000 7.23%,
        rgba(0, 0, 0, 0) 89.37%
    );
    z-index: -1;
}

.btn.btn-primary {
    font-size: 17px;
    font-weight: bold;
    padding: 29px 26px;
    background: #c8102e;
    color: #fff;
    border-color: #c8102e;
    position: relative;
    text-decoration: none;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
}

.btn.btn-primary::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 98%;
    height: 93%;
    border: 0.1em dashed #fff;
    border-radius: 3px;
    z-index: -1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.btn.btn-primary:hover:after {
    background-color: #8d0018;
}

.hero__wave {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
}

.hero__wave svg {
    width: 100%;
    height: 250px;
    max-height: 20vh;
    display: block;
}

.hero__wave svg .path-0 {
    animation: pathAnim-0 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes pathAnim-0 {
    0% {
        d: path(
            'M 0,400 L 0,150 C 80.82296650717703,190.99521531100478 161.64593301435406,231.99043062200957 249,220 C 336.35406698564594,208.00956937799043 430.23923444976083,143.03349282296648 536,139 C 641.7607655502392,134.96650717703352 759.3971291866029,191.87559808612443 865,190 C 970.6028708133971,188.12440191387557 1064.1722488038276,127.46411483253588 1158,111 C 1251.8277511961724,94.53588516746412 1345.9138755980862,122.26794258373207 1440,150 L 1440,400 L 0,400 Z'
        );
    }

    25% {
        d: path(
            'M 0,400 L 0,150 C 121.46411483253587,177.37799043062202 242.92822966507174,204.75598086124404 335,192 C 427.07177033492826,179.24401913875596 489.7511961722488,126.35406698564591 572,108 C 654.2488038277512,89.64593301435409 756.066985645933,105.82775119617227 868,129 C 979.933014354067,152.17224880382773 1101.9808612440193,182.33492822966505 1199,187 C 1296.0191387559807,191.66507177033495 1368.0095693779904,170.8325358851675 1440,150 L 1440,400 L 0,400 Z'
        );
    }

    50% {
        d: path(
            'M 0,400 L 0,150 C 79.35885167464113,118.58373205741627 158.71770334928226,87.16746411483254 263,87 C 367.28229665071774,86.83253588516746 496.48803827751203,117.91387559808612 604,141 C 711.511961722488,164.08612440191388 797.3301435406698,179.177033492823 887,191 C 976.6698564593302,202.822966507177 1070.1913875598086,211.377990430622 1163,204 C 1255.8086124401914,196.622009569378 1347.9043062200958,173.311004784689 1440,150 L 1440,400 L 0,400 Z'
        );
    }

    75% {
        d: path(
            'M 0,400 L 0,150 C 90.32535885167462,168.10526315789474 180.65071770334924,186.21052631578945 274,182 C 367.34928229665076,177.78947368421055 463.72248803827756,151.26315789473688 552,131 C 640.2775119617224,110.73684210526314 720.4593301435407,96.73684210526315 817,108 C 913.5406698564593,119.26315789473685 1026.4401913875597,155.78947368421052 1133,167 C 1239.5598086124403,178.21052631578948 1339.77990430622,164.10526315789474 1440,150 L 1440,400 L 0,400 Z'
        );
    }

    100% {
        d: path(
            'M 0,400 L 0,150 C 80.82296650717703,190.99521531100478 161.64593301435406,231.99043062200957 249,220 C 336.35406698564594,208.00956937799043 430.23923444976083,143.03349282296648 536,139 C 641.7607655502392,134.96650717703352 759.3971291866029,191.87559808612443 865,190 C 970.6028708133971,188.12440191387557 1064.1722488038276,127.46411483253588 1158,111 C 1251.8277511961724,94.53588516746412 1345.9138755980862,122.26794258373207 1440,150 L 1440,400 L 0,400 Z'
        );
    }
}

.hero__content-btn .btn.btn-primary {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.5);
    animation: pulse 2s infinite;
}

.hero__content-btn .btn.btn-primary:hover {
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 40px rgba(200, 16, 46, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(200, 16, 46, 0);
    }
}

/* service--section */

.service--section {
    padding: 30px 0px 100px;
}

.section__title {
    margin-bottom: 76px;
}

.section__title h2 {
    font-size: 55px;
    line-height: 1.15;
    text-transform: uppercase;
}

.section__title h2:last-child {
    margin-bottom: 0px;
}

/* Card Container */
.service-item {
    background-color: #ffffff;
    overflow: hidden;
    max-width: 100%;
    position: relative;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover .service-item__content {
    border-color: #c8102e;
}

.service-item:hover .corner--bottomLeft,
.service-item:hover .corner--bottomRight {
    border-color: #c8102e;
}

.corner {
    position: absolute;
    background-color: #fff;
    width: 27px;
    height: 27px;
    border: 1px solid #0000001a;
    z-index: 2;
    transition: all 0.3s ease;
}

.corner--topLeft {
    top: -15px;
    left: -15px;
    border-bottom-right-radius: 12px;
}

.corner--bottomLeft {
    bottom: -15px;
    left: -15px;
    border-top-right-radius: 12px;
}

.corner--topRight {
    top: -15px;
    right: -15px;
    border-bottom-left-radius: 12px;
}

.corner--bottomRight {
    bottom: -15px;
    right: -15px;
    border-top-left-radius: 12px;
}

.service-item:hover .service-item__thumbnail--icon {
    background-color: #c8102e;
}

/* Button CSS change on Card Hover Start */
.service-item:hover .btn-outline {
    background-color: #c8102e;
    border-color: #c8102e;
}
.service-item:hover .btn__text,
.service-item:hover .btn__icon--default {
    color: #ffffff;
}

/* Button CSS change on Card Hover End */

.service-item__thumbnail {
    position: relative;
    height: 245px;
    width: 100%;
}

.service-item__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-item__thumbnail--icon {
    position: absolute;
    left: 24px;
    bottom: -31px;
    width: 62px;
    height: 62px;
    background-color: #cda729;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.service-item__content {
    padding: 40px 16px 24px 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid #0000001a;
    transition: all 0.3s ease;
    border-top: none;
}

.service-item__content h3 {
    margin: 0 0 7px 0;
}

.service-item__content h3 a {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-item__content h3 a:hover {
    color: #000;
}

.service-item__content p {
    color: #777777;
    font-size: 15px;
    line-height: 25px;
    margin: 0 0 24px 0;
}

.service-item__thumbnail--icon img {
    max-width: 26px;
    object-fit: contain;
}

/* Discover--section */

.discover--section {
    background-color: #f9f3e1;
    padding: 76px 0px;
    background-image: url('../imgs/discover/logo-water-mark.webp');
    background-repeat: no-repeat;
    background-position: calc(50% + 362px) -79px;
    background-size: contain;
}

.discover__thumbnails img {
    max-width: 100%;
}

.discover__thumbnails img.img-lg {
    border-radius: 20px;
}

.discover__thumbnails {
    position: relative;
}

.discover__thumbnails img.img-sm {
    position: absolute;
    left: -40px;
    bottom: -40px;
    border-radius: 14px;
}

.discover__content {
    max-width: 580px;
    margin: 0 0 0 auto;
}

.discover__content--logo {
    margin-bottom: 21px;
}

.discover__content h2 {
    font-size: 68px;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.discover__content h2 span.text-small {
    font-size: 32px;
    display: block;
    font-weight: 300;
}

.discover__content h2 span.text-primary {
    color: #c8102e !important;
}

.discover__content p {
    font-size: 17px;
    line-height: 30px;
    color: #212121;
    margin-bottom: 31px;
}

/* Comming soon section */
.commingSoon--section {
    padding: 76px 0px 110px;
}

.commingSoon__slider {
    margin-top: -30px;
    margin-bottom: -30px;
}

.commingSoon__slider .swiper-wrapper {
    padding: 30px 0px;
}

.commingSoon__slider .swiper-slide-active .commingSoon__item {
    transform: scale(1.1);
}

.commingSoon__item {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 515px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.commingSoon__item:hover .commingSoon__item-img {
    transform: scale(1.1);
}

.commingSoon__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, #000000 90%);
    z-index: 1;
}

.commingSoon__item-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1s ease;
}

.commingSoon__badges,
.commingSoon__item-content {
    position: relative;
    z-index: 2;
}

.badge.badge-light {
    display: inline-block;
    background-color: #ffffff;
    color: #c8102e;
    font-size: 10px;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 4px;
    text-transform: uppercase;
}

.commingSoon__item-content .date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 12px;
}

.commingSoon__item-content .date .icon {
    display: flex;
    align-items: center;
}

.commingSoon__item-content .date .icon img {
    width: 18px;
    height: auto;
}

.commingSoon__item-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 2px 0;
    text-transform: capitalize;
}

.commingSoon__item-content p {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 200;
    margin: 0 0 20px 0;
}

/* Button CSS change on Card Hover Start */
.commingSoon__item-content .btn-outline {
    font-size: 15px;
    gap: 30px;
    font-weight: 600;
    color: #fff;
}
.commingSoon__item-content .btn-outline:hover {
    color: #c8102e;
    background-color: #fff;
    border-color: #fff;
}
.commingSoon__item-content .btn-outline .btn__text,
.commingSoon__item-content .btn-outline .btn__icon {
    color: #fff;
}
.commingSoon__item-content .btn-outline:hover .btn__text,
.commingSoon__item-content .btn-outline:hover .btn__icon {
    color: #c8102e;
}
/* Button CSS change on Card Hover End */

/* Testimonial Section */
.testimonial--section {
    background-color: #f9f3e1;
    padding: 76px 0px 120px;
}

.testimonial--section .swiper-wrapper {
  padding: 4px 0;
}

.testimonial__wrapper .swiper-pagination {
    bottom: -50px;
}

.testimonial__summery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.testimonial__summery p {
    margin-bottom: 0px;
    font-size: 18px;
}

.testimonial-item__wrapper {
    max-width: 392px;
    background: #fff;
    border: 1px solid #cda729;
    padding: 8px;
}

.testimonial-item__inner {
    padding: 35px 25px 34px;
    transition: all 0.3s ease;
}

span.quote__icon {
    display: block;
    margin-bottom: 20px;
}

.testimonial-item__text p {
    font-size: 18px;
    line-height: 29px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0px;
}

.testimonial-item__text {
    min-height: 239px;
    padding-bottom: 14px;
    border-bottom: 1px solid #00000042;
}

.testimonial-item__bottom {
    padding-top: 20px;
}

.testimonial-item__bottom h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0px;
}

.testimonial-item__bottom .stars {
    color: #cda729;
}

.testimonial-item:hover .testimonial-item__inner {
    background: #d3b143;
}

.testimonial-item:hover .testimonial-item__bottom .stars {
    color: #fff;
}

.quote__icon svg path {
    transition: all 0.3s ease;
}

.testimonial-item:hover .quote__icon svg path {
    fill: #000000;
}

.testimonial-item__corners .corner {
    background-color: #f9f3e1;
    border-color: #cda729;
}

.testimonial-item__inner-corners .corner {
    border-color: #fff;
}

/* about--section */
.about--section {
    padding: 93px 0px 93px;
}

.about__thumbnail img {
    max-width: 100%;
    border-radius: 17px;
}

.about__content {
    max-width: 521px;
    margin: 0 0 0 auto;
}

.about__content h2 {
    font-size: 55px;
    line-height: 1.17;
}

.about__content h2 span.text-sm {
    font-size: 33px;
    display: block;
    font-weight: 300;
}

.about__content h2 span.fst-italic {
    color: #c8102e;
    display: block;
}

.about__content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 36px;
}

/* Footer Css */
.footer--section {
    background: #d4af37;
}

.footer__main {
    padding: 55px 0px 68px;
}

.footer__logo {
    margin-bottom: 35px;
    text-align: center;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    gap: 19px;
}

.social.footer__social a {
    color: #000;
    display: block;
}

.social a:hover {
    color: #c8102e;
}

.footer__logo img {
    max-width: 100%;
}

.footer__widget h4 {
    font-size: 18px;
    font-weight: bold;
}

.footer__menu {
    display: flex;
    align-items: flex-start;
    gap: 5vw;
}

.footer__menu ul li a {
    font-size: 16px;
    line-height: 24px;
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    color: #000000;
    padding: 10px 0px;
}

.footer__menu ul li a:hover {
    color: #c8102e;
}

.footer__menu ul li a span.icon {
    width: 33px;
    height: 33px;
    flex: 0 0 auto;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 42px;
    position: relative;
    top: -5px;
}

.footer__newsletter--content h4 {
    font-size: 18px;
}

.footer__newsletter--content p {
    font-size: 12px;
    line-height: 21px;
    margin-bottom: 20px;
}

.footer__input {
    position: relative;
    background: #fff;
    border-radius: 3px;
    z-index: 1;
    margin-bottom: 10px;
}

.footer__input span.icon {
    position: absolute;
    left: 21px;
    top: 12px;
}

.footer__input button {
    position: absolute;
}

.footer__input input {
    width: 100%;
    height: 48px;
    border: none;
    padding: 0px 35px 0px 50px;
    border-radius: 3px;
    background: transparent;
}

.footer__input button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0px 13px 0px 0px;
}

.footer__input::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 99%;
    height: 93%;
    border: 0.1em dashed #a4a4a4;
    border-radius: 3px;
    z-index: -1;
    transition: all 0.3s ease;
}

form.footer__newsletter p {
    font-size: 9px;
    line-height: 13px;
    max-width: 220px;
    font-style: italic;
    font-family: 'DM Sans';
}

.footer__newsletter {
    max-width: 278px;
    margin: 0 0 0 auto;
}

.footer__bottom-main {
    text-align: center;
}

.footer__bottom-main p {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 500;
}

.footer__bottom-end ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
    font-size: 12px;
    font-weight: 500;
}

.footer__bottom-end ul li a {
    display: block;
    color: #000;
    transition: all 0.3s ease;
}

.footer__bottom-end ul li a:hover {
    color: #c8102e;
}

.footer__bottom {
    padding: 20px 0px;
    border-top: 1px solid #0000002e;
}

/* Offcanvas Menu */
.offcanvas__menu ul li a {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    padding: 9px 0px;
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid #0001; */
    color: #000;
    transition: all 0.3s ease;
}

.offcanvas__menu ul li a:hover {
    color: #c8102e;
}

.offcanvas__bottom ul {
    display: flex;
    flex-wrap: wrap;
}

.offcanvas__bottom ul li {
    flex: 0 0 auto;
    width: 50%;
}

.offcanvas__bottom ul li a {
    color: #000;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 0px;
    font-size: 14px;
}

.offcanvas__bottom ul li a:hover {
    color: #c8102e;
}

.offcanvas__bottom ul li a span.icon {
    flex: 0 0 auto;
    width: 24px;
    text-align: center;
}

.offcanvas-title img {
    max-width: 79px;
}

.offcanvas__bottom ul li a span.icon img {
    max-width: 22px;
}

.offcanvas-header button.btn-close {
    background: #fff;
    font-size: 26px;
    padding: 0px !important;
    border: 2px solid #c8102e;
    line-height: 1;
    height: 35px;
    width: 35px;
    opacity: 1;
    color: #c8102e;
    margin-right: 3px;
    margin-top: -28px;
}

.offcanvas-header button.btn-close:hover {
    background: #c8102e;
    color: #fff;
}

.offcanvas-header {
    border-bottom: 1px solid #0001;
}

/* Preloader Full Screen Container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f3e1;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
        opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        visibility 0.6s;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    width: 110px;
    height: auto;
    animation: pulseLogo 2s infinite ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader__wrap {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stylish-spinner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #c8102e;
    border-bottom-color: #cda729;
    animation: premiumRotate 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

/* Elegant Loading Text */
.loading-text {
    color: #000;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.loading-text span {
    animation: blink 1.4s infinite both;
    font-weight: bold;
}

.loading-text span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-text span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes premiumRotate {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes pulseLogo {
    0%,
    100% {
        transform: translate(-50%, -50%);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}
