/* ===================================
   DOUNG CHAN - Thai Massage Salon
   Custom CSS with Bootstrap 5
   =================================== */

/* ---------- CSS Variables ---------- */
:root {
    --gold: #ffd900;
    --gold-dark: #e6c300;
    --brown: #9e6726;
    --black: #000000;
    --bg-dark: #0a0a0a;
    --hero-bg: #f7eac1;
    --white: #ffffff;
    --font-primary: 'Noto Sans JP', sans-serif;
}

@font-face {
    font-family: 'Matisse ITC';
    font-style: normal;
    font-weight: normal;
    src: local('Matisse ITC'), url('../../templates/fonts/matisse_0.woff') format('woff');
}

/* noto-sans-jp-100 - japanese_latin_vietnamese */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 100;
    src: url('../../templates/fonts/noto-sans-jp-v56-japanese_latin_vietnamese-100.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-jp-200 - japanese_latin_vietnamese */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 200;
    src: url('../../templates/fonts/noto-sans-jp-v56-japanese_latin_vietnamese-200.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-jp-300 - japanese_latin_vietnamese */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 300;
    src: url('../../templates/fonts/noto-sans-jp-v56-japanese_latin_vietnamese-300.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-jp-regular - japanese_latin_vietnamese */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    src: url('../../templates/fonts/noto-sans-jp-v56-japanese_latin_vietnamese-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-jp-500 - japanese_latin_vietnamese */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    src: url('../../templates/fonts/noto-sans-jp-v56-japanese_latin_vietnamese-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-jp-600 - japanese_latin_vietnamese */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 600;
    src: url('../../templates/fonts/noto-sans-jp-v56-japanese_latin_vietnamese-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-jp-700 - japanese_latin_vietnamese */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    src: url('../../templates/fonts/noto-sans-jp-v56-japanese_latin_vietnamese-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-jp-800 - japanese_latin_vietnamese */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 800;
    src: url('../../templates/fonts/noto-sans-jp-v56-japanese_latin_vietnamese-800.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-jp-900 - japanese_latin_vietnamese */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 900;
    src: url('../../templates/fonts/noto-sans-jp-v56-japanese_latin_vietnamese-900.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ---------- Base Styles ---------- */

body {
    font-family: var(--font-primary);
    color: var(--gold);
    background-color: var(--black);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-dark);
}

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

/* ---------- Utility Classes ---------- */
.text-gold {
    color: var(--gold) !important;
}

.text-gold-light {
    color: #ffe64d !important;
}

.text-brown {
    color: var(--brown) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.border-gold {
    border-color: var(--gold) !important;
}

.btn-gold {
    background-color: #9e6726;
    color: var(--white);
    border: 2px solid #9e6726;
    font-weight: 700;
    padding: 10px 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.staff-list-row {
    max-width: 900px;
    margin: 0 auto;
}

.btn-outline-gold {
    color: var(--gold);
    border: 2px solid var(--gold);
    background: transparent;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--black);
}

.section-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.course-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ---------- HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 12px;
    padding-bottom: 20px;
    background: var(--black);
    transition: transform 0.35s ease;
    will-change: transform;
}

@media (min-width: 992px) {
    .site-header.desktop-nav-hidden {
        transform: translateY(calc(-100% - 8px));
    }
}

/* Nav Pills */
.nav-pills-wrapper {
    background-color: var(--gold);
    border-radius: 80px;
    padding: 0;
    margin: 0 80px;
    width: 100%;
    justify-content: center;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
}

.nav-pills-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-pills-custom .nav-item {
    flex: 1;
    text-align: center;
}

.nav-pills-custom .nav-link {
    color: var(--brown);
    font-size: 1.1rem;
    font-weight: 400;
    padding: 8px 15px;
    line-height: 24px;
    border-radius: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: block;
}

.nav-pills-custom .nav-link:hover,
.nav-pills-custom .nav-link.active {
    color: var(--black);
    font-weight: 500;
}

/* Header Title */
.header-title {
    padding-top: 20px;
}

.salon-subtitle {
    color: var(--gold);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
}

.salon-name {
    margin: 0;
}

.salon-name a {
    color: var(--gold);
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
}

.salon-name a:hover {
    color: var(--gold-dark);
}

/* Hamburger Icon */
.navbar-toggler {
    padding: 8px 12px;
    position: relative;
    z-index: 1001;
    background: rgba(175, 114, 42, 1);
    aspect-ratio: 1/1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    min-width: 60px;
    min-height: 60px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.25);
}

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

.hamburger-icon span {
    display: block;
    height: 2px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- MOBILE MENU OVERLAY ---------- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px 15px 30px;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--gold);
    color: var(--black);
}

.mobile-menu-brand {
    text-align: center;
    margin-bottom: 40px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    color: var(--gold);
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(255, 217, 0, 0.1);
    border-color: rgba(255, 217, 0, 0.3);
    color: var(--gold);
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.mobile-menu-contact {
    width: 100%;
}

.logo-img {
    max-width: 200px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    will-change: max-width;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 80svh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;

}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--black);
}

.hero-logo-img {
    max-width: 500px;
    margin-bottom: 20px;
}

.hero-heading,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6 {
    color: var(--black);
    font-size: clamp(1.1rem, 0.8231rem + 1.3846vw, 2rem);
    line-height: 1.4;
    margin-bottom: 10px;
}

.hero-sub {
    color: var(--black);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 0;
}

/* ---------- NEWS SECTION ---------- */
.news-section {
    background-color: var(--black);
    padding: 60px 0 50px;
}

.section-title {
    font-size: clamp(1.7rem, 1.6077rem + 0.4615vw, 2rem);
    font-weight: 500;
    margin-bottom: 60px;
}

.section-body {
    color: var(--gold);
    font-size: 18px;
    line-height: 1.6;
}

.section-body p {
    margin-bottom: 20px;
}
.section-body img {
    margin: 10px auto;
}
/* ---------- CAMPAIGN SECTION ---------- */
.campaign-section {
    background-color: var(--black);
    padding: 20px 0 40px;
}

.campaign-card {
    max-width: 620px;
}

.campaign-img {
    width: 100%;
    border-radius: 4px;
}

.campaign-caption {
    background: #fff;
    border: 1.6px solid #ccc;
    padding: 15px;
    text-align: center;
    color: #333;
    font-size: 16px;
}

/* ---------- GALLERY CAROUSEL ---------- */
.gallery-carousel-section {
    overflow: hidden;
    background: var(--black);
    padding: 10px 0;
}

.gallery-carousel {
    overflow: hidden;
    position: relative;
}

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

.gallery-track-reverse {
    animation: scrollGalleryReverse 30s linear infinite;
}

.gallery-slide {
    flex-shrink: 0;
    width: 355px;
    height: 267px;
    overflow: hidden;
}

.gallery-slide a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

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

@keyframes scrollGalleryReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ---------- CONCEPT SECTION ---------- */
.concept-section {
    background-color: var(--black);
    padding: 60px 0;
}

/* ---------- ABOUT MASSAGE SECTION ---------- */
.about-massage-section {
    background: var(--black);
}

.about-massage-hero {
    text-align: center;
    padding: 20px 0 0;
}

.about-massage-hero img {
    max-width: 980px;
    margin: 0 auto;
    display: block;
    border-radius: 4px;
}

.about-massage-content {
    padding: 60px 0;
}

.about-massage-content h4 {
    font-size: 22px;
    font-weight: 700;
}

.about-massage-content h5 {
    font-size: 18px;
    font-weight: 600;
}

.about-notes {
    background: rgba(255, 217, 0, 0.05);
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
    background: var(--black);
    padding: 60px 0 40px;
}

.services-header {
    margin-bottom: 40px;
}

.course-card {
    max-width: 850px;
    margin-bottom: 60px;
}

.course-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.course-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.course-image img {
    transition: transform 0.5s ease;
}

.course-image:hover img {
    transform: scale(1.03);
}

.course-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 25px;
}

/* Price Table */
.price-table-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--black);
    margin-bottom: 0;
    background: #FFFFFF;
}

