:root {
    --kimih-primary-start: rgba(221, 63, 235, 1);
    --kimih-primary-end: rgba(58, 55, 236, 1);
    --kimih-primary-gradient: linear-gradient(267deg, var(--kimih-primary-start) 0%, var(--kimih-primary-end) 100%);
    --kimih-bg-light: #f9fafb;
    --kimih-text-dark: #1f2937;
    --kimih-text-muted: #6b7280;
    --kimih-border-color: #f3f4f6;
    --kimih-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --kimih-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --kimih-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --kimih-card-bg: #ffffff;
}

/* Base utilities */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.kimih-section-spacing {
    padding: 90px 0;
}

@media (max-width: 768px) {
    .kimih-section-spacing {
        padding: 55px 0;
    }
}

.kimih-section-header {
    margin-bottom: 45px;
    text-align: center;
}

.kimih-section-header span {
    font-size: 13px;
    font-weight: 700;
    color: var(--kimih-primary-start);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.kimih-section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--kimih-text-dark);
}

@media (max-width: 768px) {
    .kimih-section-header h2 {
        font-size: 26px;
    }
}

/* Popular Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
        gap: 12px;
        scrollbar-width: none;
        width: 100%;
    }
    .categories-grid::-webkit-scrollbar {
        display: none;
    }
    .category-card-wrapper {
        flex: 0 0 135px;
        scroll-snap-align: start;
    }
}

.category-card {
    background: var(--kimih-card-bg);
    border: 1px solid var(--kimih-border-color);
    border-radius: 16px;
    padding: 22px 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: var(--kimih-shadow-sm);
    text-decoration: none !important;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--kimih-shadow-md), 0 0 0 2px var(--kimih-primary-start);
    border-color: transparent;
}

.category-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(221, 63, 235, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-wrapper {
    background: var(--kimih-primary-gradient);
}

.category-icon-wrapper img {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-wrapper img {
    filter: brightness(0) invert(1);
}

.category-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--kimih-text-dark);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.category-card span {
    font-size: 11px;
    color: var(--kimih-text-muted);
}

/* Business / Salon Cards */
.salon-card {
    background: var(--kimih-card-bg);
    border: 1px solid var(--kimih-border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--kimih-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.salon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--kimih-shadow-lg);
    border-color: rgba(221, 63, 235, 0.15);
}

.salon-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.666%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.salon-card-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.salon-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--kimih-primary-gradient);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: var(--kimih-shadow-sm);
}

.salon-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.salon-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.salon-card-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--kimih-primary-start);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salon-card-rating {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--kimih-text-dark);
}

.salon-card-rating i {
    color: #fbbf24;
    margin-right: 4px;
}

.salon-card-rating span {
    font-weight: 500;
    color: var(--kimih-text-muted);
    margin-left: 3px;
}

.salon-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--kimih-text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.2s ease;
    text-decoration: none !important;
}

.salon-card-title:hover {
    color: var(--kimih-primary-start);
}

.salon-card-location {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--kimih-text-muted);
    margin-bottom: 16px;
}

.salon-card-location i {
    margin-right: 6px;
    font-size: 14px;
    color: var(--kimih-primary-end);
}

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

.salon-card-price {
    display: flex;
    flex-direction: column;
}

.salon-card-price .price-label {
    font-size: 11px;
    color: var(--kimih-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salon-card-price .price-value {
    font-size: 17px;
    font-weight: 800;
    color: var(--kimih-text-dark);
}

.salon-card-actions {
    display: flex;
    gap: 8px;
}

.salon-btn-view, .salon-btn-book {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.salon-btn-view {
    color: var(--kimih-text-dark);
    background: #f3f4f6;
    border: 1px solid transparent;
}

.salon-btn-view:hover {
    background: #e5e7eb;
}

.salon-btn-book {
    color: #ffffff;
    background: var(--kimih-primary-gradient);
    border: none;
    box-shadow: var(--kimih-shadow-sm);
}

.salon-btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(58, 55, 236, 0.3);
}

/* Explore All Section */
.explore-all-btn-container {
    margin-top: 40px;
    text-align: center;
}

.explore-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff !important;
    background: var(--kimih-primary-gradient);
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--kimih-shadow-md);
}

