.get-a-quote-container {
    padding: var(--section-gap);
    padding-bottom: 0;
}

.get-a-quote-title {
    font-size: var(--small-head);
    color: var(--medium-font);
    font-weight: 600;
    text-transform: uppercase;
}

.get-a-quote-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    background: url("../../images/icons/hero-horizontal-seperator.svg") no-repeat center;
    margin-top: 0.6rem;
}

.get-a-quote-container {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: var(--space-xl);
    align-items: start;
}

.get-a-quote-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.get-a-quote-description {
    font-size: var(--small-para);
    line-height: 1.5;
    color: var(--light-font);
    opacity: 0.8;
}

.get-a-quote-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
    background: color-mix(in srgb, var(--super-light-blue-bg) 20%, white);
    padding: var(--space-md);
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--super-light-blue-bg) 80%, white);
    position: relative;
    color: var(--medium-blue-bg);
}

.get-a-quote-bottom img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.get-a-quote-step {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-left: var(--space-xl);
    position: relative;
}

.get-a-quote-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5%;
    height: 90%;
    width: 1px;
    background: color-mix(in srgb, var(--light-font) 10%, white);
}

.quote-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    align-items: stretch;
    justify-content: center;
    text-align: center;
}

.quote-step-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(155deg,
            color-mix(in srgb, var(--super-light-blue-bg) 35%, white),
            color-mix(in srgb, var(--super-light-blue-bg) 12%, white));
    border: 1px solid color-mix(in srgb, var(--medium-blue-bg) 20%, white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--medium-blue-bg) 12%, transparent);
    flex-shrink: 0;
}

.quote-step-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.quote-step {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.quote-step:not(:last-child)::after {
    content: "\2192";
    position: absolute;
    right: -18px;
    top: 24px;
    color: color-mix(in srgb, var(--medium-blue-bg) 65%, white);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.quote-step-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
    justify-content: center;
    
}



.quote-step-content h2 {
    font-size: var(--big-para);
    color: var(--medium-font);
    font-weight: 600;
}

.quote-step-content p {
    font-size: var(--small-para);
    color: var(--light-font);
    opacity: 0.8;
}

/* responsive */
@media (max-width: 1200px) {
    .get-a-quote-container {
        grid-template-columns: 1fr;
    }

    .get-a-quote-step::before {
        display: none;
    }

    .get-a-quote-step {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .quote-steps {
        grid-template-columns: repeat(2, 1fr);

    }

    .quote-step:not(:last-child)::after {
        display: none;
    }
    

}

@media (max-width: 480px) {
    .quote-steps {
        grid-template-columns: 1fr;
    }

    .quote-step {
        flex-direction: row;
        gap: var(--space-md);
        text-align: left;
        height: auto;
    }

    .quote-step-content h2 {
        font-size: var(--small-head);
    }

    .quote-step-content p {
        font-size: var(--small-para);
    }
    .quote-step-icon {
        width: 48px;
        height: 48px;
    }
    .quote-step-icon img {
        width: 24px;
        height: 24px;
    }

  
}