@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=WindSong:wght@400;500&display=swap');
:root {
    --font-heading: "Jost", serif;
    --font-body: "DM Sans", sans-serif;
    --color-primary-dark: #7D6752;
    --color-primary-medium: #B5925F;
    --color-primary-light: #E5C989;
    --color-primary-lightest: #F5E6CC;
    --hotel-accent-primary: #7D6752;
    --hotel-accent-secondary: #B5925F;
    --hotel-warm-light: #E5C989;
    --hotel-background-light: #F5E6CC;
    --color-brown-dark: #7D6752;
    --color-brown-medium: #B5925F;
    --color-beige: #E5C989;
    --color-cream: #F5E6CC;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #7d7e7c;
    --color-text-primary: #434343;
    --color-text-secondry:#212529;
    --text-primary: var(--color-text-primary);
    --text-secondary: var(--color-text-secondry);
    --text-light: var(--color-white);
    --bg-primary: var(--color-cream);
    --bg-secondary: var(--color-white);
    --bg-accent: var(--color-beige);
    --easing: cubic-bezier(0.67, 0.04, 0.3, 0.91);
}

/* reset css start */
:root {
    scroll-behavior: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    position: relative;
    color: var(--text-primary);
    font-family: var(--font-body);
}
/* Heading Styles */
h1, .h1 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-brown-dark);
}

h2, .h2 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-brown-dark);
}

h3, .h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-brown-dark);
}

h4, .h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-brown-dark);
}

h5, .h5 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-brown-dark);
}

h6, .h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-brown-dark);
}

/* Paragraph & Body Text */
p {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
}
.link{color: var(--text-primary);}
/* ========================================
   BUTTON STYLES
======================================== */

/* Base Button Style */
.mets-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s var(--easing);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mets-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 201, 137, 0.2);
}

/* Button Icon */
.mets-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--easing);
}
.mets-btn:hover svg {
    transform: translateX(3px);
}

/* Primary Button - Dark BG */
.mets-btn-primary {
    background: var(--color-primary-medium);
    color: var(--color-white);
    border-color: var(--color-primary-medium);
}

.mets-btn-primary:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.mets-btn-primary svg {
    fill: var(--color-brown-dark);
}

.mets-btn-primary:hover svg {
    fill: var(--color-white);
}

/* Secondary Button - White BG */
.mets-btn-secondary {
    background: var(--color-brown-medium);
    color: var(--color-white);
    border-color: var(--color-brown-medium);
}

