:root {
    --dark: #070707;
    --dark-soft: #111111;
    --page-bg: #f8f5ef;
    --surface: #ffffff;
    --surface-soft: #fbf8f1;
    --ink: #17130d;
    --ink-soft: #6f675b;
    --line: rgba(129, 96, 22, 0.14);
    --gold: #d4af37;
    --soft-gold: #f6d77a;
    --cream: #fff7e6;
    --muted: #6f675b;
    --glass: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(129, 96, 22, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--ink);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

body::selection {
    background: var(--gold);
    color: #111111;
}

a {
    text-decoration: none;
}

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

h1,
h2,
h3,
.footer-logo {
    font-family: "Playfair Display", serif;
}

h1 {
    max-width: 700px;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.95;
    letter-spacing: 0;
    margin: 18px 0 24px;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.35rem;
}

h1,
h2,
h3 {
    color: var(--ink);
}

.section-padding {
    padding: 110px 0;
}

.section-heading {
    margin-bottom: 56px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-kicker::before,
.section-kicker::after {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-kicker::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-copy {
    max-width: 650px;
    color: var(--ink-soft);
    line-height: 1.85;
}

.btn {
    border-radius: 999px;
    padding: 13px 27px;
    font-weight: 700;
    letter-spacing: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.btn-gold {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(246, 215, 122, 0.75);
    background: linear-gradient(135deg, var(--soft-gold), var(--gold) 48%, #a97c16);
    color: #14100a;
    box-shadow: 0 16px 38px rgba(212, 175, 55, 0.28);
}

.btn-gold::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-110%) skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
    transition: transform 0.65s ease;
}

.btn-gold:hover {
    color: #070707;
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(246, 215, 122, 0.35);
}

.btn-gold:hover::before {
    transform: translateX(110%) skewX(-18deg);
}

.btn-outline-gold {
    border: 1px solid rgba(246, 215, 122, 0.52);
    color: var(--cream);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-gold:hover {
    border-color: var(--soft-gold);
    background: rgba(212, 175, 55, 0.12);
    color: var(--soft-gold);
    transform: translateY(-4px);
}

.zivara-navbar {
    padding: 7px 0;
    background: rgba(7, 7, 7, 0.72);
    border-bottom: 1px solid rgba(246, 215, 122, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.brand-logo {
    width: 178px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    width: 210px;
    height: auto;
}

.footer-logo {
    color: var(--soft-gold);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.navbar-toggler {
    border-color: rgba(246, 215, 122, 0.45);
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(212, 175, 55, 0.2);
}

.navbar-toggler-icon {
    filter: invert(89%) sepia(31%) saturate(652%) hue-rotate(358deg);
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    position: relative;
    border-radius: 999px;
    color: rgba(255, 247, 230, 0.86);
    font-weight: 600;
    padding: 10px 14px;
    transition: color 0.3s ease, background 0.3s ease, text-shadow 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, transparent, #ffffff, var(--soft-gold), transparent);
    box-shadow: 0 0 14px rgba(246, 215, 122, 0.75);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--soft-gold);
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.32), rgba(246, 215, 122, 0.13));
    text-shadow: 0 0 18px rgba(246, 215, 122, 0.55);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 10px 20px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 88px;
    overflow: hidden;
    background: var(--dark);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 42%, rgba(246, 215, 122, 0.12), transparent 30%),
        linear-gradient(90deg, rgba(7, 7, 7, 0.58), rgba(7, 7, 7, 0.3) 50%, rgba(7, 7, 7, 0.58)),
        linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.42) 52%, rgba(7, 7, 7, 0.72));
}

.hero-bg-slider,
.hero-bg-slide {
    position: absolute;
    inset: 0;
}

.hero-bg-slider {
    z-index: 0;
}

.hero-bg-slide {
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.08);
    animation: heroSlide 18s infinite;
}

.slide-one {
    background-image: url("../images/spa1.webp");
}

.slide-two {
    background-image: url("../images/spa2.webp");
    animation-delay: 6s;
}

.slide-three {
    background-image: url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1920&q=85");
    animation-delay: 12s;
}

.hero-section::after {
    display: none;
}

.hero-section .container {
    z-index: 3;
}

.hero-section .min-vh-100 {
    min-height: calc(100vh - 88px) !important;
}

