@font-face {
    font-family: 'Kedanty';
    src: url('./assets/fonts/MJ\ Kedanty.ttf');
    font-display: swap;
}

/* Optimize image rendering */
img {
    max-width: 100%;
    height: auto;
}

:root {
    --color-bg: #485c42;
    --color-bg-light: #2b211d;
    --color-text: #ffffff;
    --color-text-muted: #999999;
    --color-accent: #ddbe8d;
    --color-accent-dark: #c9a873;

    --font-heading: 'Kedanty', serif;
    --font-subheading: 'Kedanty', sans-serif;
    --font-body: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --inline-padding-of-input: 1.2em;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   Preloader (Mobile Base)
   ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.preloader-bar {
    width: 150px;
    height: 2px;
    background: var(--color-bg-light);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--color-accent);
    transition: width 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

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

ul {
    list-style: none;
}

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

/* ==========================================
   Navigation (Mobile Base)
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    /* mix-blend-mode: difference; */
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.logo-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: lowercase;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.menu-toggle span {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
}

.hamburger span {
    display: block;
    height: 1px;
    background: var(--color-text);
    transition: transform 0.4s var(--transition-smooth), opacity 0.4s var(--transition-smooth);
}

.menu-toggle.active .hamburger span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   Fullscreen Menu (Mobile Base)
   ========================================== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--transition-smooth), visibility 0.6s var(--transition-smooth);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 1rem;
    text-align: center;
}

.menu-links {
    text-align: center;
}

.menu-links li {
    overflow: hidden;
}

.menu-links a {
    display: block;
    font-family: var(--font-subheading);
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.3;
    transition: color 0.3s ease, transform 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
}

.fullscreen-menu.active .menu-links a {
    transform: translateY(0);
    opacity: 1;
}

.menu-links a::before {
    content: attr(data-index);
    font-family: var(--font-body);
    font-size: 0.75rem;
    margin-right: 1rem;
    opacity: 0.5;
}

.menu-links a:hover {
    color: var(--color-accent);
    transform: scale(1.05);
}

.menu-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.menu-info span {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text);
}

.menu-info p {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ==========================================
   Hero Section (Mobile Base)
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #2b211d;
}

.hero.bg-loaded {
    background-image: url('./assets/hero-bg-optimized.jpg');
}


.hero-content {
    position: relative;
    padding: 5rem 2rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text);
}

.hero-subtitle .text {
    letter-spacing: 0.17em;
    font-size: 0.625rem;
}

.hero-subtitle .line {
    display: none;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 550px;
}

.hero-title img {
    width: min(100%, 420px);
    height: auto;
}


.big-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.8;
    color: var(--color-accent);
}

.hero-hours,
.hero-location {
    text-align: center;
    margin: .75rem 0 .1rem 0;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1.5rem;
}

/* ==========================================
   Buttons (Mobile Base)
   ========================================== */
.btn-primary,
.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: #536a4c;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
}

/* the arrow */
.btn-primary::after,
.btn-outline::after {
    content: '';
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.4s var(--transition-smooth);
}

/* the transition */
.btn-primary::before,
.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--transition-smooth);
    z-index: 0;
}

.btn-label {
    position: relative;
    z-index: 1;
    padding-top: 0.2rem;
}

.btn-primary:hover,
.btn-outline:hover {
    color: var(--color-bg-light);
    border-color: var(--color-text);
}

.btn-primary:hover::before,
.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover::after,
.btn-outline:hover::after {
    transform: translateX(5px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.btn-primary.large,
.btn-outline.large {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    gap: 1rem;
}

.btn-primary.large::after,
.btn-outline.large::after {
    width: 18px;
    height: 18px;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: gap 0.4s var(--transition-smooth);
}

.btn-text::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.4s var(--transition-smooth);
}

.btn-text:hover {
    gap: 1.25rem;
}

.btn-text:hover::after {
    transform: translateX(3px);
}

.btn-text--back::after {
    display: none;
}

.btn-text--back::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.4s var(--transition-smooth);
    rotate: 180deg;
}