.explore-all-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.explore-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(221, 63, 235, 0.4);
}

.explore-all-btn:hover i {
    transform: translateX(4px);
}

/* How Kimih Works Section */
.journey-wrapper {
    position: relative;
}

.journey-line {
    position: absolute;
    top: 65px;
    left: 16.666%;
    right: 16.666%;
    height: 2px;
    background: dashed rgba(58, 55, 236, 0.25);
    z-index: 0;
}

@media (max-width: 768px) {
    .journey-line {
        display: none;
    }
}

.journey-step {
    text-align: center;
    position: relative;
    padding: 20px;
    z-index: 1;
}

.journey-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(180deg, rgba(221, 63, 235, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -20px;
    line-height: 1;
}

.journey-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: var(--kimih-shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--kimih-border-color);
    font-size: 24px;
    color: var(--kimih-primary-start);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-step:hover .journey-icon {
    background: var(--kimih-primary-gradient);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.journey-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--kimih-text-dark);
    margin-bottom: 10px;
}

.journey-step p {
    font-size: 14px;
    color: var(--kimih-text-muted);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Why Choose Kimih Section */
.benefit-card {
    background: var(--kimih-card-bg);
    border: 1px solid var(--kimih-border-color);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--kimih-shadow-sm);
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--kimih-shadow-md);
    border-color: rgba(221, 63, 235, 0.1);
}

.benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(221, 63, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--kimih-primary-start);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--kimih-text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--kimih-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* For Business Section */
.business-banner-area {
    background: radial-gradient(circle at 10% 20%, rgba(58, 55, 236, 0.02) 0%, rgba(221, 63, 235, 0.02) 90%);
    border-radius: 30px;
    padding: 60px;
    margin: 40px 0;
    border: 1px solid rgba(221, 63, 235, 0.04);
}

@media (max-width: 768px) {
    .business-banner-area {
        padding: 30px;
        margin: 20px 0;
    }
}

.business-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--kimih-text-dark);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .business-content h2 {
        font-size: 26px;
    }
}

.business-content p {
    font-size: 16px;
    color: var(--kimih-text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.business-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 576px) {
    .business-checklist {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.business-checklist-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--kimih-text-dark);
}

.business-checklist-item i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(58, 55, 236, 0.1);
    color: var(--kimih-primary-end);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
}

.business-cta-group {
    display: flex;
    gap: 16px;
}

@media (max-width: 576px) {
    .business-cta-group {
        flex-direction: column;
        gap: 12px;
    }
}

.btn-business-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--kimih-primary-gradient);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--kimih-shadow-sm);
    text-decoration: none !important;
}

.btn-business-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 63, 235, 0.3);
}

.btn-business-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #ffffff;
    color: var(--kimih-text-dark) !important;
    font-weight: 700;
    border-radius: 30px;
    border: 1px solid var(--kimih-border-color);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-business-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.business-visual img {
    border-radius: 20px;
    box-shadow: var(--kimih-shadow-lg);
    transition: transform 0.5s ease;
}

.business-visual:hover img {
    transform: scale(1.01);
}

/* Wellness Video Section */
.wellness-video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000000;
    aspect-ratio: 16/9;
    box-shadow: var(--kimih-shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wellness-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: transform 0.8s ease;
}

.wellness-video-card:hover .wellness-video-placeholder {
    transform: scale(1.04);
}

.wellness-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 1;
    text-align: center;
}

.wellness-video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--kimih-primary-start);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 24px;
    text-decoration: none !important;
}

.wellness-video-play-btn:hover {
    transform: scale(1.15);
    background: var(--kimih-primary-gradient);
    color: #ffffff;
    box-shadow: 0 0 40px var(--kimih-primary-start);
}

.wellness-video-overlay h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .wellness-video-overlay h3 {
        font-size: 22px;
    }
}