.hero-copy {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 247, 230, 0.78);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.9;
}

.hero-section h1 {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 22px 70px rgba(0, 0, 0, 0.82);
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.cta-panel h2 {
    color: var(--cream);
}

.hero-section .section-kicker,
.cta-panel .section-kicker {
    color: var(--soft-gold);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border: 1px solid rgba(246, 215, 122, 0.24);
    border-radius: 999px;
    color: rgba(255, 247, 230, 0.86);
    background: rgba(255, 247, 230, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.hero-highlights i {
    color: var(--soft-gold);
}

.hero-glow {
    position: absolute;
    z-index: 2;
    width: 280px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 215, 122, 0.24), transparent 68%);
    filter: blur(8px);
    animation: floatGlow 8s ease-in-out infinite;
}

.glow-one {
    top: 16%;
    left: 7%;
}

.glow-two {
    right: 8%;
    top: 18%;
    animation-delay: -2s;
}

.glow-three {
    right: 25%;
    bottom: 10%;
    width: 180px;
    animation-delay: -4s;
}

.hero-image-card,
.about-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.54), 0 0 52px rgba(212, 175, 55, 0.14);
}

.about-image-wrap {
    max-width: 560px;
    padding: 10px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(251, 248, 241, 0.7)),
        radial-gradient(circle at 20% 20%, rgba(246, 215, 122, 0.25), transparent 38%);
    border-color: rgba(212, 175, 55, 0.22);
    box-shadow: 0 24px 65px rgba(96, 76, 36, 0.16), 0 0 38px rgba(212, 175, 55, 0.12);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-image-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 76px rgba(96, 76, 36, 0.2), 0 0 48px rgba(212, 175, 55, 0.16);
}

.hero-image-card {
    max-width: 500px;
    margin-left: auto;
    padding: 14px;
    transform: perspective(1200px) rotateY(-5deg);
    transition: transform 0.55s ease, box-shadow 0.55s ease;
}

.hero-image-card:hover {
    transform: perspective(1200px) rotateY(0) translateY(-12px);
    box-shadow: 0 42px 110px rgba(0, 0, 0, 0.68), 0 0 70px rgba(246, 215, 122, 0.23);
}

.hero-image-card img,
.about-image-wrap img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    border-radius: 24px;
}

.about-image-wrap img {
    height: 520px;
    object-position: center top;
}

.hero-card-badge {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(246, 215, 122, 0.22);
    border-radius: 22px;
    background: rgba(7, 7, 7, 0.7);
    backdrop-filter: blur(18px);
}

.hero-card-badge i,
.silhouette-mark {
    display: grid;
    place-items: center;
    color: #15100a;
    background: linear-gradient(135deg, var(--soft-gold), var(--gold));
}

.hero-card-badge i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.hero-card-badge strong,
.hero-card-badge span {
    display: block;
}

.hero-card-badge span {
    color: rgba(255, 247, 230, 0.72);
    font-size: 0.88rem;
}

.silhouette-mark {
    position: absolute;
    top: 34px;
    right: 34px;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    font-size: 1.8rem;
    box-shadow: 0 16px 44px rgba(212, 175, 55, 0.35);
}

.about-section,
.gallery-section,
.testimonials-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(212, 175, 55, 0.13), transparent 28%),
        linear-gradient(180deg, var(--page-bg), #ffffff 48%, var(--page-bg));
}

.about-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(246, 215, 122, 0.18), transparent 46%),
        linear-gradient(180deg, transparent 58%, rgba(7, 7, 7, 0.36));
    pointer-events: none;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.feature-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
    padding: 16px 18px;
    border: 1px solid rgba(129, 96, 22, 0.13);
    border-radius: 18px;
    color: var(--ink);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(251, 248, 241, 0.64));
    box-shadow: 0 16px 38px rgba(96, 76, 36, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-row::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-110%) skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(246, 215, 122, 0.16), transparent);
    transition: transform 0.65s ease;
}

.feature-row:hover {
    transform: translateX(8px);
    border-color: rgba(212, 175, 55, 0.36);
    box-shadow: 0 20px 44px rgba(96, 76, 36, 0.13);
}

.feature-row:hover::after {
    transform: translateX(110%) skewX(-18deg);
}

