:root {
    --ivory: #FAF7F0;
    --ivory-2: #F3EEE3;
    --ink: #1B2B2B;
    --ink-2: #2A3D3D;
    --teal: #0F6E67;
    --teal-dark: #0B4F4A;
    --brass: #B8894A;
    --brass-light: #D8B685;
    --sand: #EFE4D0;
    --white: #FFFFFF;
    --radius-arch: 260px 260px 0 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Manrope, sans-serif;
    color: var(--ink);
    background: var(--ivory);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
    font-family: Fraunces, serif;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: Manrope, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brass);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--brass);
    display: inline-block;
}

a {
    text-decoration: none;
}

::selection {
    background: var(--teal);
    color: var(--white);
}

.btn-harmony {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    transition: 0.35s;
    border: 1px solid transparent;
}

.btn-harmony-primary {
    background: var(--teal);
    color: var(--white);
}

.btn-harmony-primary:hover {
    background: var(--teal-dark);
    color: var(--white);
    letter-spacing: 0.05em;
}

.btn-harmony-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
    background: transparent;
}

.btn-harmony-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.btn-harmony-outline-dark {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
}

.btn-harmony-outline-dark:hover {
    background: var(--ink);
    color: var(--ivory);
}

.btn-harmony-sm {
    padding: 11px 22px;
    font-size: 0.82rem;
}

.navbar-harmony {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    padding: 22px 0px;
    background: transparent;
    transition: 0.4s;
}

.navbar-harmony.scrolled {
    background: rgba(250, 247, 240, 0.96);
    padding: 14px 0px;
    box-shadow: rgba(27, 43, 43, 0.06) 0px 4px 24px;
}

.navbar-harmony .brand-title {
    font-family: Fraunces, serif;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1;
    transition: color 0.4s;
}

.navbar-harmony .brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brass-light);
    display: block;
    margin-top: 2px;
}

.navbar-harmony.scrolled .brand-title {
    color: var(--ink);
}

.navbar-harmony .nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0px 14px;
    position: relative;
    padding: 6px 0px !important;
}

.navbar-harmony .nav-link::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0px;
    height: 1px;
    background: var(--brass);
    transition: width 0.3s;
}

.navbar-harmony .nav-link:hover::after, .navbar-harmony .nav-link.active::after {
    width: 100%;
}

.navbar-harmony.scrolled .nav-link {
    color: var(--ink);
}

.navbar-harmony .btn-harmony-primary {
    padding: 11px 26px;
    font-size: 0.85rem;
}

.navbar-toggler {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    box-shadow: none !important;
}

.navbar-harmony:not(.scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.inner-page .navbar-harmony {
    background: rgba(27, 43, 43, 0.94);
}

body.inner-page .navbar-harmony .brand-title, body.inner-page .navbar-harmony .nav-link {
    color: rgb(255, 255, 255);
}

body.inner-page .navbar-harmony.scrolled {
    background: rgba(250, 247, 240, 0.96);
}

body.inner-page .navbar-harmony.scrolled .brand-title, body.inner-page .navbar-harmony.scrolled .nav-link {
    color: var(--ink);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    width: 100%;
}

.hero .swiper {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(rgba(15, 25, 25, 0.55) 0%, rgba(15, 25, 25, 0.35) 35%, rgba(15, 25, 25, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: rgb(255, 255, 255);
    max-width: 680px;
}

.hero-content .eyebrow {
    color: var(--brass-light);
}

.hero-content .eyebrow::before {
    background: var(--brass-light);
}

.hero-content h1 {
    color: rgb(255, 255, 255);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.12;
    margin: 18px 0px 22px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    max-width: 560px;
    margin-bottom: 36px;
}

.hero .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgb(255, 255, 255);
    opacity: 0.5;
}

.hero .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--brass);
}

.hero .swiper-button-next, .hero .swiper-button-prev {
    color: rgb(255, 255, 255);
    opacity: 0.75;
    transform: scale(0.65);
}

.hero .swiper-button-next:hover, .hero .swiper-button-prev:hover {
    opacity: 1;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.scroll-cue .line {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.6);
    animation: 2s ease-in-out 0s infinite normal none running scrollcue;
}