.price-table thead th {
    background: #AF722A;
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 1);
}

.table>:not(:last-child)>:last-child>* {
    border-bottom-color: transparent;
}

.price-table tbody td {
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
    border-right: 1px solid rgba(0, 0, 0, 1);
    background: transparent;
    color: var(--black);
}

.price-table tbody tr:hover td {
    background: rgba(255, 217, 0, 0.05);
}

/* ---------- THERAPIST SECTION ---------- */
.therapist-section {
    background: var(--black);
    padding: 60px 0 50px;
}

.therapist-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.therapist-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.therapist-card:hover {
    transform: translateY(-5px);
}

.therapist-img {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    --bs-aspect-ratio: 150%;
}

.therapist-img img {
    transition: transform 0.5s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
}

.therapist-card:hover .therapist-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

/* Therapist Overlay on Hover */
.therapist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: var(--gold);
    gap: 8px;
    border-radius: 4px;
}

.therapist-overlay i {
    font-size: 36px;
}

.therapist-overlay span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.therapist-card:hover .therapist-overlay {
    opacity: 1;
}

.therapist-card a {
    text-decoration: none;
    display: block;
}

.therapist-name {
    text-align: center;
    padding: 13px 0;
    color: var(--white);
    font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
    font-weight: 400;
    background: #9e6726;
}