.feature-row i {
    position: relative;
    z-index: 1;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #17130d;
    background: linear-gradient(135deg, var(--soft-gold), var(--gold));
    border: 1px solid rgba(246, 215, 122, 0.38);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.22);
    transition: transform 0.35s ease;
}

.feature-row:hover i {
    transform: rotate(8deg) scale(1.05);
}

.feature-row div {
    position: relative;
    z-index: 1;
}

.feature-row span,
.feature-row small {
    display: block;
}

.feature-row small {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
}

.massage-therapy-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(246, 215, 122, 0.16), transparent 28%),
        linear-gradient(180deg, #ffffff, var(--page-bg));
}

.massage-panel {
    display: grid;
    grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.6fr);
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(129, 96, 22, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 28px 80px rgba(96, 76, 36, 0.13);
    backdrop-filter: blur(18px);
}

.massage-tabs {
    overflow: hidden;
    border: 1px solid rgba(129, 96, 22, 0.12);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(251, 248, 241, 0.96), rgba(255, 255, 255, 0.88));
}

.massage-tab {
    display: grid;
    grid-template-columns: 44px 1fr 18px;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 66px;
    padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid rgba(129, 96, 22, 0.1);
    color: var(--ink);
    background: transparent;
    font-weight: 700;
    text-align: left;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.massage-tab:last-child {
    border-bottom: 0;
}

.massage-tab i:first-child {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 50%;
    color: var(--gold);
    background: #ffffff;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.massage-tab i:last-child {
    color: rgba(23, 19, 13, 0.45);
}

.massage-tab:hover {
    color: #070707;
    background: rgba(246, 215, 122, 0.14);
}

.massage-tab:hover i:first-child {
    transform: rotate(8deg) scale(1.06);
}

.massage-tab.active {
    color: #17130d;
    background: linear-gradient(135deg, var(--soft-gold), var(--gold));
    box-shadow: inset 4px 0 0 rgba(7, 7, 7, 0.32);
}

.massage-tab.active i:first-child {
    color: #17130d;
    background: rgba(255, 255, 255, 0.76);
}

.massage-preview {
    display: grid;
    grid-template-columns: minmax(280px, 0.98fr) minmax(280px, 1fr);
    overflow: hidden;
    min-height: 360px;
    border: 1px solid rgba(129, 96, 22, 0.12);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 241, 0.8));
}

.massage-image {
    position: relative;
    overflow: hidden;
}

.massage-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(246, 215, 122, 0.18), transparent 48%);
}

.massage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease, opacity 0.25s ease;
}

.massage-panel:hover .massage-image img {
    transform: scale(1.05);
}

.massage-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(28px, 4vw, 54px);
}

.massage-label {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.massage-content h3 {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 3.3vw, 3.4rem);
    line-height: 1;
}

.massage-content p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 26px;
}

.massage-benefits {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(129, 96, 22, 0.12);
    border-radius: 22px;
    background: rgba(129, 96, 22, 0.12);
}

.massage-benefits div {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 118px;
    padding: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
}

.massage-benefits i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #17130d;
    background: linear-gradient(135deg, var(--soft-gold), var(--gold));
    box-shadow: 0 12px 26px rgba(212, 175, 55, 0.22);
}

.massage-benefits span {
    color: var(--ink);
    font-weight: 700;
}

.services-section,
.why-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(246, 215, 122, 0.18), transparent 30%),
        linear-gradient(180deg, #ffffff, var(--surface-soft) 48%, var(--page-bg));
}

.service-card,
.counter-card,
.why-card,
.review-card {
    position: relative;
    z-index: 1;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 241, 0.74));
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(96, 76, 36, 0.11);
    transition: transform 0.42s ease, border-color 0.42s ease, box-shadow 0.42s ease;
}

.service-card {
    min-height: 235px;
    padding: 0;
    border-radius: 22px;
    cursor: pointer;
    isolation: isolate;
}

.service-card::before,
.why-card::before,
.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: translateX(-115%) skewX(-16deg);
    background: linear-gradient(90deg, transparent, rgba(246, 215, 122, 0.13), transparent);
    transition: transform 0.7s ease;
}

.service-card:hover,
.counter-card:hover,
.why-card:hover,
.review-card:hover {
    transform: translateY(-12px);
    border-color: rgba(246, 215, 122, 0.62);
    box-shadow: 0 30px 75px rgba(96, 76, 36, 0.18), 0 0 38px rgba(212, 175, 55, 0.17);
}