@keyframes scrollcue {
    0% {
        transform: scaleY(0.2);
        transform-origin: center top;
        opacity: 0.4;
    }

    50% {
        transform: scaleY(1);
        transform-origin: center top;
        opacity: 1;
    }

    100% {
        transform: scaleY(0.2);
        transform-origin: center bottom;
        opacity: 0.4;
    }
}

.page-banner {
    position: relative;
    min-height: 340px;
    margin-top: 0px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 50px;
}

.page-banner-overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(rgba(15, 25, 25, 0.72) 0%, rgba(15, 25, 25, 0.55) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0px auto;
}

.page-banner-content .eyebrow {
    color: var(--brass-light);
    justify-content: center;
}

.page-banner-content .eyebrow::before {
    background: var(--brass-light);
}

.page-banner-content h1 {
    color: rgb(255, 255, 255);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 14px 0px 18px;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb-item, .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

.breadcrumb-item.active {
    color: var(--brass-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 992px) {
    .page-banner-content {
        text-align: left;
        margin: 0px;
        padding-top: 40px;
    }

    .page-banner-content .eyebrow {
        justify-content: flex-start;
    }

    .breadcrumb {
        justify-content: flex-start;
    }
}

.frieze {
    display: block;
    width: 100%;
    height: 40px;
}

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

.section-sm {
    padding: 70px 0px;
}

.bg-sand {
    background: var(--sand);
}

.bg-ink {
    background: var(--ink);
    color: rgb(239, 233, 220);
}

.bg-ink h2, .bg-ink h3 {
    color: rgb(255, 255, 255);
}

.arch-frame {
    position: relative;
    padding: 14px;
    background: var(--white);
    box-shadow: rgba(27, 43, 43, 0.25) 0px 20px 50px -20px;
}
/*
.arch-frame::after {
   content: ""; 
    position: absolute;
    inset: 14px;
    border: 1px solid var(--brass);
    border-radius: var(--radius-arch);
    pointer-events: none;
    z-index: 2;
}*/

.arch-frame img {
    width: 100%;
    display: block;
    /* border-radius: var(--radius-arch); */
    object-fit: cover;
}

.arch-frame a {
    display: block;
}

.about-visual {
    position: relative;
    max-width: 460px;
}

.about-visual .arch-frame {
    height: 520px;
}

.about-visual .arch-frame img {
    height: 100%;
}

.about-badge {
    position: absolute;
    right: -24px;
    bottom: -24px;
    background: var(--teal);
    color: rgb(255, 255, 255);
    padding: 24px 26px;
    max-width: 190px;
    box-shadow: rgba(15, 110, 103, 0.55) 0px 18px 40px -14px;
}

.about-badge .num {
    font-family: Fraunces, serif;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--brass-light);
}

.about-badge .lbl {
    font-size: 0.78rem;
    margin-top: 6px;
    color: rgb(234, 243, 242);
}

.feature-row {
    display: flex;
    gap: 18px;
    padding: 18px 0px;
    border-top: 1px solid rgba(27, 43, 43, 0.1);
}

.feature-row:last-child {
    border-bottom: 1px solid rgba(27, 43, 43, 0.1);
}

.feature-row i {
    font-size: 1.3rem;
    color: var(--teal);
    margin-top: 3px;
}

.feature-row h4 {
    font-size: 1.02rem;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-row p {
    font-size: 0.92rem;
    color: rgb(74, 87, 87);
    margin-bottom: 0px;
}

.link-arrow {
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-arrow i {
    transition: transform 0.3s;
}

.link-arrow:hover i {
    transform: translateX(6px);
}

.link-arrow:hover {
    color: var(--teal-dark);
}

.section-head {
    max-width: 640px;
}

.section-head.mx-auto {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    margin-top: 14px;
}

.room-card {
    background: var(--white);
    height: 100%;
    transition: transform 0.4s, box-shadow 0.4s;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(27, 43, 43, 0.3) 0px 30px 60px -30px;
}

.room-card .arch-frame {
    margin-bottom: 6px;
}

.room-card .arch-frame img {
    height: 260px;
}

.room-card-body {
    padding: 26px 22px 30px;
}

.room-card-body h3 {
    font-size: 1.28rem;
    margin-bottom: 8px;
}

.room-card-body p.desc {
    font-size: 0.92rem;
    color: rgb(74, 87, 87);
    margin-bottom: 16px;
    min-height: 66px;
}

.room-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: rgb(91, 104, 104);
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-meta i {
    color: var(--brass);
}

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px dashed rgba(27, 43, 43, 0.15);
}

.room-price .num {
    font-family: Fraunces, serif;
    font-size: 1.3rem;
    color: var(--teal-dark);
}

.room-price .cur {
    font-size: 0.78rem;
    color: rgb(91, 104, 104);
}

.room-gallery-main {
    position: relative;
}

.room-gallery-main .arch-frame img {
    height: 460px;
}

.room-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.room-thumbs a {
    width: 90px;
    height: 90px;
    overflow: hidden;
    display: block;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.room-thumbs a:hover {
    border-color: var(--brass);
}

.room-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info-box {
    background: var(--sand);
    padding: 32px;
    position: sticky;
    top: 110px;
}

.room-info-box .price-tag {
    font-family: Fraunces, serif;
    font-size: 2rem;
    color: var(--teal-dark);
}

.room-info-box .price-tag small {
    font-family: Manrope, sans-serif;
    font-size: 0.8rem;
    color: rgb(91, 104, 104);
}

.room-spec-list {
    list-style: none;
    padding: 0px;
    margin: 20px 0px;
}

.room-spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(27, 43, 43, 0.1);
    font-size: 0.92rem;
}

.room-spec-list li:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.room-spec-list i {
    color: var(--brass);
    margin-right: 8px;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
}

.amenity-item i {
    color: var(--teal);
    font-size: 1.1rem;
}

.service-card {
    background: var(--white);
    padding: 38px 28px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(184, 137, 74, 0.18);
    transition: 0.35s;
}

.service-card:hover {
    border-color: var(--teal);
    box-shadow: rgba(27, 43, 43, 0.35) 0px 20px 50px -26px;
    transform: translateY(-6px);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 20px;
    font-size: 1.5rem;
    color: var(--teal-dark);
    transition: 0.35s;
}

.service-card:hover .service-icon {
    background: var(--teal);
    color: rgb(255, 255, 255);
}

.service-card h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: rgb(74, 87, 87);
    margin-bottom: 0px;
}

.service-detail-row {
    align-items: center;
}

.service-detail-row .arch-frame img {
    height: 360px;
}

.service-detail-row h3 {
    font-size: 1.7rem;
}

.service-detail-list {
    list-style: none;
    padding: 0px;
    margin: 20px 0px 0px;
}

.service-detail-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.service-detail-list i {
    color: var(--teal);
    margin-top: 4px;
}

.timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 40px;
    border-left: 2px solid var(--brass-light);
}