.mets-btn-secondary:hover {
    background: var(--color-brown-dark);
    border-color: var(--color-brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(125, 103, 82, 0.3);
}

.mets-btn-secondary svg {
    fill: var(--color-white);
}

/* Outline Button - White BG */
.mets-btn-outline {
    background: transparent;
    color: var(--color-brown-dark);
    border-color: var(--color-brown-dark);
}

.mets-btn-outline:hover {
    background: var(--color-brown-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(125, 103, 82, 0.2);
}

.mets-btn-outline svg {
    fill: var(--color-brown-dark);
}

.mets-btn-outline:hover svg {
    fill: var(--color-white);
}

/* Ghost Button - Dark BG */
.mets-btn-ghost {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.mets-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.mets-btn-ghost i,
.mets-btn-ghost svg {
    fill: var(--color-white);
}

/* Light Button - Dark BG */
.mets-btn-light {
    background: var(--color-white);
    color: var(--color-brown-dark);
    border-color: var(--color-white);
}

.mets-btn-light:hover {
    background: var(--color-cream);
    border-color: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.mets-btn-light svg {
    fill: var(--color-brown-dark);
}

.mets-btn-onlylink {
    padding:0;
    font-size: 14px;
    gap: 8px;
    border-radius: 0;
    border:0;
}
/* Button Sizes */
.mets-btn-sm {
    padding: 12px 24px;
    font-size: 14px;
    gap: 8px;
}
.mets-btn-sm-1 {
    padding: 5px 15px;
    font-size: 14px;
    gap: 8px;
}
.mets-btn-sm svg {
    width: 16px;
    height: 16px;
}

.mets-btn-lg {
    padding: 20px 40px;
    font-size: 18px;
    gap: 12px;
}

.mets-btn-lg svg {
    width: 24px;
    height: 24px;
}

/* Full Width Button */
.mets-btn-block {
    width: 100%;
}

/* Icon Only Button */
.mets-btn-icon {
    padding: 14px;
    gap: 0;
}

.mets-btn-icon.mets-btn-sm {
    padding: 10px;
}

.mets-btn-icon.mets-btn-lg {
    padding: 18px;
}

/* Button Group */
.mets-btn-group {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive Buttons */
@media (max-width: 767px) {
    .mets-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .mets-btn-sm {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .mets-btn-lg {
        padding: 18px 36px;
        font-size: 17px;
    }
    
    .mets-btn-group {
        gap: 12px;
    }
}

/* FontAwesome Arrow */
.mets-btn .fa-arrow-right,
.mets-btn .fa-chevron-right,
.mets-btn .fa-angle-right {
    margin-left: 4px;
}

.mets-btn .fa-arrow-left,
.mets-btn .fa-chevron-left,
.mets-btn .fa-angle-left {
    margin-right: 4px;
}

/* Disabled State */
.mets-btn:disabled,
.mets-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Loading State */
.mets-btn.loading {
    color: transparent;
    pointer-events: none;
}

.mets-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}
img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0px;
    padding: 0px;
}

button {
    cursor: pointer;
}

*:focus {
    outline: none;
}

button {
    border: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

button:focus {
    outline: none;
}

a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
a:hover {
    color: inherit;
}

select {
    height: 55px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    padding-right: 20px;
    background-color: transparent;
    border: 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
form select,
textarea {
    width: 100%;
    height: 75px;
    border-radius: 0;
    background-color: #f3f4f5;
    padding: 10px 20px;
    border: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: var(--color-black);
    font-weight: 500;
}
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
form select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #888686;
    opacity: 1;
}
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
form select::-moz-placeholder,
textarea::-moz-placeholder {
    color: #888686;
    opacity: 1;
}
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
form select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #888686;
    opacity: 1;
}
input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
form select:-moz-placeholder,
textarea:-moz-placeholder {
    color: #888686;
    opacity: 1;
}

textarea {
    height: 100px;
}

button {
    border: 0;
}

table {
    width: 100%;
}

p,
li,
span {
    margin-bottom: 0;
}

.hero-style {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .hero-style {
        min-height: 100vh;
        height: 100vh;
    }
}

@media (max-width: 991px) {
    .hero-style {
        min-height: 100vh;
        height: 100vh;
    }
}

@media (max-width: 767px) {
    .hero-style {
        min-height: 100vh;
        height: 100vh;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .hero-style {
        min-height: 100vh;
        height: 100vh;
    }
}

.hero-style .hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.6s;
}

.hero-style .hero-slider-bg::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: rgba(10, 43, 80, 0.6);
}

.hero-style .hero-slide-content {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 0;
}
.hero-style
    .hero-slider-item
    .swiper-slide.swiper-slide-active
    .mets-hero-content
    .sec-title
    .sub-title {
    opacity: 1;
    transition-delay: 300ms;
    transform: translateY(0);
}

.hero-style
    .hero-slider-item
    .swiper-slide.swiper-slide-active
    .mets-hero-content
    .sec-title
    .title {
    opacity: 1;
    transition-delay: 500ms;
    transform: translateY(0);
}

.hero-style
    .hero-slider-item
    .swiper-slide.swiper-slide-active
    .mets-hero-content
    .hero-bottom {
    opacity: 1;
    transition-delay: 700ms;
    transform: translateY(0);
}

.hero-style .hero-swiper-inner {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-style .hero-swiper-inner .sub-text {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 34px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
    .hero-style .hero-swiper-inner .sub-text {
        display: none;
    }
}

.hero-style .hero-swiper-inner .hero-slide-btn .swiper-button-prev,
.hero-style .hero-swiper-inner .hero-slide-btn .swiper-button-next {
    height: 40px;
    width: 40px;
    top: 15px;
    right: 30px;
    border-radius: 50px;
    background: var(--color-white);
    transition: 0.3s;
}

@media (max-width: 767px) {
    .hero-style .hero-swiper-inner .hero-slide-btn .swiper-button-prev,
    .hero-style .hero-swiper-inner .hero-slide-btn .swiper-button-next {
        top: -55px;
    }
}

.hero-style .hero-swiper-inner .hero-slide-btn .swiper-button-prev::after,
.hero-style .hero-swiper-inner .hero-slide-btn .swiper-button-next::after {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-brown-dark);
    transition: 0.3s;
}

.hero-style .hero-swiper-inner .hero-slide-btn .swiper-button-prev:hover,
.hero-style .hero-swiper-inner .hero-slide-btn .swiper-button-next:hover {
    background: var(--color-primary-medium);
}

.hero-style .hero-swiper-inner .hero-slide-btn .swiper-button-prev:hover::after,
.hero-style
    .hero-swiper-inner
    .hero-slide-btn
    .swiper-button-next:hover::after {
    color: var(--color-white);
}

.hero-style .hero-swiper-inner .hero-slide-btn .swiper-button-prev {
    left: auto;
    right: 75px;
}

.hero-style .hero-swiper-inner .hero-slider-nav {
    padding: 27px 30px 25px;
    overflow: hidden;
    width: 640px;
    height: 213px;
    border-radius: 10px 0 0 0;
    background: rgba(125, 103, 82, 0.1);
    backdrop-filter: blur(10px);
}

@media (max-width: 1199px) {
    .hero-style .hero-swiper-inner .hero-slider-nav {
        width: 540px;
        height: 185px;
    }
}

@media (max-width: 991px) {
    .hero-style .hero-swiper-inner .hero-slider-nav {
        height: 150px;
        width: 520px;
        padding: 27px 30px 15px;
    }
}

@media (max-width: 767px) {
    .hero-style .hero-swiper-inner .hero-slider-nav {
        display: none;
    }
}

.hero-style .hero-swiper-inner .hero-slider-nav .hero-slide-item {
    width: 33.333333%;
    height: 160px;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    align-self: flex-end;
    cursor: pointer;
}

.hero-style .hero-swiper-inner .hero-slider-nav .hero-slider-img {
    height: 160px;
    width: 100%;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    border-radius: 6px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    .hero-style .hero-swiper-inner .hero-slider-nav .hero-slider-img {
        height: 100px;
    }
}

@media (max-width: 991px) {
    .hero-style .hero-swiper-inner .hero-slider-nav .hero-slider-img {
        height: 90px;
    }
}

.hero-style .hero-swiper-inner .hero-slider-nav .hero-slider-img .number {
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    bottom: 10px;
    left: 15px;       
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-style
    .hero-swiper-inner
    .hero-slider-nav
    .swiper-slide-thumb-active
    .hero-slider-img {
    height: 100%;
}

@media (max-width: 1199px) {
    .hero-style
        .hero-swiper-inner
        .hero-slider-nav
        .swiper-slide-thumb-active
        .hero-slider-img {
        height: 80%;
    }
}

@media (max-width: 991px) {
    .hero-style
        .hero-swiper-inner
        .hero-slider-nav
        .swiper-slide-thumb-active
        .hero-slider-img {
        height: 75%;
    }
}

.hero-style
    .hero-swiper-inner
    .hero-slider-nav
    .swiper-slide-thumb-active
    .hero-slider-img
    .number {
    top: 16px;
    color: var(--color-white);
}

.hero-style .mets-hero-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
    width: 100%;
    padding-left: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .hero-style .mets-hero-content {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 1199px) {
    .hero-style .mets-hero-content {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-style .mets-hero-content .sec-title .title {
    opacity: 0;
    font-size: 100px;
    line-height: 100px;
    max-width: 950px;
    color: var(--color-white);
    transform: translateY(40px);
    transition: 0.6s;
    margin: 0;
}

@media (max-width: 1199px) {
    .hero-style .mets-hero-content .sec-title .title {
        font-size: 80px;
        line-height: 100px;
    }
}

@media (max-width: 991px) {
    .hero-style .mets-hero-content .sec-title .title {
        font-size: 60px;
        line-height: 80px;
    }
}

@media (max-width: 767px) {
    .hero-style .mets-hero-content .sec-title .title {
        font-size: 45px;
        line-height: 62px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .hero-style .mets-hero-content .sec-title .title {
        font-size: 50px;
        line-height: 70px;
    }
}

.hero-style .mets-hero-content .sec-title .sub-title {
    opacity: 0;
    padding: 5px 20px;
    display: inline-block;
    transition: 0.6s;
    transform: translateY(40px);
    border-radius: 32px;
    color: var(--color-primary-light);
    border: 1px solid rgba(229, 201, 137, 0.3);
    background: rgba(125, 103, 82, 0.2);
}

.hero-style .hero-bottom {
    display: flex;
    gap: 24px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
}
.metstheme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-primary-medium);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.metstheme-btn:hover {
    background: transparent;
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
    transform: translateY(-2px);
}

.metstheme-btn .arrow img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.container-1440 {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
}

.section-general {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}
.global-sec-sub-title {
    color: var(--color-gray-medium);
}
.global-sec-title {
    
}
.reservation-form {
    position: relative;
    margin: 0;
    margin-top: -225px;
    z-index: 1;
    padding: 45px 20px 60px;
    border-radius: 10px;
    background: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .reservation-form {
        margin-top: -150px;
        padding: 35px 30px 45px;
    }
}

@media (max-width: 767px) {
    .reservation-form {
        margin-top: -100px;
        padding: 30px 20px 35px;
    }
}

.reservation-form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
}

.reservation-form-inner .form-label {
    display: block;
    color: var(--color-text-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.reservation-form-inner .form-control {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    color: var(--color-text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.reservation-form-inner .form-control:focus {
    outline: none;
    border-color: var(--color-beige);
    box-shadow: 0 0 0 3px rgba(229, 201, 137, 0.1);
}
.reservation-form-inner .row .number-input-wrapper {
    width: 100%;
}

.reservation-form-inner .row .form-group {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .reservation-form-inner .row .col-6 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .reservation-form-inner .row .col-6:last-child {
        margin-bottom: 0;
    }
}
.number-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    height: 55px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.number-input-wrapper:focus-within {
    border-color: var(--color-beige);
    box-shadow: 0 0 0 3px rgba(229, 201, 137, 0.1);
}

.number-input-wrapper .btn-decrement,
.number-input-wrapper .btn-increment {
    width: 50px;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--color-brown-medium);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-input-wrapper .btn-decrement:hover,
.number-input-wrapper .btn-increment:hover {
    background: var(--color-cream);
    color: var(--color-brown-dark);
}

.number-input-wrapper .btn-decrement:disabled,
.number-input-wrapper .btn-increment:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.number-input-wrapper .number-input {
    flex: 1;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-primary);
    background: transparent;
    min-width: 60px;
}

.number-input-wrapper .number-input::-webkit-inner-spin-button,
.number-input-wrapper .number-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input-wrapper .number-input[type=number] {
    -moz-appearance: textfield;
}

.reservation-form-inner input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: opacity(0.6);
}

.reservation-form-inner input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: opacity(1);
}

.reservation-form .mets-btn-block {
    margin-top: 10px;
}

.service-image-items-1 {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}
@media (max-width: 1399.98px) {
  .service-image-items-1 {
    height: 600px;
  }
  .service-image-items-1 img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.service-image-items-1 img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-image-items-1 .service-content {
  position: absolute;
  bottom: 90px;
  right: 60px;
}
@media (max-width: 1699.98px) {
  .service-image-items-1 .service-content {
    right: 30px;
    bottom: 30px;
  }
}
.service-image-items-1 .service-content .content {
  background-color: var(--bg-secondary);
  padding: 20px 30px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-left: 2px solid var(--color-primary-dark);
}
@media (max-width: 1399.98px) {
  .service-image-items-1 .service-content .content {
    padding-right: 30px;
  }
}

.service-image-items-1 .service-content .content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .service-image-items-1 .service-content .content ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
}
.service-image-items-1 .service-content .content ul li {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.service-image-items-1 .service-content .content ul li .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 32px;
  border: 1px solid #E3E3E3;
  text-align: center;
  color: var(--theme-color1);
  font-size: 13px;
}
.service-image-items-1 .service-content .content p {
  max-width: 390px;
}
.service-image-items-1 .service-content .content .theme-btn {
  padding: 20px 45px;
}
.service-image-items-1:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.array-button {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.array-button .array-prev, .array-button .array-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #9E9E9E;
  background-color: transparent;
  border-radius: 50%;
  font-size: 20px;
  color: var(--headings-color);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 9;
  position: relative;
}
.array-button .array-prev:hover, .array-button .array-next:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
}
.choose-block .choose-icon i {
    color:var(--color-primary-medium);
    opacity: 0.7;
}
section.best-choice {
    position: relative;
    z-index:10;

}
section.best-choice::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background: rgba(10, 43, 80, 0.8);
}

section.best-choice::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--color-white);
    height: initial;
    top: 50%;
}
section.best-choice .best-choice-bg {
  background-color: var(--color-white);
  padding: 30px;
  border-right: 2px solid var(--color-primary-dark);
  border-bottom: 2px solid var(--color-primary-dark);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media (max-width: 767.98px) {
  section.best-choice .best-choice-bg {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border:0 !important;
  }
}
.tag-style-global {
    margin-right: 10px;
    padding: 5px 25px;
    border-radius: 30px;
    background-color: #BD945A;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    display: inline-block !important;
    vertical-align: middle !important;
}
.testimonial-box-item {
    padding: 32px;
    background-color: var(--color-white);
    border-radius: 16px;
    transition: all 0.4s 
    ease-in-out;
}
.testimonial-box-item .client-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonial-box-item .client-info-item .client-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
footer {position: relative;z-index: 2}
footer::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: rgba(10, 43, 80, 0.8);
}
.footer-logo img{}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-list li a:hover {
    color: var(--color-primary-light);
    transform: translateX(5px);
}

.footer-list-icon li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-list-icon li i {
    color: var(--color-primary-light);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-list-icon li span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.footer-list-columns {
    columns: 2;
    column-gap: 40px;
}

.footer-list-columns li {
    break-inside: avoid;
}

.footer-list-arrow li a {
    padding-left: 20px;
}

.footer-list-arrow li a::before {
    content: "→";
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-list-arrow li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-list li .icon-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-list li .icon-wrapper i {
    color: var(--color-brown-medium);
    font-size: 18px;
}

.footer-contact-list li:hover .icon-wrapper {
    background: var(--color-brown-dark);
    border-color: var(--color-brown-dark);
}

.footer-contact-list li:hover .icon-wrapper i {
    color: var(--color-white);
}

.footer-contact-list li .info {
    flex: 1;
}

.footer-contact-list li .info .label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-list li .info .value {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
@media (max-width: 767px) {
    .footer-list-columns {
        columns: 1;
    }
    
    .footer-contact-list li .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .footer-contact-list li .icon-wrapper i {
        font-size: 16px;
    }
}
.footer-top-wrapper {
    z-index: 5;
    position: relative;
    padding: 60px 0;
    border-bottom: 1px solid rgba(155, 155, 155, 0.24);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 120px;
}

.footer-top-wrapper .footer-left .footer-menu-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.footer-top-wrapper .footer-left .footer-menu-list li {
    font-weight: 500;
}
.footer-top-wrapper .footer-left .footer-menu-list li a {
    position: relative;
    padding-bottom: 2px;
    color: var(--color-white);
    opacity: 0.88;
}
.footer-top-wrapper .footer-left .footer-menu-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary-light);
    transition: width 0.3s ease;
}
.footer-top-wrapper .footer-left .footer-menu-list li a:hover::after {
    width: 100%;
}
.footer-top-wrapper .footer-left .footer-menu-list li a:hover {
    color: var(--color-primary-light);
    opacity: 1;
}
@media (max-width: 991px) {
    .footer-top-wrapper .footer-left .footer-menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .footer-top-wrapper .footer-left .footer-menu-list {
        gap: 15px;
    }
    
    .footer-top-wrapper .footer-left .footer-menu-list li {
        width: 100%;
    }
    
    .footer-top-wrapper .footer-left .footer-menu-list li a {
        display: block;
        padding: 10px 0;
    }
}
.footer-social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-icon span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-social-icon a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-social-icon a i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-icon a:hover {
    background: var(--color-brown-dark);
    border-color: var(--color-brown-dark);
    transform: translateY(-3px);
}

.footer-social-icon a:hover i {
    color: var(--color-white);
}

.footer-social-simple a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social-simple a:hover {
    color: var(--color-primary-light);
    transform: scale(1.2);
}
.footer-widget-wrapper {
    z-index: 5;
    position: relative;
    padding: 100px 0 100px;
}
.footer-widget-wrapper .footer-content form {
    max-width: 540px;
    width: 100%;
    position: relative;
    margin-top: 30px;
}
.footer-widget-wrapper .footer-content form input {
    background-color: var(--color-white);
    outline: none;
    border: none;
    width: 100%;
    border-radius: 5px;
    padding: 20px 20px;
    line-height: 1;
    color: var(--text-primary);
}
.footer-widget-wrapper .footer-content form button {
    position: absolute;
    top: 20px;
    right: 10px;
}
.footer-widget-wrapper .footer-right-items {
    padding-left: 50px;
}

/* Footer Navigation Toggle (Mobile Only) */
.footer-nav-wrapper {
    width: 100%;
}

.footer-nav-toggle {
    display: none;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 15px 0;
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: all 0.3s ease;
}

.footer-nav-toggle i {
    float: right;
    transition: transform 0.3s ease;
    font-size: 16px;
    margin-top: 3px;
}

.footer-nav-toggle.active i {
    transform: rotate(180deg);
}

/* Footer Mobile Responsive */
@media (max-width: 991px) {
    .footer-top-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 40px 0;
    }

    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }

    .footer-widget-wrapper {
        padding: 60px 0 60px;
    }

    .footer-widget-wrapper .footer-right-items {
        padding-left: 0;
        margin-top: 30px;
    }

    .footer-widget-wrapper .footer-content h3 {
        font-size: 28px;
    }

    .footer-bottom .footer-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-top-wrapper {
        padding: 30px 0;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-left {
        gap: 20px;
    }

    /* Show toggle button and hide menu by default on mobile */
    .footer-nav-toggle {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-nav-toggle:hover {
        color: var(--color-primary-light);
    }

    .footer-top-wrapper .footer-left .footer-menu-list {
        display: none;
        margin-top: 10px;
    }

    .footer-social-icon {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-social-icon span {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-widget-wrapper {
        padding: 40px 0 40px;
    }

    .footer-widget-wrapper .footer-content h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .footer-widget-wrapper .footer-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-widget-wrapper .footer-content form {
        margin-top: 20px;
    }

    .footer-widget-wrapper .footer-content form input {
        padding: 15px 15px;
        padding-right: 120px;
        font-size: 14px;
    }

    .footer-widget-wrapper .footer-content form button {
        top: 50%;
        transform: translateY(-50%);
        right: 8px;
        padding: 10px 20px;
        font-size: 12px;
    }

    .footer-widget-wrapper .footer-right-items {
        margin-top: 40px;
    }

    .footer-widget-wrapper .footer-right-items h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-list li {
        margin-bottom: 12px;
    }

    .footer-list li a {
        font-size: 14px;
    }

    .footer-contact-list li {
        margin-bottom: 20px;
    }

    .footer-contact-list li .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .footer-contact-list li .icon-wrapper i {
        font-size: 16px;
    }

    .footer-contact-list li .info .label {
        font-size: 11px;
    }

    .footer-contact-list li .info .value {
        font-size: 14px;
    }

    .footer-bottom .footer-wrapper {
        padding: 15px 0;
    }

    .footer-bottom .footer-wrapper p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}

.footer-bottom {
    position: relative;
    z-index: 10;
    border-top: 1.5px solid rgba(155, 155, 155, 0.24);
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom ul li {
    position: relative;
}

.footer-bottom ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}


.footer-bottom ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom ul li a:hover {
    color: var(--color-primary-light);
}

@media (max-width: 575px) {
    .footer-bottom ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom ul li:not(:last-child)::after {
        display: none;
    }
}
.footer-bottom .footer-wrapper {
    position: relative;
    z-index: 9;
    padding: 20px 0;
}
.footer-bottom .footer-wrapper ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* ============================================
   WHATSAPP WIDGET
   ============================================ */

.whatsapp-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.whatsapp-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--color-brown-medium);
    border: none;
    border-radius: 50% 0 0 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-white);
    transition: all 0.3s var(--easing);
    z-index: 10;
}

.whatsapp-toggle:hover {
    background: var(--color-brown-dark);
    transform: translateY(-50%) scale(1.05);
}

.whatsapp-toggle.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.whatsapp-panel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    width: 320px;
    background: var(--color-white);
    border-radius: 12px 0 0 12px;
    transition: transform 0.4s var(--easing);
    z-index: 9;
}

.whatsapp-panel.active {
    transform: translate(0, -50%);
}

.whatsapp-panel-header {
    background: var(--color-brown-medium);
    padding: 20px;
    border-radius: 12px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-panel-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.whatsapp-close {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.whatsapp-panel-body {
    padding: 25px 20px;
}

.whatsapp-panel-body p {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.whatsapp-panel-body .mets-btn {
    gap: 8px;
}

.whatsapp-panel-body .mets-btn i {
    font-size: 20px;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-brown-medium);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--easing);
    z-index: 99999;
    box-shadow: 0 4px 15px rgba(125, 103, 82, 0.3);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--color-brown-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(125, 103, 82, 0.4);
}

/* Mobile - Adjust Position */
@media (max-width: 767px) {
    .scroll-to-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

/* Scrollbar Width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background: var(--color-cream);
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(125, 103, 82, 0.1);
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-brown-medium);
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* Scrollbar Handle on Hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--color-brown-dark);
}

/* Scrollbar Handle on Active */
::-webkit-scrollbar-thumb:active {
    background: var(--color-primary-dark);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-brown-medium) var(--color-cream);
}

/* Body Overflow Fix for Mobile Menu */
body.menu-open {
    overflow: hidden;
}
