.contact-us-area-wrapper {
    background-color: #fff;
    padding: 80px 0;
}

.address-wrapper {
    padding: 30px;
    background: #fff;
    border-radius: 0;
    height: 100%;
}

.address-wrapper .title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.address-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-address-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-box .icon {
    color: #666;
    font-size: 20px;
}

.content .title {
    font-size: 16px;
    margin-bottom: 5px;
    color: #666;
    font-weight: 500;
}

.content .info {
    color: #333;
    margin: 0;
    line-height: 1.4;
    font-size: 15px;
}

.get-in-touch-wrapper {
    padding: 30px;
    background: #fff;
    border-radius: 0;
    height: 100%;
}

.get-in-touch-wrapper .title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-control {
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 10px 15px;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 15px;
}

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

.form-control:focus {
    border-color: #666;
    box-shadow: none;
}

.form-control::placeholder {
    color: #999;
}

.submit-btn {
    background: #4CAF50;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #3d8b40;
}

/* Social Media Icons */
.social-links {
    margin-top: 40px;
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* background: #d4d4d4;
    color: #666; */
    font-size: 18px;
    transition: all 0.3s ease;
}



/* Alert Messages */
.alert {
    padding: 15px;
    border-radius: 3px;
    margin-bottom: 25px;
}

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

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