/* =============================================
   VaultCounsel – Custom Stylesheet
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    --vc-primary:   #1a2c46;
    --vc-accent:    #edb83d;
    --vc-text:      #777;
    --vc-white:     #ffffff;
    --vc-light-bg:  #f5f7fa;
    --vc-radius:    10px;
    --vc-shadow:    0 5px 25px rgba(0,0,0,0.07);
    --vc-transition:all 0.3s ease;
}

/* ---- Process Cards ---- */
.vc-process-card {
    background: var(--vc-light-bg);
    border-radius: var(--vc-radius);
    padding: 28px 25px;
    margin-bottom: 24px;
    position: relative;
    transition: var(--vc-transition);
    border-left: 4px solid transparent;
}

.vc-process-card:hover {
    border-left-color: var(--vc-accent);
    box-shadow: var(--vc-shadow);
    background: #fff;
}

.vc-process-card__num {
    font-size: 42px;
    font-weight: 800;
    color: var(--vc-accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 8px;
}

.vc-process-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--vc-primary);
    margin-bottom: 10px;
}

.vc-process-card p {
    font-size: 14px;
    color: var(--vc-text);
    line-height: 1.8;
    margin: 0;
}

/* ---- Pricing / Plan Cards ---- */
.vc-plan-card {
    background: var(--vc-light-bg);
    border-radius: var(--vc-radius);
    padding: 35px 28px;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    transition: var(--vc-transition);
    border: 2px solid transparent;
}

.vc-plan-card:hover {
    border-color: var(--vc-accent);
    box-shadow: var(--vc-shadow);
}

.vc-plan-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--vc-primary);
    margin-bottom: 12px;
}

.vc-plan-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--vc-accent);
    margin-bottom: 18px;
}

.vc-plan-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--vc-text);
}

.vc-plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.vc-plan-card ul li {
    font-size: 13px;
    color: var(--vc-text);
    padding: 6px 0;
    border-bottom: 1px dashed #e5e5e5;
    padding-left: 20px;
    position: relative;
}

.vc-plan-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--vc-accent);
    font-weight: 700;
}

/* Featured Plan */
.vc-plan-card--featured {
    background: var(--vc-primary);
    border-color: var(--vc-accent);
}

.vc-plan-card--featured h5,
.vc-plan-card--featured ul li {
    color: #fff;
}

.vc-plan-card--featured ul li::before {
    color: var(--vc-accent);
}

.vc-plan-card--featured ul li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.vc-plan-badge {
    display: inline-block;
    background: var(--vc-accent);
    color: var(--vc-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* ---- CTA Card (services index) ---- */
.vc-cta-card {
    background: var(--vc-primary) !important;
}

.vc-cta-card .services-Two__title a,
.vc-cta-card .services-Two__text {
    color: #adb5bd !important;
}

.vc-cta-card .services-Two__title a {
    color: #fff !important;
}

/* ---- Sidebar ---- */
.sidebar__services-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 6px;
    transition: var(--vc-transition);
    color: var(--vc-text);
    font-size: 14px;
    font-weight: 500;
}

.sidebar__services-list li a:hover,
.sidebar__services-list li.active a {
    background: var(--vc-accent);
    color: var(--vc-primary) !important;
    padding-left: 22px;
}

.sidebar__services-list li.active a {
    font-weight: 700;
}

/* ---- Insurance Details (service pages) ---- */
.insurance-details__points-box {
    background: var(--vc-light-bg);
    border-radius: var(--vc-radius);
    padding: 28px 25px;
    margin-bottom: 20px;
}

.insurance-details__points-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--vc-primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--vc-accent);
    display: inline-block;
}

.insurance-details__points li {
    font-size: 14px;
    color: var(--vc-text);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insurance-details__points li span {
    color: var(--vc-accent);
    font-size: 13px;
}

.insurance-details__title-1 {
    font-size: 28px;
    color: var(--vc-primary);
    margin-bottom: 18px;
}

.insurance-details__title-2 {
    font-size: 22px;
    color: var(--vc-primary);
    margin-bottom: 15px;
}

.insurance-details__text-1,
.insurance-details__text-2 {
    font-size: 15px;
    color: var(--vc-text);
    line-height: 1.9;
    margin-bottom: 18px;
}

/* ---- Form Controls Override ---- */
.contact-form__input-box input,
.contact-form__input-box select,
.contact-form__input-box textarea,
.form-control,
.form-select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
    background: #fff;
    transition: var(--vc-transition);
    outline: none;
    appearance: auto;
}

.contact-form__input-box input:focus,
.contact-form__input-box select:focus,
.contact-form__input-box textarea:focus,
.form-control:focus,
.form-select:focus {
    border-color: var(--vc-accent);
    box-shadow: 0 0 0 3px rgba(237,184,61,0.15);
}

/* ---- Page Header ---- 
.page-header {
    position: relative;
    padding: 100px 0 70px;
    overflow: hidden;
}

.page-header__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}

.page-header__inner {
    position: relative;
    z-index: 2;
}

.page-header__inner h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.thm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.thm-breadcrumb li a {
    color: var(--vc-accent);
    font-size: 14px;
}

.thm-breadcrumb li {
    color: #aaa;
    font-size: 14px;
}
*/
/* ---- Responsive Tweaks ---- */
@media (max-width: 768px) {
    .insurance-details__title-1 {
        font-size: 22px;
    }

    .vc-plan-card {
        margin-bottom: 20px;
    }

    .page-header__inner h2 {
        font-size: 30px;
    }
}