.wellness-video-overlay p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0;
}

@media (max-width: 768px) {
    .wellness-video-overlay p {
        font-size: 13px;
    }
}

/* Testimonials Section */
.testimonial-card-modern {
    background: var(--kimih-card-bg);
    border: 1px solid var(--kimih-border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--kimih-shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-modern:hover {
    box-shadow: var(--kimih-shadow-md);
    border-color: rgba(221, 63, 235, 0.1);
}

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
    color: var(--kimih-text-dark);
    margin-bottom: 24px;
    flex-grow: 1;
    position: relative;
}

.testimonial-quote::before {
    content: '“';
    font-size: 40px;
    font-weight: bold;
    color: rgba(221, 63, 235, 0.15);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-user {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--kimih-border-color);
    padding-top: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #ffffff;
    box-shadow: var(--kimih-shadow-sm);
}

.testimonial-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--kimih-text-dark);
    margin: 0 0 2px 0;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 11px;
}

.testimonial-verified {
    font-size: 10px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-verified i {
    font-size: 9px;
}

/* Custom Footer Section */
.kimih-footer {
    background: #0b0f19;
    color: #9ca3af;
    padding-top: 80px;
}

.kimih-footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid #1f2937;
}

.kimih-footer-brand h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--kimih-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kimih-footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.kimih-footer-social {
    display: flex;
    gap: 12px;
}

.kimih-footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1f2937;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.kimih-footer-social-link:hover {
    background: var(--kimih-primary-gradient);
    transform: translateY(-2px);
}

