/* ==========================================================================
   Lindi Urban Revive — shared custom styles
   Consolidated from the per-page <style> blocks that used to be duplicated
   across index.html, about.html and bookings.html.
   ========================================================================== */

/* ---------- Global ---------- */
html, body {
    overflow-x: hidden !important;
    width: 100%;
}
/* The template's original scroll-reveal (jquery.waypoints in main.js) only
   learns a scroll "direction" after a real scroll delta occurs, so content
   above the fold never revealed until the visitor scrolled — the page looked
   empty on load. Replaced with a proper reveal driven by IntersectionObserver
   (see js/site.js): elements fade + rise into place as they enter view, with
   a short stagger per section. Visible by default so nothing ever depends on
   JS running for content to appear — the animation is a bonus, not a gate. */
.ftco-animate {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.js-reveal-ready .ftco-animate {
    opacity: 0;
    visibility: visible;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-reveal-ready .ftco-animate.revealed {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .js-reveal-ready .ftco-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

html {
    scroll-behavior: smooth;
}
img, video, iframe {
    max-width: 100%;
    height: auto;
}
.hero-wrap {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100%;
    overflow: hidden;
}
@media (max-width: 768px) {
    .hero-wrap { background-position: 30% center !important; }
}
@media (max-width: 576px) {
    .hero-wrap { background-position: 35% center !important; }
}

@font-face {
    font-family: 'ArtfullyRegular';
    src: url('../ArtfullyRegular-MV8ze.ttf') format('truetype');
}

/* ---------- Top Bar / Utility Bar ---------- */
.top-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}
.top-bar a {
    color: #fff;
    margin-left: 15px;
    transition: color 0.3s ease;
}
.top-bar a:hover {
    color: #7A8B6B;
}
.top-bar i {
    margin-right: 5px;
    color: #7A8B6B;
}
.top-bar .contact-info span {
    margin-right: 20px;
}
.top-bar .social-icons {
    text-align: right;
}
.top-bar:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(to bottom, rgba(122, 139, 107, 0.3), transparent);
    pointer-events: none;
}
@media (max-width: 768px) {
    .top-bar .contact-info,
    .top-bar .social-icons {
        text-align: center;
        margin-bottom: 5px;
    }
    .top-bar .contact-info span {
        display: inline-block;
        margin: 0 10px;
    }
}
@media (max-width: 991px) {
    .top-bar { position: relative; }
    .top-bar:after { display: none; }
    body { padding-top: 0; }
}

/* ---------- Mobile Menu Overlay ---------- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow-y: auto;
    padding: 60px 25px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mobile-menu-overlay.active {
    transform: translateX(0);
}
.mobile-menu-overlay .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #7A8B6B;
    font-weight: 300;
    transition: transform 0.2s ease;
    z-index: 10000;
}
.mobile-menu-overlay .close-menu:hover {
    transform: scale(1.1);
}
.mobile-menu-overlay .mobile-logo {
    text-align: center;
    margin-bottom: 40px;
}
.mobile-menu-overlay .mobile-logo img {
    height: 60px;
    width: auto;
}
.mobile-menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.mobile-menu-overlay ul li {
    margin-bottom: 5px;
}
.mobile-menu-overlay ul li a {
    font-size: 20px;
    color: #7A8B6B;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 12px 20px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 40px;
}
.mobile-menu-overlay ul li a:hover {
    background: rgba(122, 139, 107, 0.1);
    transform: translateX(5px);
}
.welcome-note-mobile {
    text-align: center;
    font-family: 'ArtfullyRegular', 'Playfair Display', cursive;
    font-size: 22px;
    color: #7A8B6B;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.mobile-social-icons {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(122, 139, 107, 0.2);
}
.mobile-social-icons a {
    color: #7A8B6B;
    font-size: 22px;
    margin: 0 12px;
    display: inline-block;
    transition: all 0.3s ease;
}
.mobile-social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    position: relative;
    z-index: 1001;
}
@media (max-width: 992px) {
    .navbar-nav { display: none; }
    .mobile-nav-toggle { display: block; }
    .ftco-navbar-light .container,
    .ftco-navbar-light .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

/* ---------- Navbar ---------- */
.ftco-navbar-light {
    background: rgba(30, 35, 25, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.ftco-navbar-light.scrolled {
    background: rgba(30, 35, 25, 0.45) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
@media (max-width: 991px) {
    .ftco-navbar-light {
        margin-top: 0 !important;
        position: relative;
        top: 0;
    }
}

.navbar-brand {
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 0;
}
.navbar-brand img {
    height: 80px;
    width: auto;
    max-width: none;
}
.navbar-brand span {
    display: none;
}
@media (max-width: 1200px) {
    .navbar-brand img { height: 70px; }
}
@media (max-width: 992px) {
    .navbar-brand img { height: 60px; }
}
@media (max-width: 768px) {
    .navbar-brand img { height: 45px; }
}
@media (max-width: 576px) {
    .navbar-brand img { height: 35px; }
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    color: #e0e0e0 !important;
    transition: color 0.3s ease !important;
}
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
    color: #7A8B6B !important;
}
.ftco-navbar-light .navbar-nav > .nav-item.active > a {
    color: #7A8B6B !important;
}
.ftco-navbar-light .navbar-brand {
    color: #e0e0e0 !important;
}
.ftco-navbar-light.scrolled .navbar-nav > .nav-item > .nav-link {
    color: #d4d4d4 !important;
}
.ftco-navbar-light.scrolled .navbar-nav > .nav-item > .nav-link:hover {
    color: #7A8B6B !important;
}
.ftco-navbar-light.scrolled .navbar-brand {
    color: #d4d4d4 !important;
}

/* ---------- Branding / buttons ---------- */
.btn-primary {
    background: transparent !important;
    border-color: #7A8B6B !important;
    color: #f0f0f0 !important;
    transition: all 0.3s ease !important;
}
.btn-primary:hover {
    background: #7A8B6B !important;
    border-color: #7A8B6B !important;
    color: #ffffff !important;
}
.btn-secondary {
    background: #7A8B6B !important;
    border-color: #7A8B6B !important;
}
.btn-secondary:hover {
    background: #5c6b4f !important;
    border-color: #5c6b4f !important;
}
.bg-primary {
    background: #7A8B6B !important;
}
.heading-section .subheading {
    color: #7A8B6B !important;
}
.heading-section .subheading:before,
.heading-section .subheading:after {
    background: #7A8B6B !important;
}
.custom-btn {
    color: #7A8B6B !important;
    text-decoration: none;
}
.custom-btn:hover {
    color: #5c6b4f !important;
    text-decoration: underline;
}
.price .number {
    color: #7A8B6B !important;
}
.services-bg { background: #7A8B6B !important; }
.services-darken { background: #6A7B5C !important; }
.services-lighten { background: #8A9B7A !important; }

/* Breadcrumb / interior hero heading text */
.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span,
.hero-wrap .bread,
.hero-wrap h1 {
    color: #7A8B6B !important;
}
.breadcrumbs a:hover {
    color: #5c6b4f !important;
}

/* Home hero text */
.hero-wrap .text h1,
.hero-wrap .text h1 span {
    color: #7A8B6B !important;
    font-family: 'Nunito Sans', 'Playfair Display', serif !important;
}
.hero-wrap .text p {
    color: #d4d4d4 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.hero-wrap .button-link span {
    color: #d4d4d4 !important;
}
.hero-wrap .button-link span:hover {
    color: #7A8B6B !important;
}
.hero-wrap .btn-primary {
    background: #7A8B6B !important;
    border: 1px solid #7A8B6B !important;
    color: #ffffff !important;
}
.hero-wrap .btn-primary:hover {
    background: #5c6b4f !important;
    border-color: #5c6b4f !important;
    color: #ffffff !important;
}
.hero-wrap .button-link .button-video {
    background: transparent !important;
    border: 1px solid #7A8B6B !important;
}
.hero-wrap .button-link .button-video:hover {
    background: #7A8B6B !important;
}
.hero-wrap .button-link .button-video .fa-calendar-check-o {
    color: #7A8B6B !important;
}
.hero-wrap .button-link .button-video:hover .fa-calendar-check-o {
    color: #ffffff !important;
}
.slider-text .text h1:after {
    background: #7A8B6B !important;
}
.hero-wrap .slider-text {
    position: relative;
    top: -60px;
}
.hero-wrap .text {
    animation: heroFadeInUp 0.8s ease-out forwards;
    will-change: transform, opacity;
}
.hero-wrap .text h1 {
    animation: heroSlideInLeft 0.6s ease-out forwards;
    will-change: transform, opacity;
}
.hero-wrap .text p {
    animation: heroFadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
    will-change: opacity;
}
.hero-wrap .text .d-flex.meta {
    animation: heroFadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
    will-change: transform, opacity;
}
@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.ftco-counter .text span {
    color: #d4d4d4 !important;
}

/* ---------- About page: hours card + counters + feature block ---------- */
.img-left-container {
    position: relative;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}
.time-open-wrap {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 320px;
    position: relative;
    margin-left: -130px;
}
.time-open-wrap .desc {
    padding: 25px;
}
.time-open-wrap .desc h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}
.time-open-wrap .desc h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #7A8B6B;
    margin-bottom: 10px;
}
.time-open-wrap .desc p span {
    display: block;
    margin-bottom: 5px;
    color: #666;
}
.time-open-wrap .bg-secondary {
    background: #7A8B6B !important;
    padding: 25px;
    text-align: center;
}
.time-open-wrap .bg-secondary h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.time-open-wrap .bg-secondary .phone {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .time-open-wrap {
        width: 280px;
        margin-left: -15px;
    }
    .img-left-container {
        justify-content: center;
    }
}

.block-18 {
    text-align: center;
}
.block-18 .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7A8B6B;
    line-height: 1.2;
}
.block-18 span {
    font-size: 0.9rem;
    color: #666;
    display: block;
    line-height: 1.4;
}

.olive-feature-block-wrapper {
    position: relative;
    margin-top: 30px;
    margin-left: -60px;
    width: calc(100% + 60px);
}
.olive-feature-block {
    background: #7A8B6B;
    padding: 45px 35px;
    position: relative;
    z-index: 1;
    border-left: 4px solid #d4c9b5;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.feature-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 80px 0;
    border-color: transparent rgba(255,255,255,0.08) transparent transparent;
    pointer-events: none;
}
.elegant-quote {
    text-align: center;
    margin-bottom: 25px;
}
.elegant-quote .fa-quote-left {
    color: rgba(255,255,255,0.3);
    font-size: 24px;
    margin-right: 15px;
    vertical-align: top;
}
.elegant-quote .fa-quote-right {
    color: rgba(255,255,255,0.3);
    font-size: 24px;
    margin-left: 15px;
    vertical-align: bottom;
}
.elegant-quote p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    display: inline;
}
.elegant-signature {
    text-align: center;
    margin-top: 20px;
}
.elegant-signature .signature-line {
    color: #d4c9b5;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-top: 10px;
}
.signature-font {
    font-family: 'Playfair Display', 'Segoe Script', 'Brush Script MT', cursive;
    font-size: 1.4rem;
    font-weight: 400;
    color: #d4c9b5;
    letter-spacing: 1px;
    font-style: italic;
    display: inline-block;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}
.ftco-section .container,
.ftco-section .container > .row,
.col-md-6 {
    overflow: visible !important;
}
@media (max-width: 768px) {
    .olive-feature-block-wrapper {
        margin-left: 0;
        width: 100%;
    }
    .olive-feature-block {
        padding: 30px 20px;
    }
    .elegant-quote p {
        font-size: 1rem;
    }
    .feature-accent {
        border-width: 0 50px 50px 0;
    }
    .signature-font {
        font-size: 1.2rem;
    }
}

/* Fix for feature block + business hours card on mobile */
@media (max-width: 768px) {
    .olive-feature-block-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
    }
    .time-open-wrap {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 280px;
        margin: 0 auto !important;
    }
    .img-left-container {
        justify-content: center !important;
    }
}

/* Values / principle cards + CTA (about page) */
.value-card {
    background: #7A8B6B;
    border-radius: 0px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    position: relative;
    border-bottom: 3px solid #d4c9b5;
}
.value-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d4c9b5;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}
.value-card .icon {
    font-size: 64px;
    color: #d4c9b5;
    margin-bottom: 20px;
}
.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}
.value-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.6;
}
.principle-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.principle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(122, 139, 107, 0.1);
}
.principle-card .principle-number {
    background: #7A8B6B;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}
.principle-card .principle-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c2c2c;
}
.principle-card .principle-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.ftco-intro {
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.cta-section h2,
.cta-section p {
    color: #7A8B6B !important;
}
@media (max-width: 768px) {
    .principle-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .value-card .icon {
        font-size: 52px;
    }
    .ftco-intro {
        background-attachment: scroll !important;
    }
}

/* ---------- Index page: category tabs + treatment carousel ---------- */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}
.category-btn {
    background: transparent;
    border: 2px solid #7A8B6B;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: #7A8B6B;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}
.category-btn:hover, .category-btn.active {
    background: #7A8B6B;
    color: #fff;
}
.category-section {
    display: none;
}
.category-section.active-category {
    display: block;
}
.carousel-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 20px 15px;
    scrollbar-width: thin;
    scrollbar-color: #7A8B6B #e0e0e0;
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.carousel-container:active {
    cursor: grabbing;
}
.carousel-container.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}
.carousel-container::-webkit-scrollbar {
    height: 6px;
}
.carousel-container::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}
.carousel-container::-webkit-scrollbar-thumb {
    background: #7A8B6B;
    border-radius: 10px;
}
.scrolling-content {
    display: flex;
    gap: 25px;
    width: max-content;
    padding-right: 15px;
}
.treatment-card {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.treatment-card:hover {
    transform: translateY(-8px);
}
.treatment-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.treatment-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #7A8B6B;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}
.treatment-body {
    padding: 20px;
}
.treatment-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 5px;
}
.treatment-duration {
    font-size: 0.7rem;
    color: #999;
    margin-bottom: 8px;
}
.treatment-price {
    color: #7A8B6B;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 10px 0;
}
.treatment-desc {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
}
.btn-card {
    border: 1px solid #7A8B6B;
    background: transparent;
    color: #7A8B6B;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}
.btn-card:hover {
    background: #7A8B6B;
    color: #fff;
    text-decoration: none;
}
.scroll-indicator {
    text-align: center;
    margin-top: 25px;
    font-size: 0.8rem;
    color: #7A8B6B;
    opacity: 0.6;
}
.scroll-indicator i {
    margin: 0 5px;
}
@media (max-width: 768px) {
    .treatment-card { flex: 0 0 280px; }
    .scrolling-content { gap: 18px; }
    .category-btn { padding: 6px 18px; font-size: 0.75rem; }
}

/* ---------- Bookings page ---------- */
.booking-wrapper {
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
}
.booking-header {
    background: #7A8B6B;
    padding: 30px;
    text-align: center;
}
.booking-header h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.8rem;
}
.booking-header p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
}
.booking-calendar {
    padding: 30px;
    background: #fff;
    border-right: 1px solid #f0f0f0;
}
.booking-form {
    padding: 30px;
    background: #fff;
}
.form-control {
    height: 52px;
    border-radius: 0px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 10px 18px;
}
.form-control:focus {
    border-color: #7A8B6B;
    box-shadow: 0 0 0 3px rgba(122,139,107,0.1);
}
textarea.form-control {
    height: auto;
}
.flatpickr-calendar {
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.time-slot {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    padding: 8px 18px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.time-slot:hover, .time-slot.selected {
    background: #7A8B6B;
    color: #fff;
    border-color: #7A8B6B;
}
.selected-date {
    font-weight: 600;
    color: #7A8B6B;
    margin: 15px 0 10px;
    font-size: 0.9rem;
}
.booking-info-card {
    background: #f8f9fa;
    border-radius: 0px;
    padding: 20px;
    margin-top: 20px;
}
.booking-info-card h5 {
    color: #2c2c2c;
    font-weight: 700;
    margin-bottom: 15px;
}
.booking-info-card p {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #666;
}
.booking-info-card i {
    width: 25px;
    color: #7A8B6B;
}
.treatment-select {
    width: 100%;
    padding: 12px 18px;
    border-radius: 0px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    font-size: 14px;
    background: #fff;
}
.faq-card {
    background: #fff;
    border-radius: 0px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}
.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(122, 139, 107, 0.1);
}
.faq-card .faq-icon {
    background: #7A8B6B;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}
.faq-card .faq-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c2c2c;
}
.faq-card .faq-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.welcoming-note {
    font-family: 'ArtfullyRegular', 'Playfair Display', cursive;
    font-size: 24px;
    color: #7A8B6B;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .booking-calendar {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    .faq-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .welcoming-note {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        flex-grow: 1;
    }
}

