/* Contact Page Custom Styles */
.contact-page-inner {
    padding: 100px 0;
    background: #fff;
}

.contact-badge {
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
}

.contact-main-title {
    font-size: 45px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Expert Team Avatars */
.expert-team-box {
    margin-bottom: 50px;
}

.expert-team-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.expert-avatars {
    display: flex;
    align-items: center;
}

.expert-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-right: -15px;
    object-fit: cover;
}

.expert-avatars img:last-child {
    margin-right: 0;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon-wrap {
    width: 45px;
    height: 45px;
    background: #fdf2f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 18px;
    flex: none;
}

.info-content-wrap span {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 2px;
}

.info-content-wrap .info-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 0;
}

.policy-link {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
    margin-bottom: 50px;
}

/* Follow Us */
.follow-us-sec .follow-us-sec-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.follow-links {
    display: flex;
    gap: 15px;
}

.follow-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
}

.follow-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* Form Styles */
.contact-form-card {
    background: #fff;
}

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

.contact-form-card .form-label {
    font-weight: 700;
    color: #111;
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-form-card .form-label span {
    color: var(--orange);
}

.contact-form-card .form-control {
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: var(--orange);
    box-shadow: none;
}

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

.btn-contact-submit {
    background: var(--orange);
    color: #fff;
    width: 100%;
    padding: 18px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-contact-submit:hover {
    background: #e63e00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.2);
}

@media (max-width: 991px) {
    .contact-page-inner { padding: 60px 0; }
    .contact-main-title { font-size: 32px; }
    .col-form-wrap { margin-top: 60px; }
}
