/* ==========================================
   SALO MAIN CSS — All Sections
   ========================================== */

/* ==========================================
   HEADER / TOPBAR
   ========================================== */
.salo-topbar {
    background: var(--salo-dark);
    padding: 0.5rem 0;
    font-size: var(--text-sm);
    color: var(--salo-gray-light);
}

.salo-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.topbar-item {
    color: var(--salo-gray-light);
    font-size: var(--text-xs);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.topbar-item:hover {
    color: var(--salo-primary);
}

.topbar-whatsapp:hover {
    color: #25D366;
}

.topbar-social {
    display: flex;
    gap: var(--space-3);
}

.topbar-social .salo-social-links {
    display: flex;
    gap: var(--space-3);
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar-social .salo-social-links a {
    color: var(--salo-gray-light);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.topbar-social .salo-social-links a:hover {
    color: var(--salo-white);
    background: var(--salo-primary);
}

/* NAVBAR */
.salo-navbar {
    background: var(--salo-white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
}

.salo-header.header-sticky .salo-navbar {
    position: sticky;
    top: 0;
}

.salo-header.header-transparent .salo-navbar,
.salo-header.header-transparent .salo-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
}

.salo-header.header-transparent .salo-navbar {
    top: 40px;
}

.no-topbar.header-transparent .salo-navbar {
    top: 0 !important;
}

.salo-header.header-transparent.scrolled .salo-navbar {
    position: fixed;
    top: 0;
    background: rgba(252, 250, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(201, 169, 110, 0.15);
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}

.salo-navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(252, 250, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(201, 169, 110, 0.15);
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
    animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    position: relative;
}

.salo-nav-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.salo-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-8);
    text-align: center;
}

.salo-nav-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--space-6);
}

/* Logo */
.salo-logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.15;
}

.salo-logo img {
    max-height: 65px;
    width: auto;
}

.site-logo-text,
.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-logo-text .logo-main,
.footer-logo-text .logo-main {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: var(--weight-semibold);
    color: var(--salo-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.site-logo-text .logo-main::after {
    content: '.';
    color: var(--salo-primary);
    font-weight: var(--weight-bold);
}

.site-logo-text .logo-tagline,
.footer-logo-text .logo-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: var(--weight-semibold);
    color: var(--salo-primary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 3px;
    transition: color var(--transition-fast);
}

.site-logo-text:hover .logo-main {
    color: var(--salo-primary);
}

.site-logo-text:hover .logo-tagline {
    color: var(--salo-dark);
}

/* Desktop Menu */
.salo-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.salo-menu>li {
    position: relative;
}

.salo-menu>li>a {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: var(--weight-semibold);
    color: var(--salo-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.salo-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--salo-primary);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    transition: width var(--transition-bounce);
    box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
}

.salo-menu>li>a:hover,
.salo-menu>li.current-menu-item>a,
.salo-menu>li.current-menu-ancestor>a {
    color: var(--salo-primary);
}

.salo-menu>li>a:hover::after,
.salo-menu>li.current-menu-item>a::after {
    width: 45%;
}

.nav-arrow {
    font-size: 0.6rem;
    transition: transform var(--transition-fast);
}

.salo-menu>li:hover>a .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.salo-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--salo-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--salo-border);
    padding: var(--space-2) 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 200;
}

.salo-menu>li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.salo-menu .sub-menu li a {
    display: block;
    padding: 0.65rem var(--space-5);
    color: var(--salo-dark-soft);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-left: 2px solid transparent;
}

.salo-menu .sub-menu li a:hover {
    color: var(--salo-primary);
    background: var(--salo-beige);
    border-left-color: var(--salo-primary);
    padding-left: var(--space-6);
}

/* Navbar CTA */
.navbar-cta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--salo-dark);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.navbar-phone:hover {
    color: var(--salo-primary);
}

.navbar-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--salo-primary) 0%, #B8860B 100%);
    color: var(--salo-white) !important;
    font-family: var(--font-body);
    font-size: 0.8rem !important;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.65rem !important;
    height: auto !important;
    line-height: normal !important;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.25);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.navbar-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: all 0.6s ease;
}

.navbar-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.4);
    color: var(--salo-white) !important;
}

.navbar-book:hover::before {
    left: 100%;
}

.navbar-book:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(201, 169, 110, 0.3);
}

