/* Feature Cards Styling */
.feature-card {
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: #0A0C00;
    transform: translateY(-5px);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.feature-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card-text {
    font-size: 16px;
    color: #4F556A;
    line-height: 1.6;
}

/* Contact Area Styling (Map + Form) */
.contact-area-1 {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.contact-map {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    z-index: -1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

.contact-form-wrap {
    background: #FFFFFF;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    background: #F6F5F3;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 18px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #111;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: #fff;
    border-color: var(--theme-color, #E3FF04);
    box-shadow: none;
    outline: none;
}

.contact-form textarea.form-control {
    height: 150px;
}

@media (max-width: 1199px) {
    .contact-map {
        position: relative;
        width: 100%;
        height: 400px;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrap {
        padding: 40px 30px;
    }
}
