/* --- General Section Styles --- */
.contact-form-service-selection-section,
.contact-form-personal-details-section,
.contact-form-pricing-packages-section,
.contact-form-mair-config-section,
.contact-form-final-summary-section {
    margin-bottom: 60px;
}

.contact-form-service-selection-section {
    margin-top: 60px;
}

.contact-form-main-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--base-color-neutral--neutral-darker);
    line-height: 1.2;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-form-main-title {
        font-size: 42px;
        text-align: left;
    }
}

.contact-form-sub-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--base-color-neutral--neutral-dark);
    margin-bottom: 40px;
    max-width: 650px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .contact-form-sub-text {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

.contact-form-billing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-form-toggle-container {
    display: inline-flex;
    background-color: var(--base-color-neutral--neutral-lightest);
    border-radius: 8px;
    padding: 5px;
}

.contact-form-toggle-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    background-color: transparent;
    color: var(--base-color-neutral--neutral-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-toggle-btn.active {
    background-color: var(--base-color-brand--white);
    color: var(--base-color-neutral--neutral-darker);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form-toggle-btn span {
    background-color: var(--base-color-brand--red);
    color: var(--base-color-brand--white);
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

/* --- Stepper Styles --- */
.contact-form-stepper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .contact-form-stepper {
        margin-bottom: 70px;
    }
}

.contact-form-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--base-color-neutral--neutral-dark);
}

.contact-form-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--base-color-neutral--neutral-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: var(--base-color-neutral--neutral-dark);
    background-color: var(--base-color-brand--white);
    transition: all 0.3s ease;
}

.contact-form-step-circle svg {
    width: 16px;
    height: 16px;
}

.contact-form-step.completed .contact-form-step-circle {
    background-color: var(--base-color-brand--red);
    border-color: var(--base-color-brand--red);
    color: var(--base-color-brand--white);
}

.contact-form-step.completed .contact-form-step-title {
    color: var(--base-color-neutral--neutral-darker);
}

.contact-form-step.active .contact-form-step-circle {
    border-color: var(--base-color-brand--red);
    color: var(--base-color-brand--red);
}

.contact-form-step.active .contact-form-step-title {
    color: var(--base-color-brand--red);
    font-weight: 600;
}

/* --- Navigation Buttons --- */
.contact-form-nav-buttons-container {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 50px;
}

.contact-form-btn {
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .contact-form-btn {
        padding: 15px 35px;
    }
}

.contact-form-btn-full-width {
    display: block;
    width: 100%;
}

.contact-form-btn-auto-width {
    width: auto;
}

.contact-form-btn-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-btn-primary {
    background-color: var(--base-color-brand--red);
    color: var(--base-color-brand--white);
}

.contact-form-btn-primary:hover {
    background-color: var(--red-dark);
}

.contact-form-btn-primary-dark {
    background-color: var(--base-color-brand--black);
    color: var(--base-color-brand--white);
}

.contact-form-btn-primary-dark:hover {
    background-color: var(--base-color-neutral--neutral-darker);
}

.contact-form-btn-secondary {
    background-color: var(--base-color-brand--white);
    color: var(--base-color-neutral--neutral-darker);
    border: 1px solid var(--base-color-neutral--neutral-light);
}

.contact-form-btn-secondary:hover {
    border-color: var(--base-color-brand--black);
    color: var(--base-color-brand--black);
}

/* --- Service Selection Styles --- */
.contact-form-service-type-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--base-color-neutral--neutral-darker);
    margin-bottom: 20px;
}

.contact-form-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.contact-form-service-option {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    border: 1px solid var(--base-color-neutral--neutral-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--base-color-brand--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-service-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--base-color-brand--red);
}

.contact-form-service-option .letter {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    /*border: 1px solid var(--base-color-neutral--neutral-light);*/
    /*border-radius: 6px;*/
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-form-service-option .contact-form-service-text {
    font-weight: 500;
}

.contact-form-service-option.selected {
    border: 2px solid var(--base-color-brand--red);
    background-color: #fff9f9;
}

.contact-form-service-option.selected .letter {
    border-color: var(--base-color-brand--red);
    color: var(--base-color-brand--red);
}

.contact-form-service-option.selected .contact-form-service-text {
    color: var(--base-color-brand--red);
    font-weight: 600;
}

/* --- Personal Details Form Styles --- */
.contact-form-group {
    margin-bottom: 25px;
}

.contact-form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--base-color-neutral--neutral-darker);
    margin-bottom: 8px;
}

.contact-form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid var(--base-color-neutral--neutral-light);
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--base-color-brand--red);
    box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.1);
}

/* --- Pricing Section Styles --- */
@media (min-width: 768px) {
    .contact-form-pricing-packages-section .contact-form-main-title,
    .contact-form-pricing-packages-section .contact-form-sub-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

.contact-form-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-form-pricing-card {
    border: 1px solid var(--base-color-neutral--neutral-light);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    background-color: var(--base-color-brand--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--base-color-brand--red);
}

.contact-form-pricing-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    color: var(--base-color-neutral--neutral-dark);
}

