/* Contact Us page */



.contact-card {

    background: #fff;

    border: 1px solid var(--am-border, #eee);

    border-radius: 8px;

    overflow: hidden;

}



.contact-card-header {

    background: #fafafa;

    border-bottom: 1px solid var(--am-border, #eee);

    padding: 20px;

}



.contact-card-header h4 {

    font-size: 20px;

    font-weight: 700;

    color: #282828;

}



.contact-card-body {

    padding: 40px 30px;

}



.info-card {

    background: #fafafa;

    border: 1px solid #f0f0f0;

    border-radius: 8px;

    padding: 25px;

}



.info-card-title {

    font-size: 18px;

    font-weight: 700;

    color: #282828;

    margin-bottom: 25px;

    padding-bottom: 15px;

    border-bottom: 2px solid var(--am-primary);

}



.info-item {

    display: flex;

    gap: 20px;

    padding: 20px 0;

    border-bottom: 1px solid #eee;

}



.info-item:last-child {

    border-bottom: none;

    padding-bottom: 0;

}



.info-icon {

    width: 50px;

    height: 50px;

    background: var(--am-primary);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}



.info-icon.whatsapp {

    background: #25D366;

}



.info-icon i {

    font-size: 22px;

    color: #fff;

}



.info-content {

    flex: 1;

}



.info-content h6 {

    font-size: 16px;

    font-weight: 700;

    color: #282828;

    margin-bottom: 8px;

}



.info-content p {

    font-size: 14px;

    color: #666;

    margin-bottom: 0;

    line-height: 1.6;

}



.info-content a {

    color: var(--am-primary);

    text-decoration: none;

}



.info-content a:hover {

    text-decoration: underline;

}



.help-cta {

    background: #fff;

    border: 2px solid var(--am-primary);

    border-radius: 8px;

    padding: 20px;

    display: flex;

    gap: 20px;

    align-items: center;

}



.help-cta-icon {

    width: 60px;

    height: 60px;

    background: var(--am-primary);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}



.help-cta-icon i {

    font-size: 28px;

    color: #fff;

}



.help-cta-content h6 {

    font-size: 16px;

    font-weight: 700;

    color: #282828;

    margin-bottom: 6px;

}



.help-cta-content p {

    font-size: 14px;

    color: #555;

    line-height: 1.6;

}



.quick-contact-card {

    background: #fff;

    border: 1px solid var(--am-border, #eee);

    border-radius: 8px;

    padding: 30px 20px;

    text-align: center;

    transition: all 0.3s;

}



.quick-contact-card:hover {

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    transform: translateY(-4px);

    border-color: var(--am-primary);

}



.quick-contact-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 15px;

    background: var(--am-primary);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}



.quick-contact-icon.success {

    background: #10b981;

}



.quick-contact-icon i {

    font-size: 32px;

    color: #fff;

}



.quick-contact-title {

    font-size: 18px;

    font-weight: 700;

    color: #282828;

    margin-bottom: 10px;

}



.quick-contact-text {

    font-size: 14px;

    color: #666;

    line-height: 1.6;

}



.quick-contact-text a {

    color: var(--am-primary);

    text-decoration: none;

}



.quick-contact-text a:hover {

    text-decoration: underline;

}



.about-section {

    background: #fafafa;

    border: 1px solid #f0f0f0;

    border-radius: 8px;

    padding: 25px;

}



.about-section h5 {

    font-size: 18px;

    font-weight: 700;

    color: #282828;

    margin-bottom: 15px;

}



.about-section p {

    font-size: 15px;

    color: #555;

    line-height: 1.8;

    margin-bottom: 0;

}



@media (max-width: 767px) {

    .contact-card-body {

        padding: 25px 15px;

    }



    .info-card {

        padding: 20px;

    }



    .info-item {

        gap: 15px;

        padding: 15px 0;

    }



    .info-icon {

        width: 45px;

        height: 45px;

    }



    .info-icon i {

        font-size: 20px;

    }



    .help-cta {

        flex-direction: column;

        text-align: center;

    }



    .quick-contact-card {

        padding: 25px 15px;

    }



    .quick-contact-icon {

        width: 60px;

        height: 60px;

    }



    .quick-contact-icon i {

        font-size: 28px;

    }

}


