/* General layout for full bleed split view */
.teklif-container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* Left green panel */
.left-green-section {
    background-color: #243c31; /* Forest green exact match */
    color: #ffffff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 100px 80px 100px 40px;
    min-height: 680px;
}

.left-green-content {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

/* Badge Tags styling */
.badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.badge-tag {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.contact-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    margin-bottom: 35px;
}

/* Left Contact Details */
.left-contact-info {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #bfa37e; /* Gold color matching design exactly */
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none !important;
    transition: color 0.2s ease-in-out;
}

.contact-value:hover {
    color: #bfa37e;
}

/* Right form section */
.right-form-section {
    background-color: #f7f9f8; /* Soft gray matching mock */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 60px;
    min-height: 680px;
}

.form-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    padding: 50px;
    width: 100%;
    max-width: 720px;
}

.form-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #777777;
    margin-bottom: 35px;
    line-height: 1.5;
}

/* Form Input elements styling */
.form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.quote-input {
    border: 1px solid #e1e5e3 !important;
    border-radius: 8px !important;
    padding: 12px 18px !important;
    font-size: 0.98rem !important;
    font-family: 'Poppins', sans-serif !important;
    background-color: #ffffff !important;
    box-shadow: none !important;
    color: #333333 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-input::placeholder {
    color: #b3b3b3 !important;
}

.quote-input:focus {
    border-color: #243c31 !important;
    box-shadow: 0 0 0 3px rgba(36, 60, 49, 0.1) !important;
}

.quote-textarea {
    height: 130px !important;
    resize: none !important;
}

select.quote-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 14px 10px !important;
    appearance: none !important;
}

/* Form Submit Button */
.btn-quote-submit {
    background-color: #243c31 !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    border-radius: 8px !important;
    padding: 15px !important;
    width: 100% !important;
    border: none !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

.btn-quote-submit:hover {
    background-color: #1a2c24 !important;
}

/* Responsive constraints */
@media (max-width: 1199.98px) {
    .left-green-section {
        padding: 80px 40px 80px 40px;
    }
    .right-form-section {
        padding: 80px 40px 80px 40px;
    }
}

@media (max-width: 991.98px) {
    .left-green-section {
        justify-content: center;
        padding: 80px 24px;
        min-height: auto;
    }
    .right-form-section {
        justify-content: center;
        padding: 80px 24px;
        min-height: auto;
    }
    .form-card {
        padding: 35px 24px;
    }
    .section-title {
        font-size: 2rem;
    }
    .contact-divider {
        margin-top: 35px;
    }
}
