* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Commissioner', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
.header {
    background-color: #fff;
    padding: 12px 0;
}

.header .container {
    padding-left: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: -250px;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-left: 100px;
}

.nav-links a {
    font-family: 'Encode Sans Expanded', sans-serif;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.nav-links a:hover {
    color: #1a1a1a;
    transform: scale(1.1);
}

.header-buttons {
    display: flex;
    gap: 12px;
    margin-right: -250px;
}

.btn-contact {
    font-family: 'Encode Sans Expanded', sans-serif;
    background-color: #111111;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #333;
}

/* Quotation Section */
.quotation-section {
    width: 100%;
    min-height: calc(100vh - 100px);
    padding: 60px 0;
    background-color: #fff;
}

.quotation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.quotation-left {
    flex: 1;
    max-width: 450px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    margin-left: -140px;
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.quotation-title {
    font-family: 'Commissioner', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: #e3b305;
    margin-bottom: 30px;
}

.quotation-description {
    font-family: 'Commissioner', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-label {
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background-color: #e3b305;
    color: #fff;
}

.progress-step.active .step-label {
    color: #333;
    font-weight: 600;
}

.progress-step.completed .step-number {
    background-color: #111;
    color: #fff;
}

.progress-line {
    flex: 1;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 10px;
    position: relative;
    z-index: 1;
}

.progress-step.completed + .progress-line {
    background-color: #111;
}

.quotation-form {
    position: relative;
    min-height: 400px;
}

.form-slide {
    display: none;
    flex-direction: column;
    gap: 18px;
}

.form-slide.active {
    display: flex;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Commissioner', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #e3b305;
    background-color: #fff;
}

.form-input:read-only {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

/* Select dropdown styling */
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 35px;
    cursor: default;
}

select.form-input:hover {
    cursor: default;
}

select.form-input:focus {
    outline: none;
    border-color: #e3b305;
    background-color: #fff;
    cursor: default;
}

select.form-input option {
    padding: 10px;
    background-color: #fff;
}

/* Phone number input with prefix separator */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: border-color 0.3s, background-color 0.3s;
    overflow: hidden;
}

.phone-input-wrapper:focus-within {
    border-color: #e3b305;
    background-color: #fff;
}

.phone-prefix {
    padding: 10px 12px;
    font-family: 'Commissioner', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: transparent;
    white-space: nowrap;
    user-select: none;
}

.phone-divider {
    width: 1px;
    height: 24px;
    background-color: #d0d0d0;
    margin: 0 4px;
}

.phone-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 12px;
    font-family: 'Commissioner', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: transparent;
    border-radius: 0;
}

.phone-input:focus {
    border: none;
    outline: none;
    background-color: transparent;
}

.phone-input-wrapper:focus-within .phone-input {
    background-color: transparent;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.radio-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.radio-group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Commissioner', sans-serif;
    font-size: 15px;
    color: #333;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #e3b305;
}

.radio-label span {
    user-select: none;
}

.submit-button {
    margin-top: 10px;
    padding: 16px 32px;
    background-color: #111111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.next-button {
    margin-top: 10px;
    padding: 10px 24px;
    background-color: #111111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-end;
    margin-left: auto;
    width: auto;
}

.next-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.back-button {
    padding: 10px 24px;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: auto;
}

.back-button:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.quotation-right {
    flex: 1;
    max-width: 700px;
    position: sticky;
    top: 100px;
}

.quotation-image-wrapper {
    width: 170%;
    height: 170%;
    min-height: 600px;
    margin-top: -70px;
    margin-left: -70px;
    overflow: hidden;
    position: relative;
}

.quotation-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.quotation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .quotation-container {
        padding: 0 40px;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .quotation-container {
        flex-direction: column;
        padding: 0 30px;
    }

    .quotation-left {
        max-width: 100%;
        padding-right: 0;
    }

    .quotation-right {
        max-width: 100%;
        position: relative;
        top: 0;
    }

    .quotation-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .quotation-section {
        padding: 40px 0;
    }

    .quotation-container {
        padding: 0 20px;
        gap: 30px;
    }

    .quotation-title {
        font-size: 32px;
    }

    .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .radio-group-grid {
        grid-template-columns: 1fr;
    }

    .quotation-image-wrapper {
        min-height: 300px;
    }

    .progress-indicator {
        padding: 0 10px;
    }

    .step-label {
        font-size: 10px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}