/* Hamburger */
.salo-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    display: block;
    height: 2px;
    background: var(--salo-dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.salo-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.salo-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.salo-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.salo-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--salo-white);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
}

@media (min-width: 993px) {
    .salo-mobile-menu {
        display: none !important;
    }
}

.salo-mobile-menu.open {
    max-height: 600px;
}

.mobile-menu-inner {
    padding: var(--space-6);
}

.salo-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5);
}

.salo-mobile-nav li a {
    display: block;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--salo-border);
    color: var(--salo-dark);
    font-weight: var(--weight-medium);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.salo-mobile-nav li a:hover {
    color: var(--salo-primary);
}

.mobile-cta {
    margin-bottom: var(--space-5);
}

.mobile-social .salo-social-links {
    display: flex;
    gap: var(--space-3);
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-social .salo-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--salo-beige);
    color: var(--salo-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.mobile-social .salo-social-links a:hover {
    background: var(--salo-primary);
    color: var(--salo-white);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.salo-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--salo-white);
}

/* Full Screen Background Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    transform: scale(1.04);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.salo-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(250, 247, 242, 0.3) 0%, rgba(250, 247, 242, 0.85) 100%);
    z-index: 3;
}

@media (min-width: 992px) {
    .salo-hero .hero-overlay {
        background: linear-gradient(90deg,
                rgba(250, 247, 242, 0.90) 0%,
                rgba(250, 247, 242, 0.80) 45%,
                rgba(250, 247, 242, 0.20) 100%) !important;
    }

    .hero-slide {
        background-position: 78% 18% !important;
    }
}

.salo-hero .container {
    position: relative;
    z-index: 4;
    width: 100%;
}

.hero-content {
    max-width: 680px;
}

.hero-pretitle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--salo-primary);
    margin-bottom: var(--space-4);
}

.hero-pretitle::before,
.hero-pretitle::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--salo-primary);
}

.salo-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: var(--weight-light);
    line-height: 1.15;
    color: var(--salo-dark);
    margin-bottom: var(--space-6);
}

.salo-hero h1 .hero-strong {
    font-weight: var(--weight-semibold);
    color: var(--salo-primary);
    font-style: italic;
}

.hero-desc {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--salo-gray-dark);
    margin-bottom: var(--space-10);
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Dots on the right */
.hero-slider-dots {
    position: absolute;
    bottom: 50%;
    right: var(--space-10);
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-slider-dots {
        bottom: var(--space-8);
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(47, 42, 38, 0.2);
    border: 1px solid rgba(47, 42, 38, 0.4);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active {
    background: var(--salo-primary);
    border-color: var(--salo-primary);
    transform: scale(1.3);
}

.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--salo-gray-dark);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 5;
    animation: bounce 2s infinite;
}

.hero-scroll-hint i {
    font-size: var(--text-lg);
}

@keyframes bounce {

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

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.salo-services {
    padding: var(--section-py) 0;
    background: var(--salo-cream);
}

.salo-services-grid {
    display: grid;
    gap: var(--space-6);
}

.salo-services-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.salo-services-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.salo-services-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.salo-service-card {
    background: var(--salo-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--salo-border);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.salo-service-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    transform: translateY(-8px);
    border-color: var(--salo-primary);
}

.salo-card-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-decoration: none;
}

.service-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--salo-primary);
    color: var(--salo-white);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    z-index: 6;
}

.service-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.salo-service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-icon-wrap {
    width: 54px;
    height: 54px;
    background: var(--salo-white);
    border: 2px solid var(--salo-primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -27px;
    margin-left: var(--space-6);
    margin-bottom: var(--space-3);
    z-index: 6;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
}

.salo-service-card:hover .service-icon-wrap {
    background: var(--salo-primary);
    border-color: var(--salo-primary);
}

.service-icon {
    font-size: 1.25rem;
    color: var(--salo-primary);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.salo-service-card:hover .service-icon i {
    color: var(--salo-white);
}

.service-body {
    display: flex;
    flex-direction: column;
    padding: 0 var(--space-6) var(--space-6);
    flex-grow: 1;
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-medium);
    margin-bottom: var(--space-2);
    color: var(--salo-dark);
}

.service-desc {
    font-size: var(--text-sm);
    color: var(--salo-gray-dark);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
    flex-grow: 1;
}

.service-link-wrap {
    margin-top: auto;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--salo-primary-dark);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.salo-service-card:hover .service-link {
    color: var(--salo-primary);
    gap: var(--space-3);
}

/* ==========================================
   SINGLE SERVICE DETAILS PAGE
   ========================================== */
.service-layout-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: var(--space-10);
    align-items: start;
}