.timeline-item {
    position: relative;
    padding-bottom: 44px;
}

.timeline-item:last-child {
    padding-bottom: 0px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -46px;
    top: 2px;
    width: 14px;
    height: 14px;
    background: var(--teal);
    border: 3px solid var(--ivory);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--brass);
}

.timeline-year {
    font-family: Fraunces, serif;
    color: var(--brass);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.timeline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.92rem;
    color: rgb(74, 87, 87);
    margin-bottom: 0px;
}

.value-card {
    text-align: center;
    padding: 10px;
}

.value-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 18px;
    font-size: 1.7rem;
    color: var(--teal-dark);
}

.value-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: rgb(74, 87, 87);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2px;
    transition: 0.3s;
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background: var(--teal);
    border-color: var(--teal);
    color: rgb(255, 255, 255);
}

.gallery-item {
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(0deg, rgba(15, 25, 25, 0.7), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.35s;
}

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

.gallery-item-overlay span {
    color: rgb(255, 255, 255);
    font-size: 0.85rem;
    font-weight: 600;
}

.treatment-table {
    width: 100%;
    border-collapse: collapse;
}

.treatment-table th {
    text-align: left;
    font-family: Manrope, sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--brass);
    padding: 14px 10px;
    border-bottom: 2px solid var(--brass-light);
}