/* ---------- Footer ---------- */
/* A single centered column, not a grid — a quiet closing statement rather
   than a wall of link lists. */
.site-footer {
    background: radial-gradient(ellipse 1100px 600px at 50% -10%, #2c3d24 0%, #1e2a1c 55%),
                linear-gradient(160deg, #22301c 0%, #1e2a1c 45%, #172114 100%);
    position: relative;
    overflow: hidden;
    padding: 6.5em 0 3em;
    text-align: center;
}
.site-footer:before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #7A8B6B 50%, transparent);
    opacity: 0.55;
}
.site-footer .container {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.footer-mark {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border: 1px solid rgba(122, 139, 107, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #7A8B6B;
    background: rgba(122, 139, 107, 0.08);
}

.footer-wordmark {
    color: #d4c9b5;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.footer-tagline {
    font-family: 'ArtfullyRegular', 'Playfair Display', cursive;
    font-size: 22px;
    color: #7A8B6B;
    letter-spacing: 0.5px;
    margin-bottom: 38px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 34px;
    margin-bottom: 34px;
}
.footer-nav a {
    position: relative;
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    padding-bottom: 6px;
}
.footer-nav a:after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 1px;
    background: #7A8B6B;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-nav a:hover {
    color: #d4c9b5 !important;
}
.footer-nav a:hover:after {
    transform: scaleX(1);
}

.footer-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 30px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer-details a,
.footer-details span {
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none !important;
}
.footer-details a:hover {
    color: #d4c9b5 !important;
}
.footer-details .fa {
    color: #7A8B6B;
    margin-right: 8px;
}

.footer-hours {
    font-size: 12.5px;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.45) !important;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 34px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75) !important;
    transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}