.service-content-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.service-main-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--salo-border);
}

.service-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-full-description h2,
.service-benefits-wrap h2,
.service-gallery-wrap h2,
.service-faq-wrap h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-5);
    color: var(--salo-dark);
    position: relative;
    padding-bottom: var(--space-2);
}

.service-full-description h2::after,
.service-benefits-wrap h2::after,
.service-gallery-wrap h2::after,
.service-faq-wrap h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--salo-primary);
}

.service-full-description .description-body p {
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
    color: var(--salo-gray-dark);
    line-height: var(--leading-relaxed);
}

.service-benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.service-benefits-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--salo-gray-dark);
}

.service-benefits-list li .check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--salo-primary-light);
    color: var(--salo-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    flex-shrink: 0;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.gallery-thumb-item {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--salo-border);
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 106, 0.4);
    color: var(--salo-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.25rem;
}

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

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-accordion-item {
    background: var(--salo-white);
    border: 1px solid var(--salo-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    transition: all var(--transition-fast);
}

.faq-accordion-item[open] {
    border-color: var(--salo-primary);
    box-shadow: var(--shadow-sm);
}

.faq-accordion-title {
    font-family: var(--font-body);
    font-weight: var(--weight-medium);
    font-size: var(--text-base);
    color: var(--salo-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    outline: none;
}

.faq-accordion-title::-webkit-details-marker {
    display: none;
}

.faq-accordion-title .faq-toggle-icon {
    font-size: 0.8rem;
    color: var(--salo-primary);
    transition: transform var(--transition-fast);
}

.faq-accordion-item[open] .faq-accordion-title .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-accordion-content {
    padding-top: var(--space-3);
    border-top: 1px dashed var(--salo-border);
    margin-top: var(--space-3);
}

.faq-accordion-content p {
    font-size: var(--text-sm);
    color: var(--salo-gray-dark);
    line-height: var(--leading-relaxed);
    margin: 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.service-sidebar .sidebar-widget {
    background: var(--salo-white);
    border: 1px solid var(--salo-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.service-sidebar .sidebar-widget .widget-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-4);
    color: var(--salo-dark);
    border-bottom: 1px solid var(--salo-border);
    padding-bottom: var(--space-3);
}

.widget-meta-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.widget-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--salo-gray-dark);
}

.widget-meta-item .meta-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: var(--weight-medium);
}

.widget-meta-item .meta-label i {
    color: var(--salo-primary);
}

.widget-meta-item .meta-value {
    color: var(--salo-dark);
    font-weight: var(--weight-medium);
}

.widget-meta-item .meta-value.price-amount {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--salo-primary-dark);
}

.btn-booking-sidebar {
    justify-content: center;
    text-align: center;
    padding: 1.15rem 2rem !important;
    font-size: var(--text-sm) !important;
    font-weight: var(--weight-medium) !important;
    line-height: 1.2 !important;
    letter-spacing: 0.1em !important;
}

.service-share-icons {
    display: flex;
    gap: var(--space-3);
}

.service-share-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--salo-primary-light);
    color: var(--salo-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.service-share-icons a:hover {
    background: var(--salo-primary);
    color: var(--salo-white);
    transform: translateY(-2px);
}

/* Lightbox Modal */
.salo-lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(47, 42, 38, 0.95);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

.salo-lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    animation: zoomIn 0.3s ease;
}

.salo-lightbox-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-8);
    color: var(--salo-white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.salo-lightbox-close:hover {
    color: var(--salo-primary);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* ==========================================
   ABOUT SECTION
   ========================================== */
.salo-about {
    padding: var(--section-py) 0;
    background: var(--salo-light);
    position: relative;
    overflow: hidden;
}

/* Redesigned About Grid Layout */
.about-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: stretch;
    margin-top: var(--space-12);
}

.about-visual {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-image-frame {
    position: relative;
    height: 100%;
    flex-grow: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--salo-border);
    background: var(--salo-white);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-frame:hover img {
    transform: scale(1.05);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.about-feature-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--salo-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--salo-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--salo-primary);
}

.feat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--salo-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--salo-primary);
    font-size: 1.2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.feat-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feat-stat-head {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.about-feature-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--salo-primary-dark);
    line-height: 1;
}