.kimih-footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.kimih-footer-links a {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.kimih-footer-links a:hover {
    color: #ffffff;
}

.kimih-footer-newsletter h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.kimih-footer-newsletter p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.kimih-newsletter-form {
    position: relative;
    display: flex;
    background: #1f2937;
    padding: 6px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.kimih-newsletter-form:focus-within {
    border-color: var(--kimih-primary-start);
}

.kimih-newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    width: 100%;
}

.kimih-newsletter-form input::placeholder {
    color: #9ca3af;
}

.kimih-newsletter-form button {
    background: var(--kimih-primary-gradient);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.kimih-newsletter-form button:hover {
    box-shadow: 0 2px 8px rgba(221, 63, 235, 0.4);
}

.kimih-footer-bottom {
    padding: 30px 0;
    font-size: 13px;
    text-align: center;
}

.kimih-footer-bottom p {
    margin: 0;
}

/* ==========================================================================
   Redesigned Hero & Search Sections
   ========================================================================== */
.hero-wrapper-modern {
    background: linear-gradient(135deg, #1b0c36 0%, #301463 35%, #4b1fa8 70%, #6d28d9 100%);
    position: relative;
    padding: 120px 0 180px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-wrapper-modern {
        padding: 80px 0 120px;
    }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: pulseBlobs 10s infinite alternate ease-in-out;
}

.hero-blob-1 {
    width: 300px;
    height: 300px;
    background: var(--kimih-primary-start);
    top: -50px;
    left: -50px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: #c026d3;
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

@keyframes pulseBlobs {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(20px, 20px);
    }
}

.hero-title-modern {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    max-width: 900px;
    margin: 0 auto 20px;
    letter-spacing: -0.5px;
    z-index: 2;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle-modern {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.7;
    z-index: 2;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Journey Indicator */
.hero-journey-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    z-index: 2;
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@media (max-width: 576px) {
    .hero-journey-indicator {
        gap: 6px;
        padding: 4px 8px;
        margin-bottom: 35px;
    }
}

.hero-journey-step {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .hero-journey-step {
        font-size: 10px;
        padding: 4px 10px;
    }
}

.hero-journey-step.is-active {
    background: #ffffff;
    color: #4b1fa8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-journey-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

/* SVG Wave Divider */
.hero-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

@media (max-width: 768px) {
    .hero-wave-divider svg {
        height: 40px;
    }
}

.hero-wave-divider path {
    fill: #ffffff;
}

/* Floating Search Card */
.search-card-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(50, 20, 100, 0.12);
    border: 1px solid #f3f4f6;
    margin-top: -65px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@media (max-width: 768px) {
    .search-card-wrapper {
        margin-top: -45px;
        padding: 16px;
        border-radius: 20px;
    }
}

.search-fields-container {
    display: grid;
    grid-template-columns: 2.3fr 2fr 1.4fr 1.2fr 1.8fr;
    gap: 16px;
    align-items: center;
}

@media (max-width: 991px) {
    .search-fields-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.search-field-col {
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .search-field-col:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -8px;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #e5e7eb;
    }
}

.search-field-group {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.search-field-icon {
    font-size: 16px;
    color: var(--kimih-primary-start);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.search-field-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.search-field-content label {
    font-size: 11px;
    font-weight: 700;
    color: var(--kimih-text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.search-field-content select,
.search-field-content input {
    border: none !important;
    background: transparent !important;
    padding: 4px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--kimih-text-dark) !important;
    outline: none !important;
    width: 100% !important;
    box-shadow: none !important;
}

.search-field-content select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Submit search button */
.search-submit-btn {
    width: 100%;
    height: 52px;
    background: var(--kimih-primary-gradient);
    color: #ffffff !important;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(93, 40, 217, 0.25);
}

.search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(93, 40, 217, 0.35);
}

.search-submit-btn i {
    font-size: 14px;
}

/* Suggestions Container styling inside search card */
#suggestionsContainer {
    position: relative;
    width: 100%;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Custom Dropdown Styles */
.custom-dropdown-container {
    position: relative;
    width: 100%;
}

.custom-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    background: transparent;
    padding: 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--kimih-text-dark);
    text-align: left;
    cursor: pointer;
    outline: none;
}

.custom-dropdown-trigger:focus-visible {
    outline: 2px solid var(--kimih-primary-start);
    outline-offset: 4px;
    border-radius: 4px;
}

.selected-text-holder {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 90%;
}

.dropdown-arrow-icon {
    font-size: 11px;
    color: var(--kimih-text-muted);
    transition: transform 0.2s ease;
}

.custom-dropdown-trigger[aria-expanded="true"] .dropdown-arrow-icon {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 280px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--kimih-border-color);
    box-shadow: 0 10px 30px rgba(50, 20, 100, 0.1);
    list-style: none;
    margin: 0;
    padding: 8px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.2s ease-out;
}

.custom-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown-item {
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--kimih-text-dark);
    transition: background-color 0.15s ease, color 0.15s ease;
    outline: none;
    gap: 12px;
}

.custom-dropdown-item:hover,
.custom-dropdown-item:focus {
    background-color: rgba(109, 40, 217, 0.06);
    color: #4b1fa8;
}

.custom-dropdown-item.selected {
    background-color: rgba(109, 40, 217, 0.04);
    color: #4b1fa8;
    font-weight: 600;
}

.custom-dropdown-item .item-icon {
    font-size: 16px;
    color: var(--kimih-primary-start);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.custom-dropdown-item .item-text {
    flex-grow: 1;
}

.custom-dropdown-item .check-icon {
    font-size: 12px;
    color: var(--kimih-primary-start);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.custom-dropdown-item.selected .check-icon {
    opacity: 1;
}

/* Field columns focus highlighting */
.search-field-col {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
    border-radius: 14px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 992px) {
    .search-field-col:focus-within {
        background-color: rgba(109, 40, 217, 0.04);
        box-shadow: 0 0 0 1px rgba(109, 40, 217, 0.15);
    }
}

@media (max-width: 991px) {
    .search-field-col {
        border: 1px solid var(--kimih-border-color);
        margin-bottom: 4px;
    }
    .search-field-col:focus-within {
        border-color: rgba(109, 40, 217, 0.35);
        box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.08);
        background-color: rgba(109, 40, 217, 0.02);
    }
}

/* Autocomplete suggestions dropdown styles */
.ui-autocomplete {
    background: #ffffff !important;
    border-radius: 14px !important;
    border: 1px solid var(--kimih-border-color) !important;
    box-shadow: 0 10px 30px rgba(50, 20, 100, 0.1) !important;
    padding: 8px !important;
    list-style: none !important;
    max-height: 250px !important;
    overflow-y: auto !important;
    z-index: 1050 !important;
}

.ui-autocomplete li {
    margin: 0 !important;
    padding: 0 !important;
}

.ui-autocomplete li div {
    display: flex !important;
    align-items: center !important;
    height: 44px !important;
    padding: 0 16px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    color: var(--kimih-text-dark) !important;
    transition: background-color 0.15s ease, color 0.15s ease !important;
    border: none !important;
    background: transparent !important;
}

.ui-autocomplete li div:hover,
.ui-autocomplete li div.ui-state-active {
    background-color: rgba(109, 40, 217, 0.06) !important;
    color: #4b1fa8 !important;
    border: none !important;
    margin: 0 !important;
}

/* jQuery UI Datepicker overrides */
.ui-datepicker {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid var(--kimih-border-color) !important;
    box-shadow: 0 15px 35px rgba(50, 20, 100, 0.12) !important;
    padding: 16px !important;
    width: 290px !important;
    z-index: 1050 !important;
    display: none;
}

.ui-datepicker-header {
    background: transparent !important;
    border: none !important;
    padding: 0 0 12px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
}

.ui-datepicker-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--kimih-text-dark) !important;
    text-align: center !important;
    flex-grow: 1 !important;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    width: 28px !important;
    height: 28px !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(109, 40, 217, 0.06) !important;
    color: #4b1fa8 !important;
    transition: all 0.2s ease !important;
    border: none !important;
    position: relative !important;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    background: rgba(109, 40, 217, 0.12) !important;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
    display: block !important;
    text-indent: 0 !important;
    overflow: visible !important;
    background-image: none !important;
    font-size: 11px !important;
    font-weight: bold !important;
}

.ui-datepicker-prev span::before {
    content: "←" !important;
}

.ui-datepicker-next span::before {
    content: "→" !important;
}

.ui-datepicker-calendar {
    width: 100% !important;
    margin: 0 !important;
    border-collapse: collapse !important;
}

.ui-datepicker-calendar th {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--kimih-text-muted) !important;
    text-transform: uppercase !important;
    padding: 4px 0 !important;
    text-align: center !important;
}

.ui-datepicker-calendar td {
    padding: 2px !important;
    text-align: center !important;
}

.ui-datepicker-calendar td a {
    display: block !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    border-radius: 50% !important;
    color: var(--kimih-text-dark) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.15s ease !important;
    margin: 0 auto !important;
    border: none !important;
    background: transparent !important;
}

.ui-datepicker-calendar td a:hover {
    background: rgba(109, 40, 217, 0.06) !important;
    color: #4b1fa8 !important;
}

.ui-datepicker-calendar td .ui-state-active {
    background: var(--kimih-primary-gradient) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(93, 40, 217, 0.3) !important;
}

.ui-datepicker-calendar td .ui-state-highlight {
    background: rgba(109, 40, 217, 0.1) !important;
    color: #4b1fa8 !important;
    font-weight: 700 !important;
}

/* ==========================================================================
   Business Landing Page Redesign
   ========================================================================== */
.for-business-banner-modern {
    background: linear-gradient(135deg, #1b0c36 0%, #301463 35%, #4b1fa8 70%, #6d28d9 100%);
    position: relative;
    padding: 130px 0 190px;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    z-index: 1;
}

@media (max-width: 768px) {
    .for-business-banner-modern {
        padding: 90px 0 130px;
    }
}

.for-business-banner-modern h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    max-width: 900px;
    margin: 0 auto 20px;
    letter-spacing: -0.5px;
}

.for-business-banner-modern h4 {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.7;
    font-weight: 500;
}

.for-business-banner-modern .default-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    background: #ffffff;
    color: #4b1fa8 !important;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.for-business-banner-modern .default-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.business-mockup-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 25px 55px rgba(50, 20, 100, 0.15);
    border: 1px solid #f3f4f6;
    margin-top: -120px;
    position: relative;
    z-index: 10;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .business-mockup-wrapper {
        margin-top: -80px;
        border-radius: 16px;
        padding: 8px;
    }
}

.business-mockup-wrapper img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
}