.treatment-table td {
    padding: 18px 10px;
    border-bottom: 1px solid rgba(27, 43, 43, 0.1);
    font-size: 0.95rem;
    vertical-align: top;
}

.treatment-table td.price {
    font-family: Fraunces, serif;
    color: var(--teal-dark);
    font-size: 1.1rem;
    white-space: nowrap;
}

.treatment-table td.duration {
    color: rgb(91, 104, 104);
    white-space: nowrap;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(184, 137, 74, 0.18);
    margin-bottom: 20px;
}

.contact-info-card i {
    font-size: 1.4rem;
    color: var(--teal-dark);
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 0.92rem;
    color: rgb(74, 87, 87);
    margin-bottom: 0px;
}

.contact-form {
    background: var(--white);
    padding: 44px;
    box-shadow: rgba(27, 43, 43, 0.3) 0px 30px 60px -34px;
}

.contact-form label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.contact-form .form-control {
    border: 1px solid rgba(27, 43, 43, 0.18);
    border-radius: 2px;
    padding: 12px 16px;
    font-size: 0.92rem;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--teal);
}

.map-wrap {
    height: 100%;
    min-height: 340px;
    overflow: hidden;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0px;
    filter: grayscale(0.15) contrast(1.05);
}

.alert-harmony-success {
    background: var(--sand);
    border: 1px solid var(--brass);
    color: var(--ink);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.alert-harmony-error {
    background: rgb(248, 228, 224);
    border: 1px solid rgb(192, 85, 74);
    color: rgb(122, 46, 38);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.cta-section {
    position: relative;
    background: linear-gradient(120deg, var(--teal-dark), var(--ink) 85%);
    color: rgb(255, 255, 255);
    padding: 100px 0px;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-image: radial-gradient(circle at 15% 20%, rgba(184, 137, 74, 0.18), transparent 45%), radial-gradient(circle at 85% 80%, rgba(184, 137, 74, 0.14), transparent 45%);
}

.cta-section .inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0px auto;
}

.cta-section h2 {
    color: rgb(255, 255, 255);
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    margin-bottom: 18px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 34px;
    font-size: 1.05rem;
}

footer {
    background: var(--ink);
    color: rgba(239, 233, 220, 0.82);
    padding-top: 80px;
}

footer h5 {
    font-family: Fraunces, serif;
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    margin-bottom: 22px;
}

footer .brand-title {
    font-family: Fraunces, serif;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
}

footer p {
    font-size: 0.92rem;
    line-height: 1.8;
}

footer a {
    color: rgba(239, 233, 220, 0.82);
    font-size: 0.92rem;
}

footer a:hover {
    color: var(--brass-light);
}

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

footer li {
    margin-bottom: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(239, 233, 220, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--brass);
    border-color: var(--brass);
    color: rgb(27, 43, 43);
}

.footer-bottom {
    border-top: 1px solid rgba(239, 233, 220, 0.14);
    margin-top: 50px;
    padding: 24px 0px;
    font-size: 0.82rem;
    text-align: center;
    color: rgba(239, 233, 220, 0.55);
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(239, 233, 220, 0.25);
    color: rgb(255, 255, 255);
    font-size: 0.88rem;
    padding: 12px 16px;
    border-radius: 2px;
}

.newsletter-form input::placeholder {
    color: rgba(239, 233, 220, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--brass);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    background: var(--brass);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    color: rgb(27, 43, 43);
    font-weight: 700;
    padding: 0px 20px;
    border-radius: 2px;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-cue .line {
        animation: auto ease 0s 1 normal none running none;
    }

    html {
        scroll-behavior: auto;
    }
}

.book-now-mobile {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    background: linear-gradient(135deg, rgb(183, 154, 75) 0%, rgb(217, 193, 108) 50%, rgb(183, 154, 75) 100%);
    border-radius: 50px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: rgba(183, 154, 75, 0.35) 0px 8px 25px, rgba(217, 193, 108, 0.25) 0px 0px 15px;
    overflow: hidden;
    animation: 2s ease 0s infinite normal none running pulseBook;
}

.book-now-mobile span {
    position: relative;
    z-index: 2;
}

.book-now-mobile::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: 3s ease 0s infinite normal none running shineBook;
}