.about-feature-card h4 {
    font-size: var(--text-base);
    color: var(--salo-dark);
    font-weight: var(--weight-semibold);
    margin: 0;
}

.about-feature-card p {
    font-size: var(--text-sm);
    color: var(--salo-gray-dark);
    line-height: 1.6;
    margin: 0;
}

.about-cta-wrap {
    margin-top: var(--space-12);
}

@media (max-width: 991px) {
    .about-grid-content {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .about-visual {
        height: auto;
    }

    .about-image-frame {
        aspect-ratio: 16 / 9;
        height: auto;
    }
}

@media (max-width: 576px) {
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.salo-why-choose {
    padding: var(--section-py) 0;
    background: var(--salo-beige);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.why-choose-card {
    background: var(--salo-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-choose-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--salo-primary), var(--salo-secondary));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.why-choose-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--salo-primary-light);
}

.why-choose-card:hover::after {
    transform: scaleX(1);
}

.why-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--salo-beige), var(--salo-secondary));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: 2rem;
    color: var(--salo-primary);
    transition: all var(--transition-normal);
}

.why-choose-card:hover .why-icon-wrap {
    background: linear-gradient(135deg, var(--salo-primary), var(--salo-primary-dark));
    color: var(--salo-white);
    transform: rotateY(180deg);
}

.why-choose-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.salo-pricing {
    padding: var(--section-py) 0;
}

.salo-price-list {
    max-width: 800px;
    margin: 0 auto;
}

.salo-price-list.layout-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 100%;
    margin-top: var(--space-10);
    align-items: stretch;
}

/* Hide card elements in list layout */
.salo-price-list.layout-list .price-icon-wrap,
.salo-price-list.layout-list .price-divider,
.salo-price-list.layout-list .price-action {
    display: none !important;
}

/* Hide list elements in card layout */
.salo-price-list.layout-cards .price-dots {
    display: none !important;
}

.price-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: var(--salo-white);
    border: 1px solid var(--salo-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    transition: all var(--transition-fast);
    position: relative;
}

.price-item:hover {
    border-color: var(--salo-primary-light);
    box-shadow: var(--shadow-sm);
}

.price-item.popular {
    border-color: var(--salo-primary);
    background: linear-gradient(135deg, #FFF9F0, #FFFDF9);
}

.popular-tag {
    position: absolute;
    top: -10px;
    right: var(--space-5);
    background: var(--salo-primary);
    color: var(--salo-white);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    padding: 2px var(--space-3);
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.price-info {
    flex: 1;
}

.price-name {
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--salo-dark);
    display: block;
}

.price-desc {
    font-size: var(--text-xs);
    color: var(--salo-gray);
    display: block;
    margin-top: 2px;
}

.price-duration {
    font-size: var(--text-xs);
    color: var(--salo-gray);
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    margin-top: var(--space-1);
}

.price-dots {
    flex: 1;
    border-bottom: 2px dotted var(--salo-border);
    margin: 0 var(--space-4);
    min-width: 40px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 3px;
    white-space: nowrap;
}

.price-amount .currency {
    font-size: var(--text-sm);
    color: var(--salo-gray);
}

.price-amount .amount {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    color: var(--salo-primary);
}

/* Premium Card Styles */
.salo-price-list.layout-cards .price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--salo-white);
    border: 1px solid var(--salo-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
    margin-bottom: 0;
    flex-wrap: nowrap;
}

.salo-price-list.layout-cards .price-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border-color: var(--salo-primary);
}

/* Icon Container & Animation */
.salo-price-list.layout-cards .price-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--salo-beige);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    font-size: 1.5rem;
    color: var(--salo-primary);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.salo-price-list.layout-cards .price-item:hover .price-icon-wrap {
    background: var(--salo-primary);
    color: var(--salo-white);
    transform: scale(1.1) rotate(5deg);
}

/* Info Section */
.salo-price-list.layout-cards .price-info {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: var(--space-4);
}

.salo-price-list.layout-cards .price-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-medium);
    color: var(--salo-dark);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.salo-price-list.layout-cards .price-duration {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--salo-gray);
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0;
}

