:root {
    --municipality-teal: var(--primary-blue);
    --municipality-dark: #2d3e4a;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--municipality-teal);
    text-align: start;
    margin-bottom: 30px;
}

.report-container {
    background-color: #d9dbe678;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    min-height: 500px;
}

.contact-info-panel {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Border is on the right of the contact panel to separate it from the form on its right */
    border-inline-start: 3px solid var(--municipality-dark);
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* هذا يخلي النص والأيقونة على طرفي الصف */
    color: var(--municipality-teal);
    margin-bottom: 40px;
    font-size: 1.4rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.info-item:hover {
    opacity: 0.8;
    color: var(--municipality-teal);
}

.info-item i {
    font-size: 2.5rem;
    margin-left: 15px;
}

.form-panel {
    padding: 60px 40px;
}

.input-dark {
    /* background-color: var(--municipality-dark) !important; */
    border: none !important;
    border-radius: 50px !important;
    /* color: white !important; */
    padding: 15px 25px !important;
    margin-bottom: 25px;
    text-align: right;
    font-size: 1.2rem;
}
.input-dark::before{
    box-shadow: 1px 4px 15px gray;
}
.input-dark::placeholder {
    color: #adb5bd;
    text-align: start;
}

textarea.input-dark {
    border-radius: 30px !important;
    height: 160px !important;
    resize: none;
}

.btn-send-white {
    background-color: white;
    color: var(--municipality-teal);
    border: none;
    border-radius: 50px;
    padding: 10px 70px;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-send-white:hover {
    transform: translateY(-3px);
    background-color: #f8f8f8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-attach-dark {
    background-color: var(--municipality-dark);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-attach-dark:hover {
    background-color: #1e2a33;
    transform: translateY(-2px);
}

/* span-info */
.span-info {
    font-size: xx-large;
}
/* Adjustments for responsiveness */
@media (max-width: 991px) {
    .contact-info-panel {
        border-right: none;
        border-top: 3px solid var(--municipality-dark);
        padding: 40px;
        order: 2;
        /* Move to bottom on mobile */
    }

    .form-panel {
        order: 1;
        /* Stay on top on mobile */
    }

    .section-title {
        text-align: center;
    }
}