/* Stats metrics styling */
.business-stats {
    padding: 90px 0;
    background: #f9fafb;
}

.business-stats h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--kimih-text-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.business-stats p {
    font-size: 15px;
    color: var(--kimih-text-muted);
    line-height: 1.8;
}

.business-metric-card {
    background: #ffffff;
    border: 1px solid var(--kimih-border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--kimih-shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--kimih-shadow-md);
    border-color: rgba(109, 40, 217, 0.25);
}

.business-metric-card h4 {
    font-size: 32px;
    font-weight: 800;
    background: var(--kimih-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.business-metric-card p {
    font-size: 11px;
    color: var(--kimih-text-muted);
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grow Business Features */
.grow-business {
    padding: 90px 0;
    background: #ffffff;
}

.grow-business h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--kimih-text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.grow-business h6 {
    font-size: 15px;
    color: var(--kimih-text-muted);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-align: center;
    line-height: 1.7;
}

.grow-business .feature-card-modern {
    background: #ffffff;
    border: 1px solid var(--kimih-border-color);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--kimih-shadow-sm);
    transition: all 0.3s ease;
}

.grow-business .feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--kimih-shadow-lg);
    border-color: rgba(109, 40, 217, 0.2);
}

.grow-business .feature-card-modern img {
    height: 52px;
    width: auto;
    margin-bottom: 24px;
    object-fit: contain;
}