/* Card Divider */
.salo-price-list.layout-cards .price-divider {
    width: 40px;
    height: 1px;
    background: var(--salo-primary-light);
    margin: 0 auto var(--space-4);
    transition: width 0.35s ease;
}

.salo-price-list.layout-cards .price-item:hover .price-divider {
    width: 80px;
    background: var(--salo-primary);
}

/* Card Price Typography */
.salo-price-list.layout-cards .price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: var(--space-6);
    flex: 0 0 auto;
}

.salo-price-list.layout-cards .price-amount .currency {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--salo-gray-dark);
    font-weight: var(--weight-medium);
}

.salo-price-list.layout-cards .price-amount .amount {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--salo-primary-dark);
}

/* Card CTA Button */
.salo-price-list.layout-cards .price-action {
    width: 100%;
    margin-top: auto;
}

.salo-price-list.layout-cards .price-action .btn-book {
    width: 100%;
    justify-content: center;
    padding: 0.8rem var(--space-5);
    font-size: var(--text-xs);
    white-space: nowrap !important;
}

/* Card Popular Highlighting */
.salo-price-list.layout-cards .price-item.popular {
    border-color: var(--salo-primary);
    border-top: 4px solid var(--salo-primary);
    background: linear-gradient(180deg, #FCF8F2, var(--salo-white));
}

.salo-price-list.layout-cards .popular-tag {
    position: absolute;
    top: -12px;
    right: var(--space-6);
    background: linear-gradient(135deg, var(--salo-primary), var(--salo-primary-dark));
    color: var(--salo-white);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    padding: 3px var(--space-4);
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(201, 169, 110, 0.2);
}


/* ==========================================
   GALLERY
   ========================================== */
.salo-gallery {
    padding: var(--section-py) 0;
    background: var(--salo-cream);
}

.salo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}

.salo-gallery-grid .gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.salo-gallery-grid .gallery-item:nth-child(5) {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.gallery-item-overlay i {
    color: var(--salo-white);
    font-size: 1.5rem;
    transform: scale(0.5);
    transition: transform var(--transition-bounce);
}

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

.gallery-item-tag {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 169, 110, 0.35);
    color: var(--salo-primary);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: var(--weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-item-tag {
    opacity: 0;
    transform: translateY(5px);
}

/* ==========================================
   BEFORE & AFTER
   ========================================== */
.salo-before-after {
    padding: var(--section-py) 0;
    background: var(--salo-cream);
}

.ba-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.ba-tab-btn {
    padding: var(--space-2) var(--space-6);
    background: transparent;
    border: 1px solid var(--salo-primary);
    color: var(--salo-primary);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.ba-tab-btn.active,
.ba-tab-btn:hover {
    background: var(--salo-primary);
    color: var(--salo-white);
}

.salo-ba-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    display: none;
    box-shadow: var(--shadow-xl);
}

.salo-ba-container.active {
    display: block;
}

.ba-before {
    position: absolute;
    inset: 0;
}

.ba-after {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 0 var(--ba-clip, 50%));
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block;
    pointer-events: none;
}

.ba-before img {
    aspect-ratio: 16/9;
}

.ba-label {
    position: absolute;
    top: var(--space-4);
    padding: var(--space-1) var(--space-4);
    background: rgba(0, 0, 0, 0.6);
    color: var(--salo-white);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.ba-before-label {
    left: var(--space-4);
}

.ba-after-label {
    right: var(--space-4);
}

.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--salo-white);
    transform: translateX(-50%);
    cursor: ew-resize;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--salo-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    color: var(--salo-white);
    font-size: 0.65rem;
    box-shadow: var(--shadow-md);
}

.ba-hint {
    text-align: center;
    margin-top: var(--space-5);
    color: var(--salo-gray-dark);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

/* ==========================================
   TEAM
   ========================================== */
.salo-team {
    padding: var(--section-py) 0;
    background: var(--salo-light);
}

.salo-team-grid {
    display: grid;
    gap: var(--space-6);
}

.salo-team-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.salo-team-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.salo-team-card {
    background: var(--salo-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--salo-border);
    transition: all var(--transition-normal);
}

.salo-team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.team-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.salo-team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--salo-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--salo-primary);
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.salo-team-card:hover .team-card-overlay {
    opacity: 1;
}

