/* ===========================================
   Z-INDEX FIX: Header must be above hero content
   =========================================== */
.ja_header {
    z-index: 100 !important;
}

/* Mobile header also needs higher z-index */
.ja_mobile_header {
    z-index: 100 !important;
}

/* Ensure hero overlay stays below header */
.hero-overlay {
    z-index: 10;
}

/* ===========================================
   Why Choose Me Section Styling
   =========================================== */
.why_choose_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.why_choose_item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(247, 80, 35, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.why_choose_item:hover {
    background: rgba(247, 80, 35, 0.1);
    border-left-color: #C41E3A;
    transform: translateX(5px);
}

.why_choose_item:nth-child(2) {
    background: rgba(28, 190, 89, 0.05);
}

.why_choose_item:nth-child(2):hover {
    background: rgba(28, 190, 89, 0.1);
    border-left-color: #1cbe59;
}

.why_choose_item:nth-child(3) {
    background: rgba(128, 103, 240, 0.05);
}

.why_choose_item:nth-child(3):hover {
    background: rgba(128, 103, 240, 0.1);
    border-left-color: #8067f0;
}

.why_choose_item:nth-child(4) {
    background: rgba(247, 80, 35, 0.05);
}

.why_choose_item:nth-child(4):hover {
    background: rgba(247, 80, 35, 0.1);
    border-left-color: #C41E3A;
}

.icon_wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.why_choose_item .content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.why_choose_item .content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Dark mode support */
.dark .why_choose_item .content h4 {
    color: #fff;
}

.dark .why_choose_item .content p {
    color: #ccc;
}

.dark .icon_wrapper {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .why_choose_item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .why_choose_item .content h4 {
        font-size: 18px;
    }

    .why_choose_item .content p {
        font-size: 14px;
    }
}

/* Contact Form Improvements */
.contact_form .service-select {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #666;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact_form .service-select:hover {
    border-color: #C41E3A;
}

.contact_form .service-select:focus {
    outline: none;
    border-color: #C41E3A;
    box-shadow: 0 0 0 3px rgba(247, 80, 35, 0.1);
}

.contact_form .service-select option {
    padding: 10px;
    font-family: 'Inter', sans-serif;
}

/* Dark mode support for contact form */
.dark .contact_form .service-select {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fff' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
}

.dark .contact_form .service-select:hover {
    border-color: #C41E3A;
}

.dark .contact_form .service-select:focus {
    border-color: #C41E3A;
    box-shadow: 0 0 0 3px rgba(247, 80, 35, 0.2);
}

/* Contact Form Button Styling */
.ja_button button {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 50px;
    border: 2px solid #C41E3A;
    padding: 14px 48px 13px 48px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
}

.ja_button button span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.ja_button button:before {
    position: absolute;
    content: "";
    z-index: 0;
    background-color: #C41E3A;
    left: -5px;
    right: -5px;
    bottom: -5px;
    height: 110%;
    transition: all 0.3s ease;
}

.ja_button button:hover:before {
    height: 0;
}

.ja_button button:hover span {
    color: #000;
}

.ja_button button:focus {
    outline: none;
}

/* Dark mode button support */
.dark .ja_button button:hover span {
    color: #fff;
}
