/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.page_contact_header {
    min-height: 65vh;
}

.contact-layout-new {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .contact-layout-new {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Info Sidebar (Green Box) --- */
.info-box-green {
    background-color: #0b4a35;
    /* Dark Green */
    color: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-logo-text {
    text-align: right;
    margin-bottom: 2rem;
}

.info-logo-text h2 {
    color: #e2d12e;
    /* Yellow */
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-logo-text p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.dotted-divider {
    border: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.info-address {
    margin-bottom: 3rem;
}

.info-address p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #ffffff;
    text-align: right;
}

.info-contact-lines {
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-line {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    color: #e2d12e;
    /* Yellow */
}

.contact-line .text {
    font-weight: 600;
}

.contact-line .icon {
    width: 45px;
    height: 45px;
    border: 1px dashed rgba(226, 209, 46, 0.5);
    /* yellowish dashed border */
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* --- Contact Form Side --- */
.contact-form-side {
    padding: 1rem 0;
}

.form-title-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
    display: inline-block;
    width: 100%;
}

.form-title-wrapper h2 {
    font-size: 2.5rem;
    color: #0b4a35;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.title-circle-accent {
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: #e9f0d4;
    border-radius: 50%;
    top: -25px;
    left: calc(50% - 100px);
    /* Adjust based on RTL to appear behind the left part of the title */
    z-index: 0;
}

/* Form Styles */
.custom-line-form .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .custom-line-form .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.form-group-line {
    display: flex;
    flex-direction: column;
    text-align: start;
    position: relative;
}

.form-group-line .form-label {
    font-size: 0.95rem;
    color: #7b8a92;
    margin-bottom: 0.5rem;
}

.form-control-line {
    text-align: start;
    border: none;
    border-bottom: 2px solid #e1e9a5;
    /* Yellow-green border */
    background: transparent;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control-line:focus {
    border-bottom-color: #0b4a35;
}

.form-control-line::placeholder {
    color: #b3bdc5;
    font-size: 1.1rem;
}

select.form-control-line {
    cursor: pointer;
    padding-right: 0;
    /* No right padding */
    padding-left: 20px;
    /* Padding on left for icon in RTL */
}

.form-group-line.message-group {
    margin-top: 1rem;
}

.relative-select {
    position: relative;
}

.select-icon {
    position: absolute;
    bottom: 12px;
    left: 0;
    /* In RTL, arrow is on left */
    color: #7b8a92;
    pointer-events: none;
    font-size: 1rem;
}