.team-overlay-content {
    text-align: center;
    padding: var(--space-5);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.salo-team-card:hover .team-overlay-content {
    transform: translateY(0);
}

.team-overlay-content p {
    color: var(--salo-white);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.team-social {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--salo-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background: var(--salo-white);
    color: var(--salo-primary);
}

.team-card-body {
    padding: var(--space-5);
    text-align: center;
}

.team-name {
    font-size: var(--text-lg);
    margin-bottom: var(--space-1);
}

.team-role {
    color: var(--salo-primary);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    margin-bottom: var(--space-2);
}

.team-experience {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    color: var(--salo-gray);
    background: var(--salo-beige);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.salo-testimonials {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--salo-cream) 0%, var(--salo-beige) 100%);
}

.salo-testimonials-slider {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: var(--space-6);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.salo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.salo-testimonial-card {
    background: var(--salo-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--salo-border);
    min-width: 100%;
    position: relative;
}

.salo-testimonials-grid .salo-testimonial-card {
    min-width: auto;
}

.testimonial-quote {
    color: var(--salo-primary);
    opacity: 0.3;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: var(--space-3);
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-style: italic;
    line-height: var(--leading-relaxed);
    color: var(--salo-dark);
    margin: var(--space-4) 0 var(--space-6);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--salo-primary-light);
}

.testimonial-avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--salo-primary), var(--salo-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--salo-white);
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-weight: var(--weight-semibold);
    color: var(--salo-dark);
    font-size: var(--text-base);
}

.author-info span {
    font-size: var(--text-sm);
    color: var(--salo-gray);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.tes-prev,
.tes-next {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--salo-white);
    border: 1.5px solid var(--salo-primary);
    color: var(--salo-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: var(--text-sm);
}

.tes-prev:hover,
.tes-next:hover {
    background: var(--salo-primary);
    color: var(--salo-white);
}

.testimonials-dots {
    display: flex;
    gap: var(--space-2);
}

.testimonials-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--salo-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials-dots .dot.active {
    width: 24px;
    background: var(--salo-primary);
}

/* ==========================================
   APPOINTMENT SECTION
   ========================================== */
.salo-appointment {
    padding: var(--section-py) 0;
}

.salo-appointment-widget {
    background: var(--salo-beige);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.appointment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(252, 250, 247, 0.9);
}

.appointment-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    padding: var(--space-16);
}

.appointment-content .salo-section-header h2 {
    color: var(--salo-dark);
}

.appointment-content .salo-section-header .subtitle {
    color: var(--salo-primary);
}

.appointment-content .salo-section-header p {
    color: var(--salo-gray-dark);
}