.service-card img {
    width: 100%;
    height: 100%;
    min-height: 235px;
    object-fit: cover;
    transition: transform 0.75s ease, filter 0.75s ease;
}

.service-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(246, 215, 122, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(7, 7, 7, 0.22), rgba(7, 7, 7, 0.88));
    transition: background 0.45s ease;
}

.service-overlay i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border: 1px solid rgba(246, 215, 122, 0.42);
    border-radius: 50%;
    color: var(--soft-gold);
    background: rgba(7, 7, 7, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.45s ease, background 0.45s ease, color 0.45s ease;
}

.service-overlay h3 {
    margin: 0;
    color: var(--cream);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.72);
    transition: color 0.45s ease, transform 0.45s ease;
}

.service-card:hover img {
    transform: scale(1.14);
    filter: saturate(1.08) contrast(1.05);
}

.service-card:hover .service-overlay {
    background:
        radial-gradient(circle at 50% 35%, rgba(246, 215, 122, 0.26), transparent 36%),
        linear-gradient(180deg, rgba(7, 7, 7, 0.16), rgba(7, 7, 7, 0.78));
}

.service-card:hover .service-overlay i {
    transform: translateY(-5px) rotate(8deg) scale(1.08);
    color: #15100a;
    background: linear-gradient(135deg, var(--soft-gold), var(--gold));
}

.service-card:hover .service-overlay h3 {
    color: var(--soft-gold);
    transform: translateY(-3px);
}

.service-card:hover::before,
.why-card:hover::before,
.review-card:hover::before {
    transform: translateX(115%) skewX(-16deg);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 28px;
    border-radius: 22px;
    color: #15100a;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--soft-gold), var(--gold));
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.26);
    transition: transform 0.42s ease;
}

.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.08);
}

.service-card p,
.why-card p,
.review-card p {
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 0;
}

.experience-section {
    background:
        linear-gradient(rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.92)),
        url("https://images.unsplash.com/photo-1607008829749-c0f284a49844?auto=format&fit=crop&w=1920&q=85") center/cover fixed;
}

.counter-card {
    padding: 36px 24px;
    text-align: center;
}

.counter-card i,
.why-card i {
    color: var(--soft-gold);
    font-size: 2rem;
    margin-bottom: 18px;
}

.counter-card strong {
    display: block;
    color: var(--ink);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
}

.counter-card span {
    display: block;
    margin-top: 12px;
    color: var(--ink-soft);
    font-weight: 600;
}

.experience-section .counter-card {
    background: linear-gradient(145deg, rgba(255, 247, 230, 0.1), rgba(255, 247, 230, 0.035));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.experience-section .counter-card strong {
    color: var(--cream);
}

.experience-section .counter-card span {
    color: rgba(255, 247, 230, 0.72);
}

.gallery-card {
    position: relative;
    height: 330px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(246, 215, 122, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

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

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(7, 7, 7, 0.88));
}

.gallery-card span {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    color: var(--soft-gold);
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 700;
}

.gallery-card:hover img {
    transform: scale(1.12);
}

.why-card,
.review-card {
    padding: 34px 28px;
}

.why-card h3,
.review-card h3 {
    font-size: 1.25rem;
}

.stars {
    display: flex;
    gap: 5px;
    color: var(--soft-gold);
    margin-bottom: 24px;
}

.review-card h3 {
    margin: 24px 0 0;
    color: var(--soft-gold);
}

.cta-section {
    position: relative;
    padding: 105px 0;
    background:
        radial-gradient(circle at 50% 45%, rgba(246, 215, 122, 0.12), transparent 35%),
        linear-gradient(90deg, rgba(7, 7, 7, 0.58), rgba(7, 7, 7, 0.24), rgba(7, 7, 7, 0.58)),
        linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.48)),
        url("https://images.unsplash.com/photo-1596178065887-1198b6148b2b?auto=format&fit=crop&w=1920&q=85") center/cover no-repeat;
}

.cta-panel {
    max-width: 850px;
    margin: 0 auto;
    padding: 58px;
    text-align: center;
    border: 1px solid rgba(246, 215, 122, 0.34);
    border-radius: 28px;
    background: rgba(7, 7, 7, 0.42);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 247, 230, 0.1);
}

