/* =========================================
   ZEN BLOOM HAIR & BEAUTY SPA CUSTOM CSS
========================================= */

:root {
    --theme-color: #D4AF37; /* Metallic Gold */
    --theme-color2: #1A1A1A; /* Black */
    --title-color: #1A1A1A;
    --body-color: #555555;
    --bg-light: #FDFBF7; /* Soft Pastel */
    --bg-beige: #F5F5DC;
    --white: #FFFFFF;
}

/* Global Overrides */
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--body-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6, .sec-title, .sec-title4 {
    font-family: 'Marcellus', serif;
    color: var(--title-color);
}

.text-theme { color: var(--theme-color) !important; }
.bg-theme { background-color: var(--theme-color) !important; }

/* Buttons */
.vs-btn {
    background-color: var(--theme-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 12px 30px;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}
.vs-btn:hover {
    background-color: var(--theme-color2);
    color: var(--white);
}
.vs-btn.style9 { background-color: var(--theme-color2); color: var(--theme-color); }
.vs-btn.style9:hover { background-color: var(--theme-color); color: var(--white); }

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* Service Grid (No Pricing) */
.service-card {
    background: var(--bg-light);
    border: 1px solid #EAEAEA;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--theme-color);
}
.service-card .mt-4.text-center {
    margin-top: auto !important;
}
.service-category-title {
    color: var(--theme-color);
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 1px solid var(--theme-color);
    padding-bottom: 10px;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #DDD;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-list li:last-child {
    border-bottom: none;
}
.service-list li i {
    color: var(--theme-color);
    font-size: 14px;
}

/* Searchable Pricing Table */
.pricing-search {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    display: block;
    padding: 15px 25px;
    border: 2px solid #EAEAEA;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}
.pricing-search:focus {
    border-color: var(--theme-color);
}
.pricing-table-wrap {
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}
.pricing-table th, .pricing-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #EEE;
}
.pricing-table th {
    background: var(--bg-light);
    color: var(--theme-color2);
    font-weight: 700;
    text-transform: uppercase;
}
.pricing-table tbody tr:hover {
    background: var(--bg-light);
}
.price-value {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 18px;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid #EEE;
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
}
.accordion-button {
    background-color: var(--bg-light);
    color: var(--title-color);
    font-weight: 600;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background-color: var(--theme-color);
    color: var(--white);
}

/* Gallery Update */
.gallery-img img {
    border-radius: 8px;
    transition: all 0.4s ease;
}
.gallery-img:hover img {
    transform: scale(1.05);
}

/* Standardized Image Layouts */
.vs-gallery-img img, .recent-post-img img, .blog-img img {
    width: 100% !important;
    height: 350px !important;
    object-fit: cover !important;
}

/* Modern Service Cards */
.modern-service-card {
    background: #FFF;
    border: 1px solid #EAEAEA;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modern-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--theme-color);
}
.service-card-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--bg-light);
    color: var(--theme-color);
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.modern-service-card:hover .service-card-icon {
    background: var(--theme-color);
    color: var(--white);
}
.modern-service-title {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: 'Marcellus', serif;
    color: var(--title-color);
}
.modern-service-desc {
    font-size: 15px;
    color: var(--body-color);
    margin-bottom: 0;
    line-height: 1.6;
}

/* WhatsApp CTA Block */
.whatsapp-cta-block {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid #EAEAEA;
    margin-top: 20px;
}
.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #FFF;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    gap: 12px;
}
.whatsapp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    color: #FFF;
}
.whatsapp-cta-btn i {
    font-size: 24px;
}

/* Modern Pricing UI CSS */
.pricing-tabs-wrapper {
    margin-bottom: 40px;
    border-bottom: 2px solid #f0e6da;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: var(--theme-color) transparent;
}

.pricing-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    min-width: max-content;
}

.pricing-tab {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: var(--title-font);
    letter-spacing: 1px;
}

.pricing-tab:hover {
    color: var(--theme-color);
}

.pricing-tab.active {
    color: var(--theme-color);
    border-bottom-color: var(--theme-color);
}

.pricing-panel {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.pricing-panel.active {
    display: block;
}

.pricing-subcat-title {
    font-family: var(--title-font);
    color: #111;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.pricing-subcat-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--theme-color);
    margin: 10px auto 0;
}

/* Premium Menu Layout */
.pricing-menu-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.pricing-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
    transition: all 0.3s;
}

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

.pricing-menu-item:hover {
    background: #faf8f5;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

.pricing-menu-name {
    font-family: var(--title-font);
    font-size: 18px;
    color: #222;
    font-weight: 500;
}

.pricing-menu-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 15px;
    position: relative;
    top: 5px;
}

.pricing-menu-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--theme-color);
    min-width: 80px;
    text-align: right;
}

.pricing-menu-book {
    margin-left: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.pricing-menu-book:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

/* Premium Pricing Cards (Packages) */
.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--theme-color);
}

.pricing-card.featured {
    background: linear-gradient(to bottom, #fff, #faf8f5);
    border: 2px solid var(--theme-color);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(189, 151, 108, 0.4);
}

.pricing-card-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111;
    font-family: var(--title-font);
}

.pricing-card-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.pricing-card-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

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


/* Sub-Tabs CSS */
.pricing-sub-tabs-wrapper {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-sub-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    background: #fdfbf8;
    padding: 8px;
    border-radius: 50px;
    border: 1px solid #eee;
}

.pricing-sub-tab {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.pricing-sub-tab:hover {
    color: var(--theme-color);
}

.pricing-sub-tab.active {
    background: var(--theme-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(189, 151, 108, 0.3);
}

.pricing-sub-panel {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.pricing-sub-panel.active {
    display: block;
}


/* Center Olive Image for Service Area */
.center-olive-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px !important; /* Perfect width to fit between columns */
    height: auto !important; /* Scales height proportionately */
    max-height: 130%; /* Allows slight vertical overlap if needed */
    z-index: 10;
    pointer-events: none; /* So it doesn't block clicks on nearby elements */
}

/* Adjust row alignment to ensure spacing */
@media (min-width: 992px) {
    .service-inner1 .row {
        justify-content: center !important;
        gap: 20px;
    }
}