.grow-business .feature-card-modern h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--kimih-text-dark);
    margin-bottom: 14px;
}

.grow-business .feature-card-modern p {
    font-size: 14px;
    color: var(--kimih-text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Alternate Business Info Section */
.business-info-section-modern {
    padding: 70px 0;
}

.business-info-section-modern h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--kimih-text-dark);
    margin-bottom: 20px;
}

.business-info-section-modern p {
    font-size: 15px;
    color: var(--kimih-text-muted);
    line-height: 1.8;
}

.business-info-section-modern img {
    border-radius: 20px;
    box-shadow: var(--kimih-shadow-lg);
}

/* Selectable Services Cards */
.business-started {
    padding: 90px 0;
}

.services-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .services-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .services-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.service-selectable-card {
    cursor: pointer;
    position: relative;
    display: block;
}

.service-selectable-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: #ffffff;
    border: 1px solid var(--kimih-border-color);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--kimih-shadow-sm);
}

.service-selectable-card:hover .service-card-inner {
    transform: translateY(-2px);
    box-shadow: var(--kimih-shadow-md);
    border-color: rgba(109, 40, 217, 0.25);
}

.service-card-inner img {
    height: 38px;
    width: auto;
    margin-bottom: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-selectable-card:hover .service-card-inner img {
    transform: scale(1.1);
}

.service-card-inner span {
    font-size: 13px;
    font-weight: 700;
    color: var(--kimih-text-dark);
}

/* Checked state */
.service-selectable-card input[type="checkbox"]:checked + .service-card-inner {
    border-color: #4b1fa8;
    background-color: rgba(109, 40, 217, 0.04);
    box-shadow: 0 0 0 2px rgba(109, 40, 217, 0.1);
}

.service-selectable-card input[type="checkbox"]:checked + .service-card-inner span {
    color: #4b1fa8;
}

/* Enable native smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   FRESHA-GRADE VENUE & BOOKING EXPERIENCE STYLES
   ========================================================================== */

.fresha-page-wrapper {
    background-color: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
    padding-bottom: 80px;
}

/* Breadcrumb */
.fresha-breadcrumb {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fresha-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fresha-breadcrumb a:hover {
    color: #4b1fa8;
}

/* Gallery Mosaic Grid */
.fresha-gallery-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fresha-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 8px;
    height: 380px;
}

@media (max-width: 768px) {
    .fresha-gallery-grid {
        grid-template-columns: 1fr;
        height: 250px;
    }
    .fresha-gallery-grid .gallery-side {
        display: none;
    }
}

.fresha-gallery-main img,
.fresha-gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fresha-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-gap: 8px;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.gallery-tile:hover img {
    transform: scale(1.04);
}

/* Venue Header Information */
.fresha-venue-header {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.fresha-venue-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.fresha-badge-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 16px;
}

.rating-star-badge {
    background: #fffbebf7;
    color: #b45309;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    border: 1px solid #fef3c7;
}

.verified-venue-badge {
    background: #f0fdf4;
    color: #15803d;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    border: 1px solid #bbf7d0;
}

.fresha-action-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-fresha-primary {
    background: #4b1fa8;
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(75, 31, 168, 0.25);
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-fresha-primary:hover {
    background: #3c1787;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(75, 31, 168, 0.35);
}

.btn-fresha-outline {
    background: #ffffff;
    color: #0f172a !important;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-fresha-outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

/* Sub-Header Navigation Tabs */
.fresha-subnav-sticky {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
    padding: 8px 0;
}

.fresha-subnav-links {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
}

.fresha-subnav-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.fresha-subnav-link:hover,
.fresha-subnav-link.active {
    color: #4b1fa8;
    background: rgba(75, 31, 168, 0.08);
}

/* Category Filter Pills */
.category-pills-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 20px;
    white-space: nowrap;
}

.category-pill-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-pill-btn:hover,
.category-pill-btn.active {
    background: #4b1fa8;
    color: #ffffff;
    border-color: #4b1fa8;
    box-shadow: 0 4px 12px rgba(75, 31, 168, 0.18);
}

/* Fresha Service Cards */
.fresha-service-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.fresha-service-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.service-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.service-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.5;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-time {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.service-price {
    font-size: 17px;
    font-weight: 800;
    color: #4b1fa8;
}

.btn-select-service {
    background: #ffffff;
    border: 1.5px solid #4b1fa8;
    color: #4b1fa8;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-select-service:hover,
.btn-select-service.is-selected {
    background: #4b1fa8;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(75, 31, 168, 0.2);
}

/* Sticky Booking Cart Sidebar */
.fresha-cart-sidebar {
    position: sticky;
    top: 80px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.cart-sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-items-list {
    min-height: 100px;
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.cart-item-info .title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.cart-item-info .subtitle {
    font-size: 12px;
    color: #64748b;
}

.cart-item-remove {
    color: #ef4444;
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 2px 6px;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: #dc2626;
}

.cart-total-bar {
    border-top: 2px solid #f1f5f9;
    padding-top: 16px;
    margin-bottom: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.btn-checkout-fresha {
    width: 100%;
    height: 50px;
    background: #4b1fa8;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(75, 31, 168, 0.25);
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-checkout-fresha:hover {
    background: #3c1787;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(75, 31, 168, 0.35);
}

.btn-checkout-fresha:disabled {
    background: #cbd5e1;
    box-shadow: none;
    cursor: not-allowed;
}

/* Reviews Breakdown */
.rating-summary-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.rating-big-num {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

/* Staff Avatars */
.fresha-staff-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.fresha-staff-card:hover {
    border-color: #4b1fa8;
    box-shadow: 0 4px 14px rgba(75, 31, 168, 0.08);
}

.fresha-staff-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px auto;
    border: 3px solid #f1f5f9;
}


/* Enable native smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   Fresha-Style Venue & Booking Flow Design System
   ========================================================================== */

/* 1. Venue Gallery Mosaic */
.venue-gallery-container {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: #f8fafc;
}

.venue-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-gap: 8px;
    height: 420px;
}

@media (max-width: 991px) {
    .venue-gallery-grid {
        grid-template-columns: 1fr;
        height: 280px;
    }
    .venue-gallery-grid .gallery-sub-item {
        display: none;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

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

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

/* 2. Venue Header & Info Badge */
.venue-header-card {
    background: #ffffff;
    border: 1px solid var(--kimih-border-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--kimih-shadow-sm);
}

.venue-title-wrap h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--kimih-text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.venue-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
    font-size: 14px;
    color: var(--kimih-text-muted);
}

.venue-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    color: #92400e;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
}

.venue-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    color: #166534;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.venue-action-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-venue-primary {
    background: var(--kimih-primary-gradient);
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(75, 31, 168, 0.25);
    text-decoration: none;
}

.btn-venue-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 31, 168, 0.35);
}

.btn-venue-secondary {
    background: #f1f5f9;
    color: var(--kimih-text-dark) !important;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--kimih-border-color);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-venue-secondary:hover {
    background: #e2e8f0;
}

/* 3. Sticky Venue Sub-Header Navigation */
.venue-nav-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--kimih-border-color);
    padding: 12px 0;
    margin-bottom: 30px;
}

.venue-nav-list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
}

.venue-nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--kimih-text-muted);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.venue-nav-link.active,
.venue-nav-link:hover {
    color: #4b1fa8;
    background: rgba(109, 40, 217, 0.08);
}