.btn-text--back:hover::before {
    transform: translateX(3px);
}

/* ==========================================
   Menu Section (Mobile Base)
   ========================================== */
.menu-section {
    padding: 2.5rem 1rem;
    background: var(--color-bg);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text);
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-text);
}

.menu-intro {
    max-width: 740px;
    margin-bottom: 2rem;
    text-align: center;
}

.menu-intro p {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
}

.treatment-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.treatment-card {
    position: relative;
    aspect-ratio: 1/1.2;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
    max-width: 100%;
}

.treatment-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.9) 0%,
            rgba(10, 10, 10, 0.3) 50%,
            transparent 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 10;
}

.card-price {
    position: absolute;
    top: 0;
    left: 50;
    right: 0;
    padding: 1rem;
    z-index: 10;
    background-color: var(--color-bg-light);
    border-radius: 0 0 0px 30px;
}

.card-content h3,
.card-price h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.card-content .variants,
.card-price .variants {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================
   Gift Section (Mobile Base)
   ========================================== */
.gift-section {
    padding: 2.5rem 1rem;
    background: var(--color-bg-light);
}

.gift-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.gift-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.gift-image {
    width: 80%;
    max-width: 240px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s var(--transition-smooth);
}

.gift-image:hover {
    transform: translateY(-10px);
}

.gift-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 100%;
}

/* .gift-images {
    position: relative;
    height: 200px;
    order: -1;
}

.gift-image {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gift-image-1 {
    width: 50%;
    top: 0;
    left: 0;
    z-index: 2;
}

.gift-image-2 {
    width: 50%;
    bottom: 0;
    right: 0;
    z-index: 1;
} */

.gift-content {
    text-align: center;
}

.gift-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gift-content p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

/* ==========================================
   About Section (Mobile Base)
   ========================================== */
.about-section {
    padding: 2.5rem 1rem;
    background: var(--color-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
}

.about-header h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 300;
}

.about-content p {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================================
   Services Section (Mobile Base)
   ========================================== */
.services-section {
    padding: 2.5rem 1rem;
    background: var(--color-bg-light);
    position: relative;
}

.services-slider {
    position: relative;
    margin-bottom: 4rem;
}

.service-slide {
    display: none;
    animation: fadeIn 0.6s ease;
}

.service-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.slide-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.slide-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.25em;
}

.slide-image {
    border-radius: 8px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.slide-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.slide-content .btn-text {
    justify-content: center;
}

.services-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.service-nav-item {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
}

.service-nav-item:hover,
.service-nav-item.active {
    border-color: var(--color-accent);
    background: rgba(196, 168, 124, 0.1);
}

.service-nav-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.service-nav-item p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.read-more-btn {
    display: block;
    margin: 0 auto;
}

/* ==========================================
   Product Section (Mobile Base)
   ========================================== */
.detail-partner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
}

.detail-partner img {
    width: auto;
    height: 40px;
    filter: drop-shadow(0 0 1px rgb(50, 32, 15));
}

