/* ============================================================
   BHAIRAV VASHISHTH — BOOKING CTA SHORTCODE CSS
   File: bv-shortcode.css
   Place: /wp-content/themes/hello-elementor-child/assets/
   ============================================================ */

/* ---- Shared variables (safe to repeat, won't conflict) ---- */
.bv-sc {
    --bvc-gold:       #936d42;
    --bvc-gold-dark:  #7a5835;
    --bvc-gold-light: #c3a788;
    --bvc-gold-bg:    #f5f0ea;
    --bvc-dark:       #1a0e05;
    --bvc-dark2:      #2d1a08;
    --bvc-border:     #e8ddd0;
    --bvc-white:      #ffffff;
    --bvc-radius:     14px;
    font-family: Mulish, sans-serif;
    box-sizing: border-box;
}
.bv-sc *, .bv-sc *::before, .bv-sc *::after { box-sizing: border-box; }

/* ---- Shared button ---- */
.bv-sc__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: Mulish, sans-serif;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1;
}
.bv-sc__btn--primary {
    background: var(--bvc-gold);
    color: var(--bvc-white) !important;
    border-color: var(--bvc-gold);
}
.bv-sc__btn--primary:hover {
    background: var(--bvc-gold-dark);
    border-color: var(--bvc-gold-dark);
    color: var(--bvc-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(147,109,66,0.35);
}
.bv-sc__btn--outline {
    background: transparent;
    color: rgba(255,255,255,0.85) !important;
    border-color: rgba(255,255,255,0.35);
}
.bv-sc__btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: var(--bvc-white) !important;
}
.bv-sc__btn--full { width: 100%; }
.bv-sc__btn--nowrap { white-space: nowrap; flex-shrink: 0; }

/* ============================================================
   1. BANNER — homepage full-width feature
   ============================================================ */
.bv-sc--banner {
    position: relative;
    background: linear-gradient(155deg, #1a0e05 0%, #2d1a08 55%, #1a0e05 100%);
    border-radius: var(--bvc-radius);
    overflow: hidden;
    padding: 48px 32px;
    margin: 0 auto;
}

/* Decorative star pattern */
.bv-sc__bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.bv-sc__bg-pattern::before {
    content: '✦';
    position: absolute;
    font-size: 340px;
    color: rgba(147,109,66,0.05);
    right: -60px;
    top: -80px;
    line-height: 1;
}
.bv-sc__bg-pattern::after {
    content: '✦';
    position: absolute;
    font-size: 200px;
    color: rgba(147,109,66,0.04);
    left: -40px;
    bottom: -60px;
    line-height: 1;
}

/* ── Two-column split layout ── */
.bv-sc__inner--split {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 720px) {
    .bv-sc__inner--split {
        flex-direction: row;
        align-items: stretch;
        gap: 48px;
        text-align: left;
    }
}

/* ── LEFT: Profile column ── */
.bv-sc__profile-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bv-sc__profile-wrap {
    position: relative;
    width: 220px;
}

@media (min-width: 720px) {
    .bv-sc__profile-wrap {
        width: 200px;
    }
}

@media (min-width: 900px) {
    .bv-sc__profile-wrap {
        width: 240px;
    }
}

.bv-sc__profile-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    border: 2px solid rgba(147,109,66,0.4);
    box-shadow:
        0 0 0 6px rgba(147,109,66,0.08),
        0 20px 60px rgba(0,0,0,0.5);
    display: block;
}

/* Rating badge overlapping bottom of image */
.bv-sc__profile-badge {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bvc-gold);
    color: var(--bvc-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(147,109,66,0.45);
}

/* ── RIGHT: Content column ── */
.bv-sc__content-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 18px; /* compensate for badge overflow on mobile */
}

@media (min-width: 720px) {
    .bv-sc__content-col {
        text-align: left;
        padding-top: 0;
    }
}

.bv-sc__badge {
    display: inline-block;
    background: rgba(147,109,66,0.2);
    border: 1px solid rgba(147,109,66,0.4);
    color: #c3a788;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    /* On desktop align left naturally; on mobile center via content-col text-align */
}

.bv-sc__title {
    font-family: "Forum", serif !important;
    font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    color: var(--bvc-white) !important;
    font-weight: 400 !important;
    margin: 0 0 14px !important;
    line-height: 1.25 !important;
}

