/*--------------------------------------------------------------
Premium Forms & Request Pages Styling
- Enhanced form layouts with modern design
- Large, professional request cards
- Improved visual hierarchy
- Premium animations and effects
--------------------------------------------------------------*/

/* ==============================
   1) Premium Form Container
   ============================== */
.contact-page {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(254, 144, 67, 0.03) 0%, rgba(8, 159, 172, 0.03) 100%);
}

.contact-page__left {
    padding-right: 40px;
}

.contact-page__left .section-title__tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--zeinet-base);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.contact-page__left .section-title__title {
    font-size: 28px;
    font-weight: 700;
    color: #ff8728;
    margin: 15px 0 25px;
    line-height: 1.3;
    font-family: 'Cairo', sans-serif;
}

.contact-page__text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Cairo', sans-serif;
}

.contact-page__social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-page__social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zeinet-primary), var(--zeinet-base));
    color: white;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(254, 144, 67, 0.25);
}

.contact-page__social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(254, 144, 67, 0.35);
}

/* ==============================
   2) Premium Form Styling
   ============================== */
.contact-page__right {
    background: white;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(254, 144, 67, 0.1);
}

.contact-page__form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-page__input-box {
    margin-bottom: 25px;
    position: relative;
}

.contact-page__input-box input,
.contact-page__input-box select,
.contact-page__input-box textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    background-color: #fafafa;
    color: #333;
    transition: all 0.3s ease;
}

.contact-page__input-box input:focus,
.contact-page__input-box select:focus,
.contact-page__input-box textarea:focus {
    outline: none;
    border-color: var(--zeinet-base);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(254, 144, 67, 0.1);
}

.contact-page__input-box input::placeholder,
.contact-page__input-box textarea::placeholder {
    color: #999;
    font-family: 'Cairo', sans-serif;
}

.contact-page__input-box textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Cairo', sans-serif;
}

/* ==============================
   3) Select Dropdown Enhancement
   ============================== */
.bootstrap-select > .dropdown-toggle {
    border: 2px solid #e8e8e8 !important;
    border-radius: 10px !important;
    background-color: #fafafa !important;
    padding: 16px 20px !important;
    height: auto !important;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.bootstrap-select > .dropdown-toggle:focus {
    border-color: var(--zeinet-base) !important;
    background-color: white !important;
    box-shadow: 0 0 0 4px rgba(254, 144, 67, 0.1) !important;
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Cairo', sans-serif;
}

.bootstrap-select .dropdown-menu > li > a {
    padding: 12px 20px;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.2s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
    background-color: rgba(254, 144, 67, 0.1);
    color: var(--zeinet-base);
}

.bootstrap-select .dropdown-menu > li.selected > a {
    background-color: var(--zeinet-base);
    color: white;
}

/* ==============================
   4) Form Button Styling
   ============================== */
.contact-page__btn-box {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.contact-page__btn {
    flex: 1;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--zeinet-primary), var(--zeinet-base));
    color: white;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(254, 144, 67, 0.3);
    font-family: 'Cairo', sans-serif;
    text-transform: none;
    letter-spacing: 0.5px;
}

.contact-page__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(254, 144, 67, 0.4);
}

.contact-page__btn:active {
    transform: translateY(-1px);
}

/* ==============================
   5) Form Row Spacing
   ============================== */
.contact-page__form .row {
    margin: 0 -12px;
}

.contact-page__form .col-xl-6,
.contact-page__form .col-xl-12 {
    padding: 0 12px;
}

/* ==============================
   6) Text Message Box
   ============================== */
.text-message-box {
    margin-bottom: 0;
}

/* ==============================
   7) Form Result Messages
   ============================== */
.result {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
}

.result.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.result.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==============================
   8) Responsive Design
   ============================== */
@media (max-width: 991px) {
    .contact-page__left {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .contact-page__left .section-title__title {
        font-size: 36px;
    }

    .contact-page__right {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .contact-page {
        padding: 60px 0;
    }

    .contact-page__right {
        padding: 30px;
    }

    .contact-page__left .section-title__title {
        font-size: 28px;
    }

    .contact-page__form .col-xl-6 {
        margin-bottom: 0;
    }

    .contact-page__input-box {
        margin-bottom: 20px;
    }

    .contact-page__btn {
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* ==============================
   9) Premium Page Header Enhancement
   ============================== */
.page-header {
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 120px 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 144, 67, 0.4) 0%, rgba(8, 159, 172, 0.4) 100%);
    z-index: 1;
}

.page-header__inner {
    position: relative;
    z-index: 2;
}

.page-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-top: 20px;
    font-family: 'Cairo', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.thm-breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.thm-breadcrumb li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Cairo', sans-serif;
}

.thm-breadcrumb li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.thm-breadcrumb li a:hover {
    color: #ffe8d5;
}

/* ==============================
   10) Animation Classes
   ============================== */
.contact-page__input-box input,
.contact-page__input-box select,
.contact-page__input-box textarea {
    animation: slideUp 0.6s ease-out backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-page__input-box:nth-child(1) { animation-delay: 0.1s; }
.contact-page__input-box:nth-child(2) { animation-delay: 0.2s; }
.contact-page__input-box:nth-child(3) { animation-delay: 0.3s; }
.contact-page__input-box:nth-child(4) { animation-delay: 0.4s; }
.contact-page__input-box:nth-child(5) { animation-delay: 0.5s; }
