/* ========================================
   QUOTE REQUEST
======================================== */
.quote-page {
    padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(4rem, 8vw, 7rem);
}

.quote-page__header {
    max-width: 820px;
    margin: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.quote-page__eyebrow,
.quote-section-heading p {
    margin: 0 0 0.45rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.quote-page__header h1,
.quote-section-heading h2 {
    margin: 0;
    color: var(--color-primary-dark);
}

.quote-page__header h1 {
    font-size: clamp(2.25rem, 5vw, 4.6rem);
    line-height: 1.02;
}

.quote-page__header > p:last-child {
    max-width: 760px;
    margin: 1.25rem 0 0;
    color: var(--color-text-light);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.quote-notice {
    margin: 0 0 var(--space-lg);
    padding: 1rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.quote-notice p {
    margin: 0;
}

.quote-notice p + p {
    margin-top: 0.4rem;
}

.quote-notice--success {
    border-color: #94c6a1;
    background: #eef9f0;
}

.quote-notice--error {
    border-color: #d8a3a3;
    background: #fff2f2;
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.75fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.quote-basket,
.quote-form-panel,
.contact-info,
.contact-form-panel {
    min-width: 0;
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-background);
    box-shadow: 0 12px 34px rgba(31, 41, 51, 0.06);
}

.quote-form-panel {
    position: sticky;
    top: 110px;
}

.quote-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.quote-section-heading h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.quote-basket__continue {
    flex: 0 0 auto;
    font-weight: 700;
}

.quote-basket__empty {
    padding: clamp(1.5rem, 4vw, 3rem) 1rem;
    text-align: center;
    background: var(--color-background-soft);
    border-radius: var(--radius-sm);
}

.quote-basket__empty h3 {
    margin-top: 0;
}

.quote-basket__table-wrap {
    overflow-x: auto;
}

.quote-table {
    width: 100%;
    border-collapse: collapse;
}

.quote-table th,
.quote-table td {
    padding: 0.9rem 0.7rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: middle;
}

.quote-table th {
    color: var(--color-text-light);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.quote-table th:nth-child(2),
.quote-table td:nth-child(2) {
    text-align: center;
}

.quote-table th:nth-child(3),
.quote-table th:nth-child(4),
.quote-table td:nth-child(3),
.quote-table td:nth-child(4) {
    text-align: right;
}

.quote-table__product {
    display: grid;
    grid-template-columns: 64px minmax(150px, 1fr);
    gap: 0.8rem;
    align-items: center;
}

.quote-table__product img {
    width: 64px;
    height: 54px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--color-background-soft);
}

.quote-table__product a,
.quote-table__product strong {
    display: block;
    color: var(--color-primary-dark);
    font-weight: 800;
}

.quote-table__product span {
    display: block;
    margin-top: 0.2rem;
    color: var(--color-text-light);
    font-size: 0.8rem;
}

.quote-table__quantity {
    width: 74px;
    min-height: 42px;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #fff;
    font: inherit;
    text-align: center;
}

.quote-table__remove {
    border: 0;
    background: transparent;
    color: #9e3f3f;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.quote-basket__summary {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0 0;
    color: var(--color-primary-dark);
}

.quote-basket__summary strong {
    font-size: 1.15rem;
}

.quote-basket__note,
.quote-form__note {
    margin: 0.55rem 0 0;
    color: var(--color-text-light);
    font-size: 0.82rem;
}

.quote-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.quote-form__field {
    margin: 0;
}

.quote-form__field--wide {
    grid-column: 1 / -1;
}

.quote-form__field label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--color-primary-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

.quote-form__field label small {
    color: var(--color-text-light);
    font-size: 0.78rem;
    font-weight: 500;
}

.quote-form__field input,
.quote-form__field textarea,
.quote-form__field select {
    width: 100%;
    min-height: 46px;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    background: #fff;
    color: var(--color-text);
    font: inherit;
}

.quote-form__field textarea {
    min-height: 120px;
    resize: vertical;
}

.quote-form__field input:focus,
.quote-form__field textarea:focus,
.quote-form__field select:focus,
.quote-table__quantity:focus {
    outline: 2px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
    outline-offset: 1px;
    border-color: var(--color-primary);
}

.quote-form__customer-type,
.quote-form__fulfillment {
    min-width: 0;
    margin: 1.25rem 0 0;
    padding: 0;
    border: 0;
}

.quote-form__customer-type {
    margin-top: 0;
    margin-bottom: 1rem;
}

.quote-form__customer-type legend,
.quote-form__fulfillment legend {
    margin-bottom: 0.65rem;
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.quote-form__customer-type-options,
.quote-form__fulfillment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.quote-form__customer-type-option,
.quote-form__fulfillment-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
    min-height: 100%;
    padding: 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form__customer-type-option:has(input:checked),
.quote-form__fulfillment-option:has(input:checked) {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 16%, transparent);
}

.quote-form__customer-type-option input,
.quote-form__fulfillment-option input {
    width: 18px;
    height: 18px;
    margin: 0.12rem 0 0;
    accent-color: var(--color-primary);
}

.quote-form__customer-type-option strong,
.quote-form__fulfillment-option strong,
.quote-form__fulfillment-option small {
    display: block;
}

.quote-form__customer-type-option strong,
.quote-form__fulfillment-option strong {
    color: var(--color-primary-dark);
    font-size: 0.9rem;
}

.quote-form__fulfillment-option small {
    margin-top: 0.3rem;
    color: var(--color-text-light);
    font-size: 0.78rem;
    line-height: 1.45;
}

.quote-form__legal,
.quote-form__delivery {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: color-mix(in srgb, var(--color-primary) 4%, #fff);
}

.quote-form__legal[hidden],
.quote-form__delivery[hidden] {
    display: none !important;
}

.quote-form__legal h3,
.quote-form__delivery h3 {
    margin: 0;
    color: var(--color-primary-dark);
    font-size: 1rem;
}

.quote-form__delivery > p {
    margin: 0.35rem 0 0.9rem;
    color: var(--color-text-light);
    font-size: 0.82rem;
    line-height: 1.45;
}

.quote-form__legal h3 {
    margin-bottom: 0.9rem;
}

.quote-form__project-data {
    margin-top: 1rem;
}

.quote-form__message {
    margin-top: 1rem;
}

.quote-form__consent {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
    margin-top: 1.2rem;
    align-items: start;
    color: var(--color-text-light);
    font-size: 0.86rem;
    line-height: 1.45;
}

.quote-form__consent input {
    width: 18px;
    height: 18px;
    margin-top: 0.12rem;
}

.quote-form__submit {
    width: 100%;
    margin-top: 1.2rem;
}

.quote-form__submit:disabled,
.quote-form.is-disabled .quote-form__submit {
    cursor: not-allowed;
    opacity: 0.5;
}

.quote-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 0 0 var(--space-md);
    padding: 0;
    list-style: none;
}

.contact-info__list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--color-border);
}

.contact-info__list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-info__label {
    color: var(--color-text-light);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info__list a {
    color: var(--color-primary-dark);
    font-weight: 700;
    text-decoration: none;
}

.contact-info__list a:hover {
    text-decoration: underline;
}

.contact-map {
    margin: 0 0 var(--space-md);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
}

.contact-company {
    margin: 0 0 var(--space-md);
    padding: 1rem 1.2rem;
    background: var(--color-background-soft);
    border-radius: var(--radius-sm);
}

.contact-company h3 {
    margin: 0 0 0.5rem;
    color: var(--color-primary-dark);
    font-size: 0.95rem;
}

.contact-company p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-info__quote-link {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.contact-info__quote-link a {
    color: var(--color-primary);
    font-weight: 700;
}

/* ========================================
   O NAMA
======================================== */
.about-intro {
    display: flex;
    max-width: 760px;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
    color: var(--color-text);
    font-size: clamp(1rem, 1.6vw, 1.08rem);
    line-height: 1.7;
}

.about-intro p {
    margin: 0;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
    margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.about-value {
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-background-soft);
}

.about-value h2 {
    margin: 0 0 0.6rem;
    color: var(--color-primary-dark);
    font-size: clamp(1.25rem, 2.4vw, 1.5rem);
}

.about-value p {
    margin: 0;
    color: var(--color-text);
    line-height: 1.65;
}

.about-cta {
    margin: 0;
    font-size: 1.05rem;
}

.about-cta a {
    margin-left: 0.35rem;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
}

.about-cta a:hover {
    text-decoration: underline;
}

@media (max-width: 1050px) {
    .quote-layout {
        grid-template-columns: 1fr;
    }

    .quote-form-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .about-values {
        grid-template-columns: 1fr;
    }

    .quote-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .quote-form__grid {
        grid-template-columns: 1fr;
    }

    .quote-form__customer-type-options,
    .quote-form__fulfillment-options {
        grid-template-columns: 1fr;
    }

    .quote-form__field--wide {
        grid-column: auto;
    }

    .quote-basket__table-wrap {
        overflow: visible;
    }

    .quote-table,
    .quote-table tbody,
    .quote-table tr,
    .quote-table td {
        display: block;
        width: 100%;
    }

    .quote-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .quote-table tr {
        margin-bottom: 1rem;
        padding: 0.8rem;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-sm);
    }

    .quote-table td {
        display: grid;
        grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
        gap: 0.8rem;
        padding: 0.65rem 0;
        border-bottom: 1px solid var(--color-border);
        text-align: right !important;
    }

    .quote-table td::before {
        content: attr(data-label);
        color: var(--color-text-light);
        font-size: 0.78rem;
        font-weight: 700;
        text-align: left;
    }

    .quote-table td:first-child {
        display: block;
        text-align: left !important;
    }

    .quote-table td:first-child::before,
    .quote-table__remove-cell::before {
        display: none;
    }

    .quote-table__remove-cell {
        display: block !important;
        border-bottom: 0 !important;
        text-align: right !important;
    }

    .quote-table__product {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .quote-basket__summary {
        flex-direction: column;
        gap: 0.25rem;
    }

}
