@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap);

:root {
    --font-inter: "Inter", sans-serif;
    --font-poppins: "Poppins", sans-serif;
    --yellow: #efc337;
    --black: #2f2f2f;
    --body-text: #343a40;
    --white: #fff;
    --light-gray: #c4c4c4;
    --blue: #0078d7;
    --transition: 0.3s ease-in-out;
}

body.page-template-calculators :is(.flexible-container) {
    padding: 0;
}
/* show old cta in footer */
body.page-template-calculators .call-now{
    display: block !important;
}
body.page-template-calculators .footer{
    padding-top: 13.75rem;
}

/* Base CSS */

:is(.form-control, .form-select) {
    width: 100%;
    font-size: 1rem;
    margin: 0;
    padding: 0.75rem;
    border-radius: 1rem;
    background-color: var(--theme-grey);
    border: 1px solid var(--light-gray);
    box-shadow: none;
    height: auto;
}

:is(.form-control, .form-select):focus {
    box-shadow: none;
    border: 1px solid var(--black);
}

p {
    color: var(--body-text);
}

.bg-yellow {
    background: var(--yellow);
}

.text-yellow {
    color: var(--yellow);
}

.lh-base-2 {
    line-height: 1.2;
}

/* Base CSS End */

/* CSS 14-Dec-2025 */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 23vw, 350px), 1fr));
    gap: 1.875rem;
}

.tool-card {
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.tool-card img {
    width: 100%;
    max-width: 75%;
    margin: auto;
}

.tool-card .content {
    padding: 1.875rem 1.25rem;
}

.tool-card .content h5 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.tool-card .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000b5;
    transition: height 0.4s ease-out;
    overflow: hidden;
}

.tool-card:hover .overlay {
    height: 100%;
}

.gap-3 {
    gap: 0.625rem;
}

.single-tool-wrapper {
    background: url('https://staging1.reliqus.com/wp-content/uploads/2024/12/lead-form-bkg.png') center/cover no-repeat;
    background-color: var(--yellow);
}

.tools-wrap {
    background-color: var(--white);
    border-radius: 0.675rem;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.25);
    position: relative;
    text-align: center;
    padding: 1.875rem 1.5rem;
}


.cstm-tools textarea {
    height: 12.5rem;
}

.banner-height {
    height: auto;
    min-height: unset;
}

.bg-grey {
    background-color: var(--dark-grey);
}

/* CSS end */

h1,
h2 {
    font-weight: 700;
}

h1.section-title {
    font-size: 4rem;
    font-weight: 700;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.fw-900 {
    font-weight: 900 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.btn-secondary.shadow-none {
    box-shadow: none !important;
}

/* Website Cost Estimator CSS Start */
.calculator-container {
    background-color: var(--white);
    position: relative;
    margin-top: 4rem;
}

/* .header-bg {
    background-size: 6.25rem;
    padding-top: 1.25rem;
    margin-bottom: 1.875rem;
} */

.price-box {
    background-color: var(--yellow);
    color: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
    min-width: 9.375rem;
    position: fixed;
    top: 10rem;
    right: 1.875rem;
    z-index: 999;
}

.section-divider {
    height: 0.25rem;
    width: 3.125rem;
    background-color: var(--yellow);
    border-radius: 0.125rem;
    margin-bottom: 1.25rem;
}

/* .form-control,
.form-select {
    border-radius: 0.5rem;
    border: 0.0625rem solid #E0E0E0;
    padding: 0.75rem 1rem;
} */

.custom-radio-group input[type="radio"],
.custom-checkbox-group input[type="checkbox"] {
    display: none;
}

.custom-label {
    display: block;
    background-color: var(--white);
    color: var(--dark);
    padding: 0.625rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    border: 0.0625rem solid #E0E0E0;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
}

.custom-radio-group input[type="radio"]:checked+.custom-label,
.custom-checkbox-group input[type="checkbox"]:checked+.custom-label {
    background-color: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
}

.website-type-card {
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 1rem;
    border: 0.125rem solid #E0E0E0;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
}

.website-type-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.08);
}

.website-type-card.selected {
    border-color: var(--yellow);
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
    position: relative;
}

.website-type-card .check-icon {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    color: var(--dark);
    font-size: 1.5rem;
    display: none;
}

.website-type-card.selected .check-icon {
    display: block;
    color: var(--yellow);
}

#designRange {
    -webkit-appearance: none;
    width: 100%;
    height: 0.5rem;
    background: #ddd;
    border-radius: 0.25rem;
    margin: 0.625rem 0;
}

#designRange {
    height: 0.5rem;
    border-radius: 0.3125rem;
    background: linear-gradient(to right, #efc337 50%, #dcdcdc 50%);
}

#designRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--dark);
    border-radius: 50%;
    border: 0.125rem solid var(--dark);
    cursor: pointer;
    margin-top: -0.1875rem;
}

#designRange::-moz-range-track {
    background: #dcdcdc;
    height: 0.5rem;
    border-radius: 0.3125rem;
}

#designRange::-moz-range-progress {
    background: var(--yellow);
    height: 0.5rem;
    border-radius: 0.3125rem;
}

#designRange::-moz-range-thumb {
    width: 1.25rem;
    height: 1.25rem;
    background: var(--dark);
    border-radius: 50%;
    border: 0.125rem solid var(--dark);
    cursor: pointer;
}

.discount-banner {
    background-color: var(--dark);
    color: var(--white);
    border-radius: 1rem;
    padding: 1.875rem;
    margin-top: 2.5rem;
}

.original-price {
    text-decoration: line-through;
    font-size: 1.5rem;
    color: #aaa;
}

.discount-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--yellow);
}

.custom-checkbox-group {
    gap: 1.25rem;
}

.custom-select-wrapper {
    position: relative;
}

.calculator-form select {
    height: auto;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-select-wrapper::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 0.9375rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
    font-size: 0.75rem;
}

#advanced-features {
    opacity: 0.7;
}

#graphic-addon:checked~#advanced-features {
    opacity: 1;
}

.design-creativity {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    width: 100%;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
}

.design-creativity .title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.design-creativity .subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-left: 2.125rem;
}

.design-creativity .range-wrapper {
    margin-top: 1.375rem;
    position: relative;
}

.design-creativity input[type="range"] {
    width: 100%;
    height: 0.25rem;
    appearance: none;
    background: linear-gradient(to right,
            #efc337 0%,
            #efc337 var(--value),
            #e5e7eb var(--value),
            #e5e7eb 100%);
    border-radius: 0.625rem;
    outline: none;
}

.design-creativity input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 1.375rem;
    height: 1.375rem;
    background: var(--white);
    border: 0.25rem solid var(--yellow);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.design-creativity .range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.design-creativity .percent-badge {
    position: absolute;
    top: -2.25rem;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--black);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    white-space: nowrap;
}

.design-creativity .tier-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.875rem;
}

.design-creativity .tier {
    background: #0f172a;
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    opacity: 0.5;
    transition: all 0.25s ease;
}

.design-creativity .tier.active {
    opacity: 1;
    background: var(--yellow);
    color: var(--black);
}

/* --- Custom Range Slider CSS Start--- */

.theme-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 0.5rem;
    cursor: pointer;
    outline: none;
    border-radius: 1rem;
    background-color: var(--light-gray);
    background-image: linear-gradient(var(--blue));
    background-repeat: no-repeat;
    background-size: 0% 100%;
    display: inline-block;
    margin: auto;
}

/* Track Styling - Webkit (Chrome, Safari, Edge) */
.theme-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    background: transparent;
    border-radius: 1rem;
}

/* Thumb Styling - Webkit */
.theme-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 1.25rem;
    width: 1.25rem;
    background-color: var(--white);
    border-radius: 50%;
    border: 0.125rem solid var(--black);
    margin-top: -0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    transition: background 0.2s ease-in-out, transform 0.1s ease;
    position: relative;
    z-index: 2;
}

.theme-range:active::-webkit-slider-thumb {
    transform: scale(1.1);
}

/* Track Styling - Firefox */
.theme-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    background: var(--light-gray);
    border-radius: 1rem;
    border: none;
}

/* Thumb Styling - Firefox */
.theme-range::-moz-range-thumb {
    height: 1.25rem;
    width: 1.25rem;
    background-color: var(--white);
    border-radius: 50%;
    border: 0.125rem solid var(--black);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Firefox Native Progress Fill */
.theme-range::-moz-range-progress {
    background-color: var(--yellow);
    height: 0.5rem;
    border-radius: 1rem;
}

/* --- Custom Range Slider CSS Start--- */

@media (max-width: 48rem) {
    .section-title {
        font-size: 1.75rem;
    }

    h1.section-title {
        font-size: 3.4rem;
    }

    .header-bg {
        background-image: none;
    }
}

/* Website Cost Estimator CSS End */
/* ---------------------------------------------------- */
/* Word Counter Calculator Css Start */
.stats-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.stat-item p {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
}

/* ---------------------------------------------------- */
/* ROAS Calculator Css Start */
.roas-box {
    background: var(--white)fff;
    border-radius: 0.875rem;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.roas-box h6 {
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.roas-value {
    font-size: 2.625rem;
    font-weight: 800;
    color: var(--yellow);
    text-align: center;
}

/* Media Query */

@media (max-width:767px) {
    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
    body.page-template-calculators .footer{
        padding-top: 11.25rem;
    }
}

/* End */