/* 4. Fresha-Style Modern Service Cards */
.fresha-service-card {
    background: #ffffff;
    border: 1px solid var(--kimih-border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.25s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.fresha-service-card:hover {
    border-color: rgba(109, 40, 217, 0.3);
    box-shadow: var(--kimih-shadow-md);
    transform: translateY(-2px);
}

.service-card-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--kimih-text-dark);
    margin-bottom: 6px;
}

.service-duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--kimih-text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.service-price-tag {
    font-size: 18px;
    font-weight: 800;
    color: #4b1fa8;
}

.btn-add-service {
    background: transparent;
    border: 2px solid #4b1fa8;
    color: #4b1fa8;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-add-service:hover,
.btn-add-service.selected {
    background: #4b1fa8;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(75, 31, 168, 0.2);
}

/* 5. Sticky Booking Cart Summary (Right Sidebar) */
.booking-cart-sticky {
    position: sticky;
    top: 90px;
    background: #ffffff;
    border: 1px solid var(--kimih-border-color);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--kimih-shadow-md);
}

.booking-cart-header {
    border-bottom: 1px solid var(--kimih-border-color);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.booking-cart-header h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--kimih-text-dark);
    margin: 0;
}

.selected-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--kimih-border-color);
}

.selected-service-item .item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--kimih-text-dark);
}