.appointment-cta-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.appointment-cta-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: var(--salo-white);
    border: 1px solid var(--salo-border);
    border-radius: var(--radius-lg);
    color: var(--salo-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.appointment-cta-item:hover {
    background: var(--salo-primary-light);
    border-color: var(--salo-primary);
    color: var(--salo-primary-dark);
}

.cta-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.appointment-cta-item.whatsapp .cta-icon {
    background: rgba(201, 169, 110, 0.2);
    color: var(--salo-primary);
}

.appointment-cta-item.call .cta-icon {
    background: rgba(201, 169, 110, 0.2);
    color: var(--salo-primary);
}

.appointment-cta-item.hours .cta-icon {
    background: rgba(232, 196, 184, 0.2);
    color: var(--salo-secondary);
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-text span {
    font-size: var(--text-xs);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-text strong {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
}

.appointment-form-wrap {
    background: var(--salo-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
}

.salo-default-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

/* ==========================================
   APPOINTMENT SUBMIT BUTTON — FORCE THEME
   ========================================== */
.appointment-form-wrap button[type="submit"],
.salo-form button[type="submit"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 1rem 2.25rem !important;
    font-family: var(--font-body) !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    border-radius: 9999px !important;
    border: none !important;
    cursor: pointer !important;
    background: linear-gradient(135deg, #C9A96A 0%, #B59357 100%) !important;
    color: #FCFAF7 !important;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35) !important;
    transition: all 0.3s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}

.appointment-form-wrap button[type="submit"]:hover,
.salo-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #B59357 0%, #C9A96A 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(201, 169, 110, 0.5) !important;
    color: #FCFAF7 !important;
}

/* ==========================================
   BLOG SECTION
   ========================================== */
.salo-blog {
    padding: var(--section-py) 0;
    background: var(--salo-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.blog-card {
    background: var(--salo-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--salo-border);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-cat {
    display: inline-block;
    background: var(--salo-beige);
    color: var(--salo-primary-dark);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.blog-card-cat:hover {
    background: var(--salo-primary);
    color: var(--salo-white);
}

.blog-card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    line-height: var(--leading-snug);
}

.blog-card-title a {
    color: var(--salo-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--salo-primary);
}

.blog-card-excerpt {
    font-size: var(--text-sm);
    color: var(--salo-gray);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--salo-border);
    margin-top: auto;
}

.blog-meta {
    display: flex;
    gap: var(--space-3);
}

.blog-meta span {
    font-size: var(--text-xs);
    color: var(--salo-gray);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.salo-faq {
    padding: var(--section-py) 0;
    background: var(--salo-cream);
}

.salo-faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--salo-white);
    border: 1px solid var(--salo-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item.open {
    border-color: var(--salo-primary-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    user-select: none;
    gap: var(--space-4);
}

.faq-question h4 {
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--salo-dark);
    margin: 0;
    font-family: var(--font-body);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--salo-beige);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--salo-primary);
    font-size: var(--text-sm);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.faq-item.open .faq-icon {
    background: var(--salo-primary);
    color: var(--salo-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 var(--space-6) var(--space-5);
    color: var(--salo-gray-dark);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */
.salo-instagram {
    padding: var(--section-py) 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-2);
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    color: var(--salo-white);
    font-size: 1.5rem;
}

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

.instagram-cta {
    text-align: center;
    margin-top: var(--space-8);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.salo-contact {
    padding: var(--section-py) 0;
    background: var(--salo-beige);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
    align-items: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.contact-info-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--salo-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--salo-primary);
    font-size: var(--text-lg);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    font-weight: var(--weight-semibold);
    color: var(--salo-dark);
    margin-bottom: var(--space-1);
}

.contact-info-text span,
.contact-info-text a {
    font-size: var(--text-sm);
    color: var(--salo-gray-dark);
    text-decoration: none;
    display: block;
}

.contact-info-text a:hover {
    color: var(--salo-primary);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-6);
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* ==========================================
   STATS WIDGET
   ========================================== */
.salo-stats-widget.layout-horizontal {
    display: flex;
    gap: 0;
    background: var(--salo-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.salo-stats-widget.layout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.salo-stats-widget.layout-horizontal .stat-item {
    flex: 1;
    padding: var(--space-8) var(--space-6);
    text-align: center;
    border-right: 1px solid var(--salo-border);
}

.salo-stats-widget.layout-horizontal .stat-item:last-child {
    border-right: none;
}

.salo-stats-widget.layout-grid .stat-item {
    background: var(--salo-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--salo-border);
    transition: all var(--transition-normal);
}

.salo-stats-widget.layout-grid .stat-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--salo-primary);
    margin-bottom: var(--space-3);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--weight-bold);
    color: var(--salo-primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--salo-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-desc {
    font-size: var(--text-xs);
    color: var(--salo-gray);
    margin-top: var(--space-1);
}

/* ==========================================
   HOURS WIDGET
   ========================================== */
.salo-hours-widget .hours-widget-title {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
    color: var(--salo-dark);
}

.salo-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--salo-border);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.today {
    border-left: 3px solid var(--salo-primary);
    padding-left: var(--space-3);
    margin-left: -var(--space-3);
}

.hours-item .day {
    color: var(--salo-dark-soft);
    font-weight: var(--weight-medium);
}

.hours-item.today .day {
    color: var(--salo-primary);
}

.hours-item .day em {
    font-style: normal;
    font-size: var(--text-xs);
    opacity: 0.7;
}

.hours-time {
    color: var(--salo-gray-dark);
}

.hours-time.closed {
    color: #E57373;
    font-style: italic;
}

/* ==========================================
   PAGE HERO / BREADCRUMB
   ========================================== */
.salo-page-hero {
    position: relative;
    padding: 7rem 0 5rem;
    background: url('../images/page-hero-bg.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.salo-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85), rgba(30, 30, 30, 0.4));
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    color: var(--salo-white);
    margin-bottom: var(--space-3);
}

.salo-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

.salo-breadcrumb a {
    color: var(--salo-primary);
    text-decoration: none;
}

.salo-breadcrumb a:hover {
    color: var(--salo-white);
}

.salo-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.6rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.salo-footer {
    background: var(--salo-beige);
    border-top: 1px solid var(--salo-border);
}

.footer-widgets-area {
    padding: var(--space-20) 0 var(--space-12);
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-10);
}

.footer-logo {
    margin-bottom: var(--space-4);
}

.footer-logo img {
    max-height: 50px;
}

.footer-about {
    color: var(--salo-gray-dark);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.footer-social .salo-social-links {
    display: flex;
    gap: var(--space-2);
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-4);
}

.footer-social .salo-social-links a {
    width: 36px;
    height: 36px;
    background: var(--salo-white);
    color: var(--salo-gray-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    border: 1px solid var(--salo-border);
}

.footer-social .salo-social-links a:hover {
    background: var(--salo-primary);
    color: var(--salo-white);
    border-color: var(--salo-primary);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--salo-gray-dark);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-item:hover {
    color: var(--salo-primary);
}

.footer-whatsapp:hover {
    color: #25D366;
}

.footer-contact-item i {
    color: var(--salo-primary);
    font-size: 0.875rem;
}

.footer-widget-title {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--salo-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--salo-primary);
    display: inline-block;
}

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

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--salo-gray-dark);
    font-size: var(--text-sm);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--salo-primary);
    padding-left: var(--space-2);
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--salo-primary);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-contact-list li {
    display: flex;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--salo-gray-dark);
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--salo-primary);
    margin-top: 2px;
}

.footer-contact-list a {
    color: var(--salo-gray-dark);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: var(--salo-primary);
}

.footer-hours-title {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--salo-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
}

.footer-widget-col .salo-hours-list .hours-item {
    color: var(--salo-gray-dark);
    border-bottom-color: var(--salo-border);
}

.footer-widget-col .salo-hours-list .hours-item .day {
    color: var(--salo-dark);
}

.footer-widget-col .salo-hours-list .hours-item.today .day {
    color: var(--salo-primary);
}

.footer-widget-col .salo-hours-list .hours-item.today {
    border-left-color: var(--salo-primary);
}

.footer-newsletter-desc {
    color: var(--salo-gray-dark);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.newsletter-input-wrap {
    display: flex;
    background: var(--salo-white);
    border: 1px solid var(--salo-border);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-4);
    transition: border-color var(--transition-fast);
}

.newsletter-input-wrap:focus-within {
    border-color: var(--salo-primary);
}

.newsletter-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.875rem var(--space-5);
    color: var(--salo-dark);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    outline: none;
}

.newsletter-input-wrap input::placeholder {
    color: var(--salo-gray);
}

.newsletter-input-wrap .btn {
    border-radius: 0;
    padding: 0.875rem var(--space-5);
    border: none;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-5);
    border-color: var(--salo-border);
    color: var(--salo-gray-dark);
}

