/* Contact & Lead Form Styling */
#contact {
    background: linear-gradient(135deg, #0B3C5D 0%, #082d46 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.input-group-custom {
    position: relative;
    margin-bottom: 20px;
}

.input-group-custom i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
    transition: color 0.3s;
}

.input-group-custom .form-control,
.input-group-custom .form-select {
    height: 55px;
    padding-left: 50px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    font-weight: 500;
    transition: all 0.3s;
}

.input-group-custom textarea.form-control {
    height: auto;
    padding-top: 15px;
}

.input-group-custom .form-control:focus,
.input-group-custom .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(245, 124, 0, 0.15);
    outline: none;
}

.input-group-custom .form-control:focus + i,
.input-group-custom .form-select:focus + i {
    color: var(--accent-color);
}

.form-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #2E7D32;
}

.btn-form-submit {
    height: 60px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    width: 100%;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.4s;
    box-shadow: 0 10px 20px rgba(245, 124, 0, 0.3);
}

.btn-form-submit:hover {
    transform: translateY(-3px);
    background: #e67600;
    box-shadow: 0 15px 30px rgba(245, 124, 0, 0.4);
}

/* Contact Info Styling */
.contact-info-list {
    list-style: none;
    padding: 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    font-size: 15px;
}

.info-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.info-link:hover {
    color: var(--accent-color);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
    text-decoration: none;
}

/* Branch Chips */
.branch-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.branch-chip {
    padding: 8px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.branch-chip:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Human Element Decoration */
.contact-decor {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 124, 0, 0.1) 0%, rgba(245, 124, 0, 0) 70%);
    z-index: 0;
}

@media (max-width: 991px) {
    .contact-form-card { padding: 30px; }
    .info-item { margin-bottom: 20px; }
}