.bv-sc__desc {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 22px !important;
}

/* Trust row */
.bv-sc__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

@media (min-width: 720px) {
    .bv-sc__trust {
        justify-content: flex-start;
    }
}

.bv-sc__trust strong { color: #c3a788; font-weight: 800; }
.bv-sc__dot { color: rgba(147,109,66,0.5); font-size: 8px; display: none; }
@media (min-width: 480px) { .bv-sc__dot { display: inline; } }

/* Service tags */
.bv-sc__services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-bottom: 28px;
}

@media (min-width: 720px) {
    .bv-sc__services {
        justify-content: flex-start;
    }
}

.bv-sc__services span {
    background: rgba(147,109,66,0.15);
    border: 1px solid rgba(147,109,66,0.3);
    color: #c3a788;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* CTA buttons */
.bv-sc__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .bv-sc__actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 720px) {
    .bv-sc__actions {
        justify-content: flex-start;
    }
}

/* Bottom reassurance note */
.bv-sc__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    margin: 0 !important;
    flex-wrap: wrap;
}

@media (min-width: 720px) {
    .bv-sc__note {
        justify-content: flex-start;
    }
}

.bv-sc__note svg { flex-shrink: 0; opacity: 0.6; }

/* ============================================================
   2. COMPACT — services page / sidebar card
   ============================================================ */
.bv-sc--compact {
    border-radius: var(--bvc-radius);
    border: 1.5px solid var(--bvc-border);
    background: var(--bvc-white);
    box-shadow: 0 4px 24px rgba(147,109,66,0.08);
    overflow: hidden;
    margin: 0 auto;
}

.bv-sc__compact-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    align-items: flex-start;
}

.bv-sc__compact-left {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.bv-sc__compact-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bvc-gold-bg);
    border: 1.5px solid var(--bvc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bvc-gold);
    flex-shrink: 0;
}

.bv-sc__compact-title {
    font-family: "Forum", serif !important;
    font-size: 1.2rem !important;
    color: var(--bvc-gold-dark) !important;
    margin: 0 0 6px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
}

.bv-sc__compact-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0 0 12px !important;
}

.bv-sc__compact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.bv-sc__compact-pills span {
    background: var(--bvc-gold-bg);
    border: 1px solid var(--bvc-border);
    color: var(--bvc-gold-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.bv-sc--compact .bv-sc__btn { width: 100%; justify-content: center; }

@media (min-width: 600px) {
    .bv-sc__compact-inner {
        flex-direction: row;
        align-items: center;
    }
    .bv-sc--compact .bv-sc__btn { width: auto; }
}

/* ============================================================
   3. STRIP — slim full-width between page sections
   ============================================================ */
.bv-sc--strip {
    background: linear-gradient(100deg, #1a0e05, #2d1a08);
    border-radius: 10px;
    padding: 24px 28px;
    margin: 0 auto;
}

.bv-sc__strip-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.bv-sc__strip-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.bv-sc__strip-title {
    font-family: "Forum", serif;
    font-size: 1.3rem;
    color: var(--bvc-white);
    font-weight: 400;
    line-height: 1.2;
}

.bv-sc__strip-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

@media (min-width: 560px) {
    .bv-sc__strip-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ============================================================
   4. CARD — single service with price
   ============================================================ */
.bv-sc--card {
    background: var(--bvc-white);
    border: 1.5px solid var(--bvc-border);
    border-radius: var(--bvc-radius);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(147,109,66,0.08);
    max-width: 360px;
    margin: 0 auto;
}

.bv-sc__card-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.bv-sc__card-icon {
    width: 46px;
    height-: 46px;
    border-radius: 10px;
    background: var(--bvc-gold-bg);
    border: 1.5px solid var(--bvc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bvc-gold);
    flex-shrink: 0;
}

.bv-sc__card-title {
    font-family: "Forum", serif !important;
    font-size: 1.05rem !important;
    color: var(--bvc-gold-dark) !important;
    margin: 0 0 4px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
}

.bv-sc__card-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bvc-gold);
}

.bv-sc__card-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.65;
    margin: 0 0 20px !important;
    padding-top: 12px;
    border-top: 1px solid var(--bvc-border);
}