.footer-map-link:hover {
    border-color: var(--salo-primary);
    color: var(--salo-primary);
}

/* Footer Bottom */
.footer-bottom {
    padding: var(--space-5) 0;
    border-top: 1px solid var(--salo-border);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--salo-gray-dark);
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.footer-bottom-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--space-4);
}

.footer-bottom-menu a {
    font-size: var(--text-xs);
    color: var(--salo-gray-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom-menu a:hover {
    color: var(--salo-primary);
}

.footer-made {
    font-size: var(--text-sm);
    color: var(--salo-gray-dark);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

/* ==========================================
   WOOCOMMERCE
   ========================================== */
.salo-woo-wrapper {
    padding: var(--section-py) 0;
}

.salo-woo-content {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-10);
    align-items: start;
}

/* ==========================================
   PAGINATION
   ========================================== */
.page-numbers {
    display: flex;
    gap: var(--space-2);
    list-style: none;
    padding: 0;
    margin: var(--space-12) 0 0;
    justify-content: center;
}

.page-numbers li a,
.page-numbers li span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    background: var(--salo-white);
    border: 1.5px solid var(--salo-border);
    color: var(--salo-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.page-numbers li a:hover,
.page-numbers li .current {
    background: var(--salo-primary);
    border-color: var(--salo-primary);
    color: var(--salo-white);
}

/* Tighten bottom action button margins globally */
.salo-services .container>.text-center,
.salo-pricing .container>.text-center,
.salo-gallery .container>.text-center,
.salo-faq .container>.text-center,
.salo-blog .container>.text-center,
.about-cta-wrap {
    margin-top: 2rem !important;
}