/* ---------- ACCESS SECTION ---------- */
.access-section {
    background: var(--black);
    padding: 60px 0;
    font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
}

.access-info {
    text-align: left;
}

.access-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 217, 0, 0.1);
    align-items: flex-start;
}

.access-label {
    flex-shrink: 0;
    width: 140px;
    font-weight: 500;
    color: var(--gold);
}

.access-value {
    flex: 1;
    color: var(--gold);
    font-weight: 400;
}

/* ---------- MAP SECTION ---------- */
.map-section {
    background: var(--black);
    padding: 0;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 450px;
    pointer-events: all !important;

}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--black);
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 217, 0, 0.15);
}

.footer-phone {
    color: var(--gold);
    font-size: clamp(1rem, 0.9077rem + 0.4615vw, 1.3rem);
}

.footer-address {
    color: var(--gold);
    font-size: clamp(1rem, 0.9077rem + 0.4615vw, 1.3rem);
}

.sns-icon {
    width: 52px;
    height: 53px;
    transition: transform 0.3s ease;
}

.sns-icon:hover {
    transform: scale(1.1);
}

.footer-copyright {
    font-size: 1rem;
}

/* ---------- FIXED BOTTOM BAR (MOBILE) ---------- */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid var(--gold);
    display: flex;
    z-index: 998;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    color: var(--gold);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 3px;
}

.bottom-bar-btn i {
    font-size: 18px;
}

.bottom-bar-btn:hover {
    background: rgba(255, 217, 0, 0.1);
    color: var(--gold);
}

/* ---------- FLOATING THAIJIN LINK ---------- */
.floating-thaijin {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 997;
    width: 131px;
    transition: transform 0.3s ease;
}

.floating-thaijin:hover {
    transform: scale(1.05);
}


/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- HEADER SCROLL EFFECT ---------- */
.site-header.scrolled {
}


/*  */
.icon-like {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 3;
    font-size: clamp(2rem, 1.6923rem + 1.5385vw, 3rem);
    color: var(--white);
    opacity: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    cursor: pointer;
}

.gallery-slide:hover .icon-like {
    opacity: 1;
}