.detail-partner div {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.product-slide {
    padding: 1.5rem 0;
    border-bottom: #999999 1px solid;
    animation: fadeIn 0.6s ease;
}

.slide-image--product {
    border-radius: 8px;
    overflow: hidden;
    object-fit: cover;
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 100%;
}

.product-subtitle {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.slide-content li {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================
   Marquee Sections (Mobile Base)
   ========================================== */
.brand-marquee {
    padding: 1.5rem 0;
    color: var(--color-bg);
    background: var(--color-accent);
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    gap: 3rem;
    padding: 0 1.5rem;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    white-space: nowrap;
}

.brand-item img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
}

/* ==========================================
   Club Section (Mobile Base)
   ========================================== */
.club-section {
    padding: 2.5rem 1rem;
    background: var(--color-bg-light);
    text-align: center;
}

.club-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.club-header p {
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 3rem;
}



.club-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.club-card {
    width: 100%;
    max-width: 240px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s var(--transition-smooth);
}

.club-card:hover {
    transform: translateY(-10px);
}

.club-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* ==========================================
   Booking Modal
   ========================================== */
.modal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--color-bg);
    margin: 2% auto;
    padding: 50px 10px 10px 10px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-button {
    position: absolute;
    left: 7px;
    top: 9px;
    color: var(--color-text);
    font-size: 28px;
    cursor: pointer;
    z-index: 10002;
    transition: transform 0.2s ease;
    display: none;
}

.back-button:hover {
    transform: translateX(-3px);
    color: var(--color-accent-dark);
}

.close-button {
    position: absolute;
    right: 15px;
    top: 5px;
    color: var(--color-text);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-button:hover {
    color: var(--color-accent-dark);
}

iframe {
    width: 100%;
    border: none;
}

/* ==========================================
   Footer (Mobile Base)
   ========================================== */
.btn-outline--call::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20viewBox='0%200%2024%2024'%20stroke-width='1.5'%20stroke='%23ffffff'%3E%3Cpath%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M20.25%203.75v4.5m0-4.5h-4.5m4.5%200-6%206m3%2012c-8.284%200-15-6.716-15-15V4.5A2.25%202.25%200%200%201%204.5%202.25h1.372c.516%200%20.966.351%201.091.852l1.106%204.423c.11.44-.054.902-.417%201.173l-1.293.97a1.062%201.062%200%200%200-.38%201.21%2012.035%2012.035%200%200%200%207.143%207.143c.441.162.928-.004%201.21-.38l.97-1.293a1.125%201.125%200%200%201%201.173-.417l4.423%201.106c.5.125.852.575.852%201.091V19.5a2.25%202.25%200%200%201-2.25%202.25h-2.25Z'/%3E%3C/svg%3E");
    transition: transform 0.4s var(--transition-smooth);
}

.btn-outline--call:hover::after {
    transform: translateX(3px);
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20viewBox='0%200%2024%2024'%20stroke-width='1.5'%20stroke='%230a0a0a'%3E%3Cpath%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M20.25%203.75v4.5m0-4.5h-4.5m4.5%200-6%206m3%2012c-8.284%200-15-6.716-15-15V4.5A2.25%202.25%200%200%201%204.5%202.25h1.372c.516%200%20.966.351%201.091.852l1.106%204.423c.11.44-.054.902-.417%201.173l-1.293.97a1.062%201.062%200%200%200-.38%201.21%2012.035%2012.035%200%200%200%207.143%207.143c.441.162.928-.004%201.21-.38l.97-1.293a1.125%201.125%200%200%201%201.173-.417l4.423%201.106c.5.125.852.575.852%201.091V19.5a2.25%202.25%200%200%201-2.25%202.25h-2.25Z'/%3E%3C/svg%3E");
}

.footer {
    position: relative;
    padding: 2.5rem 1rem;
    background: var(--color-bg);
}

.footer-cta {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

/* ==========================================
   Contact Widget (Mobile Base)
   ========================================== */
.contact-widget {
    position: fixed;
    bottom: 7%;
    right: 20px;
    display: flex;
    flex-direction: column-reverse;
    /* Icons stack vertically from the button */
    align-items: center;
    z-index: 1000;
    /* Ensures it stays above other content */
}

/* The main toggle button */
.contact-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.contact-button img {
    width: 50px;
    /* Match size from original image */
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent);
    padding: 10px;
}

/* The hidden icons container */
.contact-icons {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
}

.contact-icon {
    margin-bottom: 10px;
}

#contactIcons.is-open {
    display: flex;
}

.contact-icon img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
    background-color: #536a4c;
    padding: 10px;
}

.contact-icon img:hover {
    background-color: var(--color-accent);
    transition: all 0.5s var(--transition-smooth);
}

/* Detail page */
.detail-section {
    background: var(--color-bg-light);
}

.detail-wrapper {
    width: 100%;
    background-color: #5a473d;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    padding: 10rem 0rem 3rem 0rem;
}

.detail-wrapper.bg-loaded {
    background-image: url('./assets/product-hero-optimized.jpg');
}