.cta-panel p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255, 247, 230, 0.86);
    line-height: 1.8;
}

.footer {
    padding: 78px 0 28px;
    background: #050505;
    border-top: 1px solid rgba(246, 215, 122, 0.14);
}

.footer p,
.footer li,
.footer a {
    color: rgba(255, 247, 230, 0.7);
}

.footer p {
    max-width: 360px;
    margin-top: 18px;
    line-height: 1.8;
}

.footer h3 {
    color: var(--cream);
    font-size: 1.18rem;
    margin-bottom: 20px;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

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

.footer a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
    color: var(--soft-gold);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(246, 215, 122, 0.24);
    border-radius: 50%;
    background: rgba(255, 247, 230, 0.05);
}

.social-links a:hover {
    transform: translateY(-4px);
    background: rgba(212, 175, 55, 0.12);
}

.contact-list i {
    flex: 0 0 22px;
    width: 22px;
    color: var(--soft-gold);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.65;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(246, 215, 122, 0.1);
    color: rgba(184, 176, 160, 0.78);
    text-align: center;
    font-size: 0.95rem;
}

@keyframes floatGlow {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(18px, -24px, 0) scale(1.08);
    }
}

@keyframes heroSlide {
    0% {
        opacity: 0;
        transform: scale(1.08);
    }

    8%,
    31% {
        opacity: 1;
    }

    42%,
    100% {
        opacity: 0;
        transform: scale(1.16);
    }
}

@media (max-width: 991.98px) {
    .zivara-navbar .navbar-collapse {
        margin-top: 18px;
        padding: 18px;
        border: 1px solid rgba(246, 215, 122, 0.16);
        border-radius: 20px;
        background: rgba(7, 7, 7, 0.94);
    }

    .hero-section {
        padding: 98px 0 70px;
    }

    .hero-section .min-vh-100 {
        min-height: calc(100vh - 98px) !important;
    }

    .hero-image-card {
        margin: 0;
        transform: none;
    }

    .hero-image-card img,
    .about-image-wrap img {
        height: 520px;
    }

    .about-image-wrap img {
        height: 390px;
        object-position: center top;
    }

    .section-padding {
        padding: 84px 0;
    }

    .massage-panel {
        grid-template-columns: 1fr;
    }

    .massage-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .massage-benefits {
        grid-column: auto;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: clamp(2.65rem, 15vw, 4.4rem);
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .hero-highlights {
        gap: 10px;
    }

    .hero-highlights span {
        width: 100%;
        justify-content: center;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-image-card,
    .about-image-wrap,
    .gallery-card,
    .cta-panel {
        border-radius: 22px;
    }

    .hero-image-card img,
    .about-image-wrap img {
        height: 420px;
        border-radius: 16px;
    }

    .about-image-wrap img {
        height: 330px;
        object-position: center top;
    }

    .hero-card-badge {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .silhouette-mark {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 1.35rem;
    }

    .gallery-card {
        height: 280px;
    }

    .massage-panel {
        padding: 12px;
        border-radius: 22px;
    }

    .massage-tabs {
        grid-template-columns: 1fr;
    }

    .massage-tab {
        min-height: 58px;
    }

    .massage-preview {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .massage-image img {
        height: 260px;
    }

    .massage-content {
        padding: 28px 20px;
        text-align: center;
        align-items: center;
    }

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

    .service-card,
    .service-card img {
        min-height: 190px;
    }

    .cta-panel {
        padding: 38px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-slide {
        animation: none;
    }

    .slide-one {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        width: 148px;
        height: 50px;
    }

    .footer-logo {
        font-size: 1.45rem;
        letter-spacing: 3px;
    }

    .footer-logo img {
        width: 180px;
    }

    .section-kicker {
        gap: 8px;
        letter-spacing: 1.4px;
    }

    .section-kicker::before,
    .section-kicker::after {
        width: 22px;
    }

    .why-card,
    .review-card,
    .counter-card {
        padding: 28px 22px;
    }

    .service-card,
    .service-card img {
        min-height: 170px;
    }

    .massage-benefits {
        grid-template-columns: 1fr;
    }

    .hero-card-badge {
        align-items: flex-start;
    }
}
