* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

button {
    background: transparent;
    border: transparent;
}

html {
    scroll-behavior: smooth;
}

.header-wrapper {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    overflow: hidden;
}

.header {
    width: 100%;
    padding: 40px 70px 0;
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0.10) 40%,
            rgba(255, 255, 255, 0.05) 70%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-mask-image: linear-gradient(to bottom,
            black 0%,
            black 60%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            black 0%,
            black 60%,
            transparent 100%);

    pointer-events: none;

    background: rgba(255, 255, 255, 0.07);
}

.header * {
    position: relative;
    z-index: 9;
}

.header a img {
    width: 228px;
    height: auto;
}

.btn a {
    display: inline-flex;
    height: 55px;
    padding: 10px 38px;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.white-outline a {
    color: #FFF;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #FFF;
}

.white-outline:hover a {
    background: #fff;
    color: #706C65;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 9;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-slider .splide__track,
.hero-bg-slider .splide__list,
.hero-bg-slider .splide__slide {
    width: 100%;
    height: 100%;
}

.hero-bg-slider .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero-section h2 {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 43px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    text-transform: uppercase;
    margin-top: 180px;
}

.hero-section h6 {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
}

/* About Section */
.about-section {
    width: 100%;
    padding: 78px 70px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img-wrapper {
    width: 48%;
    position: relative;
    padding-right: 62px;
}

.about-img-wrapper>img {
    width: 100%;
    height: auto;
    display: flex;
}

.icon-wrapper {
    position: absolute;
    top: 48%;
    right: 0;
}

.icon-wrapper img {
    width: 124px;
    height: 124px;
    aspect-ratio: 1/1;
    animation: rotate-animation 20s infinite linear;
}

@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-content {
    width: 52%;
}

.about-content h2 {
    font-family: "Times New Roman";
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 65px;
    text-transform: uppercase;
    max-width: 601px;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: url('../images/font-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.about-content h6 {
    color: #706C65;
    font-family: "Times New Roman";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
    text-transform: uppercase;
    max-width: 642px;
    margin: 14px 0 10px;
}

.about-content p {
    color: #706C65;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    max-width: 642px;
    margin-bottom: 24px;
}

.white-dark a {
    color: #706C65;
    text-align: center;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 138.889% */
    text-transform: uppercase;
    border: 0.5px solid #706C65;
}

.white-dark:hover a {
    background: #706C65;
    color: #fff;
}

/* Contact Section */
.contact-section {
    width: 100%;
    background: #F0F0F0;
    padding: 70px;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.contact-heading {
    width: 100%;
    max-width: 547px;
}

.contact-heading h2 {
    color: #000;
    font-family: "Times New Roman";
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: url('../images/font-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-heading p {
    color: #706C65;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.contact-form {
    width: 100%;
    max-width: 640px;
    background: #706C65;
    padding: 70px 90px 70px 70px;
}

.contact-form div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-form input::placeholder,
.contact-form select::placeholder {
    color: #F0F0F0;
    font-family: "Times New Roman";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.contact-form input,
.contact-form select {
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid #F0F0F0;
    color: #F0F0F0;
    font-family: "Times New Roman";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 50px;
    padding-bottom: 16px;
}

.contact-form select option {
    color: #000;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    display: inline-flex;
    height: 55px;
    padding: 15px 50px 15px 51px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
    border: 0.5px solid #FFF;
    cursor: pointer;
}

.contact-form button:hover {
    background: #fff;
    color: #706C65;
}

/* Address Section */
.address-section {
    width: 100%;
    padding: 80px 70px 70px;
}

.address-section iframe {
    width: 100%;
}

.address-wrapper {
    width: 100%;
    margin-top: 36px;
    display: flex;
}

.address-container {
    width: 100%;
    cursor: pointer;
}

.address {
    width: 100%;
    padding: 22px;
    text-align: center;
    border-right: 1px solid #B6BABC;
}

.address-container:last-of-type div {
    border-right: none;
}

.address h5 {
    color: #706C65;
    font-family: "Times New Roman";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 160% */
    text-transform: uppercase;
}

.address h6 {
    color: #B6BABC;
    text-align: center;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    margin-top: 6px;
}

.address-container img {
    width: 94px;
    height: 94px;
    aspect-ratio: 1/1;
    animation: rotate-animation 20s infinite linear;
}

.address-container .active-address {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease 0.3s;
}

.address-container.active .active-address {
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    width: 100%;
    background: #1E1E1E;
    padding: 60px 75px 50px;
}

.footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 256px;
    height: auto;
    object-fit: cover;
}

.footer-content {
    width: 100%;
    padding: 70px 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 94px;
    padding-right: 24px;
}

.social-links h6 {
    color: #FFF;
    font-family: "Bressay Trial";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 125% */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.social-links div div {
    display: flex;
    align-items: center;
    gap: 19px;
}

.social-links a img {
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-image: url('../images/font-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-bottom-content {
    width: 100%;
}

.footer-bottom-content img {
    width: 110px;
    height: 110px;
    aspect-ratio: 1/1;
    margin: 30px auto 36px;
    display: flex;
    animation: rotate-animation 20s infinite linear;
}

.footer-bottom-content p,
.footer-bottom-content p a {
    color: #545858;
    font-family: "Times New Roman";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
}


.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-btn svg {
    height: 50px;
    width: 50px;
}

.floating-call-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Times New Roman";
    background: #AA7D35;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-call-btn .call-icon {
    font-size: 16px;
    line-height: 1;
}

.floating-call-btn span {
    font-size: 15px;
    line-height: 17px;
    color: #fff;
}

.floating-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}


.header>div {
    display: flex;
    align-items: center;
    gap: 30px;
}

.language-btn {
    width: 60px;
    height: auto;
    display: inline-flex;
}

.header .language-btn>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-btn {
    font-size: 16px;
    text-decoration: underline;
    color: #fff;
    width: 60px;
    height: auto;
    display: inline-flex;
}




.hero-section h2 {
    margin-top: 0 !important;
}


.language-btn .btn a {
    color: #AA7D35;
    border-color: #706C65;
}


.location-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
}

.footer-content {
    justify-content: center;
}

.social-links div div {
    padding: 0;
}

.footer-content {
    padding: 40px 0;
}

.social-links {
    padding-right: 0;
}

.footer-bottom-content img {
    width: 60px;
    height: 60px;
}

.footer {
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer-content {
    flex-direction: column;
    gap: 20px;
}

.footer-content p {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.footer-bottom-content img {
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-img-wrapper>img {
    width: auto;
    max-height: 469px;
}

.about-img-wrapper {
    width: fit-content !important;
}

.about-section {
    justify-content: space-between;
}

.footer-logo img {
    width: 160px;
}

.footer-content {
    padding: 30px 0;
}

.address {
    border: 1px solid #AA7D35 !important;
    max-width: 440px;
    border-radius: 20px;
    display: block;

    padding: 22px !important;
}

.address-container:last-of-type div {
    border: 1px solid #AA7D35;
}

.address-container {
    width: fit-content;
}

.address-wrapper {
    justify-content: space-around;
    gap: 30px;
}

.address-section {
    padding-top: 0;
    padding-bottom: 78px;
}

.address-wrapper {
    margin-top: 0;
}

.contact-form {
    width: 50%;
}

@media (max-width: 1200px) {
    .address-container:last-of-type .address {
        width: unset !important;
        border: 1px solid #AA7D35 !important;
    }

    .address-container {
        width: fit-content !important;
    }

    .address-wrapper {
        flex-wrap: unset !important;
    }

    .address-container:last-of-type {
        margin-top: 0 !important;
    }
}

@media (max-width: 1025px) {
    .about-img-wrapper>img {
        max-height: unset;
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .address-section {
        padding-top: 0 !important;
        padding-bottom: 50px !important;
    }
}

@media (max-width: 767px) {
    .address-wrapper {
        flex-direction: column;
        align-items: center;
    }
}


.glow-text {
    position: absolute;
    z-index: 9;
    right: 70px;
    bottom: 70px;
}

.glow-text h2 {
    font-size: 28px;
}

@media (max-width: 1025px) {
    .glow-text {
        right: 40px;
        bottom: 40px;
    }
}

@media (max-width: 480px) {
    .glow-text {
        right: 20px;
        bottom: 20px;
    }
}

.glow-text{
    transform: none !important;
    scale: none !important;
    opacity: 1 !important;
}


.glow-text-2 h2 {
    color: #FFF;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
}

.hero-section .btn {
    position: absolute;
    z-index: 9;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) !important;
    scale: none !important;
    opacity: 1 !important;
}

.hero-section .btn a {
    font-size: 22px;
}

@media (max-width: 1025px) {
    .glow-text-2 h2 {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 768px) {
    .glow-text-2 h2 {
        font-size: 14px;
    }

    .hero-section .btn {
        bottom: 50px;
    }

    .hero-section .btn a {
        font-size: 20px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .glow-text-2 h2 {
        font-size: 12px;
    }

    .hero-section .btn {
        position: static;
        transform: none !important;
        margin-right: auto;
        margin-top: 15px;
    }

    .hero-content {
        margin-top: 30px;
    }

    .hero-section .btn a {
        font-size: 16px;
        padding: 8px 22px;
    }
}

@media (max-width: 360px) {
    .glow-text-2 h2 {
        font-size: 10px;
    }

    .hero-content {
        margin-top: 40px;
    }

    .hero-section .btn a {
        font-size: 14px;
        padding: 8px 18px;
    }
}