.contact-form-pricing-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-form-pricing-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-form-pricing-price span {
    font-size: 16px;
    font-weight: 500;
}

.contact-form-pricing-yearly {
    font-size: 14px;
    color: var(--base-color-neutral--neutral-dark);
    margin-bottom: 20px;
}

.contact-form-pricing-divider {
    border: 0;
    height: 1px;
    background-color: var(--base-color-neutral--neutral-light);
    margin: 0 0 20px 0;
}

.contact-form-pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.contact-form-pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 14px;
}

.contact-form-pricing-includes {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-form-pricing-features-list .contact-form-check-icon {
    width: 16px;
    height: 16px;
    color: var(--base-color-brand--red);
}

.contact-form-custom-solution-banner {
    border: 1px solid var(--base-color-neutral--neutral-light);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-form-custom-solution-title {
    margin: 0 0 5px 0;
    font-size: 26px;
    font-weight: 600;
    color: var(--base-color-neutral--neutral-darker);
}

.contact-form-custom-solution-text {
    margin: 0;
    color: var(--base-color-neutral--neutral-dark);
}

/* --- M-AIR Config Section --- */
@media (min-width: 688px) {
    .contact-form-mair-config-section .contact-form-main-title {
        text-align: left;
    }

    .contact-form-mair-config-section .contact-form-sub-text {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

.contact-form-config-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form-config-options {
    flex: 2;
    min-width: 300px;
}

.contact-form-config-summary {
    flex: 1;
    min-width: 280px;
}

.contact-form-option-group {
    margin-bottom: 30px;
}

.contact-form-option-group-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-form-option-btn {
    padding: 12px 18px;
    border: 1px solid var(--base-color-neutral--neutral-light);
    border-radius: 6px;
    background-color: var(--base-color-brand--white);
    cursor: pointer;
    transition: all 0.3s ease;
    /*font-size: 14px;*/
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-option-btn:hover {
    border-color: var(--base-color-brand--red);
}

.contact-form-option-btn.selected {
    background-color: var(--base-color-brand--red);
    color: var(--base-color-brand--white);
    border-color: var(--base-color-brand--red);
}

.contact-form-question-mark {
    display: none;
    /*width: 18px;*/
    /*height: 18px;*/
    /*border-radius: 50%;*/
    /*border: 1.5px solid var(--base-color-neutral--neutral-dark);*/
    /*color: var(--base-color-neutral--neutral-dark);*/
    /*display: inline-flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*font-size: 12px;*/
    /*font-weight: 700;*/
    /*line-height: 1;*/
}

.contact-form-option-btn.selected .contact-form-question-mark {
    border-color: var(--base-color-brand--white);
    color: var(--base-color-brand--white);
}

.contact-form-summary-card {
    background-color: var(--base-color-neutral--neutral-lightest);
    border-radius: 10px;
    padding: 30px;
}

.contact-form-summary-card .contact-form-main-title {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: left;
}

.contact-form-summary-card .contact-form-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-form-summary-card
.contact-form-summary-row
.contact-form-summary-label {
    color: var(--base-color-neutral--neutral-dark);
}

.contact-form-summary-card
.contact-form-summary-row
.contact-form-summary-value {
    font-weight: 600;
}

.contact-form-summary-card .contact-form-summary-row.total {
    font-size: 20px;
    margin-top: 25px;
}

.contact-form-summary-card
.contact-form-summary-row.total
.contact-form-summary-value {
    font-size: 24px;
}

/* --- Final Summary Section --- */
.contact-form-final-summary-section .contact-form-final-summary-title {
    text-align: left;
}

@media (min-width: 768px) {
    .contact-form-final-summary-section .contact-form-main-title,
    .contact-form-final-summary-section .contact-form-sub-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-form-final-summary-section .contact-form-final-summary-title {
        text-align: left;
    }
}

.contact-form-price-summary-grid {
    display: grid;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-form-price-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.contact-form-price-summary-row .contact-form-summary-label {
    color: var(--base-color-neutral--neutral-dark);
}

.contact-form-price-summary-row .contact-form-summary-value {
    font-weight: 600;
}

.contact-form-price-summary-total {
    font-size: 22px;
    font-weight: 700;
    padding-top: 15px;
    border-top: 1px solid var(--base-color-neutral--neutral-light);
}

.contact-form-terms-acceptance {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.contact-form-terms-acceptance input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--base-color-brand--red);
}

.contact-form-terms-acceptance label {
    font-size: 14px;
}

.contact-form-terms-acceptance label a {
    color: var(--base-color-brand--red);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-terms-acceptance label a:hover {
    text-decoration: underline;
}

/* --- Thank You Section --- */
.contact-form-thank-you-title {
    font-size: 36px;
}

.contact-form-thank-you-title,
.contact-form-thank-you-sub-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