.book-now-mobile:active {
    transform: scale(0.97);
}

@keyframes shineBook {
    100% {
        left: 140%;
    }
}

@keyframes pulseBook {
    0% {
        box-shadow: rgba(183, 154, 75, 0.35) 0px 8px 25px, rgba(217, 193, 108, 0.5) 0px 0px 0px 0px;
    }

    70% {
        box-shadow: rgba(183, 154, 75, 0.35) 0px 8px 25px, rgba(217, 193, 108, 0) 0px 0px 0px 12px;
    }

    100% {
        box-shadow: rgba(183, 154, 75, 0.35) 0px 8px 25px, rgba(217, 193, 108, 0) 0px 0px 0px 0px;
    }
}

@media (min-width: 768px) {
    .book-now-mobile {
        display: none;
    }
}

.logo-dark {
    display: none;
}

.scrolled .logo-dark {
    display: block;
}

.scrolled .logo-white {
    display: none;
}

.btn-whatsapp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    background: rgb(35, 198, 96) !important;
}

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

@media (max-width: 991px) {
    .navbar-harmony {
        background: rgba(27, 43, 43, 0.92);
        padding: 14px 0px;
    }

    .navbar-harmony .brand-title {
        color: rgb(255, 255, 255);
    }

    .navbar-harmony .nav-link {
        color: rgb(255, 255, 255);
        margin: 6px 0px;
    }

    .navbar-collapse {
        padding-top: 14px;
    }

    .about-badge {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }

    .room-info-box {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 70px 0px;
    }

    .hero-content p {
        font-size: 0.98rem;
    }

    .page-banner {
        min-height: 280px;
    }

    .logo {
        width: 150px;
    }
}


/*service flip box*/



.service-flip{
    position:relative;
    width:100%;
    height:360px;
    perspective:1000px;
}

.service-flip-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:transform .8s;
    transform-style:preserve-3d;
}

.service-flip:hover .service-flip-inner{
    transform:rotateY(180deg);
}

.service-front,
.service-back{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    border-radius:18px;
    overflow:hidden;

    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
}

.service-front{
    z-index:2;
}

.service-back{
    transform:rotateY(180deg);
    background:#182433;
    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:35px;
}

/* FRONT */

.service-front img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* BACK */

.service-back{
    background:#182433;
    color:#fff;
    transform:rotateY(180deg);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    padding:35px;
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#c6a56a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

.service-back h3{
    font-size:24px;
    margin-bottom:15px;
    color: #fff;
}

.service-back p{
    margin:0;
    opacity:.9;
    line-height:1.7;
}


.service-front{
    position:relative;
}

.service-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:30px;
    background:linear-gradient(to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15),
        transparent);
}

.service-overlay h3{
    color:#fff;
    font-size:28px;
    margin:0;
}

.service-overlay p{
    display:none;
}

/* ===========================
   Mobile & Tablet
=========================== */

@media (max-width:991px){
	
	    .service-overlay p{
        display:block;
        margin:0;
        color:#fff;
        font-size:15px;
        line-height:1.6;
        opacity:.95;
    }

    .service-flip{
        height:280px;
    }

    .service-flip-inner{
        transform:none !important;
    }

    .service-front,
    .service-back{
        position:absolute;
        inset:0;
        transform:none !important;
    }

    /* Arka yüzü tamamen gizle */
    .service-back{
        display:none;
    }

    /* Ön yüzde sürekli overlay göster */
    .service-overlay{
        position:absolute;
        inset:0;
        display:flex;
        flex-direction:column;
        justify-content:flex-end;
        align-items:flex-start;
        padding:25px;
        background:linear-gradient(
            to top,
            rgba(0,0,0,.80),
            rgba(0,0,0,.45),
            rgba(0,0,0,.10)
        );
    }

    .service-overlay h3{
        color:#fff;
        font-size:22px;
        margin-bottom:10px;
    }

    .service-overlay p{
        display:block;
        color:#fff;
        margin:0;
        font-size:15px;
        line-height:1.6;
        opacity:.95;
    }

}