.icon-like:focus-visible {
    opacity: 1;
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

.icon-like.is-liked {
    opacity: 1;
    color: #ff3b5c;
    filter: drop-shadow(0 0 8px rgba(255, 59, 92, 0.5));
}

@media (hover: none) {
    .icon-like {
        opacity: 1;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    pointer-events: none;
}

.gallery-slide:hover .overlay {
    opacity: 1;
}

.footer-sns img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}
.icon-img {
    max-width: 60px;
    margin: 0 auto;
}

/* ========== QUICK CONTACT FAB ========== */
.quick-contact-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

/* Overlay */
.quick-contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.quick-contact-wrapper.is-open .quick-contact-overlay {
    background: rgba(0, 0, 0, 0.35);
    pointer-events: auto;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Contact Items Container */
.quick-contact-items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    pointer-events: none;
    padding-bottom: 6px;
}

/* Single Contact Item */
.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.quick-contact-wrapper.is-open .quick-contact-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.quick-contact-wrapper.is-open .quick-contact-item:nth-child(1) {
    transition-delay: 0.15s;
}

.quick-contact-wrapper.is-open .quick-contact-item:nth-child(2) {
    transition-delay: 0.08s;
}

/* Contact Label (pill shape) */
.quick-contact-label {
    background: var(--white, #fff);
    color: #333;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 24px;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.3px;
    font-family: var(--font-primary, 'Noto Sans JP', sans-serif);
    text-decoration: none;
}

/* Contact Icon Circle */
.quick-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white, #fff);
    font-size: 20px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--white, #fff);
}

.quick-contact-icon.icon-phone {
    background: linear-gradient(135deg, #43A047, #66BB6A);
}

.quick-contact-icon.icon-maps {
    background: linear-gradient(135deg, #43A047, #66BB6A);
}

/* Main FAB Button */
.quick-contact-fab {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #9e6726, #c4852f);
    color: var(--white, #fff);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(158, 103, 38, 0.45), 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    outline: none;
}

.quick-contact-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(158, 103, 38, 0.55), 0 3px 8px rgba(0, 0, 0, 0.15);
}

.quick-contact-fab:active {
    transform: scale(0.95);
}

/* FAB icon states */
.quick-contact-fab .fab-icon-dots,
.quick-contact-fab .fab-icon-close {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-contact-fab .fab-icon-dots {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.quick-contact-fab .fab-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.quick-contact-wrapper.is-open .quick-contact-fab .fab-icon-dots {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.quick-contact-wrapper.is-open .quick-contact-fab .fab-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.quick-contact-wrapper.is-open .quick-contact-fab {
    background: linear-gradient(135deg, #7a4f1c, #9e6726);
}

/* Pulse animation for FAB */
@keyframes qc-pulse {
    0% {
        box-shadow: 0 4px 18px rgba(158, 103, 38, 0.45), 0 0 0 0 rgba(158, 103, 38, 0.3);
    }
    70% {
        box-shadow: 0 4px 18px rgba(158, 103, 38, 0.45), 0 0 0 12px rgba(158, 103, 38, 0);
    }
    100% {
        box-shadow: 0 4px 18px rgba(158, 103, 38, 0.45), 0 0 0 0 rgba(158, 103, 38, 0);
    }
}

.quick-contact-fab:not(:hover) {
    animation: qc-pulse 2.5s infinite;
}

.quick-contact-wrapper.is-open .quick-contact-fab {
    animation: none;
}

/* ========== MAP MODAL ========== */
.qc-map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.qc-map-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.qc-map-modal-content {
    position: relative;
    background: var(--white, #fff);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qc-map-modal.is-open .qc-map-modal-content {
    transform: translateY(0) scale(1);
}

.qc-map-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, color 0.2s ease;
}

.qc-map-modal-close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #222;
}

.qc-map-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 20px 14px;
}

.qc-map-modal-pin {
    font-size: 28px;
    color: var(--brown, #9e6726);
    flex-shrink: 0;
    margin-top: 2px;
}

.qc-map-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px;
    font-family: var(--font-primary, 'Noto Sans JP', sans-serif);
}

.qc-map-modal-address {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-family: var(--font-primary, 'Noto Sans JP', sans-serif);
}

.qc-map-modal-iframe {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    background: #f0f0f0;
}

.qc-map-modal-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.qc-map-modal-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #9e6726, #c4852f);
    color: var(--white, #fff);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-primary, 'Noto Sans JP', sans-serif);
    transition: opacity 0.2s ease;
}

.qc-map-modal-directions:hover {
    opacity: 0.9;
    color: var(--white, #fff);
}
iframe {
    pointer-events: all !important;
}