.selected-service-item .item-meta {
    font-size: 12px;
    color: var(--kimih-text-muted);
}

.cart-total-section {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 2px solid #f1f5f9;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--kimih-text-dark);
    margin-bottom: 20px;
}

.btn-continue-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: var(--kimih-primary-gradient);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 14px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(75, 31, 168, 0.25);
    text-decoration: none;
}

.btn-continue-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(75, 31, 168, 0.35);
}

/* 6. Team Member Avatar Picker */
.team-member-card {
    background: #ffffff;
    border: 2px solid var(--kimih-border-color);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.team-member-card:hover,
.team-member-card.active {
    border-color: #4b1fa8;
    background: rgba(109, 40, 217, 0.04);
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.12);
}

.team-avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px auto;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.team-member-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--kimih-text-dark);
    margin-bottom: 2px;
}

.team-member-role {
    font-size: 12px;
    color: var(--kimih-text-muted);
}

/* 7. Time Slot Pills */
.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-gap: 10px;
    margin-top: 16px;
}

.time-slot-pill {
    background: #ffffff;
    border: 1px solid var(--kimih-border-color);
    color: var(--kimih-text-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot-pill:hover,
.time-slot-pill.selected {
    background: #4b1fa8;
    color: #ffffff;
    border-color: #4b1fa8;
    box-shadow: 0 4px 12px rgba(75, 31, 168, 0.2);
}