.detail-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
    align-items: center;
}

.detail-content {
    text-align: center;
    justify-items: center;
}

.detail-heroimg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.detail-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.detail-content p {
    color: var(--color-text);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    max-width: 550px;
}

/* Pricing Table Styles */
.pricing-table-container {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto 4rem auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(221, 190, 141, 0.2);
}

.pricing-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--color-bg);
    border-bottom: 2px solid var(--color-accent);
}

.header-tier {
    padding: 1.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-tier.highlight {
    background: rgba(221, 190, 141, 0.1);
}

.tier-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-accent);
    display: block;
}

.tier-name {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.pricing-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.card-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-bg);
    border-bottom: 2px solid var(--color-accent);
}

.card-column {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
    justify-self: center;
}

.card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-info {
    padding: 1rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--color-text);
}

.service-info span {
    font-family: var(--font-heading);
    color: var(--color-accent);
    margin-right: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.check {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================
   Utility Classes
   ========================================== */
.hidden {
    display: none !important;
}

.no-scroll {
    overflow: hidden;
}

.perf-section,
.perf-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s var(--transition-smooth), transform 0.55s var(--transition-smooth);
}

.perf-section.is-visible,
.perf-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .preloader,
    .preloader-progress {
        transition: none;
    }

    .perf-section,
    .perf-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================
   RESPONSIVE: Small Tablet (576px+)
   ========================================== */
@media (min-width: 576px) {
    .navbar {
        padding: 1rem;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .logo-number {
        font-size: 1.75rem;
    }

    .logo-text {
        font-size: 0.875rem;
        letter-spacing: 0.2em;
    }

    .hamburger {
        width: 24px;
        gap: 6px;
    }

    .hero-content {
        padding: 4rem 1.5rem 2rem;
    }

    .hero-subtitle .text {
        font-size: 0.9rem;
    }

    .big-number {
        font-size: 6rem;
    }

    .vertical-text {
        font-size: 1.25rem;
        padding-top: 1rem;
    }

    .main-text-line .word {
        font-size: 2rem;
    }

    .main-text-line.spa-text .letter {
        font-size: 4rem;
    }

    .main-text-desc {
        font-size: 0.75rem;
    }

    .hero-hours,
    .hero-location {
        font-size: 0.75rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 1rem 1.75rem;
        font-size: 0.875rem;
        gap: 1rem;
    }

    .btn-primary::after,
    .btn-outline::after {
        width: 16px;
        height: 16px;
    }

    .btn-primary.large,
    .btn-outline.large {
        padding: 1.25rem 2.5rem;
        font-size: 1rem;
        gap: 1.25rem;
    }

    .btn-primary.large::after,
    .btn-outline.large::after {
        width: 18px;
        height: 18px;
    }

    .menu-section,
    .gift-section,
    .about-section,
    .services-section,
    .products-section,
    .club-section,
    .footer {
        padding: 3rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .section-logo {
        font-size: 1.5rem;
    }

    .menu-intro {
        margin-bottom: 3rem;
    }

    .menu-intro p {
        font-size: 1.125rem;
    }

    .treatment-card {
        aspect-ratio: 4/5;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.75rem;
    }

    .card-content .variants {
        font-size: 0.75rem;
    }

    .gift-images {
        width: 100%;
        height: 100%;
    }

    .gift-content h2 {
        font-size: 2.5rem;
    }

    .gift-content p {
        font-size: 1rem;
    }

    .detail-content h2 {
        font-size: 2.5rem;
    }

    .detail-content p {
        font-size: 1rem;
    }

    .about-header h2 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 1.25rem;
    }

    .slide-content h3 {
        font-size: 2rem;
    }

    .service-nav-item h4 {
        font-size: 1.125rem;
    }

    .service-nav-item p {
        font-size: 0.875rem;
    }

    .detail-partner {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .detail-partner img {
        width: auto;
        height: 70px;
    }

    .detail-partner div {
        font-size: 2rem;
    }

    .tier-price {
        font-size: 1.1rem;
    }

    .tier-name {
        font-size: 0.75rem;
    }

    .service-info {
        font-size: 0.9rem;
        padding: 0.8rem 0.5rem;
    }

    .brand-item {
        font-size: 2.5rem;
        gap: 1rem;
    }

    .brand-item img {
        width: 50px;
        height: 50px;
    }

    .club-header h2 {
        font-size: 1.75rem;
    }

    .club-card {
        max-width: 280px;
    }

    .footer-image {
        height: 250px;
        border-radius: 16px;
    }

    .footer-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }

    .footer-nav a {
        font-size: 0.875rem;
    }

    .menu-links a {
        font-size: 2rem;
    }

    .menu-info span {
        font-size: 0.75rem;
    }

    .menu-info p {
        font-size: 1.25rem;
    }
}

/* ==========================================
   RESPONSIVE: Tablet (768px+)
   ========================================== */
@media (min-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .logo-number {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero-content {
        padding: 5rem 2rem 3rem;
    }

    .big-number {
        font-size: 8rem;
    }

    .vertical-text {
        font-size: 1.5rem;
    }

    .main-text-line .word {
        font-size: 2.5rem;
    }

    .main-text-line.spa-text .letter {
        font-size: 5rem;
    }

    .main-text-desc {
        font-size: 0.875rem;
    }

    .menu-section,
    .gift-section,
    .about-section,
    .services-section,
    .products-section,
    .club-section,
    .footer {
        padding: 4rem 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
    }

    .menu-intro {
        margin-bottom: 4rem;
    }

    .menu-intro p {
        font-size: 1.25rem;
    }

    .treatment-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .treatment-card {
        aspect-ratio: 3/4;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

    .gift-images {
        height: 300px;
    }

    .gift-content h2 {
        font-size: 3rem;
    }

    .detail-content h2 {
        font-size: 3rem;
    }

    .about-content p {
        font-size: 1.5rem;
    }

    .slide-content h3 {
        font-size: 2.5rem;
    }

    .club-header h2 {
        font-size: 2.25rem;
    }

    .club-card {
        max-width: 350px;
    }

    .footer-image {
        height: 300px;
    }

    .menu-content {
        gap: 4rem;
    }

    .menu-links a {
        font-size: 2.5rem;
    }
}

/* ==========================================
   RESPONSIVE: Large Tablet / Small Desktop (992px+)
   ========================================== */
@media (min-width: 992px) {
    .navbar {
        padding: 1.25rem 2rem;
    }

    .menu-toggle span {
        display: inline;
    }

    .hero-content {
        padding: 6rem 3rem 4rem;
        gap: 2rem;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-subtitle .line {
        display: block;
        width: 50px;
        height: 1px;
        background: var(--color-accent);
    }

    .big-number {
        font-size: 10rem;
    }

    .vertical-text {
        font-size: 1.75rem;
    }

    .main-text-line .word {
        font-size: 3rem;
    }

    .main-text-line.spa-text .letter {
        font-size: 6rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
        gap: 1.5rem;
    }

    .btn-primary::after,
    .btn-outline::after {
        width: 20px;
        height: 20px;
    }

    .btn-primary.large,
    .btn-outline.large {
        padding: 1.5rem 3.5rem;
        font-size: 1.25rem;
        gap: 2rem;
    }

    .btn-primary.large::after,
    .btn-outline.large::after {
        width: 24px;
        height: 24px;
    }

    .menu-section,
    .gift-section,
    .about-section,
    .services-section,
    .products-section,
    .club-section,
    .footer {
        padding: 6rem 3rem;
    }

    .section-header {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
        margin-bottom: 4rem;
        padding-bottom: 2rem;
    }

    .menu-intro {
        text-align: left;
    }

    .menu-intro p {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .treatment-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .card-content {
        padding: 2rem;
    }

    .card-content h3 {
        font-size: 2rem;
    }

    .gift-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .gift-images {
        order: 0;
        height: 400px;
    }

    .gift-image-1,
    .gift-image-2 {
        width: 60%;
    }

    .gift-content {
        text-align: left;
    }

    .gift-content h2 {
        font-size: 3.5rem;
    }

    .gift-content p {
        max-width: 400px;
        margin-left: 0;
    }

    .detail-content h2 {
        font-size: 3.5rem;
    }

    .about-container {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
        text-align: left;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 2rem;
    }

    .slide-content {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        text-align: left;
    }

    .slide-content h3 {
        font-size: 3rem;
        grid-row: 1;
    }

    .slide-image {
        grid-row: 1/span 3;
    }

    .slide-content .btn-text {
        justify-content: flex-end;
    }

    .services-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .service-nav-item {
        padding: 1.5rem;
    }

    .service-nav-item h4 {
        font-size: 1.25rem;
    }

    .service-nav-item p {
        font-size: 0.875rem;
    }

    .club-header h2 {
        font-size: 2.5rem;
    }

    .club-header p {
        font-size: 1rem;
    }

    .club-cards {
        flex-direction: row;
    }

    .club-card {
        width: 300px;
        max-width: none;
    }

    .footer {
        padding: 6rem 3rem 4rem;
    }

    .footer-cta {
        margin-bottom: 4rem;
    }

    .footer-image {
        height: 400px;
        margin-bottom: 4rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    .footer-nav ul {
        gap: 2rem;
    }

    .menu-content {
        flex-direction: row;
        gap: 10rem;
        padding: 2rem;
        text-align: left;
    }

    .menu-links {
        text-align: left;
    }

    .menu-links a {
        font-size: 3.5rem;
    }

    .menu-links a:hover {
        transform: translateX(20px);
    }

    .menu-info {
        align-items: flex-start;
        justify-content: flex-end;
        text-align: left;
    }
}

/* ==========================================
   RESPONSIVE: Desktop (1200px+)
   ========================================== */
@media (min-width: 1200px) {
    .navbar {
        padding: 1.5rem 3rem;
    }

    .hero-content {
        padding: 6rem 4rem 4rem;
    }

    .big-number {
        font-size: 12rem;
    }

    .menu-section,
    .gift-section,
    .about-section,
    .services-section,
    .products-section,
    .club-section,
    .footer {
        padding: 8rem 5rem;
    }

    .treatment-cards {
        gap: 2rem;
    }

    .gift-images {
        height: 500px;
    }

    .gift-content h2 {
        font-size: 4rem;
    }

    .menu-links a {
        font-size: 4rem;
    }

    .services-nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ==========================================
   RESPONSIVE: Large Desktop (1400px+)
   ========================================== */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 1600px;
        margin: 0 auto;
        padding: 8rem 5rem 4rem;
    }

    .big-number {
        font-size: 15rem;
    }

    .main-text-line .word {
        font-size: 4rem;
    }

    .main-text-line.spa-text .letter {
        font-size: 8rem;
    }

    .product-slide {
        padding: 2.5rem 0;
    }
}

/* ==========================================
   RESPONSIVE: Extra Large Desktop (1600px+)
   ========================================== */
@media (min-width: 1600px) {
    .big-number {
        font-size: 18rem;
    }
}

/* ==========================================
   Landscape Orientation
   ========================================== */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

    .big-number {
        font-size: 5rem;
    }

    .main-text-line.spa-text .letter {
        font-size: 3rem;
    }

    .fullscreen-menu {
        overflow-y: auto;
    }

    .menu-content {
        flex-direction: row;
        padding: 2rem;
    }
}

/* ==========================================
   Touch Device Optimizations
   ========================================== */
@media (hover: none) and (pointer: coarse) {
    .treatment-card:hover .card-image img {
        transform: none;
    }

    .club-card:hover {
        transform: none;
    }

    .btn-primary:hover::before,
    .btn-outline:hover::before {
        transform: scaleX(0);
    }

    .btn-primary:active::before,
    .btn-outline:active::before {
        transform: scaleX(1);
    }
}

/* ==========================================
   High Resolution Displays
   ========================================== */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .hamburger span {
        height: 1px;
    }
}