.footer-social a:hover {
    background: #7A8B6B !important;
    border-color: #7A8B6B;
    color: #fff !important;
    transform: translateY(-4px);
}

.footer-cta {
    display: inline-block;
    margin-bottom: 46px;
}

.footer-rule {
    width: 70px;
    height: 1px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-bottom p {
    color: rgba(255,255,255,0.45) !important;
    font-size: 0.8rem;
    margin-bottom: 6px;
}
.copyright-colorlib {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 10px;
}
.copyright-colorlib a {
    color: #7A8B6B !important;
}
.copyright-colorlib a:hover {
    color: #d4c9b5 !important;
}

@media (max-width: 576px) {
    .footer-details { flex-direction: column; gap: 10px; }
    .footer-nav { gap: 12px 22px; }
}

/* ---------- Elegance & motion pass ---------- */

/* Subtle hero parallax on desktop (skip on mobile — fixed backgrounds are
   janky on touch devices and this template already applies its own mobile
   background-position overrides). */
@media (min-width: 992px) {
    .hero-wrap {
        background-attachment: fixed !important;
    }
}

/* Image hover-zoom on treatment cards and signature-treatment feature photos.
   Containers already clip overflow, so the image quietly grows within its
   frame rather than spilling out. */
.treatment-card { overflow: hidden; }
.treatment-img {
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.treatment-card:hover .treatment-img {
    transform: scale(1.08);
}
.portfolio-wrap .img.js-fullheight {
    overflow: hidden;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-wrap:hover .img.js-fullheight {
    transform: scale(1.04);
}

/* Decorative underline flanking each .subheading draws in from the center
   once its section is revealed, instead of appearing pre-drawn. */
.heading-section .subheading:before,
.heading-section .subheading:after {
    transform-origin: center;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.js-reveal-ready .heading-section .subheading:before,
.js-reveal-ready .heading-section .subheading:after {
    transform: translateY(-50%) scaleX(0);
}
.js-reveal-ready .heading-section.revealed .subheading:before,
.js-reveal-ready .heading-section.revealed .subheading:after,
.js-reveal-ready .ftco-animate.revealed .subheading:before,
.js-reveal-ready .ftco-animate.revealed .subheading:after {
    transform: translateY(-50%) scaleX(1);
}

/* Feature strip cards (Express Efficiency / Expert Somatologist / etc.) —
   lift above their flat-color neighbors with a shadow, the icon nudges up
   and tilts slightly, and a small accent line draws in under the heading. */
.services.services-bg {
    position: relative;
    z-index: 1;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.45s ease;
}
.services.services-bg:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.28);
    filter: brightness(1.06);
    z-index: 2;
}
.services.services-bg .icon span {
    display: inline-block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.services.services-bg:hover .icon span {
    transform: translateY(-6px) rotate(-8deg) scale(1.1);
}
.services.services-bg .media-body h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.services.services-bg .media-body h3:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #d4c9b5;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.services.services-bg:hover .media-body h3:after {
    width: 42px;
}
@media (prefers-reduced-motion: reduce) {
    .services.services-bg,
    .services.services-bg .icon span,
    .services.services-bg .media-body h3:after {
        transition: none;
    }
}

/* Refined button / card micro-interactions — a gentle lift rather than an
   abrupt color swap. */
.btn-primary,
.btn-signature,
.btn-card,
.custom-btn {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-primary:hover,
.btn-signature:hover,
.btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(122, 139, 107, 0.25);
}
.value-card,
.principle-card,
.faq-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Nav brand + link underline sweep */
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    position: relative;
}
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: #7A8B6B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover:after,
.ftco-navbar-light .navbar-nav > .nav-item.active > .nav-link:after {
    transform: scaleX(1);
}
